diff options
author | Jon Portnoy <avenj@gentoo.org> | 2002-12-09 18:46:19 +0000 |
---|---|---|
committer | Jon Portnoy <avenj@gentoo.org> | 2002-12-09 18:46:19 +0000 |
commit | 3aa480eed1a73f208a16236ed66bcdb061a6f453 (patch) | |
tree | 171bb676abe4a892be20c068c8aa39c5313d9e06 /net-mail | |
parent | Masking new java-config for testing (diff) | |
download | gentoo-2-3aa480eed1a73f208a16236ed66bcdb061a6f453.tar.gz gentoo-2-3aa480eed1a73f208a16236ed66bcdb061a6f453.tar.bz2 gentoo-2-3aa480eed1a73f208a16236ed66bcdb061a6f453.zip |
Updated ebuild to recognize icc USE flag
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/procmail/ChangeLog | 6 | ||||
-rw-r--r-- | net-mail/procmail/procmail-3.22-r5.ebuild | 10 |
2 files changed, 12 insertions, 4 deletions
diff --git a/net-mail/procmail/ChangeLog b/net-mail/procmail/ChangeLog index 16eb4b1a15ae..9df84a268a36 100644 --- a/net-mail/procmail/ChangeLog +++ b/net-mail/procmail/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for net-mail/procmail # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-mail/procmail/ChangeLog,v 1.9 2002/12/09 04:33:14 manson Exp $ +# $Header: \* Autoupdate keywords (12-6-02) 06 Dec 2002; Rodney Rees <manson@gentoo.org> changed sparc ~sparc keywords @@ -15,6 +15,10 @@ in maildir form (meaning messages were dumped into ~/.maildir instead of ~/.maildir/new. So, I restored the creation of /etc/procmailrc. + 09 Dec 2002; Jon Portnoy <avenj@gentoo.org> procmail-3.22-r5.ebuild : + + Updated ebuild to respect icc USE flag, no revision bump necessary. + *procmail-3.22-r4 (5 Sep 2002) 5 Sep 2002; Jared H. Hudson <jhhudso@gentoo.org> procmail-3.22-r4.ebuild : diff --git a/net-mail/procmail/procmail-3.22-r5.ebuild b/net-mail/procmail/procmail-3.22-r5.ebuild index 1952fa6d3776..9f9d3f5a3be8 100644 --- a/net-mail/procmail/procmail-3.22-r5.ebuild +++ b/net-mail/procmail/procmail-3.22-r5.ebuild @@ -1,14 +1,17 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/procmail/procmail-3.22-r5.ebuild,v 1.2 2002/12/09 04:33:14 manson Exp $ +# $Header: S=${WORKDIR}/${P} DESCRIPTION="Mail delivery agent/filter" SRC_URI="http://www.procmail.org/${P}.tar.gz" HOMEPAGE="http://www.procmail.org/" +IUSE="icc" + DEPEND="virtual/glibc - virtual/mta" + virtual/mta + icc? ( >=dev-lang/icc-7.0 )" RDEPEND="virtual/glibc" @@ -16,7 +19,7 @@ PROVIDE="virtual/mda" SLOT="0" LICENSE="Artistic | GPL" -KEYWORDS="x86 ppc sparc " +KEYWORDS="x86 ppc sparc sparc64" src_compile() { @@ -42,6 +45,7 @@ src_compile() { echo 'DEFAULT=/var/spool/mail/$LOGNAME' >> ${S}/procmailrc fi + use icc && CC="iccbin" CXX="iccbin" LD="iccbin" emake || die } |