diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-08-23 00:26:51 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-08-23 00:26:51 +0000 |
commit | f2cae4131d7a3f8c2682d87de70ccaef4e99f099 (patch) | |
tree | 46a3b78a2b95ce1bec5dab81d0c10cd1d9616664 /net-mail | |
parent | Updated ebuild based on suggestions by Paul Thompson on bug #6749 (diff) | |
download | historical-f2cae4131d7a3f8c2682d87de70ccaef4e99f099.tar.gz historical-f2cae4131d7a3f8c2682d87de70ccaef4e99f099.tar.bz2 historical-f2cae4131d7a3f8c2682d87de70ccaef4e99f099.zip |
Fixed typos in pkg_postinst, sasl, and ssl detection.
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/postfix/ChangeLog | 8 | ||||
-rw-r--r-- | net-mail/postfix/postfix-1.1.11-r5.ebuild | 10 |
2 files changed, 12 insertions, 6 deletions
diff --git a/net-mail/postfix/ChangeLog b/net-mail/postfix/ChangeLog index 5e1521487cc9..1946fd7c0e61 100644 --- a/net-mail/postfix/ChangeLog +++ b/net-mail/postfix/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for net-mail/postfix # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/ChangeLog,v 1.29 2002/08/15 22:53:00 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/ChangeLog,v 1.30 2002/08/23 00:26:51 raker Exp $ *postfix-1.1.11.200206013-r1 (13 Aug 2002) + 22 Aug 2002; Nick Hadaway <raker@gentoo.org> + It appears that this ebuild and digest have magically disappeared from CVS. + 15 Aug 2002; Nick Hadaway <raker@gentoo.org> postfix-1.1.11.20020613-r1.ebuild : Updated CCARGS and AUXLIBS variables for a proper TLS enabled postfix. @@ -18,6 +21,9 @@ *postfix-1.1.11-r5 (23 Jul 2002) + 22 Aug 2002; Nick Hadaway <raker@gentoo.org> postfix-1.1.11-r5.ebuild : + Fixed typo in pkg_postinst, sasl, and ssl detection code. + 23 Jul 2002; Martin Schlemmer <azarah@gentoo.org> : Use the /etc/postfix/master.cf from the source *again*, as they tend to differ between version. Do NOT change, or if diff --git a/net-mail/postfix/postfix-1.1.11-r5.ebuild b/net-mail/postfix/postfix-1.1.11-r5.ebuild index 5c8491a8e975..051e741460b7 100644 --- a/net-mail/postfix/postfix-1.1.11-r5.ebuild +++ b/net-mail/postfix/postfix-1.1.11-r5.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/postfix/postfix-1.1.11-r5.ebuild,v 1.2 2002/08/14 12:05:25 murphy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/postfix/postfix-1.1.11-r5.ebuild,v 1.3 2002/08/23 00:26:51 raker Exp $ DESCRIPTION="A fast and secure drop-in replacement for sendmail" HOMEPAGE="http://www.postfix.org/" @@ -48,7 +48,7 @@ src_unpack() { if [ "`use sasl`" ] then - if [ ! -e /usr/include/sasl.h ] + if [ ! -e /usr/include/sasl/sasl.h ] then # saslv2 cd ${S} @@ -73,7 +73,7 @@ src_unpack() { use ssl \ && CCARGS="${CCARGS} -DHAS_SSL" \ - && AUXLIBS="${AUXLIBS} -lssl" + && AUXLIBS="${AUXLIBS} -lssl -lcrypto" # note: if sasl is built w/ pam, then postfix _MUST_ be built w/ pam use pam && AUXLIBS="${AUXLIBS} -lpam" @@ -160,13 +160,13 @@ src_install () { if [ -e /usr/include/sasl/sasl.h ] then # saslv2 seems to be installed. - insinto /usr/lib/sasl2 ; newins ${FILESDIR}/smtpd2.conf smtpd.conf + insinto /etc/sasl2 ; doins ${FILESDIR}/smtpd.conf fi fi } pkg_postinst() { - install -d 0755 ${ROOT}/var/spool/postfix + install -d -m 0755 ${ROOT}/var/spool/postfix if [ "${postfix_installed}" = "yes" ] ; then ewarn "If you've upgraded from <postfix-1.1.8, you must update" |