blob: 27cbf2e9bdb11f1d1a4bbcc1f972d04ad4e1791e (
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
25
26
27
28
29
30
31
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Crypt-Cracklib/Crypt-Cracklib-0.01.ebuild,v 1.6 2004/08/14 14:38:50 swegener Exp $
inherit perl-module
AUTHOR="DANIEL"
DESCRIPTION="Perl interface to Alec Muffett's Cracklib"
HOMEPAGE="http://search.cpan.org/author/${AUTHOR}/${P}/"
SRC_URI_BASE="http://search.cpan.org/CPAN/authors/id/${AUTHOR:0:1}/${AUTHOR:0:2}/${AUTHOR}/"
SRC_URI="${SRC_URI_BASE}/${P}.tar.gz"
SLOT="0"
LICENSE="Artistic"
KEYWORDS="x86"
IUSE=""
mydoc="Changes"
DEPEND="${DEPEND}
sys-libs/cracklib"
src_compile() {
# this ebuild is very non-standard it seems
echo -en "/usr/include\n/usr/lib\n"| perl Makefile.PL
emake
}
src_install() {
myinst="DESTDIR=${D}"
perl-module_src_install
}
|