diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2007-06-11 19:05:04 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2007-06-11 19:05:04 +0000 |
commit | cdb51805033f321e38b1e96f135aff38bf92e1bf (patch) | |
tree | 1b8bcf3d1a8ee200bda1ed074d8068ccec33d252 /net-analyzer/poink/poink-2.03.ebuild | |
parent | Version bump (diff) | |
download | historical-cdb51805033f321e38b1e96f135aff38bf92e1bf.tar.gz historical-cdb51805033f321e38b1e96f135aff38bf92e1bf.tar.bz2 historical-cdb51805033f321e38b1e96f135aff38bf92e1bf.zip |
Patch the signedness of char bug picked up during stabilization bug #181591.
Package-Manager: portage-2.1.2.5
Diffstat (limited to 'net-analyzer/poink/poink-2.03.ebuild')
-rw-r--r-- | net-analyzer/poink/poink-2.03.ebuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/net-analyzer/poink/poink-2.03.ebuild b/net-analyzer/poink/poink-2.03.ebuild index f406681d4e0f..338761ade70a 100644 --- a/net-analyzer/poink/poink-2.03.ebuild +++ b/net-analyzer/poink/poink-2.03.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/poink/poink-2.03.ebuild,v 1.4 2005/08/29 20:10:36 dang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/poink/poink-2.03.ebuild,v 1.5 2007/06/11 19:05:04 robbat2 Exp $ inherit eutils toolchain-funcs @@ -13,6 +13,11 @@ KEYWORDS="~amd64 ~ppc ~x86" IUSE="" DEPEND="virtual/libc" +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${PN}-2.03-signed-char-fixup.patch +} + src_compile() { emake CFLAGS="${CFLAGS}" CC="$(tc-getCC)" || die } |