diff options
author | Torsten Veller <tove@gentoo.org> | 2012-06-18 04:28:07 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2012-06-18 04:28:07 +0000 |
commit | 135f284ee1e53c43c87c94c38ceb7138997dda7e (patch) | |
tree | ad653bfb1074a440f7abae55950e9d3183ce794a /dev-perl/OOTools/OOTools-2.300.0.ebuild | |
parent | Add System category to desktop file by Jekyll Wu (bug #421515). Remove unused... (diff) | |
download | gentoo-2-135f284ee1e53c43c87c94c38ceb7138997dda7e.tar.gz gentoo-2-135f284ee1e53c43c87c94c38ceb7138997dda7e.tar.bz2 gentoo-2-135f284ee1e53c43c87c94c38ceb7138997dda7e.zip |
Fix pod encoding (#421667). Add test dependencies
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'dev-perl/OOTools/OOTools-2.300.0.ebuild')
-rw-r--r-- | dev-perl/OOTools/OOTools-2.300.0.ebuild | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/dev-perl/OOTools/OOTools-2.300.0.ebuild b/dev-perl/OOTools/OOTools-2.300.0.ebuild index 40a024b474f6..3d07ab0ae0b2 100644 --- a/dev-perl/OOTools/OOTools-2.300.0.ebuild +++ b/dev-perl/OOTools/OOTools-2.300.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/OOTools/OOTools-2.300.0.ebuild,v 1.1 2012/03/29 17:53:23 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/OOTools/OOTools-2.300.0.ebuild,v 1.2 2012/06/18 04:28:07 tove Exp $ EAPI=4 @@ -9,13 +9,23 @@ MODULE_VERSION=2.3 inherit perl-module DESCRIPTION="Pragma to implement lvalue accessors with options" +SRC_URI+=" http://dev.gentoo.org/~tove/distfiles/${CATEGORY}/${PN}/${P}-patch.tar.bz2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" +IUSE="test" DEPEND=" virtual/perl-Module-Build + test? ( + dev-perl/Test-Pod + dev-perl/Test-Pod-Coverage + ) " SRC_TEST=do + +EPATCH_SUFFIX=patch +PATCHES=( + "${WORKDIR}"/${MY_PN:-${PN}}-patch +) |