diff options
author | 2004-05-30 22:46:58 +0000 | |
---|---|---|
committer | 2004-05-30 22:46:58 +0000 | |
commit | 5638a87035155425054df9d526ea4778d93d013d (patch) | |
tree | 96535bddd5ae621aab52bab1c6b99d6e428753b5 /mail-mta/ssmtp | |
parent | Merged into gentoo-dev-sources (diff) | |
download | historical-5638a87035155425054df9d526ea4778d93d013d.tar.gz historical-5638a87035155425054df9d526ea4778d93d013d.tar.bz2 historical-5638a87035155425054df9d526ea4778d93d013d.zip |
Not quite right yet. Adding virtual/mta blocker if mailwrapper not in USE.
Diffstat (limited to 'mail-mta/ssmtp')
-rw-r--r-- | mail-mta/ssmtp/Manifest | 2 | ||||
-rw-r--r-- | mail-mta/ssmtp/ssmtp-2.60.7-r1.ebuild | 13 |
2 files changed, 13 insertions, 2 deletions
diff --git a/mail-mta/ssmtp/Manifest b/mail-mta/ssmtp/Manifest index 6b03b4444482..54a2e6d13182 100644 --- a/mail-mta/ssmtp/Manifest +++ b/mail-mta/ssmtp/Manifest @@ -1,7 +1,7 @@ MD5 7e39bba1bad31e93ac518b19743dddb2 ssmtp-2.60.4.ebuild 2261 MD5 f249e6237856922135c83fdf926fe706 ssmtp-2.60.4-r2.ebuild 2462 MD5 66334db6bc252cf02763dc76f1cf68d6 ssmtp-2.48.ebuild 1545 -MD5 6517ad6246e4b1659e58ee7685f4098f ssmtp-2.60.7-r1.ebuild 2617 +MD5 53f6da37274787bc7c75fc0b372cd42a ssmtp-2.60.7-r1.ebuild 2864 MD5 a4b27cfba476c833c941bfb865ccb18c ssmtp-2.60.7.ebuild 2461 MD5 65ffeb141034a5bd6f44223052d173dd ChangeLog 5501 MD5 5721b86fd871bdfab77231abc6e02f68 metadata.xml 161 diff --git a/mail-mta/ssmtp/ssmtp-2.60.7-r1.ebuild b/mail-mta/ssmtp/ssmtp-2.60.7-r1.ebuild index 17d939f77cd0..fd6990416b8c 100644 --- a/mail-mta/ssmtp/ssmtp-2.60.7-r1.ebuild +++ b/mail-mta/ssmtp/ssmtp-2.60.7-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/ssmtp/ssmtp-2.60.7-r1.ebuild,v 1.2 2004/05/30 22:26:09 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/ssmtp/ssmtp-2.60.7-r1.ebuild,v 1.3 2004/05/30 22:46:58 g2boojum Exp $ inherit eutils @@ -16,6 +16,7 @@ IUSE="ssl ipv6 md5sum mailwrapper" DEPEND="virtual/glibc ssl? ( dev-libs/openssl )" RDEPEND="mailwrapper? ( =net-mail/mailwrapper-0.1 ) + !mailwrapper? ( !virtual/mta ) net-mail/mailbase ssl? ( dev-libs/openssl )" PROVIDE="virtual/mta" @@ -84,3 +85,13 @@ src_install() { # mv ${conffile}.pre ${conffile} #fi } + +pkg_postinst() { + if ! use mailwrapper && [[ -e /etc/mailer.conf ]] + then + einfo + einfo "Since you emerged ssmtp w/o mailwrapper in USE," + einfo "you probably want to 'emerge -C mailwrapper' now." + einfo + fi +} |