diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-09-11 21:16:16 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-09-11 21:16:16 +0000 |
commit | 30a8eff3f1202a5329dd1f5b90dd75418c4dd5a3 (patch) | |
tree | 3e31ea7489f90e3fbd012797055de3eb1f962a8e /net-mail/uw-imap | |
parent | Version bumped. (diff) | |
download | historical-30a8eff3f1202a5329dd1f5b90dd75418c4dd5a3.tar.gz historical-30a8eff3f1202a5329dd1f5b90dd75418c4dd5a3.tar.bz2 historical-30a8eff3f1202a5329dd1f5b90dd75418c4dd5a3.zip |
Version bumped.
Diffstat (limited to 'net-mail/uw-imap')
-rw-r--r-- | net-mail/uw-imap/Manifest | 4 | ||||
-rw-r--r-- | net-mail/uw-imap/files/digest-uw-imap-2002e | 1 | ||||
-rw-r--r-- | net-mail/uw-imap/uw-imap-2002e.ebuild | 115 |
3 files changed, 118 insertions, 2 deletions
diff --git a/net-mail/uw-imap/Manifest b/net-mail/uw-imap/Manifest index 62cf91cea5ff..e3213a2f61ec 100644 --- a/net-mail/uw-imap/Manifest +++ b/net-mail/uw-imap/Manifest @@ -1,8 +1,8 @@ -MD5 9b0df9f2801db738295c6beebdc61e21 ChangeLog 3976 +MD5 111fe1aa49bc0bb41ffa47b53351a40e ChangeLog 4097 MD5 116193b597a62c725b6d451f6503d5c7 uw-imap-2002d.ebuild 2578 MD5 5721b86fd871bdfab77231abc6e02f68 metadata.xml 161 MD5 184277680f422c3dd29bf3f1f084d178 uw-imap-2002d-r1.ebuild 2928 -MD5 184277680f422c3dd29bf3f1f084d178 uw-imap-2002e.ebuild 2928 +MD5 d93d8380559912232bad8de945c3a172 uw-imap-2002e.ebuild 2925 MD5 1fc1132a6fb90046b701e9196e7a96b0 files/digest-uw-imap-2002d 62 MD5 f756533666f0e8b80583a709d4891be1 files/uw-imap.pam 244 MD5 5627c6d3e66200c457bf24c47a02c6e9 files/uw-imap.pam-system-auth 344 diff --git a/net-mail/uw-imap/files/digest-uw-imap-2002e b/net-mail/uw-imap/files/digest-uw-imap-2002e new file mode 100644 index 000000000000..cbbff9d87969 --- /dev/null +++ b/net-mail/uw-imap/files/digest-uw-imap-2002e @@ -0,0 +1 @@ +MD5 0d246d868f20d8c441d235b77c940676 imap-2002e.tar.Z 2157511 diff --git a/net-mail/uw-imap/uw-imap-2002e.ebuild b/net-mail/uw-imap/uw-imap-2002e.ebuild new file mode 100644 index 000000000000..957c38895f78 --- /dev/null +++ b/net-mail/uw-imap/uw-imap-2002e.ebuild @@ -0,0 +1,115 @@ +# Copyright 1999-2003 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-2002e.ebuild,v 1.1 2003/09/11 21:16:10 mholzer Exp $ + +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" +IUSE="ssl mbox pic" + +PROVIDE="virtual/imapd" +PROVIDE="${PROVIDE} virtual/imap-c-client" +DEPEND="!net-mail/vimap + !virtual/imap-c-client + virtual/glibc + >=sys-libs/pam-0.72 + ssl? ( dev-libs/openssl )" + +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() { + if use ssl; then + cd ${S} + yes | make lnp 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 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 + + 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 +} |