67 lines
1.6 KiB
Bash
67 lines
1.6 KiB
Bash
|
# Copyright 1999-2007 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: $
|
||
|
|
||
|
inherit eutils multilib versionator
|
||
|
|
||
|
MY_PV=$(replace_version_separator 3 '-')
|
||
|
|
||
|
DESCRIPTION="Fedora Directory Server (base)"
|
||
|
HOMEPAGE="http://directory.fedora.redhat.com/"
|
||
|
SRC_URI="ftp://mars.arge.at/fedora-ds/adminutil-${MY_PV}.tar.bz2"
|
||
|
|
||
|
LICENSE="GPL-2-with-exceptions"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
IUSE="sasl ipv6 debug"
|
||
|
|
||
|
S="${WORKDIR}/adminutil-${MY_PV}"
|
||
|
|
||
|
DEPEND=">=dev-libs/nss-3.11.4
|
||
|
>=dev-libs/nspr-4.6.4
|
||
|
>=dev-libs/svrcore-4.0.3
|
||
|
>=dev-libs/mozldap-6.0.2
|
||
|
sasl? ( >=dev-libs/cyrus-sasl-2.1.19 )
|
||
|
>=dev-libs/icu-3.4"
|
||
|
|
||
|
src_unpack() {
|
||
|
unpack ${A}
|
||
|
epatch ${FILESDIR}/adminutil-1.1.4-no_icu_pc.patch
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
if use amd64 ; then
|
||
|
myconf="${myconf} --enable-64bit"
|
||
|
elif use sasl ; then
|
||
|
myconf="${myconf} --with-sasl=yes"
|
||
|
else
|
||
|
myconf=""
|
||
|
fi
|
||
|
|
||
|
econf $(use_enable debug) \
|
||
|
${myconf} \
|
||
|
--with-fhs \
|
||
|
|| die "econf failed"
|
||
|
emake || die "emake failed"
|
||
|
|
||
|
# --with-nspr=yes \
|
||
|
# --with-nss=yes \
|
||
|
# --with-ldapsdk=yes \
|
||
|
# --with-db=yes \
|
||
|
# --with-svrcore=yes \
|
||
|
# --with-icu=yes \
|
||
|
|
||
|
}
|
||
|
|
||
|
src_install () {
|
||
|
emake DESTDIR=${D} install || die "emake failed"
|
||
|
|
||
|
# remove redhat style init script
|
||
|
# rm -rf ${D}/etc/rc.d
|
||
|
|
||
|
# cope with libraries being in /usr/lib/fedora-ds
|
||
|
# dodir /etc/env.d
|
||
|
# echo "LDPATH=/usr/$(get_libdir)/fedora-ds" > ${D}/etc/env.d/08fedora-ds
|
||
|
|
||
|
}
|