From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8DC04138222 for ; Tue, 3 May 2016 19:17:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36FCCE07E1; Tue, 3 May 2016 19:17:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9F3E9E07DB for ; Tue, 3 May 2016 19:17:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 50402340BE2 for ; Tue, 3 May 2016 19:17:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC391331 for ; Tue, 3 May 2016 19:17:43 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1462303021.1ba78833ce4474e08fdcd1ada886b2abe49dc59a.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/bfilter/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-proxy/bfilter/bfilter-1.1.4-r3.ebuild X-VCS-Directories: net-proxy/bfilter/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 1ba78833ce4474e08fdcd1ada886b2abe49dc59a X-VCS-Branch: master Date: Tue, 3 May 2016 19:17: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-Archives-Salt: 0499bfa0-7f15-49bc-9263-2d7d33dbf091 X-Archives-Hash: ae0af652facf29df417cd3f890039dc1 commit: 1ba78833ce4474e08fdcd1ada886b2abe49dc59a Author: Austin English gentoo org> AuthorDate: Tue May 3 18:49:51 2016 +0000 Commit: Austin English gentoo org> CommitDate: Tue May 3 19:17:01 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ba78833 net-proxy/bfilter: remove old version Package-Manager: portage-2.2.26 net-proxy/bfilter/bfilter-1.1.4-r3.ebuild | 85 ------------------------------- 1 file changed, 85 deletions(-) diff --git a/net-proxy/bfilter/bfilter-1.1.4-r3.ebuild b/net-proxy/bfilter/bfilter-1.1.4-r3.ebuild deleted file mode 100644 index 767c009..0000000 --- a/net-proxy/bfilter/bfilter-1.1.4-r3.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -inherit autotools flag-o-matic user - -DESCRIPTION="Ad-filtering web proxy featuring an effective heuristic ad-detection algorithm" -HOMEPAGE="http://bfilter.sourceforge.net/" -SRC_URI="mirror://sourceforge/bfilter/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="X debug" - -RDEPEND="sys-libs/zlib - dev-libs/ace:= - dev-libs/libsigc++:2 - X? ( dev-cpp/gtkmm:2.4 x11-libs/libX11 ) - dev-libs/boost:=" - -DEPEND="${RDEPEND} - dev-util/scons - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/${P}-glib-2.32.patch" - "${FILESDIR}/${P}-external-boost.patch" - "${FILESDIR}/${P}-gtkmm-X11-underlinking.patch" -) - -RESTRICT="test" # boost's test API has changed - -src_prepare() { - default - - # Some includes are missing and this breaks updates of ACE - sed -i \ - -e "/#include /a#include \n#include " \ - libjs/nspr_impl/private.h \ - main/*.h \ - main/cache/*.h || die - - mv configure.{in,ac} || die - rm -r boost || die - - eautoreconf -} - -src_configure() { - append-cxxflags -std=c++11 - # Required to prevent narrowing conversion in lexcode.cpp, #572072 - append-cxxflags -funsigned-char - econf \ - $(use_enable debug) \ - $(use_with X gui) \ - --without-builtin-boost -} - -src_install() { - default - - insinto /etc/bfilter - doins "${FILESDIR}/forwarding.xml" - - dodoc "${FILESDIR}/forwarding-proxy.xml" - dodoc -r doc/* - - newinitd "${FILESDIR}/bfilter.init" bfilter - newconfd "${FILESDIR}/bfilter.conf" bfilter -} - -pkg_preinst() { - enewgroup bfilter - enewuser bfilter -1 -1 -1 bfilter -} - -pkg_postinst() { - elog "The documentation is available at" - elog " http://bfilter.sourceforge.net/documentation.php" - elog "For forwarding bfilter service traffic through a proxy," - elog "see forwarding-proxy.xml example installed in the doc directory." -}