blob: 0a5b6ace383ae849d62457dee3fed90c22cf0c15 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools eutils user
DESCRIPTION="A transparent ftp proxy"
SRC_URI="http://frox.sourceforge.net/download/${P}.tar.bz2"
HOMEPAGE="http://frox.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="clamav libressl ssl transparent"
DEPEND="
clamav? ( >=app-antivirus/clamav-0.80 )
ssl? (
!libressl? ( dev-libs/openssl:0 )
libressl? ( dev-libs/libressl:0= ) )
kernel_linux? ( >=sys-kernel/linux-headers-2.6 )
"
RDEPEND="${DEPEND}"
# INSTALL has useful filewall rules
DOCS=(
BUGS README
doc/CREDITS doc/ChangeLog doc/FAQ doc/INSTALL
doc/INTERNALS doc/README.transdata doc/RELEASE
doc/SECURITY doc/TODO
)
pkg_setup() {
enewgroup ftpproxy
enewuser ftpproxy -1 -1 /var/spool/frox ftpproxy
use clamav && ewarn "Virus scanner potentialy broken in chroot - see bug #81035"
}
src_prepare () {
HTML_DOCS=( doc/*.html doc/*.sgml )
default
eapply "${FILESDIR}/${PV}-respect-CFLAGS.patch"
eapply "${FILESDIR}/${PV}-netfilter-includes.patch"
eapply "${FILESDIR}/${P}-config.patch"
if use clamav ; then
sed -i -e "s:^# VirusScanner.*:# VirusScanner '\"/usr/bin/clamscan\" \"%s\"':" \
"src/${PN}.conf" || die
fi
mv configure.in configure.ac || die
eautoreconf
}
src_configure() {
econf \
--enable-http-cache --enable-local-cache \
--enable-procname \
--enable-configfile=/etc/frox.conf \
$(use_enable !kernel_linux libiptc) \
$(use_enable clamav virus-scan) \
$(use_enable ssl) \
$(use_enable transparent transparent-data) \
$(use_enable !transparent ntp)
}
src_install() {
default
keepdir /var/{log,spool}/"${PN}"
fperms 700 /var/spool/frox
fowners ftpproxy:ftpproxy /var/{log,spool}/frox
newman "doc/${PN}.man" "${PN}.man.8"
newman "doc/${PN}.conf.man" "${PN}.conf.man.5"
newinitd "${FILESDIR}/${PN}.initd" "${PN}"
insinto /etc
newins "src/${PN}.conf" "${PN}.conf.example"
}
|