summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2004-09-01 17:11:06 +0000
committerAndrej Kacian <ticho@gentoo.org>2004-09-01 17:11:06 +0000
commit7f7f2477959ec3db39413aac435607cfab77ec99 (patch)
tree5354979407db664ddd53eaa7ae88da941323f45d /mail-mta
parentstable on amd64 (diff)
downloadhistorical-7f7f2477959ec3db39413aac435607cfab77ec99.tar.gz
historical-7f7f2477959ec3db39413aac435607cfab77ec99.tar.bz2
historical-7f7f2477959ec3db39413aac435607cfab77ec99.zip
Fixed use of ssl USE flag, revision-bumped.
Diffstat (limited to 'mail-mta')
-rw-r--r--mail-mta/nbsmtp/ChangeLog7
-rw-r--r--mail-mta/nbsmtp/Manifest18
-rw-r--r--mail-mta/nbsmtp/files/digest-nbsmtp-0.92-r11
-rw-r--r--mail-mta/nbsmtp/nbsmtp-0.92-r1.ebuild25
4 files changed, 47 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..260a0a253129 100644
--- a/mail-mta/nbsmtp/Manifest
+++ b/mail-mta/nbsmtp/Manifest
@@ -1,6 +1,18 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+MD5 6a3f6932e61468d52550909eea45f431 ChangeLog 1989
+MD5 61094ffc33a0bacd15f626908873d90f nbsmtp-0.92-r1.ebuild 623
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 e428ef7d3bc28b7f487c2eca0dbdf48e files/digest-nbsmtp-0.92-r1 63
MD5 699b53b1a713d738aa1008c6cd0b4f29 files/digest-nbsmtp-0.8 57
+MD5 e428ef7d3bc28b7f487c2eca0dbdf48e files/digest-nbsmtp-0.92 63
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.2.6 (GNU/Linux)
+
+iD8DBQFBNgK010xuJSrg3/sRAuB2AJ9eA4CWAz9JKnwcSyVzcHCB8HNyYwCdFLzh
+k/g1otoeZ1R4g5l1e0VtrJw=
+=Mgof
+-----END PGP SIGNATURE-----
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
+}