From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4207C13835A for ; Wed, 2 Dec 2020 14:08:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59879E08F2; Wed, 2 Dec 2020 14:08:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 43B7AE08F2 for ; Wed, 2 Dec 2020 14:08:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 296FC3412B0 for ; Wed, 2 Dec 2020 14:08:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A52E4476 for ; Wed, 2 Dec 2020 14:08:12 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1606918050.d32b57bf6f48e7dcd2d37c8cd83d5ce69d587f43.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/airtraf/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/airtraf/airtraf-1.1-r3.ebuild X-VCS-Directories: net-wireless/airtraf/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: d32b57bf6f48e7dcd2d37c8cd83d5ce69d587f43 X-VCS-Branch: master Date: Wed, 2 Dec 2020 14:08:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d134464b-48db-46b1-b76b-d5c658df268d X-Archives-Hash: d24abbe579ed30aff7df53e88e689a5e commit: d32b57bf6f48e7dcd2d37c8cd83d5ce69d587f43 Author: Aaron Bauman gentoo org> AuthorDate: Wed Dec 2 14:07:30 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Dec 2 14:07:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d32b57bf net-wireless/airtraf: drop old Signed-off-by: Aaron Bauman gentoo.org> net-wireless/airtraf/airtraf-1.1-r3.ebuild | 52 ------------------------------ 1 file changed, 52 deletions(-) diff --git a/net-wireless/airtraf/airtraf-1.1-r3.ebuild b/net-wireless/airtraf/airtraf-1.1-r3.ebuild deleted file mode 100644 index aa46a675603..00000000000 --- a/net-wireless/airtraf/airtraf-1.1-r3.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils toolchain-funcs - -DESCRIPTION="AirTraf 802.11b Wireless traffic sniffer" -LICENSE="GPL-2" -HOMEPAGE="http://www.elixar.com/" -SRC_URI="http://www.elixar.com/${P}.tar.gz" -SLOT="0" -KEYWORDS="amd64 ppc x86" - -RDEPEND=" - net-libs/libpcap - sys-libs/ncurses:= -" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-sniffd.patch \ - "${FILESDIR}"/${P}-off-by-one.patch \ - "${FILESDIR}"/${P}-fprintf-format.patch - - sed -i \ - -e '/^LIBS/s|=.*|= $(shell $(PKG_CONFIG) --libs panel)|' \ - src/libncurses/Makefile || die - sed -i \ - -e 's|-lpanel -lncurses|$(shell $(PKG_CONFIG) --libs ncurses panel)|' \ - src/sniffd/Makefile || die - tc-export PKG_CONFIG -} - -src_compile() { - # parallel make (bug #297331) - emake -C src -j1 \ - CC=$(tc-getCC) \ - CXX=$(tc-getCXX) \ - CFLAGS="${CFLAGS}" \ - CXXFLAGS="${CXXFLAGS}" \ - LDFLAGS="${LDFLAGS}" -} - -src_install() { - dobin src/airtraf - dodoc Authors COMPATIBILITY docs/airtraf_doc.html -}