From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Renqb-0004BD-6y for garchives@archives.gentoo.org; Sun, 25 Dec 2011 13:10:41 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B0F621C0E0; Sun, 25 Dec 2011 13:09:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2AB6F21C0E0 for ; Sun, 25 Dec 2011 13:09:44 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC3D21B405F for ; Sun, 25 Dec 2011 13:09:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 58B8380051 for ; Sun, 25 Dec 2011 13:09:43 +0000 (UTC) From: "Mike Auty" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Auty" Message-ID: <94fa54a567c0e8f438de24b425a0fb0e24a9e971.ikelos@gentoo> Subject: [gentoo-commits] dev/ikelos:master commit in: mail-client/mailnag/ X-VCS-Repository: dev/ikelos X-VCS-Files: mail-client/mailnag/Manifest mail-client/mailnag/mailnag-9999.ebuild X-VCS-Directories: mail-client/mailnag/ X-VCS-Committer: ikelos X-VCS-Committer-Name: Mike Auty X-VCS-Revision: 94fa54a567c0e8f438de24b425a0fb0e24a9e971 Date: Sun, 25 Dec 2011 13:09:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 7682e3f8-e53d-4831-b02f-9fbafc20599c X-Archives-Hash: cb3c0e41efa6c1a10177aff011c867e0 commit: 94fa54a567c0e8f438de24b425a0fb0e24a9e971 Author: Mike Auty gmail com> AuthorDate: Mon Nov 14 21:19:02 2011 +0000 Commit: Mike Auty gentoo org> CommitDate: Mon Nov 14 21:19:02 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/ikelos.git;a=3D= commit;h=3D94fa54a5 Add in first attempt at mailnag ebuild. --- mail-client/mailnag/Manifest | 1 + mail-client/mailnag/mailnag-9999.ebuild | 36 +++++++++++++++++++++++++= ++++++ 2 files changed, 37 insertions(+), 0 deletions(-) diff --git a/mail-client/mailnag/Manifest b/mail-client/mailnag/Manifest new file mode 100644 index 0000000..2b4a8e0 --- /dev/null +++ b/mail-client/mailnag/Manifest @@ -0,0 +1 @@ +EBUILD mailnag-9999.ebuild 734 RMD160 20daebb994ae3a66f32ed0b529955038bb= 4aeda6 SHA1 283e5bed63f6b1e396123054628e67c0e143f723 SHA256 73a5d57840351= 4207a84b776c0b9a7865716c6b607064d0384ec6a227f3a136e diff --git a/mail-client/mailnag/mailnag-9999.ebuild b/mail-client/mailna= g/mailnag-9999.ebuild new file mode 100644 index 0000000..2f9756d --- /dev/null +++ b/mail-client/mailnag/mailnag-9999.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D3 + +inherit git-2 python + +DESCRIPTION=3D"Mail nagger for gnome-shell (port of popper for unity)" +HOMEPAGE=3D"http://launchpad.net/mailnag" +SRC_URI=3D"" + +EGIT_REPO_URI=3D"https://github.com/pulb/mailnag.git" + +LICENSE=3D"" +SLOT=3D"0" +KEYWORDS=3D"~amd64 ~x86" +IUSE=3D"" + +DEPEND=3D"" +RDEPEND=3D"${DEPEND}" + +src_prepare() { + cd "${S}" + "${S}/gen_locales" + + sed -i -e 's|LIB_DIR=3D./Mailnag|LIB_DIR=3D/usr/share/mailnag/Mailnag|'= "${PN}"* +} + +src_install() { + dodir "/usr/share/${PN}" + cp -r "${S}"/* "${D}/usr/share/${PN}/" + + dosym "/usr/share/${PN}/${PN}" "/usr/bin/${PN}" + dosym "/usr/share/${PN}/${PN}_config" "/usr/bin/${PN}_config" +}