blob: cc7308cb00231f3268e5bfb63b1bbd23d07d3277 (
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
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.5-r2.ebuild,v 1.7 2005/01/16 03:21:11 langthang Exp $
inherit eutils
IUSE="apache2"
DESCRIPTION="A python-based mailing list server with an extensive web interface"
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
HOMEPAGE="http://www.list.org/"
SLOT="O"
LICENSE="GPL-2"
KEYWORDS="x86 sparc ~ppc amd64"
DEPEND=">=dev-lang/python-2.3
virtual/mta
net-www/apache"
INSTALLDIR="/usr/local/mailman"
APACHEGID="81"
MAILGID="280"
pkg_setup() {
# Bug #58526: switch to enew{group,user}.
# need to add mailman here for compile process.
# Duplicated at pkg_postinst() for binary install.
enewgroup mailman 280
enewuser mailman 280 /bin/bash ${INSTALLDIR} mailman -G cron -c mailman
mkdir -p ${INSTALLDIR}
chown mailman:mailman ${INSTALLDIR}
chmod 2775 ${INSTALLDIR}
}
src_unpack() {
unpack ${A} && cd "${S}"
epatch ${FILESDIR}/${P}-directory-check.patch || die "patch failed."
}
src_compile() {
econf \
--prefix=${INSTALLDIR} \
--with-mail-gid=${MAILGID} \
--with-cgi-gid=${APACHEGID} \
|| die "configure failed"
make || die "make failed"
}
src_install () {
ID=${D}${INSTALLDIR}
make prefix=${ID} var_prefix=${ID} doinstall || die
keepdir ${INSTALLDIR}/logs
keepdir ${INSTALLDIR}/locks
keepdir ${INSTALLDIR}/spam
keepdir ${INSTALLDIR}/archives/public
keepdir ${INSTALLDIR}/archives/private
keepdir ${INSTALLDIR}/lists
keepdir ${INSTALLDIR}/qfiles
if use apache2; then
dodir /etc/apache2/conf/modules.d
insinto /etc/apache2/conf/modules.d
newins ${FILESDIR}/mailman.conf 50_mailman.conf
else
dodir /etc/apache/conf/addon-modules
insinto /etc/apache/conf/addon-modules
doins ${FILESDIR}/mailman.conf
fi
dodoc ${FILESDIR}/README.gentoo
dodoc ACK* BUGS FAQ NEWS README* TODO UPGRADING INSTALL
dodoc contrib/README.check_perms_grsecurity contrib/mm-handler.readme
dodoc contrib/virtusertable contrib/mailman.mc
cp build/contrib/*.py contrib/majordomo2mailman.pl contrib/auto \
contrib/mm-handler* ${D}/usr/local/mailman/bin
# Save the old config into the new package as CONFIG_PROTECT
# doesn't work for this package.
if [ -f ${ROOT}/var/mailman/Mailman/mm_cfg.py ]; then
cp ${ROOT}/var/mailman/Mailman/mm_cfg.py \
${D}/usr/local/mailman/Mailman/mm_cfg.py
einfo "Your old config has been saved as mm_cfg.py"
einfo "A new config has been installed as mm_cfg.dist"
fi
if [ -f ${ROOT}/home/mailman/Mailman/mm_cfg.py ]; then
cp ${ROOT}/home/mailman/Mailman/mm_cfg.py \
${D}/usr/local/mailman/Mailman/mm_cfg.py
einfo "Your old config has been saved as mm_cfg.py"
einfo "A new config has been installed as mm_cfg.py.dist"
fi
if [ -f ${ROOT}/usr/local/mailman/Mailman/mm_cfg.py ]; then
cp ${ROOT}/usr/local/mailman/Mailman/mm_cfg.py \
${D}/usr/local/mailman/Mailman/mm_cfg.py
einfo "Your old config has been saved as mm_cfg.py"
einfo "A new config has been installed as mm_cfg.py.dist"
fi
exeinto /etc/init.d
newexe ${FILESDIR}/mailman.rc mailman
chown -R mailman:mailman ${ID}
chmod 2775 ${ID}
}
pkg_postinst() {
enewgroup mailman 280
enewuser mailman 280 /bin/false ${INSTALLDIR} mailman -G cron -c "mailman"
cd ${INSTALLDIR}
bin/update
einfo "Running \`${INSTALLDIR}/bin/check_perms -f\` *"
bin/check_perms -f
einfo ""
einfo "Please read /usr/share/doc/${PF}/README.gentoo.gz for additional"
einfo "Setup information, mailman will NOT run unless you follow"
einfo "those instructions!"
einfo ""
if ! use apache2; then
einfo "It appears that you aren't running apache2..."
einfo "ebuild /var/db/pkg/net-mail/${PN}/${PF}.ebuild config"
einfo "to add the mailman hooks to your config"
fi
}
pkg_config() {
if ! use apache2; then
einfo "Updating apache config"
einfo "added: \"Include conf/addon-modules/mailman.conf\""
einfo "to ${ROOT}etc/apache/conf/apache.conf"
echo "Include conf/addon-modules/mailman.conf" \
>> ${ROOT}etc/apache/conf/apache.conf
fi
}
|