diff options
-rw-r--r-- | mail-mta/nbsmtp/ChangeLog | 7 | ||||
-rw-r--r-- | mail-mta/nbsmtp/Manifest | 9 | ||||
-rw-r--r-- | mail-mta/nbsmtp/files/digest-nbsmtp-0.92-r1 | 1 | ||||
-rw-r--r-- | mail-mta/nbsmtp/nbsmtp-0.92-r1.ebuild | 25 |
4 files changed, 38 insertions, 4 deletions
diff --git a/mail-mta/nbsmtp/ChangeLog b/mail-mta/nbsmtp/ChangeLog index 0432d27f4c1f..6e005169923e 100644 --- a/mail-mta/nbsmtp/ChangeLog +++ b/mail-mta/nbsmtp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for mail-mta/nbsmtp # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/ChangeLog,v 1.5 2004/07/17 21:37:51 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/ChangeLog,v 1.6 2004/09/01 17:11:06 ticho Exp $ + +*nbsmtp-0.92-r1 (01 Sep 2004) + + 01 Sep 2004; Andrej Kacian <ticho@gentoo.org> +nbsmtp-0.92-r1.ebuild: + Fixed use of ssl USE flag in ebuild. 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> nbsmtp-0.8.ebuild, nbsmtp-0.92.ebuild: diff --git a/mail-mta/nbsmtp/Manifest b/mail-mta/nbsmtp/Manifest index a3e7114f5d20..fbb8fe40f064 100644 --- a/mail-mta/nbsmtp/Manifest +++ b/mail-mta/nbsmtp/Manifest @@ -1,6 +1,9 @@ +MD5 cb122a74708f3100612e3615a62bac56 ChangeLog 1988 +MD5 b877410d0dabbf6f9dc08495cc8fe984 nbsmtp-0.92-r1.ebuild 525 MD5 bd0e70cbb7f76e8927fcf241536bc854 nbsmtp-0.8.ebuild 592 -MD5 12cf13b3289b587be4d731aa15f02640 nbsmtp-0.92.ebuild 636 -MD5 29670853694161fcd75f803cf47a7abf ChangeLog 1845 MD5 5721b86fd871bdfab77231abc6e02f68 metadata.xml 161 -MD5 e428ef7d3bc28b7f487c2eca0dbdf48e files/digest-nbsmtp-0.92 63 +MD5 12cf13b3289b587be4d731aa15f02640 nbsmtp-0.92.ebuild 636 +MD5 cdb867bc0d79d4febd9773eed1fa24b0 nbsmtp-0.96.ebuild 799 +MD5 e428ef7d3bc28b7f487c2eca0dbdf48e files/digest-nbsmtp-0.92-r1 63 MD5 699b53b1a713d738aa1008c6cd0b4f29 files/digest-nbsmtp-0.8 57 +MD5 e428ef7d3bc28b7f487c2eca0dbdf48e files/digest-nbsmtp-0.92 63 diff --git a/mail-mta/nbsmtp/files/digest-nbsmtp-0.92-r1 b/mail-mta/nbsmtp/files/digest-nbsmtp-0.92-r1 new file mode 100644 index 000000000000..8bee2a6752c6 --- /dev/null +++ b/mail-mta/nbsmtp/files/digest-nbsmtp-0.92-r1 @@ -0,0 +1 @@ +MD5 8daf84e46cbb2971dcc0dfc69f279a4d nbsmtp-0.92.tar.bz2 50591 diff --git a/mail-mta/nbsmtp/nbsmtp-0.92-r1.ebuild b/mail-mta/nbsmtp/nbsmtp-0.92-r1.ebuild new file mode 100644 index 000000000000..bae1a31c8d8a --- /dev/null +++ b/mail-mta/nbsmtp/nbsmtp-0.92-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/nbsmtp-0.92-r1.ebuild,v 1.1 2004/09/01 17:11:06 ticho 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/libc + ssl? ( dev-libs/openssl )" + +src_compile() { + econf `use_enable ssl` || die "Configure failed" + emake || die "Make failed" +} + +src_install() { + dobin nbsmtp + dodoc INSTALL DOCS COPYING +} |