diff options
author | Torsten Veller <tove@gentoo.org> | 2009-11-11 07:51:00 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2009-11-11 07:51:00 +0000 |
commit | 5aade83e9ce1f2184eeae478c9e330f0347bd05f (patch) | |
tree | 4d296968394848f36b998b94bd3bc76de6206cf1 /dev-perl | |
parent | Bug #270161: libusb cleanup. Compiles fine, don't have the hardware to test f... (diff) | |
download | gentoo-2-5aade83e9ce1f2184eeae478c9e330f0347bd05f.tar.gz gentoo-2-5aade83e9ce1f2184eeae478c9e330f0347bd05f.tar.bz2 gentoo-2-5aade83e9ce1f2184eeae478c9e330f0347bd05f.zip |
Use versionator. Don't install Build.pl.
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Diffstat (limited to 'dev-perl')
-rw-r--r-- | dev-perl/Lingua-EN-Inflect/ChangeLog | 6 | ||||
-rw-r--r-- | dev-perl/Lingua-EN-Inflect/Lingua-EN-Inflect-1.89.1.ebuild | 19 |
2 files changed, 17 insertions, 8 deletions
diff --git a/dev-perl/Lingua-EN-Inflect/ChangeLog b/dev-perl/Lingua-EN-Inflect/ChangeLog index a058c85dc659..fa7fb8a6ca31 100644 --- a/dev-perl/Lingua-EN-Inflect/ChangeLog +++ b/dev-perl/Lingua-EN-Inflect/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-perl/Lingua-EN-Inflect # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Lingua-EN-Inflect/ChangeLog,v 1.19 2009/11/10 10:55:40 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Lingua-EN-Inflect/ChangeLog,v 1.20 2009/11/11 07:51:00 tove Exp $ + + 11 Nov 2009; Torsten Veller <tove@gentoo.org> + Lingua-EN-Inflect-1.89.1.ebuild: + Use versionator. Don't install Build.pl. *Lingua-EN-Inflect-1.89.1 (10 Nov 2009) diff --git a/dev-perl/Lingua-EN-Inflect/Lingua-EN-Inflect-1.89.1.ebuild b/dev-perl/Lingua-EN-Inflect/Lingua-EN-Inflect-1.89.1.ebuild index a1d6b4e83e39..9bc508133b63 100644 --- a/dev-perl/Lingua-EN-Inflect/Lingua-EN-Inflect-1.89.1.ebuild +++ b/dev-perl/Lingua-EN-Inflect/Lingua-EN-Inflect-1.89.1.ebuild @@ -1,20 +1,25 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/Lingua-EN-Inflect/Lingua-EN-Inflect-1.89.1.ebuild,v 1.2 2009/11/10 21:55:45 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Lingua-EN-Inflect/Lingua-EN-Inflect-1.89.1.ebuild,v 1.3 2009/11/11 07:51:00 tove Exp $ +EAPI=2 + +inherit versionator MODULE_AUTHOR="DCONWAY" -# not done with versionator because it needs to be defined before perl-module is -# inherited. -MY_P="${PN}-1.891" +MY_P="${PN}-$(delete_version_separator 2)" S="${WORKDIR}/${MY_P}" inherit perl-module DESCRIPTION="Perl module for Lingua::EN::Inflect" -SRC_TEST="do" SLOT="0" -LICENSE="Artistic" KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" -DEPEND="dev-lang/perl" +SRC_TEST="do" + +src_prepare() { + perl-module_src_prepare + rm "${S}"/Build.pl || die + sed -i "/^Build.pl/d" "${S}"/MANIFEST || die +} |