diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2004-02-06 15:02:09 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2004-02-06 15:02:09 +0000 |
commit | a2df2e601b01c5442163b1f4c61e73462396e477 (patch) | |
tree | e80bc64ec4c6bd0e4b359c3641b6bf47b9fec792 /net-analyzer/ssldump/ssldump-0.9.ebuild | |
parent | x86/ppc/hppa stable (diff) | |
download | gentoo-2-a2df2e601b01c5442163b1f4c61e73462396e477.tar.gz gentoo-2-a2df2e601b01c5442163b1f4c61e73462396e477.tar.bz2 gentoo-2-a2df2e601b01c5442163b1f4c61e73462396e477.zip |
patch for new libpcap headers.
Diffstat (limited to 'net-analyzer/ssldump/ssldump-0.9.ebuild')
-rw-r--r-- | net-analyzer/ssldump/ssldump-0.9.ebuild | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/net-analyzer/ssldump/ssldump-0.9.ebuild b/net-analyzer/ssldump/ssldump-0.9.ebuild index 06fef405a100..ed8b3e9e8e12 100644 --- a/net-analyzer/ssldump/ssldump-0.9.ebuild +++ b/net-analyzer/ssldump/ssldump-0.9.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ssldump/ssldump-0.9.ebuild,v 1.3 2003/09/05 23:44:49 msterret Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ssldump/ssldump-0.9.ebuild,v 1.4 2004/02/06 15:02:09 aliz Exp $ + +inherit gnuconfig IUSE="ssl" @@ -11,18 +13,22 @@ SRC_URI="http://www.rtfm.com/ssldump/${MY_P}.tar.gz" HOMEPAGE="http://www.rtfm.com/ssldump/" SLOT="0" -KEYWORDS="x86" +KEYWORDS="x86 ~amd64" LICENSE="GPL-2" DEPEND=">=net-libs/libpcap-0.6.1 ssl? ( >=dev-libs/openssl-0.6.9 )" +src_unpack() { + unpack ${A} ; cd ${S} + + epatch ${FILESDIR}/${P}-libpcap-header.patch +} src_compile() { - local myconf + gnuconfig_update - use ssl || myconf="--without-crypto" - econf ${myconf} || die + econf `use_with ssl crypto` || die emake || die } |