diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2004-05-31 06:08:38 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2004-05-31 06:08:38 +0000 |
commit | 6de2766888def8f24a68bf6841a738b3f7b9a277 (patch) | |
tree | 91bc73cdab6f944fc66c2e5ccea0a26daa5fcb46 /mail-mta/nbsmtp | |
parent | Stable x86. (diff) | |
download | historical-6de2766888def8f24a68bf6841a738b3f7b9a277.tar.gz historical-6de2766888def8f24a68bf6841a738b3f7b9a277.tar.bz2 historical-6de2766888def8f24a68bf6841a738b3f7b9a277.zip |
vesion bump, closes bug # 48144
Diffstat (limited to 'mail-mta/nbsmtp')
-rw-r--r-- | mail-mta/nbsmtp/ChangeLog | 7 | ||||
-rw-r--r-- | mail-mta/nbsmtp/Manifest | 6 | ||||
-rw-r--r-- | mail-mta/nbsmtp/files/digest-nbsmtp-0.92 | 1 | ||||
-rw-r--r-- | mail-mta/nbsmtp/nbsmtp-0.92.ebuild | 26 |
4 files changed, 37 insertions, 3 deletions
diff --git a/mail-mta/nbsmtp/ChangeLog b/mail-mta/nbsmtp/ChangeLog index bb3ccd864470..7ae10773ee9f 100644 --- a/mail-mta/nbsmtp/ChangeLog +++ b/mail-mta/nbsmtp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-mail/nbsmtp # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/ChangeLog,v 1.1 2004/05/30 09:53:23 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/ChangeLog,v 1.2 2004/05/31 06:08:37 g2boojum Exp $ + +*nbsmtp-0.92 (31 May 2004) + + 31 May 2004; Grant Goodyear <g2boojum@gentoo.org> +nbsmtp-0.92.ebuild: + Version bump, thanks to Fernando J. Pereda (bug # 48144). *nbsmtp-0.8 (30 May 2004) diff --git a/mail-mta/nbsmtp/Manifest b/mail-mta/nbsmtp/Manifest index 9ccfe7024aca..e627c584d550 100644 --- a/mail-mta/nbsmtp/Manifest +++ b/mail-mta/nbsmtp/Manifest @@ -1,4 +1,6 @@ -MD5 d3aefcc589b9e1eff773941370eb42b9 ChangeLog 1396 -MD5 5a8d35d1a02b4e4c92ea69bb78978631 nbsmtp-0.8.ebuild 594 +MD5 0a0ec4e7f75803fde2b031caaefb9fa9 nbsmtp-0.8.ebuild 593 +MD5 5d6cdfa32e39db01adb0c00a6490c4a3 nbsmtp-0.92.ebuild 644 +MD5 c046275ba69924ca335e74cf21512da1 ChangeLog 1727 MD5 5721b86fd871bdfab77231abc6e02f68 metadata.xml 161 +MD5 e428ef7d3bc28b7f487c2eca0dbdf48e files/digest-nbsmtp-0.92 63 MD5 699b53b1a713d738aa1008c6cd0b4f29 files/digest-nbsmtp-0.8 57 diff --git a/mail-mta/nbsmtp/files/digest-nbsmtp-0.92 b/mail-mta/nbsmtp/files/digest-nbsmtp-0.92 new file mode 100644 index 000000000000..8bee2a6752c6 --- /dev/null +++ b/mail-mta/nbsmtp/files/digest-nbsmtp-0.92 @@ -0,0 +1 @@ +MD5 8daf84e46cbb2971dcc0dfc69f279a4d nbsmtp-0.92.tar.bz2 50591 diff --git a/mail-mta/nbsmtp/nbsmtp-0.92.ebuild b/mail-mta/nbsmtp/nbsmtp-0.92.ebuild new file mode 100644 index 000000000000..852ac02bb8e3 --- /dev/null +++ b/mail-mta/nbsmtp/nbsmtp-0.92.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/nbsmtp-0.92.ebuild,v 1.1 2004/05/31 06:08:37 g2boojum Exp $ + +DESCRIPTION="The No-Brainer SMTP" +SRC_URI="http://www.gentoo-es.org/~ferdy/${P}.tar.bz2" +HOMEPAGE="http://nbsmtp.ferdyx.org" + +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~hppa" +LICENSE="GPL-2" +IUSE="ssl" + +DEPEND="virtual/glibc + ssl? ( dev-libs/openssl )" + +src_compile() { + myconf="$(use_enable ssl)" + econf || die "Configure failed" + emake || die "Make failed" +} + +src_install() { + dobin nbsmtp + dodoc INSTALL DOCS COPYING +} |