blob: 6314b5a73fa76ff544b4a5d8290267610b27a012 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/squidguard/squidguard-1.2.0.ebuild,v 1.8 2004/06/25 01:12:53 agriffis Exp $
DESCRIPTION="Combined filter, redirector and access controller plugin for Squid."
HOMEPAGE="http://www.squidguard.org"
SRC_URI="http://ftp.teledanmark.no/pub/www/proxy/squidGuard/squidGuard-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~sparc"
IUSE=""
RDEPEND="net-www/squid
>=sys-libs/db-2"
DEPEND="${RDEPEND}
sys-devel/bison
sys-devel/flex"
S="${WORKDIR}/squidGuard-${PV}"
src_unpack() {
unpack ${A}
cd ${S}
patch -p1 <${FILESDIR}/${P}-db4.patch
autoconf
}
src_compile() {
econf || die "configure problem"
emake || die "compile problem"
}
src_install() {
make prefix=${D}/usr install
insinto /etc/squidGuard/sample
doins ${FILESDIR}/squidGuard.conf.*
insinto /etc/squidGuard/sample/db
doins ${FILESDIR}/blockedsites
dodoc ANNOUNCE CHANGELOG COPYING GPL README
dohtml doc/*.html
docinto text
dodoc doc/*.txt
}
pkg_postinst() {
ewarn "You must add the following line to your /etc/squid/squid.conf:"
ewarn ""
ewarn "\tredirect_program /usr/bin/squidGuard -c /etc/squidGuard/squidGuard.conf"
ewarn ""
ewarn "Remember to edit /etc/squidGuard/squidGuard.conf first!"
ewarn "Examples can be found in /etc/squidGuard/sample/"
}
|