diff options
author | 2006-03-12 09:43:58 +0000 | |
---|---|---|
committer | 2006-03-12 09:43:58 +0000 | |
commit | 4a8e24370a961fe94ac1d14b8929886415791a63 (patch) | |
tree | 9f8f6d6b9362e3f9a9555d03b13680088519d627 /net-mail/smtptools/smtptools-0.2.3.ebuild | |
parent | Stable on ppc. Bug 123615 (diff) | |
download | gentoo-2-4a8e24370a961fe94ac1d14b8929886415791a63.tar.gz gentoo-2-4a8e24370a961fe94ac1d14b8929886415791a63.tar.bz2 gentoo-2-4a8e24370a961fe94ac1d14b8929886415791a63.zip |
Fix building with newer gcc versions and cleanup implicit warnings that hate 64bit hosts.
(Portage version: 2.1_pre6)
Diffstat (limited to 'net-mail/smtptools/smtptools-0.2.3.ebuild')
-rw-r--r-- | net-mail/smtptools/smtptools-0.2.3.ebuild | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/net-mail/smtptools/smtptools-0.2.3.ebuild b/net-mail/smtptools/smtptools-0.2.3.ebuild index 9163d45620eb..760e00af4902 100644 --- a/net-mail/smtptools/smtptools-0.2.3.ebuild +++ b/net-mail/smtptools/smtptools-0.2.3.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/smtptools/smtptools-0.2.3.ebuild,v 1.9 2006/02/02 23:08:44 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/smtptools/smtptools-0.2.3.ebuild,v 1.10 2006/03/12 09:43:58 vapier Exp $ + +inherit eutils DESCRIPTION="A collection of tools to send or receive mails with SMTP" HOMEPAGE="http://www.ohse.de/uwe/software/${PN}.html" @@ -8,11 +10,17 @@ SRC_URI="ftp://ftp.ohse.de/uwe/releases/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 arm m68k mips ppc ppc64 s390 sh x86" +KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh x86" IUSE="" DEPEND="" +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-cleanups.patch +} + src_compile() { # the configure check looks for the symbol name 'dn_expand' in # libresolv but later glibc's use the internal symbol name |