diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-11-26 07:23:04 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-11-26 07:23:04 +0000 |
commit | 8424d5d6290dc5c69f95a919ea035553ea81b455 (patch) | |
tree | 397757e216e437837c178bd309a0cffc856d82c0 /dev-libs/cyrus-sasl | |
parent | new webcam server software (diff) | |
download | gentoo-2-8424d5d6290dc5c69f95a919ea035553ea81b455.tar.gz gentoo-2-8424d5d6290dc5c69f95a919ea035553ea81b455.tar.bz2 gentoo-2-8424d5d6290dc5c69f95a919ea035553ea81b455.zip |
New ebuild. Currently marked unstable.
Diffstat (limited to 'dev-libs/cyrus-sasl')
-rw-r--r-- | dev-libs/cyrus-sasl/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/cyrus-sasl/cyrus-sasl-2.1.9.ebuild | 101 | ||||
-rw-r--r-- | dev-libs/cyrus-sasl/files/digest-cyrus-sasl-2.1.9 | 1 |
3 files changed, 109 insertions, 1 deletions
diff --git a/dev-libs/cyrus-sasl/ChangeLog b/dev-libs/cyrus-sasl/ChangeLog index 673f03eab8d8..753283938d78 100644 --- a/dev-libs/cyrus-sasl/ChangeLog +++ b/dev-libs/cyrus-sasl/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/cyrus-sasl # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/ChangeLog,v 1.22 2002/10/11 05:21:49 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/ChangeLog,v 1.23 2002/11/26 07:23:03 raker Exp $ + +*cyrus-sasl-2.1.9 (26 Nov 2002) + + 26 Nov 2002; Nick Hadaway <raker@gentoo.org> cyrus-sasl-2.1.9.ebuild, + files/digest-cyrus-sasl-2.1.9 : + New ebuild. Currently marked unstable. *cyrus-sasl-2.1.7-r3 (01 Oct 2002) diff --git a/dev-libs/cyrus-sasl/cyrus-sasl-2.1.9.ebuild b/dev-libs/cyrus-sasl/cyrus-sasl-2.1.9.ebuild new file mode 100644 index 000000000000..c5143180df3f --- /dev/null +++ b/dev-libs/cyrus-sasl/cyrus-sasl-2.1.9.ebuild @@ -0,0 +1,101 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/cyrus-sasl-2.1.9.ebuild,v 1.1 2002/11/26 07:23:03 raker Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="The Cyrus SASL (Simple Authentication and Security Layer)" +HOMEPAGE="http://asg.web.cmu.edu/sasl/" +SRC_URI="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/${P}.tar.gz" + +LICENSE="as-is" +SLOT="2" +KEYWORDS="~x86 -ppc -sparc -sparc64" + +RDEPEND=">=sys-libs/db-3.2 + >=sys-libs/pam-0.75 + >=dev-libs/openssl-0.9.6d + gdbm? ( >=sys-libs/gdbm-1.8.0 ) + berkdb? ( >=sys-libs/db-3.2.9 ) + ldap? ( >=net-nds/openldap-2.0.25 ) + mysql? ( >=dev-db/mysql-3.23.51 ) + kerberos? ( >=app-crypt/krb5-1.2.5 )" + +DEPEND="${RDEPEND} + sys-devel/libtool + sys-devel/autoconf + sys-devel/automake" + +src_compile() { + + local myconf + + libtoolize --copy --force + aclocal -I config -I cmulocal + autoheader + autoconf + automake -a --foreign + + use ldap && myconf="${myconf} --with-ldap" \ + || myconf="${myconf} --without-ldap" + + use mysql && myconf="${myconf} --with-mysql" \ + || myconf="${myconf} --without-mysql" + + if use berkdb; then + myconf="${myconf} --with-dblib=berkeley" + elif use gdbm; then + myconf="${myconf} --with-dblib=gdbm --with-gdbm=/usr" + else + myconf="${myconf} --with-dblib=berkeley" + fi + + use static && myconf="${myconf} --enable-static --with-staticsasl" \ + || myconf="${myconf} --disable-static --without-staticsasl" + + use kerberos && myconf="${myconf} --enable-gssapi" \ + || myconf="${myconf} --disable-gssapi" + + econf \ + --with-saslauthd=/var/lib/sasl2 \ + --with-pwcheck=/var/lib/sasl2 \ + --with-configdir=/etc/sasl2 \ + --with-openssl \ + --with-plugindir=/usr/lib/sasl2 \ + --with-dbpath=/etc/sasl2/sasldb2 \ + --with-des \ + --with-rc4 \ + --disable-krb4 \ + --with-gnu-ld \ + --enable-shared \ + --disable-sample \ + --enable-login \ + ${myconf} || die "bad ./configure" + + make || die "compile problem" +} + +src_install () { + + einstall || die "install problem" + + dodoc AUTHORS ChangeLog COPYING NEWS README doc/*.txt + docinto examples ; dodoc sample/{*.[ch],Makefile} + newdoc pwcheck/README README.pwcheck + dohtml doc/* + + dodir /var/lib/sasl2 + dodir /etc/sasl2 + # generate an empty sasldb2 with correct permissions + LD_OLD=${LD_LIBRARY_PATH} + export LD_LIBRARY_PATH=${S}/lib/.libs + echo "gentoo" | ${D}usr/sbin/saslpasswd2 -f ${D}etc/sasl2/sasldb2 -p cyrus + ${D}usr/sbin/saslpasswd2 -f ${D}etc/sasl2/sasldb2 -d cyrus + export LD_LIBRARY_PATH=${LD_OLD} + chown root.mail ${D}etc/sasl2/sasldb2 + chmod 0640 ${D}etc/sasl2/sasldb2 + + insinto /etc/conf.d ; newins ${FILESDIR}/saslauthd.confd saslauthd + exeinto /etc/init.d ; newexe ${FILESDIR}/saslauthd2.rc6 saslauthd + exeinto /etc/init.d ; newexe ${FILESDIR}/pwcheck.rc6 pwcheck +} diff --git a/dev-libs/cyrus-sasl/files/digest-cyrus-sasl-2.1.9 b/dev-libs/cyrus-sasl/files/digest-cyrus-sasl-2.1.9 new file mode 100644 index 000000000000..0db58593d207 --- /dev/null +++ b/dev-libs/cyrus-sasl/files/digest-cyrus-sasl-2.1.9 @@ -0,0 +1 @@ +MD5 19ac851b291a6631b8f8c2a2bebb7843 cyrus-sasl-2.1.9.tar.gz 1274451 |