blob: 752cdd59d71eee97bb90cf3c53575c5fb7e570aa (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.7-r2.ebuild,v 1.5 2002/07/10 16:26:56 aliz Exp $
A=cracklib2_${PV}.orig.tar.gz
A0=${P}-redhat.patch
S=${WORKDIR}/cracklib,${PV}
DESCRIPTION="Cracklib"
SRC_URI="ftp://ftp.debian.org/debian/dists/potato/main/source/utils/${A}"
LICENSE="CRACKLIB"
KEYWORDS="x86"
SLOT="0"
HOMEPAGE="http://www.users.dircon.co.uk/~crypto/"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
patch -p1 <${FILESDIR}/${A0}
patch -p1 <${FILESDIR}/${P}-gentoo.diff
}
src_compile() {
# Parallel make does not work for 2.7
try make all
}
src_install() {
dodir /usr/lib
dodir /usr/sbin
dodir /usr/include
dodir /usr/share/cracklib
try make DESTDIR=${D} install
mv ${D}/usr/lib ${D}
preplib /
dodoc HISTORY LICENCE MANIFEST POSTER README
}
|