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 AB7DB138334 for ; Tue, 7 May 2019 07:47:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9044FE08D6; Tue, 7 May 2019 07:47:48 +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 76008E08D6 for ; Tue, 7 May 2019 07:47:48 +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 C7175343A01 for ; Tue, 7 May 2019 07:47:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDBD25FB for ; Tue, 7 May 2019 07:47:43 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1557215262.a829041a04fdfa3e71d97571e1f0d6f08722f0a3.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/flow-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/flow-tools/flow-tools-0.68.5.1-r2.ebuild X-VCS-Directories: net-analyzer/flow-tools/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: a829041a04fdfa3e71d97571e1f0d6f08722f0a3 X-VCS-Branch: master Date: Tue, 7 May 2019 07:47:43 +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: 2027fc21-032a-489b-97e3-aae140b811f7 X-Archives-Hash: e1722d3cd854310186de2b8525bb6da2 commit: a829041a04fdfa3e71d97571e1f0d6f08722f0a3 Author: Jeroen Roovers gentoo org> AuthorDate: Tue May 7 06:45:53 2019 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Tue May 7 07:47:42 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a829041a net-analyzer/flow-tools: Old Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Jeroen Roovers gentoo.org> .../flow-tools/flow-tools-0.68.5.1-r2.ebuild | 77 ---------------------- 1 file changed, 77 deletions(-) diff --git a/net-analyzer/flow-tools/flow-tools-0.68.5.1-r2.ebuild b/net-analyzer/flow-tools/flow-tools-0.68.5.1-r2.ebuild deleted file mode 100644 index e6447657ab5..00000000000 --- a/net-analyzer/flow-tools/flow-tools-0.68.5.1-r2.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit eutils user - -DESCRIPTION="library and programs to collect, send, process, and generate reports from NetFlow data" -HOMEPAGE="https://code.google.com/p/flow-tools/" -SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.bz2" - -LICENSE="BSD GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="debug mysql postgres ssl static-libs" - -RDEPEND="sys-apps/tcp-wrappers - sys-libs/zlib - mysql? ( virtual/mysql ) - postgres? ( dev-db/postgresql ) - ssl? ( dev-libs/openssl )" - -DEPEND="${RDEPEND} - sys-devel/flex - sys-devel/bison" - -DOCS=( ChangeLog README SECURITY TODO ) - -pkg_setup() { - enewgroup flows - enewuser flows -1 -1 /var/lib/flows flows -} - -src_prepare() { - sed -i \ - -e 's|/var/run/|/run/|g' \ - src/flow-capture.c \ - src/flow-fanout.c \ - || die -} - -src_configure() { - local myconf="--sysconfdir=/etc/flow-tools" - use mysql && myconf="${myconf} --with-mysql" - if use postgres; then - myconf="${myconf} --with-postgresql=yes" - else - myconf="${myconf} --with-postgresql=no" - fi - use ssl && myconf="${myconf} --with-openssl" - econf ${myconf} $(use_enable static-libs static) -} - -src_install() { - default - - prune_libtool_files - - exeinto /var/lib/flows/bin - doexe "${FILESDIR}"/linkme - - keepdir /var/lib/flows/ft - - newinitd "${FILESDIR}/flowcapture.initd" flowcapture - newconfd "${FILESDIR}/flowcapture.confd" flowcapture - - fowners flows:flows /var/lib/flows - fowners flows:flows /var/lib/flows/bin - fowners flows:flows /var/lib/flows/ft - - fperms 0755 /var/lib/flows - fperms 0755 /var/lib/flows/bin -} - -pkg_preinst() { - enewgroup flows - enewuser flows -1 -1 /var/lib/flows flows -}