Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/bfilter/
Date: Fri, 25 Dec 2015 16:41:17
Message-Id: 1451061655.c3232327ae04fc2ad7792a633a25b6bdf2d7dcf1.kensington@gentoo
1 commit: c3232327ae04fc2ad7792a633a25b6bdf2d7dcf1
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 25 16:38:31 2015 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 25 16:40:55 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3232327
7
8 net-proxy/bfilter: remove old
9
10 Package-Manager: portage-2.2.26
11
12 net-proxy/bfilter/bfilter-1.1.4-r1.ebuild | 68 -------------------------------
13 1 file changed, 68 deletions(-)
14
15 diff --git a/net-proxy/bfilter/bfilter-1.1.4-r1.ebuild b/net-proxy/bfilter/bfilter-1.1.4-r1.ebuild
16 deleted file mode 100644
17 index 773716a..0000000
18 --- a/net-proxy/bfilter/bfilter-1.1.4-r1.ebuild
19 +++ /dev/null
20 @@ -1,68 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=4
26 -
27 -inherit eutils autotools user
28 -
29 -DESCRIPTION="An ad-filtering web proxy featuring an effective heuristic ad-detection algorithm"
30 -HOMEPAGE="http://bfilter.sourceforge.net/"
31 -SRC_URI="mirror://sourceforge/bfilter/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 x86"
36 -IUSE="X debug"
37 -
38 -RDEPEND="sys-libs/zlib
39 - <dev-libs/ace-5.8.3
40 - dev-libs/libsigc++:2
41 - X? ( dev-cpp/gtkmm:2.4 x11-libs/libX11 )
42 - dev-libs/boost"
43 -
44 -DEPEND="${RDEPEND}
45 - dev-util/scons
46 - virtual/pkgconfig"
47 -
48 -RESTRICT="test" # boost's test API has changed
49 -
50 -src_prepare() {
51 - epatch "${FILESDIR}"/${P}-glib-2.32.patch
52 - epatch "${FILESDIR}"/${P}-external-boost.patch
53 - epatch "${FILESDIR}"/${P}-gtkmm-X11-underlinking.patch
54 -
55 - rm -rf "${S}"/boost
56 - eautoreconf
57 -}
58 -
59 -src_configure() {
60 - econf \
61 - $(use_enable debug) \
62 - $(use_with X gui) \
63 - --without-builtin-boost
64 -}
65 -
66 -src_install() {
67 - emake DESTDIR="${D}" install
68 - insinto /etc/bfilter
69 - doins "${FILESDIR}"/forwarding.xml
70 -
71 - dodoc AUTHORS ChangeLog "${FILESDIR}"/forwarding-proxy.xml
72 - dohtml doc/*
73 -
74 - newinitd "${FILESDIR}/bfilter.init" bfilter
75 - newconfd "${FILESDIR}/bfilter.conf" bfilter
76 -}
77 -
78 -pkg_preinst() {
79 - enewgroup bfilter
80 - enewuser bfilter -1 -1 -1 bfilter
81 -}
82 -
83 -pkg_postinst() {
84 - elog "The documentation is available at"
85 - elog " http://bfilter.sourceforge.net/documentation.php"
86 - elog "For forwarding bfilter service traffic through a proxy,"
87 - elog "see forwarding-proxy.xml example installed in the doc directory."
88 -}