summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2005-01-28 11:58:01 +0000
committerAndrej Kacian <ticho@gentoo.org>2005-01-28 11:58:01 +0000
commitd40dbf857b56b9da795f3717d1f485384f59a3ea (patch)
treec67f3b3a48dc5c06f0776251d1509c44aa6fe18f /net-mail
parentVersion bump. (diff)
downloadgentoo-2-d40dbf857b56b9da795f3717d1f485384f59a3ea.tar.gz
gentoo-2-d40dbf857b56b9da795f3717d1f485384f59a3ea.tar.bz2
gentoo-2-d40dbf857b56b9da795f3717d1f485384f59a3ea.zip
Removing old ebuild.
(Portage version: 2.0.51-r15)
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/uw-imap/ChangeLog5
-rw-r--r--net-mail/uw-imap/files/digest-uw-imap-2002e-r41
-rw-r--r--net-mail/uw-imap/uw-imap-2002e-r4.ebuild126
3 files changed, 4 insertions, 128 deletions
diff --git a/net-mail/uw-imap/ChangeLog b/net-mail/uw-imap/ChangeLog
index d79147d090a4..64e194145d72 100644
--- a/net-mail/uw-imap/ChangeLog
+++ b/net-mail/uw-imap/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-mail/uw-imap
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.49 2005/01/28 11:54:46 ticho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/ChangeLog,v 1.50 2005/01/28 11:58:01 ticho Exp $
+
+ 28 Jan 2005; Andrej Kacian <ticho@gentoo.org> -uw-imap-2002e-r4.ebuild:
+ Removing aging ebuild.
*uw-imap-2004c (28 Jan 2005)
diff --git a/net-mail/uw-imap/files/digest-uw-imap-2002e-r4 b/net-mail/uw-imap/files/digest-uw-imap-2002e-r4
deleted file mode 100644
index cbbff9d87969..000000000000
--- a/net-mail/uw-imap/files/digest-uw-imap-2002e-r4
+++ /dev/null
@@ -1 +0,0 @@
-MD5 0d246d868f20d8c441d235b77c940676 imap-2002e.tar.Z 2157511
diff --git a/net-mail/uw-imap/uw-imap-2002e-r4.ebuild b/net-mail/uw-imap/uw-imap-2002e-r4.ebuild
deleted file mode 100644
index df3d5e68dcdf..000000000000
--- a/net-mail/uw-imap/uw-imap-2002e-r4.ebuild
+++ /dev/null
@@ -1,126 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/uw-imap/uw-imap-2002e-r4.ebuild,v 1.10 2005/01/08 13:14:18 slarti Exp $
-
-inherit flag-o-matic
-
-MY_P=imap-${PV}
-S=${WORKDIR}/${MY_P}
-
-DESCRIPTION="UW server daemons for IMAP and POP network mail protocols."
-SRC_URI="ftp://ftp.cac.washington.edu/imap/${MY_P}.tar.Z"
-HOMEPAGE="http://www.washington.edu/imap/"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="x86 sparc ppc hppa alpha amd64"
-IUSE="ssl pic kerberos"
-
-PROVIDE="virtual/imapd"
-PROVIDE="${PROVIDE} virtual/imap-c-client"
-DEPEND="!net-mail/vimap
- !virtual/imap-c-client
- virtual/libc
- >=sys-libs/pam-0.72
- ssl? ( dev-libs/openssl )
- kerberos? ( virtual/krb5 )"
-
-src_unpack() {
- unpack ${A}
- # Tarball packed with bad file perms
- chmod -R ug+w ${S}
-
- use pic || use alpha && append-flags -fPIC
-
- cd ${S}/src/osdep/unix/
- cp Makefile Makefile.orig
- sed \
- -e 's,-g -fno-omit-frame-pointer -O6,${CFLAGS},g' \
- -e 's,SSLDIR=/usr/local/ssl,SSLDIR=/usr,g' \
- -e 's,SSLCERTS=$(SSLDIR)/certs,SSLCERTS=/etc/ssl/certs,g' \
- < Makefile.orig > Makefile
-
- # Uncomment this for MBX support
- #cp Makefile Makefile.orig2
- #sed \
- # -e "s:CREATEPROTO=unixproto:CREATEPROTO=mbxproto:" \
- # -e "s:EMPTYPROTO=unixproto:EMPTYPROTO=mbxproto:" \
- # < Makefile.orig2 > Makefile
- cd ${S}
-}
-
-src_compile() {
- local mymake
-
- use kerberos && echo kerberos
- use ssl && echo ssl
- use kerberos \
- && mymake="EXTRAAUTHENTICATORS=gss"
- if use ssl; then
- cd ${S}
- echo ${mymake}
- yes | make lnp ${mymake} SSLTYPE=unix || die
-
- local i
- for i in imapd ipop3d; do
- umask 077
- PEM1=`/bin/mktemp ${T}/openssl.XXXXXX`
- PEM2=`/bin/mktemp ${T}/openssl.XXXXXX`
- /usr/bin/openssl req -newkey rsa:1024 -keyout $$PEM1 \
- -nodes -x509 -days 365 -out $$PEM2 << EOF
---
-SomeState
-SomeCity
-SomeOrganization
-SomeOrganizationalUnit
-localhost.localdomain
-root@localhost.localdomain
-EOF
-
- cat $$PEM1 > ${i}.pem
- echo "" >> ${i}.pem
- cat $$PEM2 >> ${i}.pem
- rm $$PEM1 $$PEM2
- umask 022
- done
- else
- yes | make lnp ${mymake} SSLTYPE=none || die
- fi
-}
-
-src_install() {
- into /usr
- dosbin imapd/imapd ipopd/ipop?d dmail/dmail tmail/tmail
- dobin mailutil/mailutil mlock/mlock mtest/mtest
-
- if use ssl; then
- dodir /etc/ssl/certs
- mv imapd.pem ${D}/etc/ssl/certs
- mv ipop3d.pem ${D}/etc/ssl/certs
- fi
-
- insinto /usr/include/imap
- doins c-client/{c-client,mail,imap4r1,rfc822,linkage,misc,smtp,nntp}.h
- doins c-client/{osdep,env_unix,env,fs,ftl,nl,tcp}.h
- dolib.a c-client/c-client.a
- dosym /usr/lib/c-client.a /usr/lib/libc-client.a
-
- doman src/ipopd/ipopd.8c src/imapd/imapd.8c
- doman src/dmail/dmail.1 src/tmail/tmail.1 src/mailutil/mailutil.1
-
- dodoc CPYRIGHT README docs/*.txt docs/CONFIG docs/RELNOTES
-
- docinto rfc
- dodoc docs/rfc/*.txt
-
- # gentoo config stuff
- insinto /etc/pam.d
- newins ${FILESDIR}/uw-imap.pam-system-auth imap
- newins ${FILESDIR}/uw-imap.pam-system-auth pop
- insinto /etc/xinetd.d
- newins ${FILESDIR}/uw-imap.xinetd imap
- newins ${FILESDIR}/uw-ipop2.xinetd ipop2
- newins ${FILESDIR}/uw-ipop3.xinetd ipop3
- newins ${FILESDIR}/uw-ipop3s.xinetd ipop3s
- newins ${FILESDIR}/uw-imaps.xinetd imaps
-}