summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Goodyear <g2boojum@gentoo.org>2004-07-06 19:05:27 +0000
committerGrant Goodyear <g2boojum@gentoo.org>2004-07-06 19:05:27 +0000
commit13a95ed4a85952963835514a43489cd14dc40778 (patch)
tree7310a10bbaa4a1376ac66af0041341aa4ed77562 /mail-mta
parent (Manifest recommit) (diff)
downloadgentoo-2-13a95ed4a85952963835514a43489cd14dc40778.tar.gz
gentoo-2-13a95ed4a85952963835514a43489cd14dc40778.tar.bz2
gentoo-2-13a95ed4a85952963835514a43489cd14dc40778.zip
fixo
Diffstat (limited to 'mail-mta')
-rw-r--r--mail-mta/sendmail/sendmail-8.12.10.ebuild163
-rw-r--r--mail-mta/sendmail/sendmail-8.12.11-r1.ebuild161
-rw-r--r--mail-mta/sendmail/sendmail-8.12.11-r2.ebuild166
-rw-r--r--mail-mta/sendmail/sendmail-8.12.11.ebuild163
4 files changed, 0 insertions, 653 deletions
diff --git a/mail-mta/sendmail/sendmail-8.12.10.ebuild b/mail-mta/sendmail/sendmail-8.12.10.ebuild
deleted file mode 100644
index 19f23cd042df..000000000000
--- a/mail-mta/sendmail/sendmail-8.12.10.ebuild
+++ /dev/null
@@ -1,163 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.12.10.ebuild,v 1.4 2004/06/28 21:23:52 agriffis Exp $
-
-DESCRIPTION="Widely-used Mail Transport Agent (MTA)"
-HOMEPAGE="http://www.sendmail.org/"
-SRC_URI="ftp://ftp.sendmail.org/pub/${PN}/${PN}.${PV}.tar.gz"
-
-LICENSE="Sendmail"
-SLOT="0"
-KEYWORDS="x86 ppc sparc hppa amd64 alpha ia64"
-IUSE="ssl ldap sasl berkdb tcpd gdbm mbox"
-
-DEPEND="!amd64? ( net-dns/hesiod )
- net-mail/mailbase
- sys-libs/gdbm
- sys-devel/m4
- sasl? ( >=dev-libs/cyrus-sasl-2.1.10 )
- tcpd? ( sys-apps/tcp-wrappers )
- ssl? ( dev-libs/openssl )
- ldap? ( net-nds/openldap )
- || (
- gdbm? ( sys-libs/gdbm )
- berkdb? ( >=sys-libs/db-3.2 )
- sys-libs/gdbm
- )"
-RDEPEND="${DEPEND}
- >=net-mail/mailbase-0.00
- !virtual/mta"
-PDEPEND="!mbox? ( mail-filter/procmail )"
-PROVIDE="virtual/mta"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- confCCOPTS="${CFLAGS}"
- confMAPDEF="-DNEWDB -DNIS -DMAP_REGEX"
- confENVDEF="-DXDEBUG=0"
- confLIBS="-lnsl -lcrypt"
- conf_sendmail_ENVDEF="-DFALSE=0 -DTRUE=1"
- conf_sendmail_LIBS=""
- use sasl && confLIBS="${confLIBS} -lsasl2" \
- && confENVDEF="${confENVDEF} -DSASL=2" \
- && confCCOPTS="${confCCOPTS} -I/usr/include/sasl" \
- && conf_sendmail_ENVDEF="${conf_sendmail_ENVDEF} -DSASL=2" \
- && conf_sendmail_LIBS="${conf_sendmail_LIBS} -lsasl2"
- use tcpd && confENVDEF="${confENVDEF} -DTCPWRAPPERS" \
- && confLIBS="${confLIBS} -lwrap"
- use ssl && confENVDEF="${confENVDEF} -DSTARTTLS" \
- && confLIBS="${confLIBS} -lssl -lcrypto" \
- && conf_sendmail_ENVDEF="${conf_sendmail_ENVDEF} -DSTARTTLS" \
- && conf_sendmail_LIBS="${conf_sendmail_LIBS} -lssl -lcrypto"
- use ldap && confMAPDEF="${confMAPDEF} -DLDAPMAP" \
- && confLIBS="${confLIBS} -lldap -llber"
- if use gdbm || ! use berkdb ; then
- confLIBS="${confLIBS} -lgdbm"
- fi
- sed -e "s:@@confCCOPTS@@:${confCCOPTS}:" \
- -e "s/@@confMAPDEF@@/${confMAPDEF}/" \
- -e "s/@@confENVDEF@@/${confENVDEF}/" \
- -e "s/@@confLIBS@@/${confLIBS}/" \
- -e "s/@@conf_sendmail_ENVDEF@@/${conf_sendmail_ENVDEF}/" \
- -e "s/@@conf_sendmail_LIBS@@/${conf_sendmail_LIBS}/" \
- ${FILESDIR}/site.config.m4 > ${S}/devtools/Site/site.config.m4
-}
-
-src_compile() {
- for x in libmilter libsmutil sendmail mailstats rmail praliases smrsh makemap vacation mail.local
- do
- pushd ${x}
- sh Build
- popd
- done
-}
-
-src_install () {
- OBJDIR="obj.`uname -s`.`uname -r`.`arch`"
- dodir /etc/pam.d /usr/bin /usr/include/libmilter /usr/lib
- dodir /usr/share/man/man{1,5,8} /usr/sbin /var/log /usr/share/sendmail-cf
- dodir /var/spool/{mqueue,clientmqueue} /etc/conf.d
- keepdir /var/spool/{clientmqueue,mqueue}
- for dir in libmilter libsmutil sendmail mailstats praliases smrsh makemap vacation
- do
- make DESTDIR=${D} MANROOT=/usr/share/man/man \
- SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
- MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
- LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
- MSPQOWN=root CFOWN=root CFGRP=root \
- install -C ${OBJDIR}/${dir} \
- || die "install failed"
- done
- for dir in rmail mail.local
- do
- make DESTDIR=${D} MANROOT=/usr/share/man/man \
- SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
- MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
- LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
- MSPQOWN=root CFOWN=root CFGRP=root \
- force-install -C ${OBJDIR}/${dir} \
- || die "install failed"
- done
- fowners root.smmsp /usr/sbin/sendmail
- fowners smmsp.smmsp /var/spool/clientmqueue
- fperms 770 /var/spool/clientmqueue
- fperms 700 /var/spool/mqueue
- dosym /usr/sbin/sendmail /usr/lib/sendmail
- dosym /usr/sbin/makemap /usr/bin/makemap
- dodoc FAQ LICENSE KNOWNBUGS README RELEASE_NOTES doc/op/op.ps
- newdoc sendmail/README README.sendmail
- newdoc sendmail/SECURITY SECURITY
- newdoc sendmail/TUNING TUNING
- newdoc smrsh/README README.smrsh
- newdoc libmilter/README README.libmilter
- newdoc cf/README README.cf
- newdoc cf/cf/README README.install-cf
- cp -a cf/* ${D}/usr/share/sendmail-cf
- insinto /etc/mail
- if use mbox
- then
- doins ${FILESDIR}/{sendmail.cf,sendmail.mc}
- else
- newins ${FILESDIR}/sendmail-procmail.cf sendmail.cf
- newins ${FILESDIR}/sendmail-procmail.mc sendmail.mc
- fi
- echo "# local-host-names - include all aliases for your machine here" \
- > ${D}/etc/mail/local-host-names
- cat << EOF > ${D}/etc/mail/trusted-users
-# trusted-users - users that can send mail as others without a warning
-# apache, mailman, majordomo, uucp are good candidates
-EOF
- cat << EOF > ${D}/etc/mail/access
-# Check the /usr/share/doc/sendmail/README.cf file for a description
-# of the format of this file. (search for access_db in that file)
-# The /usr/share/doc/sendmail/README.cf is part of the sendmail-doc
-# package.
-#
-# by default we allow relaying from localhost...
-localhost.localdomain RELAY
-localhost RELAY
-127.0.0.1 RELAY
-
-EOF
-cat << EOF > ${D}/etc/conf.d/sendmail
-# Config file for /etc/init.d/sendmail
-# add start-up options here
-SENDMAIL_OPTS="-bd -q30m -L sm-mta" # default daemon mode
-CLIENTMQUEUE_OPTS="-Ac -q30m -L sm-cm" # clientmqueue
-KILL_OPTS="" # add -9/-15/your favorite evil SIG level here
-
-EOF
- exeinto /etc/init.d
- doexe ${FILESDIR}/sendmail
- mkdir -p ${D}/usr/adm/sm.bin/
- touch ${D}/usr/adm/sm.bin/.keep
-}
-
-pkg_postinst() {
-
- einfo "This ebuild uses mbox support by default. If you are"
- einfo "looking for maildir support put -mbox into your USE variables."
-
-}
diff --git a/mail-mta/sendmail/sendmail-8.12.11-r1.ebuild b/mail-mta/sendmail/sendmail-8.12.11-r1.ebuild
deleted file mode 100644
index 63e2c03cf8ce..000000000000
--- a/mail-mta/sendmail/sendmail-8.12.11-r1.ebuild
+++ /dev/null
@@ -1,161 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.12.11-r1.ebuild,v 1.5 2004/06/28 21:23:52 agriffis Exp $
-
-DESCRIPTION="Widely-used Mail Transport Agent (MTA)"
-HOMEPAGE="http://www.sendmail.org/"
-SRC_URI="ftp://ftp.sendmail.org/pub/${PN}/${PN}.${PV}.tar.gz"
-
-LICENSE="Sendmail"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~hppa ~alpha ~ia64"
-IUSE="ssl ldap sasl berkdb tcpd gdbm mbox"
-
-DEPEND="net-dns/hesiod
- net-mail/mailbase
- sys-libs/gdbm
- sys-devel/m4
- sasl? ( >=dev-libs/cyrus-sasl-2.1.10 )
- tcpd? ( sys-apps/tcp-wrappers )
- ssl? ( dev-libs/openssl )
- ldap? ( net-nds/openldap )
- || (
- gdbm? ( sys-libs/gdbm )
- berkdb? ( >=sys-libs/db-3.2 )
- sys-libs/gdbm
- )"
-RDEPEND="${DEPEND}
- >=net-mail/mailbase-0.00
- =net-mail/mailwrapper-0.1"
-PDEPEND="!mbox? ( mail-filter/procmail )"
-PROVIDE="virtual/mta"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- confCCOPTS="${CFLAGS}"
- confMAPDEF="-DNEWDB -DNIS -DMAP_REGEX"
- confENVDEF="-DXDEBUG=0"
- confLIBS="-lnsl -lcrypt"
- conf_sendmail_ENVDEF="-DFALSE=0 -DTRUE=1"
- conf_sendmail_LIBS=""
- use sasl && confLIBS="${confLIBS} -lsasl2" \
- && confENVDEF="${confENVDEF} -DSASL=2" \
- && confCCOPTS="${confCCOPTS} -I/usr/include/sasl" \
- && conf_sendmail_ENVDEF="${conf_sendmail_ENVDEF} -DSASL=2" \
- && conf_sendmail_LIBS="${conf_sendmail_LIBS} -lsasl2"
- use tcpd && confENVDEF="${confENVDEF} -DTCPWRAPPERS" \
- && confLIBS="${confLIBS} -lwrap"
- use ssl && confENVDEF="${confENVDEF} -DSTARTTLS" \
- && confLIBS="${confLIBS} -lssl -lcrypto" \
- && conf_sendmail_ENVDEF="${conf_sendmail_ENVDEF} -DSTARTTLS" \
- && conf_sendmail_LIBS="${conf_sendmail_LIBS} -lssl -lcrypto"
- use ldap && confMAPDEF="${confMAPDEF} -DLDAPMAP" \
- && confLIBS="${confLIBS} -lldap -llber"
- if use gdbm || ! use berkdb ; then
- confLIBS="${confLIBS} -lgdbm"
- fi
- sed -e "s:@@confCCOPTS@@:${confCCOPTS}:" \
- -e "s/@@confMAPDEF@@/${confMAPDEF}/" \
- -e "s/@@confENVDEF@@/${confENVDEF}/" \
- -e "s/@@confLIBS@@/${confLIBS}/" \
- -e "s/@@conf_sendmail_ENVDEF@@/${conf_sendmail_ENVDEF}/" \
- -e "s/@@conf_sendmail_LIBS@@/${conf_sendmail_LIBS}/" \
- ${FILESDIR}/site.config.m4 > ${S}/devtools/Site/site.config.m4
-}
-
-src_compile() {
- for x in libmilter libsmutil sendmail mailstats rmail praliases smrsh makemap vacation mail.local
- do
- pushd ${x}
- sh Build
- popd
- done
-}
-
-src_install () {
- OBJDIR="obj.`uname -s`.`uname -r`.`arch`"
- dodir /etc/pam.d /usr/bin /usr/include/libmilter /usr/lib
- dodir /usr/share/man/man{1,5,8} /usr/sbin /var/log /usr/share/sendmail-cf
- dodir /var/spool/{mqueue,clientmqueue} /etc/conf.d
- keepdir /var/spool/{clientmqueue,mqueue}
- for dir in libmilter libsmutil sendmail mailstats praliases smrsh makemap vacation
- do
- make DESTDIR=${D} MANROOT=/usr/share/man/man \
- SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
- MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
- LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
- MSPQOWN=root CFOWN=root CFGRP=root \
- install -C ${OBJDIR}/${dir} \
- || die "install failed"
- done
- for dir in rmail mail.local
- do
- make DESTDIR=${D} MANROOT=/usr/share/man/man \
- SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
- MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
- LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
- MSPQOWN=root CFOWN=root CFGRP=root \
- force-install -C ${OBJDIR}/${dir} \
- || die "install failed"
- done
- mv ${D}/usr/sbin/sendmail ${D}/usr/sbin/sendmail.sendmail
- fowners root:smmsp /usr/sbin/sendmail.sendmail
- fowners smmsp:smmsp /var/spool/clientmqueue
- fperms 2555 /usr/sbin/sendmail.sendmail
- fperms 770 /var/spool/clientmqueue
- fperms 700 /var/spool/mqueue
- dosym /usr/sbin/sendmail /usr/lib/sendmail
- dosym /usr/sbin/makemap /usr/bin/makemap
- dodoc FAQ LICENSE KNOWNBUGS README RELEASE_NOTES doc/op/op.ps
- newdoc sendmail/README README.sendmail
- newdoc sendmail/SECURITY SECURITY
- newdoc sendmail/TUNING TUNING
- newdoc smrsh/README README.smrsh
- newdoc libmilter/README README.libmilter
- newdoc cf/README README.cf
- newdoc cf/cf/README README.install-cf
- cp -a cf/* ${D}/usr/share/sendmail-cf
- insinto /etc
- doins ${FILESDIR}/mailer.conf
- insinto /etc/mail
- if use mbox
- then
- doins ${FILESDIR}/{sendmail.cf,sendmail.mc}
- else
- newins ${FILESDIR}/sendmail-procmail.cf sendmail.cf
- newins ${FILESDIR}/sendmail-procmail.mc sendmail.mc
- fi
- echo "# local-host-names - include all aliases for your machine here" \
- > ${D}/etc/mail/local-host-names
- cat << EOF > ${D}/etc/mail/trusted-users
-# trusted-users - users that can send mail as others without a warning
-# apache, mailman, majordomo, uucp are good candidates
-EOF
- cat << EOF > ${D}/etc/mail/access
-# Check the /usr/share/doc/sendmail/README.cf file for a description
-# of the format of this file. (search for access_db in that file)
-# The /usr/share/doc/sendmail/README.cf is part of the sendmail-doc
-# package.
-#
-# by default we allow relaying from localhost...
-localhost.localdomain RELAY
-localhost RELAY
-127.0.0.1 RELAY
-
-EOF
-cat << EOF > ${D}/etc/conf.d/sendmail
-# Config file for /etc/init.d/sendmail
-# add start-up options here
-SENDMAIL_OPTS="-bd -q30m -L sm-mta" # default daemon mode
-CLIENTMQUEUE_OPTS="-Ac -q30m -L sm-cm" # clientmqueue
-KILL_OPTS="" # add -9/-15/your favorite evil SIG level here
-
-EOF
- exeinto /etc/init.d
- doexe ${FILESDIR}/sendmail
- dosed 's/} sendmail/} sendmail.sendmail/' /etc/init.d/sendmail
- keepdir /usr/adm/sm.bin
-}
-
diff --git a/mail-mta/sendmail/sendmail-8.12.11-r2.ebuild b/mail-mta/sendmail/sendmail-8.12.11-r2.ebuild
deleted file mode 100644
index acc79a731518..000000000000
--- a/mail-mta/sendmail/sendmail-8.12.11-r2.ebuild
+++ /dev/null
@@ -1,166 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.12.11-r2.ebuild,v 1.5 2004/06/28 21:23:52 agriffis Exp $
-
-DESCRIPTION="Widely-used Mail Transport Agent (MTA)"
-HOMEPAGE="http://www.sendmail.org/"
-SRC_URI="ftp://ftp.sendmail.org/pub/${PN}/${PN}.${PV}.tar.gz"
-
-LICENSE="Sendmail"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~hppa ~alpha ~ia64 s390"
-IUSE="ssl ldap sasl tcpd mbox milter"
-
-DEPEND="net-mail/mailbase
- sys-devel/m4
- sasl? ( >=dev-libs/cyrus-sasl-2.1.10 )
- tcpd? ( sys-apps/tcp-wrappers )
- ssl? ( dev-libs/openssl )
- ldap? ( net-nds/openldap )
- >=sys-libs/db-3.2
- "
-RDEPEND="${DEPEND}
- >=net-mail/mailbase-0.00
- =net-mail/mailwrapper-0.1"
-PDEPEND="!mbox? ( mail-filter/procmail )"
-PROVIDE="virtual/mta"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- confCCOPTS="${CFLAGS}"
- confMAPDEF="-DMAP_REGEX"
- conf_sendmail_LIBS=""
- use sasl && confLIBS="${confLIBS} -lsasl2" \
- && confENVDEF="${confENVDEF} -DSASL=2" \
- && confCCOPTS="${confCCOPTS} -I/usr/include/sasl" \
- && conf_sendmail_ENVDEF="${conf_sendmail_ENVDEF} -DSASL=2" \
- && conf_sendmail_LIBS="${conf_sendmail_LIBS} -lsasl2"
- use tcpd && confENVDEF="${confENVDEF} -DTCPWRAPPERS" \
- && confLIBS="${confLIBS} -lwrap"
- use ssl && confENVDEF="${confENVDEF} -DSTARTTLS" \
- && confLIBS="${confLIBS} -lssl -lcrypto" \
- && conf_sendmail_ENVDEF="${conf_sendmail_ENVDEF} -DSTARTTLS" \
- && conf_sendmail_LIBS="${conf_sendmail_LIBS} -lssl -lcrypto"
- use ldap && confMAPDEF="${confMAPDEF} -DLDAPMAP" \
- && confLIBS="${confLIBS} -lldap -llber"
- use milter && confENVDEF="${confENVDEF} -DMILTER"
- sed -e "s:@@confCCOPTS@@:${confCCOPTS}:" \
- -e "s/@@confMAPDEF@@/${confMAPDEF}/" \
- -e "s/@@confENVDEF@@/${confENVDEF}/" \
- -e "s/@@confLIBS@@/${confLIBS}/" \
- -e "s/@@conf_sendmail_ENVDEF@@/${conf_sendmail_ENVDEF}/" \
- -e "s/@@conf_sendmail_LIBS@@/${conf_sendmail_LIBS}/" \
- ${FILESDIR}/site.config.m4 > ${S}/devtools/Site/site.config.m4
-}
-
-src_compile() {
- sh Build
-
- if use milter
- then
- pushd libmilter
- sh Build
- popd
- fi
-}
-
-src_install () {
- OBJDIR="obj.`uname -s`.`uname -r`.`arch`"
- dodir /etc/pam.d /usr/bin /usr/lib
- dodir /usr/share/man/man{1,5,8} /usr/sbin /var/log /usr/share/sendmail-cf
- dodir /var/spool/{mqueue,clientmqueue} /etc/conf.d
- keepdir /var/spool/{clientmqueue,mqueue}
- for dir in libsmutil sendmail mailstats praliases smrsh makemap vacation editmap
- do
- make DESTDIR=${D} MANROOT=/usr/share/man/man \
- SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
- MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
- LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
- MSPQOWN=root CFOWN=root CFGRP=root \
- install -C ${OBJDIR}/${dir} \
- || die "install failed"
- done
- for dir in rmail mail.local
- do
- make DESTDIR=${D} MANROOT=/usr/share/man/man \
- SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
- MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
- LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
- MSPQOWN=root CFOWN=root CFGRP=root \
- force-install -C ${OBJDIR}/${dir} \
- || die "install failed"
- done
-
- if use milter
- then
- dodir /usr/include/libmilter
- make DESTDIR=${D} MANROOT=/usr/share/man/man \
- SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
- MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
- LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
- MSPQOWN=root CFOWN=root CFGRP=root \
- install -C ${OBJDIR}/libmilter \
- || die "install failed"
- fi
-
- mv ${D}/usr/sbin/sendmail ${D}/usr/sbin/sendmail.sendmail
- fowners root:smmsp /usr/sbin/sendmail.sendmail
- fowners smmsp:smmsp /var/spool/clientmqueue
- fperms 2555 /usr/sbin/sendmail.sendmail
- fperms 770 /var/spool/clientmqueue
- fperms 700 /var/spool/mqueue
- dosym /usr/sbin/sendmail /usr/lib/sendmail
- dosym /usr/sbin/makemap /usr/bin/makemap
- dodoc FAQ LICENSE KNOWNBUGS README RELEASE_NOTES doc/op/op.ps
- newdoc sendmail/README README.sendmail
- newdoc sendmail/SECURITY SECURITY
- newdoc sendmail/TUNING TUNING
- newdoc smrsh/README README.smrsh
-
- if use milter
- then
- newdoc libmilter/README README.libmilter
- fi
-
- newdoc cf/README README.cf
- newdoc cf/cf/README README.install-cf
- cp -a cf/* ${D}/usr/share/sendmail-cf
- insinto /etc
- doins ${FILESDIR}/mailer.conf
- insinto /etc/mail
- if use mbox
- then
- doins ${FILESDIR}/{sendmail.cf,sendmail.mc}
- else
- newins ${FILESDIR}/sendmail-procmail.cf sendmail.cf
- newins ${FILESDIR}/sendmail-procmail.mc sendmail.mc
- fi
- echo "# local-host-names - include all aliases for your machine here" \
- > ${D}/etc/mail/local-host-names
- cat << EOF > ${D}/etc/mail/trusted-users
-# trusted-users - users that can send mail as others without a warning
-# apache, mailman, majordomo, uucp are good candidates
-EOF
- cat << EOF > ${D}/etc/mail/access
-# Check the /usr/share/doc/sendmail/README.cf file for a description
-# of the format of this file. (search for access_db in that file)
-# The /usr/share/doc/sendmail/README.cf is part of the sendmail-doc
-# package.
-#
-
-EOF
-cat << EOF > ${D}/etc/conf.d/sendmail
-# Config file for /etc/init.d/sendmail
-# add start-up options here
-SENDMAIL_OPTS="-bd -q30m -L sm-mta" # default daemon mode
-CLIENTMQUEUE_OPTS="-Ac -q30m -L sm-cm" # clientmqueue
-KILL_OPTS="" # add -9/-15/your favorite evil SIG level here
-
-EOF
- exeinto /etc/init.d
- doexe ${FILESDIR}/sendmail
- dosed 's/} sendmail/} sendmail.sendmail/' /etc/init.d/sendmail
- keepdir /usr/adm/sm.bin
-}
diff --git a/mail-mta/sendmail/sendmail-8.12.11.ebuild b/mail-mta/sendmail/sendmail-8.12.11.ebuild
deleted file mode 100644
index 97de36908f2e..000000000000
--- a/mail-mta/sendmail/sendmail-8.12.11.ebuild
+++ /dev/null
@@ -1,163 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.12.11.ebuild,v 1.4 2004/06/28 21:23:52 agriffis Exp $
-
-DESCRIPTION="Widely-used Mail Transport Agent (MTA)"
-HOMEPAGE="http://www.sendmail.org/"
-SRC_URI="ftp://ftp.sendmail.org/pub/${PN}/${PN}.${PV}.tar.gz"
-
-LICENSE="Sendmail"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~hppa ~alpha ~ia64"
-IUSE="ssl ldap sasl berkdb tcpd gdbm mbox"
-
-DEPEND="net-dns/hesiod
- net-mail/mailbase
- sys-libs/gdbm
- sys-devel/m4
- sasl? ( >=dev-libs/cyrus-sasl-2.1.10 )
- tcpd? ( sys-apps/tcp-wrappers )
- ssl? ( dev-libs/openssl )
- ldap? ( net-nds/openldap )
- || (
- gdbm? ( sys-libs/gdbm )
- berkdb? ( >=sys-libs/db-3.2 )
- sys-libs/gdbm
- )"
-RDEPEND="${DEPEND}
- >=net-mail/mailbase-0.00
- !virtual/mta"
-PDEPEND="!mbox? ( mail-filter/procmail )"
-PROVIDE="virtual/mta"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- confCCOPTS="${CFLAGS}"
- confMAPDEF="-DNEWDB -DNIS -DMAP_REGEX"
- confENVDEF="-DXDEBUG=0"
- confLIBS="-lnsl -lcrypt"
- conf_sendmail_ENVDEF="-DFALSE=0 -DTRUE=1"
- conf_sendmail_LIBS=""
- use sasl && confLIBS="${confLIBS} -lsasl2" \
- && confENVDEF="${confENVDEF} -DSASL=2" \
- && confCCOPTS="${confCCOPTS} -I/usr/include/sasl" \
- && conf_sendmail_ENVDEF="${conf_sendmail_ENVDEF} -DSASL=2" \
- && conf_sendmail_LIBS="${conf_sendmail_LIBS} -lsasl2"
- use tcpd && confENVDEF="${confENVDEF} -DTCPWRAPPERS" \
- && confLIBS="${confLIBS} -lwrap"
- use ssl && confENVDEF="${confENVDEF} -DSTARTTLS" \
- && confLIBS="${confLIBS} -lssl -lcrypto" \
- && conf_sendmail_ENVDEF="${conf_sendmail_ENVDEF} -DSTARTTLS" \
- && conf_sendmail_LIBS="${conf_sendmail_LIBS} -lssl -lcrypto"
- use ldap && confMAPDEF="${confMAPDEF} -DLDAPMAP" \
- && confLIBS="${confLIBS} -lldap -llber"
- if use gdbm || ! use berkdb ; then
- confLIBS="${confLIBS} -lgdbm"
- fi
- sed -e "s:@@confCCOPTS@@:${confCCOPTS}:" \
- -e "s/@@confMAPDEF@@/${confMAPDEF}/" \
- -e "s/@@confENVDEF@@/${confENVDEF}/" \
- -e "s/@@confLIBS@@/${confLIBS}/" \
- -e "s/@@conf_sendmail_ENVDEF@@/${conf_sendmail_ENVDEF}/" \
- -e "s/@@conf_sendmail_LIBS@@/${conf_sendmail_LIBS}/" \
- ${FILESDIR}/site.config.m4 > ${S}/devtools/Site/site.config.m4
-}
-
-src_compile() {
- for x in libmilter libsmutil sendmail mailstats rmail praliases smrsh makemap vacation mail.local
- do
- pushd ${x}
- sh Build
- popd
- done
-}
-
-src_install () {
- OBJDIR="obj.`uname -s`.`uname -r`.`arch`"
- dodir /etc/pam.d /usr/bin /usr/include/libmilter /usr/lib
- dodir /usr/share/man/man{1,5,8} /usr/sbin /var/log /usr/share/sendmail-cf
- dodir /var/spool/{mqueue,clientmqueue} /etc/conf.d
- keepdir /var/spool/{clientmqueue,mqueue}
- for dir in libmilter libsmutil sendmail mailstats praliases smrsh makemap vacation
- do
- make DESTDIR=${D} MANROOT=/usr/share/man/man \
- SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
- MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
- LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
- MSPQOWN=root CFOWN=root CFGRP=root \
- install -C ${OBJDIR}/${dir} \
- || die "install failed"
- done
- for dir in rmail mail.local
- do
- make DESTDIR=${D} MANROOT=/usr/share/man/man \
- SBINOWN=root SBINGRP=root UBINOWN=root UBINGRP=root \
- MANOWN=root MANGRP=root INCOWN=root INCGRP=root \
- LIBOWN=root LIBGRP=root GBINOWN=root GBINGRP=root \
- MSPQOWN=root CFOWN=root CFGRP=root \
- force-install -C ${OBJDIR}/${dir} \
- || die "install failed"
- done
- fowners root.smmsp /usr/sbin/sendmail
- fowners smmsp.smmsp /var/spool/clientmqueue
- fperms 770 /var/spool/clientmqueue
- fperms 700 /var/spool/mqueue
- dosym /usr/sbin/sendmail /usr/lib/sendmail
- dosym /usr/sbin/makemap /usr/bin/makemap
- dodoc FAQ LICENSE KNOWNBUGS README RELEASE_NOTES doc/op/op.ps
- newdoc sendmail/README README.sendmail
- newdoc sendmail/SECURITY SECURITY
- newdoc sendmail/TUNING TUNING
- newdoc smrsh/README README.smrsh
- newdoc libmilter/README README.libmilter
- newdoc cf/README README.cf
- newdoc cf/cf/README README.install-cf
- cp -a cf/* ${D}/usr/share/sendmail-cf
- insinto /etc/mail
- if use mbox
- then
- doins ${FILESDIR}/{sendmail.cf,sendmail.mc}
- else
- newins ${FILESDIR}/sendmail-procmail.cf sendmail.cf
- newins ${FILESDIR}/sendmail-procmail.mc sendmail.mc
- fi
- echo "# local-host-names - include all aliases for your machine here" \
- > ${D}/etc/mail/local-host-names
- cat << EOF > ${D}/etc/mail/trusted-users
-# trusted-users - users that can send mail as others without a warning
-# apache, mailman, majordomo, uucp are good candidates
-EOF
- cat << EOF > ${D}/etc/mail/access
-# Check the /usr/share/doc/sendmail/README.cf file for a description
-# of the format of this file. (search for access_db in that file)
-# The /usr/share/doc/sendmail/README.cf is part of the sendmail-doc
-# package.
-#
-# by default we allow relaying from localhost...
-localhost.localdomain RELAY
-localhost RELAY
-127.0.0.1 RELAY
-
-EOF
-cat << EOF > ${D}/etc/conf.d/sendmail
-# Config file for /etc/init.d/sendmail
-# add start-up options here
-SENDMAIL_OPTS="-bd -q30m -L sm-mta" # default daemon mode
-CLIENTMQUEUE_OPTS="-Ac -q30m -L sm-cm" # clientmqueue
-KILL_OPTS="" # add -9/-15/your favorite evil SIG level here
-
-EOF
- exeinto /etc/init.d
- doexe ${FILESDIR}/sendmail
- mkdir -p ${D}/usr/adm/sm.bin/
- touch ${D}/usr/adm/sm.bin/.keep
-}
-
-pkg_postinst() {
-
- einfo "This ebuild uses mbox support by default. If you are"
- einfo "looking for maildir support put -mbox into your USE variables."
-
-}