blob: 502d684b90128708e6f28c603afdb0fcbd9f39e0 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/popfile/popfile-0.21.1.ebuild,v 1.2 2004/03/17 19:07:20 stuart Exp $
DESCRIPTION="Anti-spam filter"
HOMEPAGE="http://foo.bar.com/"
SRC_URI="mirror://sourceforge/popfile/popfile-0.20.1.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=">=dev-lang/perl-5.8
>=dev-perl/BerkeleyDB-0.25
dev-perl/Text-Kakasi
dev-perl/MIME-Base64
dev-perl/HTML-Tagset"
#RDEPEND=""
S=${WORKDIR}
src_compile() {
# do nothing
echo > /dev/null
}
src_install() {
# yes, this is crude, but it's a start
dodir /usr/share/popfile
find . -type f -print | xargs chmod 600
find . -type d -print | xargs chmod 700
tar -cf - * | ( cd ${D}/usr/share/popfile && tar -xf - )
fperms 0755 usr/share/popfile/popfile.pl
dodir /usr/share/popfile/corpus
dodir /usr/share/popfile/messages
}
pkg_postinst () {
einfo "To start popfile, run /usr/share/popfile/popfile.pl"
einfo
einfo "A /etc/init.d script will be added once popfile can support"
einfo "multiple users"
}
|