forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
p3scan-2.3.2-r2.ebuild
94 lines (76 loc) · 2.42 KB
/
p3scan-2.3.2-r2.ebuild
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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit eutils toolchain-funcs user
DESCRIPTION="This is a full-transparent proxy-server for POP3-Clients"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://p3scan.sf.net/"
# Older ripmime did not install a library
DEPEND="dev-libs/libpcre
>=net-mail/ripmime-1.4.0.9
>=net-mail/mailbase-1
"
RDEPEND="net-firewall/iptables
sys-apps/openrc"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
src_prepare() {
epatch "${FILESDIR}/p3scan-ocreat.patch"
# respect CC (bug #244144), and CFLAGS (bug #240786)
sed -i \
-e "s/gcc/$(tc-getCC)/" \
-e "s:^CFLAGS=-Wall -O2 :CFLAGS=${CFLAGS} :" \
-e '/^LDFLAGS=/d' \
-e '/^ripmime\/libripmime/,+7d' \
-e '/^\.c\.o:/,+3d' \
-e '$ap3scan: LDLIBS:=-lripmime -lpcre -lssl -lcrypto\np3scan: $(OBJECTS)' \
Makefile || die
# Be sure the system copy is used
rm -rf ripmime/
}
src_install () {
newinitd "${FILESDIR}"/${PN}.init-r1 ${PN}
dosbin ${PN}
dodir /etc/${PN}
insinto /etc/${PN}
doins ${PN}.conf ${PN}-*.mail
doins ${PN}-*.mail
keepdir /var/spool/${PN}
keepdir /var/spool/${PN}/children
keepdir /var/spool/${PN}/notify
fowners mail:mail /var/spool/${PN}
fperms 700 /var/spool/${PN}
fowners mail:mail /var/spool/${PN}/children
fperms 700 /var/spool/${PN}/children
fowners mail:mail /var/spool/${PN}/notify
fperms 700 /var/spool/${PN}/notify
doman p3scan.8.gz p3scan_readme.8.gz
dodoc AUTHORS CHANGELOG CONTRIBUTERS NEWS README \
README-rpm TODO.list p3scan.sh spamfaq.*
}
pkg_postinst() {
if [ ! -L /etc/${PN}/${PN}.mail ]; then
ln -sf /etc/${PN}/${PN}-en.mail /etc/${PN}/${PN}.mail || die
fi
if [[ -z ${REPLACING_VERSIONS} ]] ; then
echo
elog "Default infected notification template language is set to english, change the"
elog "symbolic link /etc/${PN}/${PN}.mail if you want it in another language."
elog
elog "To start ${PN}, you can use /etc/init.d/${PN} start"
elog
elog "You need port-redirecting, a rule like:"
elog " iptables -t nat -A PREROUTING -p tcp -i eth0 --dport pop3 -j REDIRECT --to 8110"
elog "to forward pop3 connections incoming from eth0 interface."
elog
elog "You will need to configure at least following in /etc/${PN}/${PN}.conf:"
elog "scannertype, scanner, virusregexp"
elog
elog "An example scanner script has been installed to:"
elog "/usr/share/doc/${PF}/"
echo
fi
}