# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/cyrus-sasl-1.5.27-r5.ebuild,v 1.10 2004/06/24 23:04:13 agriffis Exp $ IUSE="kerberos" DESCRIPTION="The Cyrus SASL (Simple Authentication and Security Layer)" HOMEPAGE="http://asg.web.cmu.edu/cyrus/" S=${WORKDIR}/${P} SRC_URI="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/${P}.tar.gz" LICENSE="as-is" SLOT="1" KEYWORDS="x86 sparc ppc" RDEPEND="virtual/glibc >=sys-libs/db-3.2 >=sys-libs/pam-0.75 kerberos? ( >=app-crypt/mit-krb5-1.2.5 )" DEPEND="${RDEPEND} >=sys-devel/automake-1.6.1-r2" # need automake for fixed automake-1.5 support. src_unpack() { unpack ${A} ; cd ${S} # some nice patches... thanks mandrake ;-) patch -p1 < ${FILESDIR}/${PN}-1.5.21-des.patch || die patch -p1 < ${FILESDIR}/${PN}-configdir.patch || die patch -p1 < ${FILESDIR}/${PN}-saslauthd.patch || die patch -p1 < ${FILESDIR}/${PN}-1.5.24-rpath.patch || die patch -p0 < ${FILESDIR}/${PN}-1.5.27-scram.patch || die # fix gcc3.2 brokenness patch -p0 < ${FILESDIR}/${PN}-gcc32.patch || die # this script distributed with the package is too # old, so remove it, as "automake --add-missing" # will install the new one if its not found. rm -f ${S}/config/missing libtoolize --copy --force export WANT_AUTOMAKE_1_5=1 aclocal -I cmulocal || die automake --add-missing || die autoconf || die } src_compile() { ./configure \ --prefix=/usr \ --libdir=/usr/lib \ --mandir=/usr/share/man \ --with-configdir=/etc/sasl \ --with-pwcheck=/var/lib/sasl \ --with-plugindir=/usr/lib/sasl \ --with-saslauthd=/var/lib/sasl \ --with-dbpath=/var/lib/sasl/sasl.db \ --with-des \ --with-rc4 \ --enable-pam \ --enable-anon \ --enable-cram \ --with-gnu-ld \ --enable-scram \ --enable-plain \ --enable-login \ --disable-krb4 \ --enable-static \ --enable-shared \ --without-mysql \ --enable-digest \ --enable-gssapi \ --disable-sample \ --with-dblib=berkeley \ --host=${CHOST} ${myconf} || die "bad ./configure" make || die "compile problem" } src_install () { make DESTDIR=${D} install || die dodoc COPYING AUTHORS INSTALL NEWS README* TODO \ ChangeLog testing.txt doc/*.txt docinto examples ; dodoc sample/{*.[ch],Makefile} newdoc pwcheck/README README.pwcheck dohtml doc/* insinto /etc/conf.d ; newins ${FILESDIR}/saslauthd.conf saslauthd exeinto /etc/init.d ; newexe ${FILESDIR}/saslauthd.rc6 saslauthd exeinto /etc/init.d ; newexe ${FILESDIR}/pwcheck.rc6 pwcheck } pkg_postinst() { # empty directories.. install -d -m0755 ${ROOT}/var/lib/sasl install -d -m0755 ${ROOT}/etc/sasl }