blob: 7ac3b1b6f3337f9bbb1e854934087a0a1172d598 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit user
DESCRIPTION="A forwarding, non-caching, compressing web proxy server"
HOMEPAGE="http://ziproxy.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="jpeg2k sasl xinetd"
RDEPEND="
media-libs/giflib:0=
media-libs/libpng:0=
virtual/jpeg:0
sys-libs/zlib
jpeg2k? ( media-libs/jasper:= )
sasl? ( dev-libs/cyrus-sasl )
xinetd? ( virtual/inetd )
"
DEPEND="${RDEPEND}"
PATCHES=( "${FILESDIR}"/${P}-giflib5.patch )
pkg_setup() {
enewgroup ziproxy
enewuser ziproxy -1 -1 -1 ziproxy
}
src_prepare() {
default
# fix sample config file
sed -i \
-e "s:/var/ziproxy/:/var/lib/ziproxy/:g" \
-e "s:%j-%Y.log:/var/log/ziproxy/%j-%Y.log:g" \
etc/ziproxy/ziproxy.conf || die
# fix sample xinetd config
sed -i \
-e "s:/usr/bin/:/usr/sbin/:g" \
-e "s:\(.*port.*\):\1\n\ttype\t\t\t= UNLISTED:g" \
-e "s:root:ziproxy:g" \
etc/xinetd.d/ziproxy || die
}
src_configure() {
econf \
$(use_with jpeg2k jasper) \
$(use_with sasl sasl2) \
--with-cfgfile=/etc/ziproxy/ziproxy.conf
}
src_install() {
default
dodir /usr/sbin
mv -vf "${D}"usr/{,s}bin/ziproxy || die
dobin src/tools/ziproxy_genhtml_stats.sh
newinitd "${FILESDIR}"/${PN}.initd-r1 ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
use jpeg2k && dodoc JPEG2000.txt
insinto /etc
doins -r etc/ziproxy
insinto /var/lib/ziproxy/error
doins var/ziproxy/error/*.html
if use xinetd; then
insinto /etc/xinetd.d
doins etc/xinetd.d/ziproxy
fi
diropts -m0750 -o ziproxy -g ziproxy
keepdir /var/log/ziproxy
}
|