blob: 6b38e12b8e70a46b0d0d11151ab4990f72bde29a (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# 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.10.ebuild,v 1.3 2002/12/27 21:50:27 aliz 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 "
IUSE="gdbm berkdb ldap mysql kerberos"
inherit eutils
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? ( virtual/krb5 )"
DEPEND="${RDEPEND}
sys-devel/libtool
sys-devel/autoconf
sys-devel/automake"
src_unpack() {
unpack ${A} ; cd ${S}
# Fix depends for heimdal needed in saslv2 too
epatch ${FILESDIR}/${PN}2-heimdal-deps.patch
}
src_compile() {
local myconf
libtoolize --copy --force
aclocal -I config -I cmulocal || die
autoheader || die
automake -a --foreign || die
autoconf || die
autoconf saslauthd/configure.in > saslauthd/configure || die
chmod +x saslauthd/configure || die
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=/usr" \
|| 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 MAKE=emake || 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
}
|