From: "Aaron Bauman" <bman@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/driftnet/
Date: Sat, 12 Dec 2020 23:04:08 +0000 (UTC) [thread overview]
Message-ID: <1607814103.73550a5d74c76d1b46a5733c2d1dba393e74b1c5.bman@gentoo> (raw)
commit: 73550a5d74c76d1b46a5733c2d1dba393e74b1c5
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 12 23:01:43 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sat Dec 12 23:01:43 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73550a5d
net-analyzer/driftnet: drop old
Closes: https://bugs.gentoo.org/756970
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
net-analyzer/driftnet/Manifest | 1 -
.../driftnet/driftnet-0.1.6_p20090401-r1.ebuild | 85 ----------------------
2 files changed, 86 deletions(-)
diff --git a/net-analyzer/driftnet/Manifest b/net-analyzer/driftnet/Manifest
index 64dfbfd5032..51e6594562f 100644
--- a/net-analyzer/driftnet/Manifest
+++ b/net-analyzer/driftnet/Manifest
@@ -1,2 +1 @@
-DIST driftnet-0.1.6_p20090401.tar.gz 43683 BLAKE2B a3f5c57c5f57247feca37815b84630422f9fdb9ec978791eadaaf0f0b51d1f744674931ea9bb1b9291fc9e556ec9758ff44210a442d219ceeabf71e0ea3a193f SHA512 93b2f7b644603bf2fea09163c3c8cc6eed7ed61f3ad7f6770a754e1a31afde5a75e27464c399261bfdafbe37729f201e6bbcb06bb6c59bf52ac0ede4393a15fa
DIST driftnet-1.3.0.tar.gz 4971618 BLAKE2B 1cf0a46caac2267c093bf21a0d8e150518dbfe0e76acbe21ef87cd760ccbe964313116ee24d25ad7759b3eeba19ef7925200caee4fd06bb28f9836217d889256 SHA512 45f1016a850cf9e5e294756e47e40eccb13f57a316ae7fa885eac2d5e53f68b9d9ef86868415eca76b108f7aa1f4080c550a91f789265edb0f6e3a55e05f5f0c
diff --git a/net-analyzer/driftnet/driftnet-0.1.6_p20090401-r1.ebuild b/net-analyzer/driftnet/driftnet-0.1.6_p20090401-r1.ebuild
deleted file mode 100644
index 6e4749e79a2..00000000000
--- a/net-analyzer/driftnet/driftnet-0.1.6_p20090401-r1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils fcaps flag-o-matic toolchain-funcs
-
-DESCRIPTION="Listen to network traffic and pick out images from TCP streams observed"
-HOMEPAGE="http://www.ex-parrot.com/~chris/driftnet/"
-SRC_URI="https://github.com/downloads/rbu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm64 ppc -sparc x86"
-SLOT="0"
-IUSE="gtk mp3 suid"
-
-CDEPEND="
- net-libs/libpcap
- gtk? (
- x11-libs/gtk+:2
- virtual/jpeg:0
- media-libs/giflib:=
- media-libs/libpng:=
- )
-"
-
-DEPEND="
- ${CDEPEND}
- virtual/pkgconfig
-"
-RDEPEND="
- ${CDEPEND}
- mp3? ( media-sound/mpg123 )
-"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-0.1.6-giflib-5.patch
-
- sed -i \
- -e 's:png_set_gray_1_2_4_to_8:png_set_expand_gray_1_2_4_to_8:' \
- png.c || die
-
- # With newer libpng, --cflags causes build failures.
- sed -i \
- -e 's:pkg-config --cflags libpng:$(PKG_CONFIG) --libs libpng:' \
- -e 's:_BSD_SOURCE:_DEFAULT_SOURCE:g' \
- Makefile || die
-}
-
-src_compile() {
- tc-export CC PKG_CONFIG
-
- if use gtk; then
- emake
- mv driftnet driftnet-gtk || die
- emake clean
- fi
-
- # build a non-gtk version for all users
- sed -i 's:^\(.*gtk.*\)$:#\1:g' Makefile || die "sed disable gtk failed"
- append-flags -DNO_DISPLAY_WINDOW
- emake
-}
-
-src_install() {
- dosbin driftnet
- doman driftnet.1
-
- use gtk && dosbin driftnet-gtk
-
- dodoc CHANGES CREDITS README TODO
-
- if use suid ; then
- elog "marking the no-display driftnet as setuid root."
- fowners root:wheel "/usr/sbin/driftnet"
- fperms 710 "/usr/sbin/driftnet"
- fperms u+s "/usr/sbin/driftnet"
- fi
-}
-
-pkg_postinst() {
- fcaps cap_dac_read_search,cap_net_raw,cap_net_admin \
- "${EROOT}"/usr/sbin/driftnet
- use gtk && fcaps cap_dac_read_search,cap_net_raw,cap_net_admin \
- "${EROOT}"/usr/sbin/driftnet-gtk
-}
next reply other threads:[~2020-12-12 23:04 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-12 23:04 Aaron Bauman [this message]
-- strict thread matches above, loose matches on Subject: below --
2021-04-03 15:57 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/driftnet/ Sam James
2020-12-12 23:04 Aaron Bauman
2020-12-12 17:18 Aaron Bauman
2020-12-03 17:37 Thomas Deutschmann
2020-10-10 13:48 Sergei Trofimovich
2020-09-26 10:26 Sergei Trofimovich
2020-09-25 14:14 Jeroen Roovers
2019-09-15 17:17 Michał Górny
2019-05-21 16:49 Stephen Klimaszewski
2016-12-21 9:40 Tobias Klausmann
2016-01-16 7:50 Jeroen Roovers
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1607814103.73550a5d74c76d1b46a5733c2d1dba393e74b1c5.bman@gentoo \
--to=bman@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox