blob: e8399aa9a919bc1a34ebd538072df53c01f36f0e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/ziproxy/ziproxy-2.2.2.ebuild,v 1.3 2007/10/06 01:42:46 sbriesen Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
inherit eutils
DESCRIPTION="A forwarding, non-caching, compressing web proxy server"
HOMEPAGE="http://ziproxy.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE="jpeg2k xinetd"
DEPEND="dev-libs/confuse
media-libs/giflib
media-libs/libpng
media-libs/jpeg
sys-libs/zlib
jpeg2k? ( media-libs/jasper )
xinetd? ( virtual/inetd )"
pkg_setup() {
enewgroup ziproxy
enewuser ziproxy -1 -1 -1 ziproxy
}
src_unpack() {
unpack ${A}
cd "${S}"
# fix sample config file
sed -i -e "s:/usr/local/ziproxy/\(ziproxy.passwd\):/etc/\1:g" \
-e "s:/var/ziproxy/:/var/lib/ziproxy/:g" etc/ziproxy.conf
# 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
}
src_compile() {
local myconf="--enable-shared-confuse --with-cfgfile=/etc/ziproxy.conf" # --enable-testprogs
use jpeg2k && myconf="${myconf} --with-jasper" # use_with doesn't work
econf ${myconf} || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodir /usr/sbin
mv -f "${D}usr/bin/ziproxy" "${D}usr/sbin/ziproxy"
newbin stats.awk ${PN}_stats.awk
dobin src/tools/ziproxy_genhtml_stats.sh
newinitd "${FILESDIR}/${PN}-${PV%.*}.initd" ${PN}
newconfd "${FILESDIR}/${PN}-${PV%.*}.confd" ${PN}
dodoc ChangeLog CREDITS README README.tools
use jpeg2k && dodoc JPEG2000.txt
insinto /etc
doins etc/ziproxy.conf
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
}
|