summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2004-01-04 18:38:27 +0000
committerMartin Holzer <mholzer@gentoo.org>2004-01-04 18:38:27 +0000
commitbf27d6f1cef2db74ee855d18eeb1b72bca54facd (patch)
treeb71f6b2958af2f60acad4570faa9c3778982f0d4 /net-mail/mailman
parentVarious epatch sed and cosmetic changes (diff)
downloadgentoo-2-bf27d6f1cef2db74ee855d18eeb1b72bca54facd.tar.gz
gentoo-2-bf27d6f1cef2db74ee855d18eeb1b72bca54facd.tar.bz2
gentoo-2-bf27d6f1cef2db74ee855d18eeb1b72bca54facd.zip
cleanup
Diffstat (limited to 'net-mail/mailman')
-rw-r--r--net-mail/mailman/files/digest-mailman-2.1.1-r21
-rw-r--r--net-mail/mailman/files/digest-mailman-2.1.1-r31
-rw-r--r--net-mail/mailman/files/mailman.2.1.1-r2.conf17
-rw-r--r--net-mail/mailman/files/mailman.2.1.1-r3.conf17
-rw-r--r--net-mail/mailman/mailman-2.1.1-r2.ebuild94
-rw-r--r--net-mail/mailman/mailman-2.1.1-r3.ebuild96
6 files changed, 0 insertions, 226 deletions
diff --git a/net-mail/mailman/files/digest-mailman-2.1.1-r2 b/net-mail/mailman/files/digest-mailman-2.1.1-r2
deleted file mode 100644
index 16cd1f01a87b..000000000000
--- a/net-mail/mailman/files/digest-mailman-2.1.1-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 7f7cdc52a40a17a2c7ee91c5f4dd675d mailman-2.1.1.tgz 5473754
diff --git a/net-mail/mailman/files/digest-mailman-2.1.1-r3 b/net-mail/mailman/files/digest-mailman-2.1.1-r3
deleted file mode 100644
index 16cd1f01a87b..000000000000
--- a/net-mail/mailman/files/digest-mailman-2.1.1-r3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 7f7cdc52a40a17a2c7ee91c5f4dd675d mailman-2.1.1.tgz 5473754
diff --git a/net-mail/mailman/files/mailman.2.1.1-r2.conf b/net-mail/mailman/files/mailman.2.1.1-r2.conf
deleted file mode 100644
index 5e2524e2bace..000000000000
--- a/net-mail/mailman/files/mailman.2.1.1-r2.conf
+++ /dev/null
@@ -1,17 +0,0 @@
-ScriptAlias /mailman/ "/var/mailman/cgi-bin/"
-
-<Directory "/var/mailman/cgi-bin/">
- AllowOverride None
- Options None
- Order allow,deny
- Allow from all
-</Directory>
-
-Alias /pipermail/ "/var/mailman/archives/public/"
-
-<Directory "/var/mailman/archives/public/">
- AllowOverride None
- Options ExecCGI FollowSymLinks
- Order allow,deny
- Allow from all
-</Directory>
diff --git a/net-mail/mailman/files/mailman.2.1.1-r3.conf b/net-mail/mailman/files/mailman.2.1.1-r3.conf
deleted file mode 100644
index c8abe11ebc47..000000000000
--- a/net-mail/mailman/files/mailman.2.1.1-r3.conf
+++ /dev/null
@@ -1,17 +0,0 @@
-ScriptAlias /mailman/ "/home/mailman/cgi-bin/"
-
-<Directory "/home/mailman/cgi-bin/">
- AllowOverride None
- Options None
- Order allow,deny
- Allow from all
-</Directory>
-
-Alias /pipermail/ "/home/mailman/archives/public/"
-
-<Directory "/home/mailman/archives/public/">
- AllowOverride None
- Options ExecCGI FollowSymLinks
- Order allow,deny
- Allow from all
-</Directory>
diff --git a/net-mail/mailman/mailman-2.1.1-r2.ebuild b/net-mail/mailman/mailman-2.1.1-r2.ebuild
deleted file mode 100644
index c0af7e2d0e46..000000000000
--- a/net-mail/mailman/mailman-2.1.1-r2.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.1-r2.ebuild,v 1.5 2003/12/14 22:57:29 spider Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="GNU Mailman, the mailing list server with webinterface"
-SRC_URI="mirror://gnu/${PN}/${P}.tgz"
-HOMEPAGE="http://www.list.org/"
-
-SLOT="O"
-LICENSE="GPL-2"
-KEYWORDS="~x86 ~sparc "
-
-IUSE=""
-
-DEPEND=">=dev-lang/python-1.5.2
- virtual/mta
- net-www/apache"
-
-INSTALLDIR="/var/mailman"
-APACHEGID="81"
-MAILGID="daemon"
-
-pkg_setup() {
- if ! grep -q ^mailman: /etc/group ; then
- groupadd -g 280 mailman || die "problem adding group mailman"
- fi
- if ! grep -q ^mailman: /etc/passwd ; then
- useradd -u 280 -g mailman -G cron -s /bin/bash \
- -d ${INSTALLDIR} -c "mailman" mailman
- fi
- mkdir -p ${INSTALLDIR}
- chown mailman:mailman ${INSTALLDIR}
- chmod 2775 ${INSTALLDIR}
-}
-
-src_compile() {
- cd ${S}
- ./configure \
- --prefix=${INSTALLDIR} \
- --with-mail-gid=${MAILGID} \
- --with-cgi-gid=${APACHEGID}
- make || die
-}
-
-src_install () {
- ID=${D}${INSTALLDIR}
- cd ${S}
- mkdir -p ${ID}
- chown -R mailman:mailman ${ID}
- chmod 2775 ${ID}
- make prefix=${ID} var_prefix=${ID} doinstall || die
- insinto /etc/apache/conf/addon-modules
- newins ${FILESDIR}/mailman.2.1.1-r2.conf mailman.conf
-
- dodoc ${FILESDIR}/README.gentoo
- dodoc ACK* BUGS FAQ NEWS README* TODO UPGRADING
- dodoc contrib/README.check_perms_grsecurity contrib/mm-handler.readme
- dodoc contrib/virtusertable contrib/mailman.mc
-
- cp contrib/*.py contrib/majordomo2mailman.pl contrib/auto \
- contrib/mm-handler* ${D}/var/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
- rm ${D}/var/mailman/Mailman/mm_cfg.py
- cp ${ROOT}/var/mailman/Mailman/mm_cfg.py \
- ${D}/var/mailman/Mailman/mm_cfg.py
- einfo "Your old config has been saved."
- einfo "A new config has been installed as mm_cfg.py.dist"
- fi
-
- exeinto /etc/init.d
- newexe ${FILESDIR}/mailman.rc mailman
- }
-
-pkg_postinst() {
- cd ${INSTALLDIR}
- bin/update
- 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!"
-}
-
-pkg_config() {
- 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
-}
diff --git a/net-mail/mailman/mailman-2.1.1-r3.ebuild b/net-mail/mailman/mailman-2.1.1-r3.ebuild
deleted file mode 100644
index 2c518df17eb2..000000000000
--- a/net-mail/mailman/mailman-2.1.1-r3.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/mailman/mailman-2.1.1-r3.ebuild,v 1.6 2003/12/14 22:57:30 spider Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="GNU Mailman, the mailing list server with webinterface"
-SRC_URI="mirror://gnu/${PN}/${P}.tgz"
-HOMEPAGE="http://www.list.org/"
-
-SLOT="O"
-LICENSE="GPL-2"
-KEYWORDS="~x86 ~sparc "
-
-IUSE=""
-
-DEPEND=">=dev-lang/python-1.5.2
- virtual/mta
- net-www/apache"
-
-INSTALLDIR="/home/mailman"
-APACHEGID="81"
-MAILGID="daemon"
-
-pkg_setup() {
- if ! grep -q ^mailman: /etc/group ; then
- groupadd -g 280 mailman || die "problem adding group mailman"
- fi
- if ! grep -q ^mailman: /etc/passwd ; then
- useradd -u 280 -g mailman -G cron -s /bin/bash \
- -d ${INSTALLDIR} -c "mailman" mailman
- fi
- mkdir -p ${INSTALLDIR}
- chown mailman:mailman ${INSTALLDIR}
- chmod 2775 ${INSTALLDIR}
-}
-
-src_compile() {
- cd ${S}
- ./configure \
- --prefix=${INSTALLDIR} \
- --with-mail-gid=${MAILGID} \
- --with-cgi-gid=${APACHEGID}
- make || die
-}
-
-src_install () {
- ID=${D}${INSTALLDIR}
- cd ${S}
- mkdir -p ${ID}
- chown -R mailman:mailman ${ID}
- chmod 2775 ${ID}
- make prefix=${ID} var_prefix=${ID} doinstall || die
- insinto /etc/apache/conf/addon-modules
- newins ${FILESDIR}/mailman.2.1.1-r3.conf mailman.conf
-
- dodoc ${FILESDIR}/README.gentoo
- dodoc ACK* BUGS FAQ NEWS README* TODO UPGRADING
- dodoc contrib/README.check_perms_grsecurity contrib/mm-handler.readme
- dodoc contrib/virtusertable contrib/mailman.mc
-
- cp contrib/*.py contrib/majordomo2mailman.pl contrib/auto \
- contrib/mm-handler* ${D}/home/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}/home/mailman/Mailman/mm_cfg.py \
- ${D}/home/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
- }
-
-pkg_postinst() {
- cd ${INSTALLDIR}
- bin/update
- 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!"
- ewarn "The home directory for mailman has been moved from /var/mailman"
- ewarn "to /home/mailman. (Any existing config has been saved in the"
- ewarn "new home directory.)"
-}
-
-pkg_config() {
- 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
-}