blob: 2d36dbf27fd63ed50d2f838e42dfd0453a173c6c (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/cpu/cpu-1.3.100.ebuild,v 1.5 2003/09/20 19:56:29 aliz Exp $
inherit eutils
DESCRIPTION="LDAP user management tool written in C and loosely based on FreeBSD's pw(8)"
HOMEPAGE="http://cpu.sourceforge.net/"
SRC_URI="mirror://sourceforge/cpu/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
RDEPEND="net-nds/openldap
sys-libs/cracklib"
DEPEND="${RDEPEND}
>=sys-devel/autoconf-2.54"
WANT_AUTOCONF_2_5=1
pkg_setup() {
if use static; then
eerror "Sorry, the package does NOT support static building."
fi
return 0
}
src_compile() {
# The package has a history of bad configure files...
epatch ${FILESDIR}/${P}-fixup.patch
autoconf
local myconf
# provide PASSWD support as well
# It's broken in the application at the moment, so lets not...
# myconf="${myconf} --with-passwd"
# Tell it where to find LDAP
myconf="${myconf} --with-ldap=/usr"
# Tell it where to find CRACKLIB
myconf="${myconf} --with-libcrack=/usr"
# cache our config!
myconf="${myconf} --cache-file=${S}/config.cache"
econf ${myconf} || die "Configure failure"
emake || die "Make failure"
}
src_install() {
einstall || die "Einstall failure"
dodoc AUTHORS COPYING ChangeLog NEWS README TODO
}
|