diff options
author | Brian Jackson <iggy@gentoo.org> | 2004-09-20 19:48:28 +0000 |
---|---|---|
committer | Brian Jackson <iggy@gentoo.org> | 2004-09-20 19:48:28 +0000 |
commit | e084867ce38f29ecab365346482daf69bfa1f6b5 (patch) | |
tree | d5f4ebc426dc45a0bbadfd20ca2365734f6f7c1b /mail-mta/courier | |
parent | Stow our versions of critical files in /usr/share/baselayout so that quickpkg... (diff) | |
download | historical-e084867ce38f29ecab365346482daf69bfa1f6b5.tar.gz historical-e084867ce38f29ecab365346482daf69bfa1f6b5.tar.bz2 historical-e084867ce38f29ecab365346482daf69bfa1f6b5.zip |
added a small fix for building with uclibc, and removed expect as a dep
Diffstat (limited to 'mail-mta/courier')
-rw-r--r-- | mail-mta/courier/ChangeLog | 5 | ||||
-rw-r--r-- | mail-mta/courier/Manifest | 4 | ||||
-rw-r--r-- | mail-mta/courier/courier-0.47.ebuild | 10 |
3 files changed, 13 insertions, 6 deletions
diff --git a/mail-mta/courier/ChangeLog b/mail-mta/courier/ChangeLog index bddb8ed76744..47f660fbda8c 100644 --- a/mail-mta/courier/ChangeLog +++ b/mail-mta/courier/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for mail-mta/courier # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/ChangeLog,v 1.19 2004/09/19 09:00:13 swtaylor Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/ChangeLog,v 1.20 2004/09/20 19:48:28 iggy Exp $ + + 20 Sep 2004; <iggy@gentoo.org> courier-0.47.ebuild: + added a small fix for building with uclibc, and removed expect as a dep *courier-0.47 (19 Sep 2004) diff --git a/mail-mta/courier/Manifest b/mail-mta/courier/Manifest index 3d5b9580dd79..235da4f57de2 100644 --- a/mail-mta/courier/Manifest +++ b/mail-mta/courier/Manifest @@ -1,10 +1,10 @@ -MD5 6d5d88a9245671505939207ab00279fc courier-0.47.ebuild 10132 +MD5 f48e235d99f2d42eca23b5116030c128 courier-0.47.ebuild 10444 MD5 d4687331805cb345c9a2d8a4e9d378c7 courier-0.46.ebuild 9771 MD5 f5d9aedcd49226196f2c35273f45488f courier-0.46.20040825.ebuild 10012 MD5 2c9b2ac349116b05205ba423fc01ac15 courier-0.46.20040816.ebuild 10012 MD5 5463e630d0d43bed171473ae01d30dd4 courier-0.46.20040902.ebuild 10015 MD5 b8368687c56e9fa6d7efff0ddba8f848 courier-0.45.6.ebuild 9772 -MD5 774a2307d566a02e763dfeef5cbaaf97 ChangeLog 13496 +MD5 f6484de69cf849c97db2bc7fa6dc3c2e ChangeLog 13621 MD5 b287829e2f9edbcf1ff7bb349055e77e metadata.xml 392 MD5 52f032e570c6f5f9f69b4e4bdfa562a1 files/password.dist 247 MD5 a546a21f960e4f921e71f614f719a2ce files/bofh 23 diff --git a/mail-mta/courier/courier-0.47.ebuild b/mail-mta/courier/courier-0.47.ebuild index 240f3440f5c7..1e70cd78fbf5 100644 --- a/mail-mta/courier/courier-0.47.ebuild +++ b/mail-mta/courier/courier-0.47.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.47.ebuild,v 1.1 2004/09/19 09:00:13 swtaylor Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.47.ebuild,v 1.2 2004/09/20 19:48:28 iggy Exp $ inherit eutils @@ -12,7 +12,7 @@ HOMEPAGE="http://www.courier-mta.org/" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86 ~alpha ~ppc ~sparc ~amd64" -IUSE="postgres ldap mysql pam nls ipv6 spell fax crypt norewrite" +IUSE="postgres ldap mysql pam nls ipv6 spell fax crypt norewrite uclibc" PROVIDE="virtual/mta virtual/mda @@ -21,7 +21,6 @@ PROVIDE="virtual/mta DEPEND="virtual/libc >=dev-libs/openssl-0.9.6 >=sys-libs/gdbm-1.8.0 - >=dev-tcltk/expect-5.33.0 crypt? ( >=app-crypt/gnupg-1.0.4 ) fax? ( >=media-libs/netpbm-9.12 virtual/ghostscript @@ -44,6 +43,7 @@ src_unpack() { unpack ${A} cd ${S} use norewrite && epatch ${FILESDIR}/norewrite.patch + use uclibc && sed -i -e 's:linux-gnu\*:linux-gnu\*\ \|\ linux-uclibc:' config.sub } src_compile() { @@ -295,6 +295,10 @@ pkg_postinst() { ewarn "hint: look for a line at the bottom of the file that looks like so" ewarn "ESMTPDSTART=NO" ewarn "and change it to YES for the services that you use" + echo + einfo "expect was removed as a dependency due to it's limited usefulness." + einfo "If you need the ability to change passwords via webmail _while_ using AUTHPAM, you'll" + einfo "have to emerge expect manually. Other auth modules are unaffected." ebeep 5 } |