blob: f9b50e087807506c13f9b9973ccf5d0af15eabd0 (
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/c-icap-0.1.3.ebuild,v 1.1 2010/11/22 15:44:41 flameeyes Exp $
EAPI=2
inherit eutils multilib autotools
MY_PN=${PN/-/_}
MY_P=${MY_PN}-${PV}
DESCRIPTION="C Implementation of an ICAP server"
HOMEPAGE="http://c-icap.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64"
IUSE="berkdb ldap ipv6 ldap"
RDEPEND="berkdb? ( sys-libs/db )
ldap? ( net-nds/openldap )
sys-libs/zlib"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}/${P}-asneeded.patch"
epatch "${FILESDIR}/${P}-implicit.patch"
eautoreconf
}
src_configure() {
econf \
--sysconfdir=/etc/${PN} \
--disable-dependency-tracking \
--disable-maintainer-mode \
--disable-static \
--enable-large-files \
$(use_enable ipv6) \
$(use_with berkdb bdb) \
$(use_with ldap)
}
src_compile() {
emake LOGDIR="/var/log" || die
}
src_install() {
emake \
LOGDIR="/var/log" \
DESTDIR="${D}" install || die
find "${D}" -name '*.la' -delete || die
# Move the daemon out of the way
dodir /usr/libexec
mv "${D}"/usr/bin/c-icap "${D}"/usr/libexec || die
# Remove the default configuration files since we have etc-update to
# take care of it for us.
rm "${D}"/etc/${PN}/c-icap.*.default || die
# Fix the configuration file; for some reason it's a bit messy
# around.
sed -i \
-e 's:/usr/var/:/var/:g' \
-e 's:/var/log/:/var/log/c-icap/:g' \
-e 's:/usr/etc/:/etc/c-icap/:g' \
-e 's:/usr/local/c-icap/etc/:/etc/c-icap/:g' \
-e 's:/usr/lib/:/usr/'$(get_libdir)'/:g' \
"${D}"/etc/${PN}/c-icap.conf \
|| die
dodoc AUTHORS README TODO ChangeLog || die
newinitd "${FILESDIR}/${PN}.init" ${PN} || die
keepdir /var/log/c-icap || die
}
pkg_postinst() {
elog "To enable Squid to call the ICAP modules from a local server you should set"
elog "the following in your squid.conf:"
elog ""
elog " icap_enable on"
elog ""
elog " # not strictly needed, but some modules might make use of these"
elog " icap_send_client_ip on"
elog " icap_send_client_username on"
elog ""
elog " icap_service service_req reqmod_precache bypass=1 icap://localhost:1344/service"
elog " adaptation_access service_req allow all"
elog ""
elog " icap_service service_resp respmod_precache bypass=0 icap://localhost:1344/service"
elog " adaptation_access service_resp allow all"
elog ""
elog "You obviously will have to replace \"service\" with the actual ICAP service to"
elog "use."
}
|