| 1 |
# Copyright 1999-2007 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-perl/module-build/module-build-0.28.08.ebuild,v 1.1 2007/04/29 22:00:40 mcummings Exp $
|
| 4 |
|
| 5 |
inherit versionator perl-module
|
| 6 |
|
| 7 |
MY_PV="$(delete_version_separator 2)"
|
| 8 |
MY_P="Module-Build-${MY_PV}"
|
| 9 |
S=${WORKDIR}/${MY_P}
|
| 10 |
DESCRIPTION="Build and install Perl modules"
|
| 11 |
HOMEPAGE="http://search.cpan.org/~kwilliams/"
|
| 12 |
SRC_URI="mirror://cpan/authors/id/K/KW/KWILLIAMS/${MY_P}.tar.gz"
|
| 13 |
|
| 14 |
LICENSE="|| ( Artistic GPL-2 )"
|
| 15 |
SLOT="0"
|
| 16 |
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
| 17 |
IUSE="test"
|
| 18 |
|
| 19 |
# Removing these as hard deps. They are listed as recommended in the Build.PL,
|
| 20 |
# but end up causing a dep loop since they require module-build to be built.
|
| 21 |
# ~mcummings 06.16.06
|
| 22 |
PDEPEND=">=dev-perl/ExtUtils-CBuilder-0.15
|
| 23 |
>=dev-perl/extutils-parsexs-1.02"
|
| 24 |
|
| 25 |
DEPEND="dev-lang/perl
|
| 26 |
dev-perl/yaml
|
| 27 |
test? ( dev-perl/version )
|
| 28 |
>=dev-perl/Archive-Tar-1.09"
|
| 29 |
|
| 30 |
SRC_TEST="do"
|