blob: 55580b1aa5ee32925a421137aefbf35f09aefc5d (
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
55
56
57
58
59
60
61
62
63
|
DESCRIPTION = "Privoxy is a web proxy with advanced filtering capabilities for protecting \
privacy, modifying web page content, managing cookies, controlling access, and \
removing ads, banners, pop-ups and other obnoxious Internet junk."
SECTION = "console/network"
PRIORITY = "optional"
LICENSE = "GPL"
DEPENDS = "pcre"
PR = "r0"
SRC_URI = "${SOURCEFORGE_MIRROR}/ijbswa/privoxy-${PV}-stable-src.tar.gz \
file://privoxy.conf \
file://privoxy.init"
S = "${WORKDIR}/privoxy-${PV}-stable"
inherit autotools update-rc.d
LDFLAGS += "-L${STAGING_LIBDIR}"
CFLAGS += "-L${STAGING_LIBDIR} -I${STAGING_INCDIR}"
INITSCRIPT_NAME = "privoxy"
do_compile() {
autoheader && autoconf && ./configure --host=localhost --disable-pthread
oe_runmake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
}
do_install() {
mkdir -p ${D}/${sbindir}
install -m 0755 ${S}/privoxy ${D}/${sbindir}
# Documentation
mkdir -p ${D}/${docdir}
install -m 0755 -d ${S}/doc ${D}/${docdir}
# Install man page
mkdir -p ${D}/${mandir}
install -m 0755 ${S}/privoxy.1 ${D}/${mandir}
}
do_install_append() {
# Install config files
install -d ${D}${sysconfdir}/privoxy/templates
install ${WORKDIR}/privoxy.conf ${D}${sysconfdir}/privoxy/config
install ${S}/templates/* ${D}${sysconfdir}/privoxy/templates/
install ${S}/default.action ${D}${sysconfdir}/privoxy/
install ${S}/default.filter ${D}${sysconfdir}/privoxy/
install ${S}/standard.action ${D}${sysconfdir}/privoxy/
install ${S}/trust ${D}${sysconfdir}/privoxy/
install ${S}/user.action ${D}${sysconfdir}/privoxy/
# Install init script
install -d ${D}${sysconfdir}/init.d
install ${WORKDIR}/privoxy.init ${D}${sysconfdir}/init.d/privoxy
}
# Add user and groups
pkg_postinst() {
grep -q privoxy: /etc/group || addgroup privoxy
grep -q privoxy: /etc/passwd || adduser --disabled-password --home=/etc/privoxy \
--ingroup privoxy -g "Privoxy" privoxy
}
|