blob: aa8238d38bdf2467b0b0726bfc094f9540fec9d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Inline/Test-Inline-0.15-r1.ebuild,v 1.7 2004/06/25 01:02:57 agriffis Exp $
inherit perl-module
MY_P=Test-Inline-${PV}
DESCRIPTION="Inline test suite support for Perl"
HOMEPAGE="http://search.cpan.org/search?dist=Test-Inline"
SRC_URI="http://www.cpan.org/modules/by-module/Test/${MY_P}.tar.gz"
LICENSE="Artistic | GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha hppa amd64"
DEPEND="dev-perl/Memoize
dev-perl/Test-Simple"
S=${WORKDIR}/${MY_P}
src_compile() {
perl-module_src_compile
perl-module_src_test || die "test failed"
}
|