diff options
author | Peter Volkov <pva@gentoo.org> | 2008-09-16 14:59:13 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2008-09-16 14:59:13 +0000 |
commit | fd7b8169639f60625e1e64ffb372ade397bad5fb (patch) | |
tree | db980c46a581fb093a19c4265d03ee65ef45ef8e /net-analyzer/ssldump/ssldump-0.9-r1.ebuild | |
parent | Stable for HPPA (bug #237696). (diff) | |
download | historical-fd7b8169639f60625e1e64ffb372ade397bad5fb.tar.gz historical-fd7b8169639f60625e1e64ffb372ade397bad5fb.tar.bz2 historical-fd7b8169639f60625e1e64ffb372ade397bad5fb.zip |
Added possibility to read data from DLT_LINUX_SLL link type, bug #198271, thank Paul for this work.
Package-Manager: portage-2.2_rc8/cvs/Linux 2.6.26-gentoo i686
Diffstat (limited to 'net-analyzer/ssldump/ssldump-0.9-r1.ebuild')
-rw-r--r-- | net-analyzer/ssldump/ssldump-0.9-r1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/net-analyzer/ssldump/ssldump-0.9-r1.ebuild b/net-analyzer/ssldump/ssldump-0.9-r1.ebuild new file mode 100644 index 000000000000..cf0f4c857051 --- /dev/null +++ b/net-analyzer/ssldump/ssldump-0.9-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ssldump/ssldump-0.9-r1.ebuild,v 1.1 2008/09/16 14:59:12 pva Exp $ + +inherit eutils autotools + +MY_P=${PN}-0.9b3 +DESCRIPTION="A Tool for network monitoring and data acquisition" +SRC_URI="http://www.rtfm.com/ssldump/${MY_P}.tar.gz" +HOMEPAGE="http://www.rtfm.com/ssldump/" +IUSE="ssl" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +LICENSE="GPL-2" + +DEPEND="net-libs/libpcap + ssl? ( >=dev-libs/openssl-0.6.9 )" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + unpack ${A} ; cd ${S} + + epatch "${FILESDIR}/${P}"-libpcap-header.patch + epatch "${FILESDIR}/${P}"-configure-dylib.patch + epatch "${FILESDIR}/${P}"-openssl-0.9.8.compile-fix.patch + epatch "${FILESDIR}/${P}"-DLT_LINUX_SLL.patch + eautoreconf # fixes compiler detection +} + +src_compile() { + econf $(use_with ssl crypto) + emake || die +} + +src_install() { + into /usr + dosbin ssldump || die + doman ssldump.1 || die + dodoc COPYRIGHT CREDITS README FILES VERSION INSTALL ChangeLog +} |