summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2015-12-26 03:38:31 +1100
committerMichael Palimaka <kensington@gentoo.org>2015-12-26 03:40:55 +1100
commitc3232327ae04fc2ad7792a633a25b6bdf2d7dcf1 (patch)
tree16519ca4a66155072a4af45a060e89a8f44a1f90 /net-proxy/bfilter
parentdev-libs/guiloader-c++: remove old (diff)
downloadgentoo-c3232327ae04fc2ad7792a633a25b6bdf2d7dcf1.tar.gz
gentoo-c3232327ae04fc2ad7792a633a25b6bdf2d7dcf1.tar.bz2
gentoo-c3232327ae04fc2ad7792a633a25b6bdf2d7dcf1.zip
net-proxy/bfilter: remove old
Package-Manager: portage-2.2.26
Diffstat (limited to 'net-proxy/bfilter')
-rw-r--r--net-proxy/bfilter/bfilter-1.1.4-r1.ebuild68
1 files changed, 0 insertions, 68 deletions
diff --git a/net-proxy/bfilter/bfilter-1.1.4-r1.ebuild b/net-proxy/bfilter/bfilter-1.1.4-r1.ebuild
deleted file mode 100644
index 773716a1ee98..000000000000
--- a/net-proxy/bfilter/bfilter-1.1.4-r1.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit eutils autotools user
-
-DESCRIPTION="An 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-5.8.3
- dev-libs/libsigc++:2
- X? ( dev-cpp/gtkmm:2.4 x11-libs/libX11 )
- dev-libs/boost"
-
-DEPEND="${RDEPEND}
- dev-util/scons
- virtual/pkgconfig"
-
-RESTRICT="test" # boost's test API has changed
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-glib-2.32.patch
- epatch "${FILESDIR}"/${P}-external-boost.patch
- epatch "${FILESDIR}"/${P}-gtkmm-X11-underlinking.patch
-
- rm -rf "${S}"/boost
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_enable debug) \
- $(use_with X gui) \
- --without-builtin-boost
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- insinto /etc/bfilter
- doins "${FILESDIR}"/forwarding.xml
-
- dodoc AUTHORS ChangeLog "${FILESDIR}"/forwarding-proxy.xml
- dohtml 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."
-}