blob: aaba7c7b89b673228d6cb814ea2a00229a4af0ab (
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
|
# 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-r3.ebuild,v 1.2 2002/07/07 13:00:35 aliz Exp $
S=${WORKDIR}/cracklib,${PV}
DESCRIPTION="Cracklib"
SRC_URI="ftp://ftp.debian.org/debian/dists/potato/main/source/utils/cracklib2_${PV}.orig.tar.gz"
LICENSE="CRACKLIB"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
patch -p1 <${FILESDIR}/${P}-redhat.patch || die
patch -p1 <${FILESDIR}/${P}-gentoo.diff || die
}
src_compile() {
# Parallel make does not work for 2.7
make all
}
src_install() {
dodir /usr/{lib,sbin,include} /usr/share/cracklib
make DESTDIR=${D} install || die
mv ${D}/usr/lib ${D}
preplib /
insinto /usr/lib
doins ${FILESDIR}/dict/cracklib_dict.*
dodoc HISTORY LICENCE MANIFEST POSTER README
}
|