blob: 5329452dfaa987545f8611c620aa3051116ee398 (
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
49
50
51
52
53
54
55
56
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/cracklib/cracklib-2.8.3-r1.ebuild,v 1.12 2005/08/07 09:49:34 vapier Exp $
inherit eutils toolchain-funcs multilib
MY_P=${P/_}
DESCRIPTION="Password Checking Library"
HOMEPAGE="http://sourceforge.net/projects/cracklib"
SRC_URI="mirror://sourceforge/cracklib/${MY_P}.tar.gz"
LICENSE="CRACKLIB"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ~ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=""
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/cracklib-2.8.3-dictname.patch
epatch "${FILESDIR}"/cracklib-2.8.3-packer-defines.patch
epunt_cxx
}
src_compile() {
econf --disable-dependency-tracking || die
emake || die
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
rm -r "${D}"/usr/share/cracklib
insinto /usr/include
doins lib/packer.h || die "doins packer.h"
# move shared libs to /
dodir /$(get_libdir)
mv "${D}"/usr/$(get_libdir)/*.so* "${D}"/$(get_libdir)/ || die "could not move shared"
gen_usr_ldscript libcrack.so
echo -n "Generating cracklib dicts ... "
insinto /usr/share/dict
doins dicts/cracklib-small || die "word dict"
tc-is-cross-compiler \
|| export PATH=${D}/usr/sbin:${PATH} LD_LIBRARY_PATH=${D}/$(get_libdir)
cracklib-format dicts/cracklib-small \
| cracklib-packer "${D}"/usr/$(get_libdir)/cracklib_dict \
|| die "couldnt create dict"
dodoc AUTHORS ChangeLog NEWS README*
}
|