summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2008-09-30 07:20:36 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2008-09-30 07:20:36 +0000
commitea6801f93c46942a67d803567ab3c90beba0e9f9 (patch)
tree33b5e544189b55b5e131c49bd9cde703b2f86635 /mail-filter
parentBug #182172, version bump. Very nice submission from steveb <steeeeeveee@gmx.... (diff)
downloadgentoo-2-ea6801f93c46942a67d803567ab3c90beba0e9f9.tar.gz
gentoo-2-ea6801f93c46942a67d803567ab3c90beba0e9f9.tar.bz2
gentoo-2-ea6801f93c46942a67d803567ab3c90beba0e9f9.zip
Clean up old ebuilds.
(Portage version: 2.2_rc11/cvs/Linux 2.6.27-rc1-10246-gca5de40 x86_64)
Diffstat (limited to 'mail-filter')
-rw-r--r--mail-filter/dcc/ChangeLog7
-rw-r--r--mail-filter/dcc/dcc-1.2.28-r1.ebuild99
-rw-r--r--mail-filter/dcc/dcc-1.2.28.ebuild91
-rw-r--r--mail-filter/dcc/dcc-1.2.74.ebuild101
-rw-r--r--mail-filter/dcc/dcc-1.3.16.ebuild101
-rw-r--r--mail-filter/dcc/dcc-1.3.24.ebuild112
-rw-r--r--mail-filter/dcc/dcc-1.3.31.ebuild112
7 files changed, 6 insertions, 617 deletions
diff --git a/mail-filter/dcc/ChangeLog b/mail-filter/dcc/ChangeLog
index e5bf5f1cb8c4..d9372fb99fd9 100644
--- a/mail-filter/dcc/ChangeLog
+++ b/mail-filter/dcc/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for mail-filter/dcc
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/dcc/ChangeLog,v 1.50 2008/09/30 07:15:49 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-filter/dcc/ChangeLog,v 1.51 2008/09/30 07:20:36 robbat2 Exp $
+
+ 30 Sep 2008; Robin H. Johnson <robbat2@gentoo.org> -dcc-1.2.28.ebuild,
+ -dcc-1.2.28-r1.ebuild, -dcc-1.2.74.ebuild, -dcc-1.3.16.ebuild,
+ -dcc-1.3.24.ebuild, -dcc-1.3.31.ebuild:
+ Clean up old ebuilds.
*dcc-1.3.97 (30 Sep 2008)
diff --git a/mail-filter/dcc/dcc-1.2.28-r1.ebuild b/mail-filter/dcc/dcc-1.2.28-r1.ebuild
deleted file mode 100644
index 04ff4f6bebe2..000000000000
--- a/mail-filter/dcc/dcc-1.2.28-r1.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/dcc/dcc-1.2.28-r1.ebuild,v 1.4 2005/09/12 08:30:52 ticho Exp $
-
-DESCRIPTION="Distributed Checksum Clearinghouse"
-HOMEPAGE="http://www.rhyolite.com/anti-spam/dcc/"
-MY_P="dcc-dccd-${PV}"
-SRC_URI="http://www.rhyolite.com/anti-spam/dcc/source/${MY_P}.tar.Z"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="x86 ppc amd64"
-IUSE="ipv6"
-
-RDEPEND="dev-lang/perl
- net-analyzer/rrdtool
- || ( mail-filter/procmail mail-mta/courier )
- || ( net-misc/wget www-client/fetch net-misc/curl net-ftp/ftp )
- virtual/libc"
-DEPEND="sys-apps/sed
- sys-devel/gcc
- ${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-dcc_cgibin=/var/www/localhost/cgi-bin/dcc
-dcc_homedir=/var/dcc
-dcc_libexec=/usr/sbin
-dcc_man=/usr/share/man
-dcc_rundir=/var/run/dcc
-
-src_compile() {
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-init.in
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-graph.in
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-collect.in
-
- local myconf
- myconf="${myconf} --homedir=${dcc_homedir}"
- myconf="${myconf} --libexecdir=${dcc_libexec}"
- myconf="${myconf} --bindir=/usr/bin"
- myconf="${myconf} --mandir=/usr/share/man"
- myconf="${myconf} --with-cgibin=${dcc_cgibin}"
- myconf="${myconf} --disable-dccm"
- #myconf="${myconf} --without-cgibin"
- myconf="${myconf} --with-rundir=/var/run/dcc"
- myconf="${myconf} `use_enable ipv6 IPv6`"
- ./configure ${myconf} || die "configure failed!"
- #make -C homedir
- emake || die "emake failed!"
-}
-
-moveconf() {
- for i in $@; do
- local into=/etc/dcc/
- local from=/var/dcc/
- mv ${D}${from}${i} ${D}${into}
- dosym ${into}${i} ${from}${i}
- done
-}
-
-src_install() {
- # stolen from the RPM .spec and modified for gentoo
- MANOWN=root MANGRP=root export MANOWN MANGRP
- BINOWN=$MANOWN BINGRP=$MANGRP export BINOWN BINGRP
- DCC_PROTO_HOMEDIR=${D}${dcc_homedir} export DCC_PROTO_HOMEDIR
- DCC_CGIBINDIR=${D}${dcc_cgibin} export DCC_CGIBINDIR
- DCC_SUID=$BINOWN DCC_OWN=$BINOWN DCC_GRP=$BINGRP export DCC_SUID DCC_OWN DCC_GRP
-
- dodir /etc/cron.daily ${dcc_homedir} ${dcc_cgibin} /usr/bin /usr/sbin /usr/share/man/man{0,8} /etc/dcc
- keepdir /var/run/dcc /var/log/dcc
-
- make DESTDIR=${D} DCC_BINDIR=${D}/usr/bin MANDIR=${D}/usr/share/man/man install || die
-
- einfo "Branding and setting reasonable defaults"
- sed -e "s/BRAND=\$/BRAND='Gentoo ${PF}'/;" \
- -e "s/DCCM_LOG_AT=5\$/DCCM_LOG_AT=50/;" \
- -e "s,DCCM_LOGDIR=log\$,DCCM_LOGDIR=/var/log/dcc,;" \
- -e "s/DCCM_ARGS=\$/DCCM_ARGS='-SHELO -Smail_host -SSender -SList-ID'/;" \
- -e "s/DCCIFD_ARGS=\$/DCCIFD_ARGS=\"\$DCCM_ARGS\"/;" \
- -e 's/DCCIFD_ENABLE=off/DCCIFD_ENABLE=on/' \
- -i ${D}${dcc_homedir}/dcc_conf
-
- einfo "Providing cronjob"
- mv ${D}/usr/bin/cron-dccd ${D}/etc/cron.daily/dccd
-
- einfo "Puting system code in sbin instead of bin"
- mv ${D}/usr/bin/{dbclean,dblist,dccd,dccsight,refeed,start-dccd,stop-dccd,wlist,dcc-stats-graph,newwebuser,dcc-stats-init,stats-get,dcc-stats-collect,dccifd,start-grey,start-dccifd,fetch-testmsg-whitelist} ${D}/usr/sbin/
-
- einfo "Cleaning up"
- rm -f ${D}/usr/bin/{logger,hackmc,na-spam,ng-spam,rcDCC,start-dccm,updatedcc}
-
- einfo "Placing configuration files into /etc instead of /var/run"
- moveconf dcc_conf flod grey_flod grey_whitelist ids map.txt whiteclnt whitecommon whitelist
-
- rmdir ${D}/var/dcc/log/
-}
diff --git a/mail-filter/dcc/dcc-1.2.28.ebuild b/mail-filter/dcc/dcc-1.2.28.ebuild
deleted file mode 100644
index fb2b09ffcf0f..000000000000
--- a/mail-filter/dcc/dcc-1.2.28.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/dcc/dcc-1.2.28.ebuild,v 1.10 2005/09/12 08:30:52 ticho Exp $
-
-DESCRIPTION="Distributed Checksum Clearinghouse"
-HOMEPAGE="http://www.rhyolite.com/anti-spam/dcc/"
-MY_P="dcc-dccd-${PV}"
-SRC_URI="http://www.rhyolite.com/anti-spam/dcc/source/${MY_P}.tar.Z"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~amd64"
-IUSE="ipv6"
-
-RDEPEND="dev-lang/perl
- || ( mail-filter/procmail mail-mta/courier )
- || ( net-misc/wget www-client/fetch net-misc/curl net-ftp/ftp )
- virtual/libc"
-DEPEND="sys-apps/sed
- sys-devel/gcc
- ${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-dcc_cgibin=/var/www/localhost/cgi-bin/dcc
-dcc_homedir=/var/dcc
-dcc_libexec=/usr/sbin
-dcc_man=/usr/share/man
-dcc_rundir=/var/run/dcc
-
-src_compile() {
- local myconf
- myconf="${myconf} --homedir=${dcc_homedir}"
- myconf="${myconf} --libexecdir=${dcc_libexec}"
- myconf="${myconf} --bindir=/usr/bin"
- myconf="${myconf} --mandir=/usr/share/man"
- myconf="${myconf} --with-cgibin=${dcc_cgibin}"
- myconf="${myconf} --disable-dccm"
- #myconf="${myconf} --without-cgibin"
- myconf="${myconf} --with-rundir=/var/run/dcc"
- myconf="${myconf} `use_enable ipv6 IPv6`"
- ./configure ${myconf} || die "configure failed!"
- #make -C homedir
- emake || die "emake failed!"
-}
-
-moveconf() {
- for i in $@; do
- local into=/etc/dcc/
- local from=/var/dcc/
- mv ${D}${from}${i} ${D}${into}
- dosym ${into}${i} ${from}${i}
- done
-}
-
-src_install() {
- # stolen from the RPM .spec and modified for gentoo
- MANOWN=root MANGRP=root export MANOWN MANGRP
- BINOWN=$MANOWN BINGRP=$MANGRP export BINOWN BINGRP
- DCC_PROTO_HOMEDIR=${D}${dcc_homedir} export DCC_PROTO_HOMEDIR
- DCC_CGIBINDIR=${D}${dcc_cgibin} export DCC_CGIBINDIR
- DCC_SUID=$BINOWN DCC_OWN=$BINOWN DCC_GRP=$BINGRP export DCC_SUID DCC_OWN DCC_GRP
-
- dodir /etc/cron.daily ${dcc_homedir} ${dcc_cgibin} /usr/bin /usr/sbin /usr/share/man/man{0,8} /etc/dcc
- keepdir /var/run/dcc /var/log/dcc
-
- make DESTDIR=${D} DCC_BINDIR=${D}/usr/bin MANDIR=${D}/usr/share/man/man install || die
-
- einfo "Branding and setting reasonable defaults"
- sed -e "s/BRAND=\$/BRAND='Gentoo ${PF}'/;" \
- -e "s/DCCM_LOG_AT=5\$/DCCM_LOG_AT=50/;" \
- -e "s,DCCM_LOGDIR=log\$,DCCM_LOGDIR=/var/log/dcc,;" \
- -e "s/DCCM_ARGS=\$/DCCM_ARGS='-SHELO -Smail_host -SSender -SList-ID'/;" \
- -e "s/DCCIFD_ARGS=\$/DCCIFD_ARGS=\"\$DCCM_ARGS\"/;" \
- -e 's/DCCIFD_ENABLE=off/DCCIFD_ENABLE=on/' \
- -i ${D}${dcc_homedir}/dcc_conf
-
- einfo "Providing cronjob"
- mv ${D}/usr/bin/cron-dccd ${D}/etc/cron.daily/dccd
-
- einfo "Puting system code in sbin instead of bin"
- mv ${D}/usr/bin/{dbclean,dblist,dccd,dccsight,refeed,start-dccd,stop-dccd,wlist,dcc-stats-graph,newwebuser,dcc-stats-init,stats-get,dcc-stats-collect,dccifd,start-grey,start-dccifd,fetch-testmsg-whitelist} ${D}/usr/sbin/
-
- einfo "Cleaning up"
- rm -f ${D}/usr/bin/{logger,hackmc,na-spam,ng-spam,rcDCC,start-dccm,updatedcc}
-
- einfo "Placing configuration files into /etc instead of /var/run"
- moveconf dcc_conf flod grey_flod grey_whitelist ids map.txt whiteclnt whitecommon whitelist
-
- rmdir ${D}/var/dcc/log/
-}
diff --git a/mail-filter/dcc/dcc-1.2.74.ebuild b/mail-filter/dcc/dcc-1.2.74.ebuild
deleted file mode 100644
index 08e9f19a8f68..000000000000
--- a/mail-filter/dcc/dcc-1.2.74.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/dcc/dcc-1.2.74.ebuild,v 1.2 2005/09/12 08:30:52 ticho Exp $
-
-DESCRIPTION="Distributed Checksum Clearinghouse"
-HOMEPAGE="http://www.rhyolite.com/anti-spam/dcc/"
-MY_P="dcc-dccd-${PV}"
-SRC_URI="http://www.rhyolite.com/anti-spam/dcc/source/${MY_P}.tar.Z"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~amd64"
-IUSE="ipv6"
-
-RDEPEND="dev-lang/perl
- net-analyzer/rrdtool
- || ( mail-filter/procmail mail-mta/courier )
- || ( net-misc/wget www-client/fetch net-misc/curl net-ftp/ftp )
- virtual/libc"
-DEPEND="sys-apps/sed
- sys-devel/gcc
- ${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-dcc_cgibin=/var/www/localhost/cgi-bin/dcc
-dcc_homedir=/var/dcc
-dcc_libexec=/usr/sbin
-dcc_man=/usr/share/man
-dcc_rundir=/var/run/dcc
-
-src_compile() {
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-init.in
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-graph.in
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-collect.in
- sed -i -e "s:@installroot@:${D}:" \
- cgi-bin/Makefile.in
-
- local myconf
- myconf="${myconf} --homedir=${dcc_homedir}"
- myconf="${myconf} --libexecdir=${dcc_libexec}"
- myconf="${myconf} --bindir=/usr/bin"
- myconf="${myconf} --mandir=/usr/share/man"
- myconf="${myconf} --with-cgibin=${dcc_cgibin}"
- myconf="${myconf} --disable-dccm"
- #myconf="${myconf} --without-cgibin"
- myconf="${myconf} --with-rundir=/var/run/dcc"
- myconf="${myconf} `use_enable ipv6 IPv6`"
- ./configure ${myconf} || die "configure failed!"
- #make -C homedir
- emake || die "emake failed!"
-}
-
-moveconf() {
- for i in $@; do
- local into=/etc/dcc/
- local from=/var/dcc/
- mv ${D}${from}${i} ${D}${into}
- dosym ${into}${i} ${from}${i}
- done
-}
-
-src_install() {
- # stolen from the RPM .spec and modified for gentoo
- MANOWN=root MANGRP=root export MANOWN MANGRP
- BINOWN=$MANOWN BINGRP=$MANGRP export BINOWN BINGRP
- DCC_PROTO_HOMEDIR=${D}${dcc_homedir} export DCC_PROTO_HOMEDIR
- DCC_CGIBINDIR=${D}${dcc_cgibin} export DCC_CGIBINDIR
- DCC_SUID=$BINOWN DCC_OWN=$BINOWN DCC_GRP=$BINGRP export DCC_SUID DCC_OWN DCC_GRP
-
- dodir /etc/cron.daily ${dcc_homedir} ${dcc_cgibin} /usr/bin /usr/sbin /usr/share/man/man{0,8} /etc/dcc
- keepdir /var/run/dcc /var/log/dcc
-
- make DESTDIR=${D} DCC_BINDIR=${D}/usr/bin MANDIR=${D}/usr/share/man/man DCC_HOMEDIR=${D}${dcc_homedir} install || die
-
- einfo "Branding and setting reasonable defaults"
- sed -e "s/BRAND=\$/BRAND='Gentoo ${PF}'/;" \
- -e "s/DCCM_LOG_AT=5\$/DCCM_LOG_AT=50/;" \
- -e "s,DCCM_LOGDIR=log\$,DCCM_LOGDIR=/var/log/dcc,;" \
- -e "s/DCCM_ARGS=\$/DCCM_ARGS='-SHELO -Smail_host -SSender -SList-ID'/;" \
- -e "s/DCCIFD_ARGS=\$/DCCIFD_ARGS=\"\$DCCM_ARGS\"/;" \
- -e 's/DCCIFD_ENABLE=off/DCCIFD_ENABLE=on/' \
- -i ${D}${dcc_homedir}/dcc_conf
-
- einfo "Providing cronjob"
- mv ${D}/usr/bin/cron-dccd ${D}/etc/cron.daily/dccd
-
- einfo "Puting system code in sbin instead of bin"
- mv ${D}/usr/bin/{dbclean,dblist,dccd,dccsight,refeed,start-dccd,stop-dccd,wlist,dcc-stats-graph,newwebuser,dcc-stats-init,stats-get,dcc-stats-collect,dccifd,start-grey,start-dccifd,fetch-testmsg-whitelist} ${D}/usr/sbin/
-
- einfo "Cleaning up"
- rm -f ${D}/usr/bin/{logger,hackmc,na-spam,ng-spam,rcDCC,start-dccm,updatedcc}
-
- einfo "Placing configuration files into /etc instead of /var/run"
- moveconf dcc_conf flod grey_flod grey_whitelist ids map.txt whiteclnt whitecommon whitelist
-
- rmdir ${D}/var/dcc/log/
-}
diff --git a/mail-filter/dcc/dcc-1.3.16.ebuild b/mail-filter/dcc/dcc-1.3.16.ebuild
deleted file mode 100644
index 828d6105a696..000000000000
--- a/mail-filter/dcc/dcc-1.3.16.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/dcc/dcc-1.3.16.ebuild,v 1.11 2006/03/14 01:20:12 gustavoz Exp $
-
-DESCRIPTION="Distributed Checksum Clearinghouse"
-HOMEPAGE="http://www.rhyolite.com/anti-spam/dcc/"
-MY_P="dcc-dccd-${PV}"
-SRC_URI="mirror://gentoo/${MY_P}.tar.Z"
-
-LICENSE="DCC"
-SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ppc ppc64 ~sparc x86"
-IUSE="ipv6"
-
-RDEPEND="dev-lang/perl
- net-analyzer/rrdtool
- || ( mail-filter/procmail mail-mta/courier )
- || ( net-misc/wget www-client/fetch net-misc/curl net-ftp/ftp )
- virtual/libc"
-DEPEND="sys-apps/sed
- sys-devel/gcc
- ${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-dcc_cgibin=/var/www/localhost/cgi-bin/dcc
-dcc_homedir=/var/dcc
-dcc_libexec=/usr/sbin
-dcc_man=/usr/share/man
-dcc_rundir=/var/run/dcc
-
-src_compile() {
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-init.in
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-graph.in
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-collect.in
- sed -i -e "s:@installroot@:${D}:" \
- cgi-bin/Makefile.in
-
- local myconf
- myconf="${myconf} --homedir=${dcc_homedir}"
- myconf="${myconf} --libexecdir=${dcc_libexec}"
- myconf="${myconf} --bindir=/usr/bin"
- myconf="${myconf} --mandir=/usr/share/man"
- myconf="${myconf} --with-cgibin=${dcc_cgibin}"
- myconf="${myconf} --disable-dccm"
- #myconf="${myconf} --without-cgibin"
- myconf="${myconf} --with-rundir=/var/run/dcc"
- myconf="${myconf} `use_enable ipv6 IPv6`"
- ./configure ${myconf} || die "configure failed!"
- #make -C homedir
- emake || die "emake failed!"
-}
-
-moveconf() {
- for i in $@; do
- local into=/etc/dcc/
- local from=/var/dcc/
- mv ${D}${from}${i} ${D}${into}
- dosym ${into}${i} ${from}${i}
- done
-}
-
-src_install() {
- # stolen from the RPM .spec and modified for gentoo
- MANOWN=root MANGRP=root export MANOWN MANGRP
- BINOWN=$MANOWN BINGRP=$MANGRP export BINOWN BINGRP
- DCC_PROTO_HOMEDIR=${D}${dcc_homedir} export DCC_PROTO_HOMEDIR
- DCC_CGIBINDIR=${D}${dcc_cgibin} export DCC_CGIBINDIR
- DCC_SUID=$BINOWN DCC_OWN=$BINOWN DCC_GRP=$BINGRP export DCC_SUID DCC_OWN DCC_GRP
-
- dodir /etc/cron.daily ${dcc_homedir} ${dcc_cgibin} /usr/bin /usr/sbin /usr/share/man/man{0,8} /etc/dcc
- keepdir /var/run/dcc /var/log/dcc
-
- make DESTDIR=${D} DCC_BINDIR=${D}/usr/bin MANDIR=${D}/usr/share/man/man DCC_HOMEDIR=${D}${dcc_homedir} install || die
-
- einfo "Branding and setting reasonable defaults"
- sed -e "s/BRAND=\$/BRAND='Gentoo ${PF}'/;" \
- -e "s/DCCM_LOG_AT=5\$/DCCM_LOG_AT=50/;" \
- -e "s,DCCM_LOGDIR=log\$,DCCM_LOGDIR=/var/log/dcc,;" \
- -e "s/DCCM_ARGS=\$/DCCM_ARGS='-SHELO -Smail_host -SSender -SList-ID'/;" \
- -e "s/DCCIFD_ARGS=\$/DCCIFD_ARGS=\"\$DCCM_ARGS\"/;" \
- -e 's/DCCIFD_ENABLE=off/DCCIFD_ENABLE=on/' \
- -i ${D}${dcc_homedir}/dcc_conf
-
- einfo "Providing cronjob"
- mv ${D}/usr/bin/cron-dccd ${D}/etc/cron.daily/dccd
-
- einfo "Puting system code in sbin instead of bin"
- mv ${D}/usr/bin/{dbclean,dblist,dccd,dccsight,start-dccd,stop-dccd,wlist,dcc-stats-graph,newwebuser,dcc-stats-init,stats-get,dcc-stats-collect,dccifd,start-grey,start-dccifd,fetch-testmsg-whitelist} ${D}/usr/sbin/
-
- einfo "Cleaning up"
- rm -f ${D}/usr/bin/{logger,hackmc,na-spam,ng-spam,rcDCC,start-dccm,updatedcc}
-
- einfo "Placing configuration files into /etc instead of /var/run"
- moveconf dcc_conf flod grey_flod grey_whitelist ids map.txt whiteclnt whitecommon whitelist
-
- rmdir ${D}/var/dcc/log/
-}
diff --git a/mail-filter/dcc/dcc-1.3.24.ebuild b/mail-filter/dcc/dcc-1.3.24.ebuild
deleted file mode 100644
index ccdbcaf67b97..000000000000
--- a/mail-filter/dcc/dcc-1.3.24.ebuild
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/dcc/dcc-1.3.24.ebuild,v 1.12 2006/04/25 00:40:31 tcort Exp $
-
-inherit flag-o-matic
-
-DESCRIPTION="Distributed Checksum Clearinghouse"
-HOMEPAGE="http://www.rhyolite.com/anti-spam/dcc/"
-MY_P="dcc-dccd-${PV}"
-SRC_URI="http://www.rhyolite.com/anti-spam/dcc/source/${MY_P}.tar.Z"
-
-LICENSE="DCC"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ~ia64 ~ppc ppc64 sparc x86"
-IUSE="ipv6 rrdtool"
-
-RDEPEND="dev-lang/perl
- rrdtool? ( net-analyzer/rrdtool )
- || ( net-misc/wget www-client/fetch net-misc/curl net-ftp/ftp )
- virtual/libc"
-DEPEND="sys-apps/sed
- sys-devel/gcc
- ${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-dcc_cgibin=/var/www/localhost/cgi-bin/dcc
-dcc_homedir=/var/dcc
-dcc_libexec=/usr/sbin
-dcc_man=/usr/share/man
-dcc_rundir=/var/run/dcc
-
-src_compile() {
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-init.in
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-graph.in
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-collect.in
- sed -i -e "s:@installroot@:${D}:" \
- cgi-bin/Makefile.in
-
- local myconf
- append-ldflags $(bindnow-flags)
- myconf="${myconf} --homedir=${dcc_homedir}"
- myconf="${myconf} --libexecdir=${dcc_libexec}"
- myconf="${myconf} --bindir=/usr/bin"
- myconf="${myconf} --mandir=/usr/share/man"
- myconf="${myconf} --with-cgibin=${dcc_cgibin}"
- myconf="${myconf} --disable-dccm"
- #myconf="${myconf} --without-cgibin"
- myconf="${myconf} --with-rundir=/var/run/dcc"
- myconf="${myconf} `use_enable ipv6 IPv6`"
- ./configure ${myconf} || die "configure failed!"
- #make -C homedir
- emake || die "emake failed!"
-}
-
-moveconf() {
- for i in $@; do
- local into=/etc/dcc/
- local from=/var/dcc/
- mv ${D}${from}${i} ${D}${into}
- dosym ${into}${i} ${from}${i}
- done
-}
-
-src_install() {
- # stolen from the RPM .spec and modified for gentoo
- MANOWN=root MANGRP=root export MANOWN MANGRP
- BINOWN=$MANOWN BINGRP=$MANGRP export BINOWN BINGRP
- DCC_PROTO_HOMEDIR=${D}${dcc_homedir} export DCC_PROTO_HOMEDIR
- DCC_CGIBINDIR=${D}${dcc_cgibin} export DCC_CGIBINDIR
- DCC_SUID=$BINOWN DCC_OWN=$BINOWN DCC_GRP=$BINGRP export DCC_SUID DCC_OWN DCC_GRP
-
- dodir /etc/cron.daily ${dcc_homedir} ${dcc_cgibin} /usr/bin /usr/sbin /usr/share/man/man{0,8} /etc/dcc
- keepdir /var/run/dcc /var/log/dcc
-
- make DESTDIR=${D} DCC_BINDIR=${D}/usr/bin MANDIR=${D}/usr/share/man/man DCC_HOMEDIR=${D}${dcc_homedir} install || die
-
- einfo "Branding and setting reasonable defaults"
- sed -e "s/BRAND=\$/BRAND='Gentoo ${PF}'/;" \
- -e "s/DCCM_LOG_AT=5\$/DCCM_LOG_AT=50/;" \
- -e "s,DCCM_LOGDIR=log\$,DCCM_LOGDIR=/var/log/dcc,;" \
- -e "s/DCCM_ARGS=\$/DCCM_ARGS='-SHELO -Smail_host -SSender -SList-ID'/;" \
- -e "s/DCCIFD_ARGS=\$/DCCIFD_ARGS=\"\$DCCM_ARGS\"/;" \
- -e 's/DCCIFD_ENABLE=off/DCCIFD_ENABLE=on/' \
- -i ${D}${dcc_homedir}/dcc_conf
-
- einfo "Providing cronjob"
- mv ${D}/usr/bin/cron-dccd ${D}/etc/cron.daily/dccd
-
- einfo "Putting system code in sbin instead of bin"
- mv ${D}/usr/bin/{dbclean,dblist,dccd,dccsight,start-dccd,stop-dccd,wlist,newwebuser,stats-get,dccifd,start-grey,start-dccifd,fetch-testmsg-whitelist} ${D}/usr/sbin/ || die "Failed to move apps to sbin"
-
- statslist="${D}/usr/bin/{dcc-stats-graph,dcc-stats-init,dcc-stats-collect}"
- if use rrdtool; then
- einfo "Installing rrdtool interface scripts"
- eval mv $statslist ${D}/usr/sbin/ || die "Failed to move rrdtool apps"
- else
- einfo "Removing rrdtool interface scripts"
- eval rm -f ${statslist} || die "Failed to clean up rrdtool scripts"
- fi
-
- einfo "Cleaning up"
- rm -f ${D}/usr/bin/{logger,hackmc,na-spam,ng-spam,rcDCC,start-dccm,updatedcc}
-
- einfo "Placing configuration files into /etc instead of /var/run"
- moveconf dcc_conf flod grey_flod grey_whitelist ids map.txt whiteclnt whitecommon whitelist
-
- rmdir ${D}/var/dcc/log/
-}
diff --git a/mail-filter/dcc/dcc-1.3.31.ebuild b/mail-filter/dcc/dcc-1.3.31.ebuild
deleted file mode 100644
index de4b17377d88..000000000000
--- a/mail-filter/dcc/dcc-1.3.31.ebuild
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-filter/dcc/dcc-1.3.31.ebuild,v 1.4 2007/03/15 18:46:46 gustavoz Exp $
-
-inherit flag-o-matic
-
-DESCRIPTION="Distributed Checksum Clearinghouse"
-HOMEPAGE="http://www.rhyolite.com/anti-spam/dcc/"
-MY_P="dcc-dccd-${PV}"
-SRC_URI="http://www.rhyolite.com/anti-spam/dcc/source/${MY_P}.tar.Z"
-
-LICENSE="DCC"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ia64 ppc ~ppc64 sparc ~x86"
-IUSE="ipv6 rrdtool"
-
-RDEPEND="dev-lang/perl
- rrdtool? ( net-analyzer/rrdtool )
- || ( net-misc/wget www-client/fetch net-misc/curl net-ftp/ftp )
- virtual/libc"
-DEPEND="sys-apps/sed
- sys-devel/gcc
- ${RDEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-dcc_cgibin=/var/www/localhost/cgi-bin/dcc
-dcc_homedir=/var/dcc
-dcc_libexec=/usr/sbin
-dcc_man=/usr/share/man
-dcc_rundir=/var/run/dcc
-
-src_compile() {
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-init.in
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-graph.in
- sed -i -e "s:^RRDTOOL=/usr/local/bin/rrdtool:RRDTOOL=/usr/bin/rrdtool:" \
- misc/dcc-stats-collect.in
- sed -i -e "s:@installroot@:${D}:" \
- cgi-bin/Makefile.in
-
- local myconf
- append-ldflags $(bindnow-flags)
- myconf="${myconf} --homedir=${dcc_homedir}"
- myconf="${myconf} --libexecdir=${dcc_libexec}"
- myconf="${myconf} --bindir=/usr/bin"
- myconf="${myconf} --mandir=/usr/share/man"
- myconf="${myconf} --with-cgibin=${dcc_cgibin}"
- myconf="${myconf} --disable-dccm"
- #myconf="${myconf} --without-cgibin"
- myconf="${myconf} --with-rundir=/var/run/dcc"
- myconf="${myconf} `use_enable ipv6 IPv6`"
- ./configure ${myconf} || die "configure failed!"
- #make -C homedir
- emake || die "emake failed!"
-}
-
-moveconf() {
- for i in $@; do
- local into=/etc/dcc/
- local from=/var/dcc/
- mv ${D}${from}${i} ${D}${into}
- dosym ${into}${i} ${from}${i}
- done
-}
-
-src_install() {
- # stolen from the RPM .spec and modified for gentoo
- MANOWN=root MANGRP=root export MANOWN MANGRP
- BINOWN=$MANOWN BINGRP=$MANGRP export BINOWN BINGRP
- DCC_PROTO_HOMEDIR=${D}${dcc_homedir} export DCC_PROTO_HOMEDIR
- DCC_CGIBINDIR=${D}${dcc_cgibin} export DCC_CGIBINDIR
- DCC_SUID=$BINOWN DCC_OWN=$BINOWN DCC_GRP=$BINGRP export DCC_SUID DCC_OWN DCC_GRP
-
- dodir /etc/cron.daily ${dcc_homedir} ${dcc_cgibin} /usr/bin /usr/sbin /usr/share/man/man{0,8} /etc/dcc
- keepdir /var/run/dcc /var/log/dcc
-
- make DESTDIR=${D} DCC_BINDIR=${D}/usr/bin MANDIR=${D}/usr/share/man/man DCC_HOMEDIR=${D}${dcc_homedir} install || die
-
- einfo "Branding and setting reasonable defaults"
- sed -e "s/BRAND=\$/BRAND='Gentoo ${PF}'/;" \
- -e "s/DCCM_LOG_AT=5\$/DCCM_LOG_AT=50/;" \
- -e "s,DCCM_LOGDIR=log\$,DCCM_LOGDIR=/var/log/dcc,;" \
- -e "s/DCCM_ARGS=\$/DCCM_ARGS='-SHELO -Smail_host -SSender -SList-ID'/;" \
- -e "s/DCCIFD_ARGS=\$/DCCIFD_ARGS=\"\$DCCM_ARGS\"/;" \
- -e 's/DCCIFD_ENABLE=off/DCCIFD_ENABLE=on/' \
- -i ${D}${dcc_homedir}/dcc_conf
-
- einfo "Providing cronjob"
- mv ${D}/usr/bin/cron-dccd ${D}/etc/cron.daily/dccd
-
- einfo "Putting system code in sbin instead of bin"
- mv ${D}/usr/bin/{dbclean,dblist,dccd,dccsight,start-dccd,stop-dccd,wlist,newwebuser,stats-get,dccifd,start-grey,start-dccifd,fetch-testmsg-whitelist} ${D}/usr/sbin/ || die "Failed to move apps to sbin"
-
- statslist="${D}/usr/bin/{dcc-stats-graph,dcc-stats-init,dcc-stats-collect}"
- if use rrdtool; then
- einfo "Installing rrdtool interface scripts"
- eval mv $statslist ${D}/usr/sbin/ || die "Failed to move rrdtool apps"
- else
- einfo "Removing rrdtool interface scripts"
- eval rm -f ${statslist} || die "Failed to clean up rrdtool scripts"
- fi
-
- einfo "Cleaning up"
- rm -f ${D}/usr/bin/{logger,hackmc,na-spam,ng-spam,rcDCC,start-dccm,updatedcc}
-
- einfo "Placing configuration files into /etc instead of /var/run"
- moveconf dcc_conf flod grey_flod grey_whitelist ids map.txt whiteclnt whitecommon whitelist
-
- rmdir ${D}/var/dcc/log/
-}