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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/dspam-web/dspam-web-3.6.0.ebuild,v 1.2 2005/11/06 04:14:16 st_lim Exp $
inherit webapp eutils
MY_PN=${PN/-web/}
MY_P=${MY_PN}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Web based administration and user controls for dspam"
SRC_URI="http://dspam.nuclearelephant.com/sources/${MY_P}.tar.gz
http://dspam.nuclearelephant.com/sources/extras/dspam_sa_trainer.tar.gz"
HOMEPAGE="http://dspam.nuclearelephant.com/"
LICENSE="GPL-2"
IUSE="clamav debug large-domain logrotate mysql neural oci8 postgres sqlite virtual-users"
DEPEND=">=mail-filter/dspam-${PV}
clamav? ( >=app-antivirus/clamav-0.86 )
mysql? ( >=dev-db/mysql-3.23 )
sqlite? ( dev-db/sqlite )
postgres? ( >=dev-db/postgresql-7.4.3 )
>=sys-libs/db-4.0
>=net-www/apache-1.3
>=dev-lang/perl-5.8.2
>=dev-perl/GD-2.0
dev-perl/GD-Graph3d
dev-perl/GDGraph
dev-perl/GDTextUtil"
KEYWORDS="~x86 ~ppc ~amd64"
# some FHS-like structure
HOMEDIR="/var/spool/dspam"
CONFDIR="/etc/mail/dspam"
LOGDIR="/var/log/dspam"
src_compile() {
local myconf
myconf="${myconf} --enable-long-username"
myconf="${myconf} --with-delivery-agent=/usr/bin/procmail"
use large-domain && myconf="${myconf} --enable-large-scale" ||\
myconf="${myconf} --enable-domain-scale"
myconf="${myconf} --with-dspam-home=${HOMEDIR}"
myconf="${myconf} --sysconfdir=${CONFDIR}"
use virtual-users || myconf="${myconf} --enable-homedir"
use clamav || myconf="${myconf} --enable-clamav"
# enables support for debugging (touch /etc/dspam/.debug to turn on)
# optional: even MORE debugging output, use with extreme caution!
use debug && myconf="${myconf} --enable-debug --enable-verbose-debug"
# select storage driver
if use sqlite ; then
myconf="${myconf} --with-storage-driver=sqlite_drv"
myconf="${myconf} --enable-virtual-users"
elif use mysql; then
myconf="${myconf} --with-storage-driver=mysql_drv"
myconf="${myconf} --with-mysql-includes=/usr/include/mysql"
myconf="${myconf} --with-mysql-libraries=/usr/lib/mysql"
myconf="${myconf} --enable-preferences-extension"
if has_version ">sys-kernel/linux-headers-2.6"; then
myconf="${myconf} --enable-daemon"
fi
use virtual-users && myconf="${myconf} --enable-virtual-users"
# an experimental feature available with MySQL and PgSQL backend
use neural && myconf="${myconf} --enable-neural-networking"
elif use postgres ; then
myconf="${myconf} --with-storage-driver=pgsql_drv"
myconf="${myconf} --with-pgsql-includes=/usr/include/postgresql"
myconf="${myconf} --with-pgsql-libraries=/usr/lib/postgresql"
myconf="${myconf} --enable-preferences-extension"
if has_version ">sys-kernel/linux-headers-2.6"; then
myconf="${myconf} --enable-daemon"
fi
use virtual-users && myconf="${myconf} --enable-virtual-users"
# an experimental feature available with MySQL and PgSQL backend
use neural && myconf="${myconf} --enable-neural-networking"
elif use oci8 ; then
myconf="${myconf} --with-storage-driver=ora_drv"
myconf="${myconf} --with-oracle-home=${ORACLE_HOME}"
myconf="${myconf} --enable-virtual-users"
# I am in no way a Oracle specialist. If someone knows
# how to query the version of Oracle, then let me know.
if (expr ${ORACLE_HOME/*\/} : 10 1>/dev/null 2>&1); then
myconf="${myconf} --with-oracle-version=10"
fi
else
myconf="${myconf} --with-storage-driver=libdb4_drv"
fi
econf ${myconf} || die
cd ${S}/webui
make
}
src_install () {
cd ${S}/webui
webapp_src_preinst
sed -e 's,/var/dspam,/etc/mail/dspam,' \
-e 's,/usr/local,/usr,' \
-i ${S}/webui/cgi-bin/admin.cgi
sed -e 's,/var/dspam,/etc/mail/dspam,' \
-e 's,/usr/local,/usr,' \
-i ${S}/webui/cgi-bin/dspam.cgi
cp -r ${S}/webui/htdocs/* ${D}/${MY_HTDOCSDIR} || die
cp -r ${S}/webui/cgi-bin/* ${D}/${MY_CGIBINDIR} || die
insinto ${MY_HTDOCSDIR}
insopts -m644 -o apache -g apache
newins ${FILESDIR}/htaccess .htaccess
newins ${FILESDIR}/htpasswd .htpasswd
#All files must be owned by server
cd ${D}/${MY_HTDOCSDIR}
for file in `find -type d -printf "%p/* "`; do
webapp_serverowned "${MY_HTDOCSDIR}/${file}"
done
#All files must be owned by server
cd ${D}/${MY_CGIBINDIR}
for file in `find -type d -printf "%p/* "`; do
webapp_serverowned "${MY_CGIBINDIR}/${file}"
done
webapp_src_install
}
pkg_config () {
# add apache to the dspam group so the CGIs can access the data
local groups
groups=`groups apache`
groups=`echo ${groups} | sed -e 's/ /,/g'`
usermod -G "${groups},dspam" apache
}
pkg_postinst () {
einfo "The CGIs need to be executed as group dspam in order to write"
einfo "to the dspam data directory. You will need to configure apache"
einfo "manually to do this. Another option is to add the user apache"
einfo "to the dspam group. You can do this automatically by running:"
echo
einfo "ebuild /var/db/pkg/${CATEGORY}/${PF}/${PF}.ebuild config"
echo
einfo "This app requires basic auth in order to operate properly."
einfo "You will need to add dspam users to the .htpasswd file or"
einfo "configure a different authentication mechanism for the user"
einfo "accounts."
}
|