Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/airtraf/
Date: Wed, 02 Dec 2020 14:08:16
Message-Id: 1606918050.d32b57bf6f48e7dcd2d37c8cd83d5ce69d587f43.bman@gentoo
1 commit: d32b57bf6f48e7dcd2d37c8cd83d5ce69d587f43
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 2 14:07:30 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 2 14:07:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d32b57bf
7
8 net-wireless/airtraf: drop old
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 net-wireless/airtraf/airtraf-1.1-r3.ebuild | 52 ------------------------------
13 1 file changed, 52 deletions(-)
14
15 diff --git a/net-wireless/airtraf/airtraf-1.1-r3.ebuild b/net-wireless/airtraf/airtraf-1.1-r3.ebuild
16 deleted file mode 100644
17 index aa46a675603..00000000000
18 --- a/net-wireless/airtraf/airtraf-1.1-r3.ebuild
19 +++ /dev/null
20 @@ -1,52 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -inherit eutils toolchain-funcs
27 -
28 -DESCRIPTION="AirTraf 802.11b Wireless traffic sniffer"
29 -LICENSE="GPL-2"
30 -HOMEPAGE="http://www.elixar.com/"
31 -SRC_URI="http://www.elixar.com/${P}.tar.gz"
32 -SLOT="0"
33 -KEYWORDS="amd64 ppc x86"
34 -
35 -RDEPEND="
36 - net-libs/libpcap
37 - sys-libs/ncurses:=
38 -"
39 -DEPEND="
40 - ${RDEPEND}
41 - virtual/pkgconfig
42 -"
43 -
44 -src_prepare() {
45 - epatch \
46 - "${FILESDIR}"/${P}-sniffd.patch \
47 - "${FILESDIR}"/${P}-off-by-one.patch \
48 - "${FILESDIR}"/${P}-fprintf-format.patch
49 -
50 - sed -i \
51 - -e '/^LIBS/s|=.*|= $(shell $(PKG_CONFIG) --libs panel)|' \
52 - src/libncurses/Makefile || die
53 - sed -i \
54 - -e 's|-lpanel -lncurses|$(shell $(PKG_CONFIG) --libs ncurses panel)|' \
55 - src/sniffd/Makefile || die
56 - tc-export PKG_CONFIG
57 -}
58 -
59 -src_compile() {
60 - # parallel make (bug #297331)
61 - emake -C src -j1 \
62 - CC=$(tc-getCC) \
63 - CXX=$(tc-getCXX) \
64 - CFLAGS="${CFLAGS}" \
65 - CXXFLAGS="${CXXFLAGS}" \
66 - LDFLAGS="${LDFLAGS}"
67 -}
68 -
69 -src_install() {
70 - dobin src/airtraf
71 - dodoc Authors COMPATIBILITY docs/airtraf_doc.html
72 -}