diff options
author | Ben de Groot <yngwin@gentoo.org> | 2013-04-05 09:23:36 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2013-04-05 09:23:36 +0000 |
commit | 8c8aa1dc1919046ba94e3d118aa891465c228626 (patch) | |
tree | 3cb5eaa28994e6c28549859f6885d3e5521c836f /app-admin/eselect-infinality | |
parent | Version bump. (diff) | |
download | gentoo-2-8c8aa1dc1919046ba94e3d118aa891465c228626.tar.gz gentoo-2-8c8aa1dc1919046ba94e3d118aa891465c228626.tar.bz2 gentoo-2-8c8aa1dc1919046ba94e3d118aa891465c228626.zip |
Future-proof src_uri. Implement readme.gentoo eclass to cut down on elog spam.
(Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key 0x2B2474AD43CE296E!)
Diffstat (limited to 'app-admin/eselect-infinality')
-rw-r--r-- | app-admin/eselect-infinality/ChangeLog | 5 | ||||
-rw-r--r-- | app-admin/eselect-infinality/eselect-infinality-1.ebuild | 15 |
2 files changed, 11 insertions, 9 deletions
diff --git a/app-admin/eselect-infinality/ChangeLog b/app-admin/eselect-infinality/ChangeLog index 1e42a99adac4..aa3a44313cca 100644 --- a/app-admin/eselect-infinality/ChangeLog +++ b/app-admin/eselect-infinality/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-admin/eselect-infinality # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-infinality/ChangeLog,v 1.3 2013/01/25 11:06:21 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-infinality/ChangeLog,v 1.4 2013/04/05 09:23:36 yngwin Exp $ + + 05 Apr 2013; Ben de Groot <yngwin@gentoo.org> eselect-infinality-1.ebuild: + Future-proof src_uri. Implement readme.gentoo eclass to cut down on elog spam. 25 Jan 2013; Agostino Sarubbo <ago@gentoo.org> eselect-infinality-1.ebuild: Stable for amd64, wrt bug #488550 diff --git a/app-admin/eselect-infinality/eselect-infinality-1.ebuild b/app-admin/eselect-infinality/eselect-infinality-1.ebuild index 20a317cc3b92..416d18adf0f2 100644 --- a/app-admin/eselect-infinality/eselect-infinality-1.ebuild +++ b/app-admin/eselect-infinality/eselect-infinality-1.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-infinality/eselect-infinality-1.ebuild,v 1.3 2013/01/25 11:06:21 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-infinality/eselect-infinality-1.ebuild,v 1.4 2013/04/05 09:23:36 yngwin Exp $ EAPI=4 -inherit vcs-snapshot +inherit vcs-snapshot readme.gentoo DESCRIPTION="Eselect module to choose an infinality font configuration style" HOMEPAGE="https://github.com/yngwin/eselect-infinality" -SRC_URI="${HOMEPAGE}/tarball/v1 -> ${P}.tar.gz" +SRC_URI="${HOMEPAGE}/tarball/v${PV} -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" @@ -17,13 +17,12 @@ IUSE="" RDEPEND="app-admin/eselect" DEPEND="" +DOC_CONTENTS="Use eselect infinality to select a font configuration style. +This is supposed to be used in pair with eselect lcdfilter." + src_install() { dodoc README.rst + readme.gentoo_create_doc insinto "/usr/share/eselect/modules" doins infinality.eselect } - -pkg_postinst() { - elog "Use eselect infinality to select a font configuration style." - elog "This is supposed to be used in pair with eselect lcdfilter." -} |