diff options
author | Zamarin Arthur <arthurzam@gmail.com> | 2019-03-19 17:33:44 +0200 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2019-04-17 21:01:31 -0700 |
commit | 56e4cf2e58f6dc15ea574e4eac6db82792087a74 (patch) | |
tree | e0af36a7f84e76a8539d3bb334d1f685d754b134 /net-misc/pcapfix | |
parent | net-misc/aggregate-flim: update HOMEPAGE, SRC_URI (diff) | |
download | gentoo-56e4cf2e58f6dc15ea574e4eac6db82792087a74.tar.gz gentoo-56e4cf2e58f6dc15ea574e4eac6db82792087a74.tar.bz2 gentoo-56e4cf2e58f6dc15ea574e4eac6db82792087a74.zip |
net-misc/pcapfix: version bump 1.1.4, EAPI 7
Closes: https://bugs.gentoo.org/498752
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Zamarin Arthur <arthurzam@gmail.com>
Fixes: https://github.com/gentoo/gentoo/pull/11412
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'net-misc/pcapfix')
-rw-r--r-- | net-misc/pcapfix/Manifest | 1 | ||||
-rw-r--r-- | net-misc/pcapfix/pcapfix-1.1.4.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/net-misc/pcapfix/Manifest b/net-misc/pcapfix/Manifest index 6fd0868cb591..d74002f56dee 100644 --- a/net-misc/pcapfix/Manifest +++ b/net-misc/pcapfix/Manifest @@ -1 +1,2 @@ DIST pcapfix-0.7.tar.gz 25753 BLAKE2B 75a8bca8e5c0f7b6604a9c2202116f3fd18917bb98797b401618d32861a14e2bc7f7a1fe684d2e057c4314de72bbbb825dc3142ea93bd8dea0b1bc4716e240e0 SHA512 254eb5803bbcff4249f20af4cd1afa5b300eefb3448e3650899fa94329f38e298e4e7b1033836aa04434b1eadc67611204e3f67d41917c761d5cba424d789298 +DIST pcapfix-1.1.4.tar.gz 52184 BLAKE2B 4def04cebc9144af86d43c28892575627ed98bf14fa99e5e4fe5181a406871ceeac1f431c73d90daae151bb8b6e5315e8bc47c430d2ed55f9e0c3de1decbe0e9 SHA512 6203e9032d2f24fe5d4aaefd9cfd57ece97a318af3ecd8da7171307a59c2a10b2e92206d5cf96e2dd9bfafc239dd9bc95a224bf5fef9e0c0432a6e76ff10d1da diff --git a/net-misc/pcapfix/pcapfix-1.1.4.ebuild b/net-misc/pcapfix/pcapfix-1.1.4.ebuild new file mode 100644 index 000000000000..9f2ecbc9c679 --- /dev/null +++ b/net-misc/pcapfix/pcapfix-1.1.4.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Repair and fix broken pcap files" +HOMEPAGE="http://f00l.de/pcapfix/" +SRC_URI="http://f00l.de/pcapfix/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DOCS=( Changelog README ) + +src_prepare() { + default + sed -e 's/gcc/$(CC) $(CFLAGS)/g' -i Makefile || die + use debug || sed -e 's/DEBUGFLAGS = -g/DEBUGFLAGS =/g' -i Makefile || die +} + +src_install() { + doman pcapfix.1 + dobin pcapfix + einstalldocs +} |