diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-26 03:53:58 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-26 03:53:58 +0000 |
commit | 41bce50ec27f9034cd9919786077ab720b86633c (patch) | |
tree | 0889592954eed53f16683670f5b5c6ea732010d9 | |
parent | Add die following econf for bug 48950 (Manifest recommit) (diff) | |
download | gentoo-2-41bce50ec27f9034cd9919786077ab720b86633c.tar.gz gentoo-2-41bce50ec27f9034cd9919786077ab720b86633c.tar.bz2 gentoo-2-41bce50ec27f9034cd9919786077ab720b86633c.zip |
arm KEYWORD
-rw-r--r-- | net-mail/mailwrapper/mailwrapper-0.1.ebuild | 16 | ||||
-rw-r--r-- | net-mail/ssmtp/ssmtp-2.60.7.ebuild | 16 |
2 files changed, 16 insertions, 16 deletions
diff --git a/net-mail/mailwrapper/mailwrapper-0.1.ebuild b/net-mail/mailwrapper/mailwrapper-0.1.ebuild index 8004510bde11..8e9ee9aa929f 100644 --- a/net-mail/mailwrapper/mailwrapper-0.1.ebuild +++ b/net-mail/mailwrapper/mailwrapper-0.1.ebuild @@ -1,26 +1,30 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailwrapper/mailwrapper-0.1.ebuild,v 1.15 2004/04/25 08:52:32 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailwrapper/mailwrapper-0.1.ebuild,v 1.16 2004/04/26 03:50:27 vapier Exp $ + +inherit gcc DESCRIPTION="Program to invoke an appropriate MTA based on a config file" HOMEPAGE="http://www.gentoo.org/" SRC_URI="mirror://gentoo/${P}.tbz2" + LICENSE="BSD" SLOT="0" -KEYWORDS="x86 sparc mips ppc alpha amd64 ~hppa ia64 ppc64 s390" +KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64 s390" IUSE="" + DEPEND="" -S=${WORKDIR}/${P} src_compile() { - ${CC:-gcc} ${CFLAGS} -o mailwrapper mailwrapper.c fparseln.c fgetln.c \ - || die "gcc failed" + $(gcc-getCC) ${CFLAGS} \ + -o mailwrapper \ + mailwrapper.c fparseln.c fgetln.c \ + || die "build failed" } src_install() { newsbin mailwrapper sendmail || die "mailwrapper binary not installed" doman mailer.conf.5 mailwrapper.8 - dodir /etc insinto /etc doins mailer.conf || die "mailer.conf not installed" } diff --git a/net-mail/ssmtp/ssmtp-2.60.7.ebuild b/net-mail/ssmtp/ssmtp-2.60.7.ebuild index 7f0548c9473d..e2e61c74079c 100644 --- a/net-mail/ssmtp/ssmtp-2.60.7.ebuild +++ b/net-mail/ssmtp/ssmtp-2.60.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/ssmtp/ssmtp-2.60.7.ebuild,v 1.10 2004/04/26 02:20:33 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/ssmtp/ssmtp-2.60.7.ebuild,v 1.11 2004/04/26 03:53:58 vapier Exp $ inherit eutils @@ -10,7 +10,7 @@ SRC_URI="ftp://ftp.debian.org/debian/pool/main/s/ssmtp/${P/-/_}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 ppc sparc alpha ~hppa mips amd64 ia64 ppc64 s390" +KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 ppc64 s390" IUSE="ssl ipv6 md5sum" DEPEND="virtual/glibc @@ -31,16 +31,12 @@ src_unpack() { } src_compile() { - local myconf - - myconf="$( use_enable ssl ) \ - $( use_enable ipv6 inet6 ) \ - $( use_enable md5sum md5suth )" - econf \ --sysconfdir=/etc/ssmtp \ - ${myconf} || die - + `use_enable ssl` \ + `use_enable ipv6 inet6` \ + `use_enable md5sum md5suth` \ + || die make clean || die make etcdir=/etc || die } |