blob: 3fec23af1ade7d7b5ca3544b8ef38fef4ba98d22 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-fs/am-utils/am-utils-6.0.9.ebuild,v 1.3 2003/09/07 00:11:41 msterret Exp $
IUSE="ldap"
S=${WORKDIR}/${P}
DESCRIPTION="amd automounter and utilities"
HOMEPAGE="http://www.am-utils.org"
SRC_URI="ftp://ftp.am-utils.org/pub/am-utils/${P}.tar.gz"
DEPEND="virtual/glibc
ldap? ( >=net-nds/openldap-1.2 )"
SLOT="0"
LICENSE="BSD"
KEYWORDS="x86"
src_compile() {
local myconf
use ldap \
&& myconf="${myconf} --without-ldap" \
|| myconf="${myconf} --with-ldap"
myconf="${myconf} --sysconfdir=/etc/amd"
cd ${S}
econf ${myconf} || die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR=${D} install || die
cp ${FILESDIR}/amd.conf ${D}/etc/amd
cp ${FILESDIR}/amd.net ${D}/etc/amd
exeinto /etc/init.d ; newexe ${FILESDIR}/amd.rc amd
}
|