diff options
author | Kacper Kołodziej <kacper@kolodziej.in> | 2016-11-27 13:47:22 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-04 15:25:08 +0200 |
commit | e60dab5b27bc3212e4c21b0caa079dcc61830425 (patch) | |
tree | 8a3b98a5c4e5b78771233447f4458f1af29680d4 /net-analyzer/hexinject/hexinject-1.5.ebuild | |
parent | dev-libs/libxml2: amd64 stable wrt bug #597116 (diff) | |
download | gentoo-e60dab5b27bc3212e4c21b0caa079dcc61830425.tar.gz gentoo-e60dab5b27bc3212e4c21b0caa079dcc61830425.tar.bz2 gentoo-e60dab5b27bc3212e4c21b0caa079dcc61830425.zip |
net-analyzer/hexinject: new package
Package-Manager: portage-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/2933
Diffstat (limited to 'net-analyzer/hexinject/hexinject-1.5.ebuild')
-rw-r--r-- | net-analyzer/hexinject/hexinject-1.5.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/net-analyzer/hexinject/hexinject-1.5.ebuild b/net-analyzer/hexinject/hexinject-1.5.ebuild new file mode 100644 index 000000000000..5c68e66abfd2 --- /dev/null +++ b/net-analyzer/hexinject/hexinject-1.5.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit flag-o-matic toolchain-funcs + +DESCRIPTION="Network packet sniffer and injector" +HOMEPAGE="http://hexinject.sourceforge.net/" +SRC_URI="http://downloads.sourceforge.net/project/${PN}/${P}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+tools experimental" + +DEPEND="net-libs/libpcap" +RDEPEND="${DEPEND} + experimental? ( dev-lang/tcl )" + +S="${WORKDIR}/${PN}" + +PATCHES=( "${FILESDIR}"/${PN}-1.5-fix-build-system.patch ) + +src_prepare() { + default + append-cflags -std=gnu89 + tc-export CC +} + +src_install() { + dobin hexinject + use tools && dobin hex2raw prettypacket + use experimental && dobin packets.tcl + einstalldocs +} |