diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 20:07:22 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 20:07:22 +0000 |
commit | 2c54739922fca980d3994f87e0b05054c382882d (patch) | |
tree | 41f54bd386c84b8876df08043ed6d8fb842b6654 /net-mail/uw-imap | |
parent | Changed mkdir ${D} to dodir ${D} (diff) | |
download | gentoo-2-2c54739922fca980d3994f87e0b05054c382882d.tar.gz gentoo-2-2c54739922fca980d3994f87e0b05054c382882d.tar.bz2 gentoo-2-2c54739922fca980d3994f87e0b05054c382882d.zip |
Changed mkdir ${D} to dodir ${D}
Diffstat (limited to 'net-mail/uw-imap')
-rw-r--r-- | net-mail/uw-imap/uw-imap-2001a-r3.ebuild | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/net-mail/uw-imap/uw-imap-2001a-r3.ebuild b/net-mail/uw-imap/uw-imap-2001a-r3.ebuild index e4154880cc73..9c47d993770d 100644 --- a/net-mail/uw-imap/uw-imap-2001a-r3.ebuild +++ b/net-mail/uw-imap/uw-imap-2001a-r3.ebuild @@ -1,8 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2001a-r3.ebuild,v 1.4 2002/10/20 18:52:11 vapier Exp $ - -IUSE="ssl mbox" +# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2001a-r3.ebuild,v 1.5 2002/11/30 20:07:22 vapier Exp $ PN0=imap S=${WORKDIR}/${PN0}-${PV} @@ -11,17 +9,17 @@ DESCRIPTION="UW server daemons for IMAP and POP network mail protocols." SRC_URI="ftp://ftp.cac.washington.edu/${PN0}/${PN0}-${PV}.tar.Z" HOMEPAGE="http://www.washington.edu/imap/" +LICENSE="as-is" +SLOT="0" +KEYWORDS="x86 sparc sparc64" +IUSE="ssl mbox" + PROVIDE="virtual/imapd" DEPEND="virtual/glibc >=sys-libs/pam-0.72 ssl? ( dev-libs/openssl )" -LICENSE="as-is" -SLOT="0" -KEYWORDS="x86 sparc sparc64" - src_unpack() { - unpack ${A} # Set CFLAGS @@ -44,11 +42,9 @@ src_unpack() { || die "patch failed" export EXTRACFLAGS=-DMAILSUBDIR=\"mail\" fi - } src_compile() { - if use ssl; then cd ${S} make lnp SPECIALAUTHENTICATORS=ssl SSLTYPE=unix \ @@ -79,16 +75,14 @@ EOF else make lnp || die fi - } src_install() { - into /usr dosbin imapd/imapd ipopd/ipop?d if use ssl; then - mkdir -p ${D}/usr/ssl/certs + dodir /usr/ssl/certs mv imapd.pem ${D}/usr/ssl/certs mv ipop3d.pem ${D}/usr/ssl/certs fi |