# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imspd/cyrus-imspd-1.7b-r1.ebuild,v 1.3 2007/04/22 09:11:11 ticho Exp $ inherit eutils ssl-cert DESCRIPTION="Internet Message Support Protocol (IMSP) server." HOMEPAGE="http://asg.web.cmu.edu/cyrus/" SRC_URI="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/${PN}-v${PV}.tar.gz" LICENSE="as-is" SLOT="0" KEYWORDS="~x86" IUSE="kerberos ldap ssl" RDEPEND=">=sys-libs/db-3.2 >=dev-libs/cyrus-sasl-2.1.3 >=dev-libs/cyrus-imap-dev-2.1.14 kerberos? ( virtual/krb5 ) ldap? ( >=net-nds/openldap-2.0 ) ssl? ( >=net-misc/stunnel-4 )" DEPEND="${RDEPEND} >=sys-apps/sed-4 >=sys-devel/autoconf-2.58 sys-devel/automake sys-devel/libtool" S="${WORKDIR}/${PN}-v${PV}" src_unpack() { unpack ${A} && cd "${S}" epatch "${FILESDIR}/cyrus-imspd-db4.patch" epatch "${FILESDIR}/cyrus-imspd-gentoo.patch" # Cyrus 2.2.x has an extra library. if [ "`best_version '=dev-libs/cyrus-imap-dev-2.2*'`" ] ; then sed -e "s:-lcyrus:-lcyrus -lcyrus_min:" \ -i "${S}/imsp/Makefile.in" \ -i "${S}/cmulocal/libcyrus.m4" || die "sed failed" fi export WANT_AUTOCONF=2.5 touch config.{guess,sub} # Recreate configure. ebegin "Recreating configure" rm -f configure acconfig.h aclocal -I cmulocal && autoheader && autoconf || \ die "recreate configure failed" eend $? } src_compile() { local myconf myconf="${myconf} `use_with ldap ldap ldap`" myconf="${myconf} `use_enable kerberos gssapi`" econf \ --without-krb \ --with-auth=unix \ ${myconf} || die "econf failed" # Fix some malloc definitions sed -i -e \ 's~extern char \*malloc()~extern void *malloc()~g' imsp/*.c emake || die "compile problem" } src_install() { newsbin imsp/cyrus-imspd imspd newinitd "${FILESDIR}/imspd.rc6" imspd newconfd "${FILESDIR}/imspd.conf" imspd keepdir /var/imsp{,/user} if use ssl ; then insinto /etc/stunnel newins "${FILESDIR}/stunnel.conf" imspd.conf dosed "s:#IMSPD_USE_SSL:IMSPD_USE_SSL:" /etc/conf.d/imspd SSL_ORGANIZATION="${SSL_ORGANIZATION:-Cyrus IMSP Server}" insinto /etc/ssl/imspd docert server fi dodoc README imsp/options.sample notes/* }