blob: e109322f48c668d2616ed76a5dbde81a5d8fed41 (
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
|
# 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-r6.ebuild,v 1.10 2004/07/02 04:36:28 eradicator Exp $
inherit eutils
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 ppc ~sparc"
RDEPEND="virtual/libc
>=sys-libs/db-3.2
>=sys-libs/pam-0.75
kerberos? ( virtual/krb5 )"
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 ;-)
epatch ${FILESDIR}/${PN}-1.5.21-des.patch
epatch ${FILESDIR}/${PN}-configdir.patch
epatch ${FILESDIR}/${PN}-saslauthd.patch
epatch ${FILESDIR}/${PN}-1.5.24-rpath.patch
epatch ${FILESDIR}/${PN}-1.5.27-scram.patch
# fix gcc3.2 brokenness
epatch ${FILESDIR}/${PN}-gcc32.patch
# fix dependencies for heimdal. We have a /usr/lib/libgssapi.la, so
# we may as well use it.
epatch ${FILESDIR}/${PN}-heimdal-deps.patch
# 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"
emake || 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
}
|