summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2004-01-18 14:30:20 +0000
committerMartin Holzer <mholzer@gentoo.org>2004-01-18 14:30:20 +0000
commit87b14ea607b834f77ae8779c9e1162070837e695 (patch)
tree5fa2f73de7a7a008c6224139a55612695520d5c5 /net-www/privoxy
parentadding keepdir for logfile and RESTRICT="nomirror" (Manifest recommit) (diff)
downloadgentoo-2-87b14ea607b834f77ae8779c9e1162070837e695.tar.gz
gentoo-2-87b14ea607b834f77ae8779c9e1162070837e695.tar.bz2
gentoo-2-87b14ea607b834f77ae8779c9e1162070837e695.zip
cleanup
Diffstat (limited to 'net-www/privoxy')
-rw-r--r--net-www/privoxy/files/digest-privoxy-3.0.01
-rw-r--r--net-www/privoxy/privoxy-3.0.0.ebuild77
2 files changed, 0 insertions, 78 deletions
diff --git a/net-www/privoxy/files/digest-privoxy-3.0.0 b/net-www/privoxy/files/digest-privoxy-3.0.0
deleted file mode 100644
index edc2d5fa980c..000000000000
--- a/net-www/privoxy/files/digest-privoxy-3.0.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 6790def33b3e5ade2aa576347aa3cd4c privoxy-3.0.0-stable-src.tar.gz 1862625
diff --git a/net-www/privoxy/privoxy-3.0.0.ebuild b/net-www/privoxy/privoxy-3.0.0.ebuild
deleted file mode 100644
index 886ead7f5e76..000000000000
--- a/net-www/privoxy/privoxy-3.0.0.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-www/privoxy/privoxy-3.0.0.ebuild,v 1.9 2004/01/18 14:29:37 mholzer Exp $
-
-S="${WORKDIR}/${P}-stable"
-HOMEPAGE="http://www.privoxy.org"
-DESCRIPTION="A web proxy with advanced filtering capabilities for protecting privacy against internet junk."
-SRC_URI="mirror://sourceforge/ijbswa/${P}-stable-src.tar.gz"
-RESTRICT="nomirror"
-
-SLOT="2"
-KEYWORDS="x86 ~ppc ~alpha"
-LICENSE="GPL-2"
-
-DEPEND="virtual/textbrowser
- >=sys-apps/sed-4"
-
-pkg_setup() {
- if ! grep -q ^privoxy: /etc/group ; then
- groupadd privoxy || die "problem adding group privoxy"
- fi
-
- if ! grep -q ^privoxy: /etc/passwd ; then
- useradd -g privoxy -s /bin/false -d /etc/privoxy -c "privoxy" privoxy\
- || die "problem adding user privoxy"
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- sed -i 's:confdir .:confdir /etc/privoxy:' config
- sed -i 's:logdir .:logdir /var/log/privoxy:' config
- sed -i 's:logfile logfile:logfile privoxy.log:' config
- sed -i 's:set-image-blocker{pattern}:set-image-blocker{blank}:' default.action.master
-
- autoheader || die "autoheader failed"
- autoconf || die "autoconf failed"
-}
-
-src_compile() {
- econf \
- --sysconfdir=/etc/privoxy
-
- emake || die "make failed."
-}
-
-src_install () {
- diropts -m 0750 -g privoxy -o privoxy
- dodir /var/log/privoxy
- keepdir /var/log/privoxy
- dodir /etc/privoxy /etc/privoxy/templates
-
- insopts -m 0640 -g privoxy -o privoxy
- insinto /etc/privoxy
- doins default.action default.filter config standard.action trust user.action
-
- insinto /etc/privoxy/templates
- doins templates/*
-
- doman privoxy.1
-
- dodoc LICENSE README AUTHORS doc/text/faq.txt ChangeLog
-
- insopts
- for i in developer-manual faq man-page user-manual
- do
- insinto /usr/share/doc/${PF}/$i
- doins doc/webserver/$i/*
- done
-
- insopts -m 0750 -g root -o root
- insinto /usr/sbin
- doins privoxy
- insinto /etc/init.d
- newins ${FILESDIR}/privoxy.rc6 privoxy
-}