summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Hadaway <raker@gentoo.org>2002-08-07 04:19:36 +0000
committerNick Hadaway <raker@gentoo.org>2002-08-07 04:19:36 +0000
commitcdba024fabf181c86e17fbcc2850858b2551b65b (patch)
treeedae4d72f07d099a6cc2dfe7e25fab54d2d813b6
parentUpdated keywords. Added --without-authvchkpw to the configure options (diff)
downloadhistorical-cdba024fabf181c86e17fbcc2850858b2551b65b.tar.gz
historical-cdba024fabf181c86e17fbcc2850858b2551b65b.tar.bz2
historical-cdba024fabf181c86e17fbcc2850858b2551b65b.zip
Changed emake to make after experiencing compile problems on multiple
systems. Updated keywords. ppc and sparc need testing. Fixed little typos and removed an unneeded comment about /etc/services.
-rw-r--r--net-mail/cyrus-imapd/ChangeLog11
-rw-r--r--net-mail/cyrus-imapd/cyrus-imapd-2.1.5.ebuild21
2 files changed, 12 insertions, 20 deletions
diff --git a/net-mail/cyrus-imapd/ChangeLog b/net-mail/cyrus-imapd/ChangeLog
index 79f5aaada086..68aa802c1c8f 100644
--- a/net-mail/cyrus-imapd/ChangeLog
+++ b/net-mail/cyrus-imapd/ChangeLog
@@ -1,16 +1,19 @@
# ChangeLog for net-mail/cyrus-imapd
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imapd/ChangeLog,v 1.2 2002/07/22 23:29:28 raker Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imapd/ChangeLog,v 1.3 2002/08/07 04:19:36 raker Exp $
*cyrus-imapd-2.1.5 (13 Jul 2002)
- 22 Jul 2002; Nick Hadaway <raker@gentoo.org>
+ 06 Aug 2002; Nick Hadaway <raker@gentoo.org> cyrus-imapd-2.1.5.ebuild :
+ Changed emake to make after experiencing compile problems on multiple
+ systems. Updated keywords. ppc and sparc need testing. Fixed little
+ typos and removed an unneeded comment about /etc/services.
+ 22 Jul 2002; Nick Hadaway <raker@gentoo.org> cyrus-imapd-2.1.5.ebuild :
Fixed small typo in dependancies. Changed open-afs to openafs.
13 Jul 2002; Nick Hadaway <raker@gentoo.org>
- cyrus-imapd-2.1.5.ebuild and friends:
-
+ cyrus-imapd-2.1.5.ebuild and friends :
Ebuild and friends created by Alexander Holler. Thank you!
Created diff so program will compile with current version of
e2fsprogs.
diff --git a/net-mail/cyrus-imapd/cyrus-imapd-2.1.5.ebuild b/net-mail/cyrus-imapd/cyrus-imapd-2.1.5.ebuild
index b07877509e5f..6396b5a9a57d 100644
--- a/net-mail/cyrus-imapd/cyrus-imapd-2.1.5.ebuild
+++ b/net-mail/cyrus-imapd/cyrus-imapd-2.1.5.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imapd/cyrus-imapd-2.1.5.ebuild,v 1.3 2002/07/22 23:29:28 raker Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imapd/cyrus-imapd-2.1.5.ebuild,v 1.4 2002/08/07 04:19:36 raker Exp $
S=${WORKDIR}/${P}
DESCRIPTION="The Cyrus IMAP Server"
@@ -8,8 +8,8 @@ HOMEPAGE="http://asg.web.cmu.edu/cyrus/imapd/"
SRC_URI="ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/${P}.tar.gz"
LICENSE="as-is"
-SLOT="1"
-KEYWORDS="x86"
+SLOT="0"
+KEYWORDS="x86 -ppc -sparc -sparc64"
PROVIDE="virtual/imapd"
RDEPEND="virtual/glibc
@@ -68,7 +68,7 @@ src_compile() {
# make depends break with -f... in CFLAGS
make depend CFLAGS="" || die "make depend problem"
- emake || die "compile problem"
+ make || die "compile problem"
}
@@ -166,7 +166,7 @@ pkg_postinst() {
einfo "* NOTE: For correct logging add *"
einfo "* local6.* /var/log/imapd.log *"
einfo "* auth.debug /var/log/auth.log *"
- einfo "* to /etc/sylog.conf. *"
+ einfo "* to /etc/syslog.conf. *"
einfo "*****************************************************************"
if [ "'use ssl'" ]; then
@@ -177,15 +177,4 @@ pkg_postinst() {
ewarn "*****************************************************************"
fi
- ewarn "*************************************************"
- ewarn "* WARNING: Add these services to /etc/services: *"
- ewarn "* pop3 110/tcp *"
- ewarn "* imap 143/tcp *"
- ewarn "* imsp 406/tcp *"
- ewarn "* acap 674/tcp *"
- ewarn "* sieve 2000/tcp *"
- ewarn "* lmtp 2003/tcp *"
- ewarn "* fud 4201/udp *"
- ewarn "*************************************************"
-
}