summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFernando J. Pereda <ferdy@gentoo.org>2005-08-01 13:20:54 +0000
committerFernando J. Pereda <ferdy@gentoo.org>2005-08-01 13:20:54 +0000
commit4037f19dc69e84c6f2953700eb9d144addaec61a (patch)
treee2b297239aa2fe20405c606de001ed2fd28f5b6d /mail-mta
parentmailer.eclass aware ebuild (diff)
downloadgentoo-2-4037f19dc69e84c6f2953700eb9d144addaec61a.tar.gz
gentoo-2-4037f19dc69e84c6f2953700eb9d144addaec61a.tar.bz2
gentoo-2-4037f19dc69e84c6f2953700eb9d144addaec61a.zip
removing innecesary versions and files
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'mail-mta')
-rw-r--r--mail-mta/nbsmtp/ChangeLog6
-rw-r--r--mail-mta/nbsmtp/files/digest-nbsmtp-0.991
-rw-r--r--mail-mta/nbsmtp/files/digest-nbsmtp-0.99-r11
-rw-r--r--mail-mta/nbsmtp/files/nbsmtp-CRAM-MD5.diff21
-rw-r--r--mail-mta/nbsmtp/nbsmtp-0.99-r1.ebuild53
-rw-r--r--mail-mta/nbsmtp/nbsmtp-0.99.ebuild41
6 files changed, 5 insertions, 118 deletions
diff --git a/mail-mta/nbsmtp/ChangeLog b/mail-mta/nbsmtp/ChangeLog
index 20fb6a9b89e3..eabc5988aed4 100644
--- a/mail-mta/nbsmtp/ChangeLog
+++ b/mail-mta/nbsmtp/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for mail-mta/nbsmtp
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/ChangeLog,v 1.31 2005/08/01 13:17:18 ferdy Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/ChangeLog,v 1.32 2005/08/01 13:20:54 ferdy Exp $
+
+ 01 Aug 2005; Fernando J. Pereda <ferdy@gentoo.org>
+ -files/nbsmtp-CRAM-MD5.diff, -nbsmtp-0.99.ebuild, -nbsmtp-0.99-r1.ebuild:
+ removing innecesary versions and files
*nbsmtp-1.00-r1 (01 Aug 2005)
diff --git a/mail-mta/nbsmtp/files/digest-nbsmtp-0.99 b/mail-mta/nbsmtp/files/digest-nbsmtp-0.99
deleted file mode 100644
index fbb9bec06f0d..000000000000
--- a/mail-mta/nbsmtp/files/digest-nbsmtp-0.99
+++ /dev/null
@@ -1 +0,0 @@
-MD5 36db70c4f8f9aa31dc5f417d8cbdd1d2 nbsmtp-0.99.tar.bz2 103949
diff --git a/mail-mta/nbsmtp/files/digest-nbsmtp-0.99-r1 b/mail-mta/nbsmtp/files/digest-nbsmtp-0.99-r1
deleted file mode 100644
index fbb9bec06f0d..000000000000
--- a/mail-mta/nbsmtp/files/digest-nbsmtp-0.99-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 36db70c4f8f9aa31dc5f417d8cbdd1d2 nbsmtp-0.99.tar.bz2 103949
diff --git a/mail-mta/nbsmtp/files/nbsmtp-CRAM-MD5.diff b/mail-mta/nbsmtp/files/nbsmtp-CRAM-MD5.diff
deleted file mode 100644
index e19438cb8bc4..000000000000
--- a/mail-mta/nbsmtp/files/nbsmtp-CRAM-MD5.diff
+++ /dev/null
@@ -1,21 +0,0 @@
-Index: nbsmtp.c
-===================================================================
-RCS file: /var/cvs/nbsmtp/nbsmtp.c,v
-retrieving revision 1.139
-diff -u -B -r1.139 nbsmtp.c
---- nbsmtp.c 12 Mar 2005 19:50:12 -0000 1.139
-+++ nbsmtp.c 15 Jun 2005 09:13:56 -0000
-@@ -492,8 +492,11 @@
- }
-
- strncpy(greeting,smtp_last_message(),sizeof(greeting));
--
-- from64tobits(challenge,greeting);
-+
-+ i = from64tobits(challenge,greeting);
-+
-+ /* Make sure challenge is '\0' ended, since from64tobits doesn't do it itself */
-+ challenge[i] = '\0';
-
- hmac_md5((unsigned char*)challenge, strlen(challenge),
- (unsigned char*)serverinfo->auth_pass, strlen(serverinfo->auth_pass),
diff --git a/mail-mta/nbsmtp/nbsmtp-0.99-r1.ebuild b/mail-mta/nbsmtp/nbsmtp-0.99-r1.ebuild
deleted file mode 100644
index 813a1bb40263..000000000000
--- a/mail-mta/nbsmtp/nbsmtp-0.99-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/nbsmtp-0.99-r1.ebuild,v 1.2 2005/06/15 09:28:04 ferdy Exp $
-
-inherit eutils mailer
-
-DESCRIPTION="Extremely simple MTA to get mail off the system to a relayhost"
-SRC_URI="http://www.gentoo-es.org/~ferdy/${P}.tar.bz2"
-HOMEPAGE="http://nbsmtp.ferdyx.org"
-
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~hppa ~amd64 ~sparc ~alpha"
-LICENSE="GPL-2"
-IUSE="ssl ipv6 debug"
-
-DEPEND="virtual/libc
- ssl? ( dev-libs/openssl )"
-
-src_compile() {
- local myconf
-
- epatch ${FILESDIR}/${PN}-CRAM-MD5.diff
-
- econf $(use_enable ssl) \
- $(use_enable debug) \
- $(use_enable ipv6) \
- ${myconf} || die
-
- make || die
-}
-
-src_install() {
- dodir /usr/bin /usr/sbin /usr/lib
- dobin nbsmtp
- doman nbsmtprc.5 nbsmtp.8
- dodoc INSTALL DOCS Doxyfile
-
- dobin scripts/wrapper-nbsmtp
- dobin scripts/nbqueue
-
- if use mailwrapper ; then
- dohard /usr/bin/wrapper-nbsmtp /usr/bin/sendmail.nbsmtp
- dohard /usr/bin/wrapper-nbsmtp /usr/bin/mailq.nbsmtp
- dohard /usr/bin/wrapper-nbsmtp /usr/bin/newaliases.nbsmtp
- mailer_install_conf
- else
- dohard /usr/bin/wrapper-nbsmtp /usr/bin/sendmail
- dohard /usr/bin/wrapper-nbsmtp /usr/sbin/sendmail
- dohard /usr/bin/wrapper-nbsmtp /usr/lib/sendmail
- dohard /usr/bin/wrapper-nbsmtp /usr/bin/mailq
- dohard /usr/bin/wrapper-nbsmtp /usr/bin/newaliases
- fi
-}
diff --git a/mail-mta/nbsmtp/nbsmtp-0.99.ebuild b/mail-mta/nbsmtp/nbsmtp-0.99.ebuild
deleted file mode 100644
index 89275160bbe3..000000000000
--- a/mail-mta/nbsmtp/nbsmtp-0.99.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/nbsmtp-0.99.ebuild,v 1.6 2005/06/15 09:28:05 ferdy Exp $
-
-inherit eutils
-
-DESCRIPTION="Extremely simple MTA to get mail off the system to a relayhost"
-SRC_URI="http://www.gentoo-es.org/~ferdy/${P}.tar.bz2"
-#SRC_URI="http://www.it.uc3m.es/~ferdy/${PN}/${P}.tar.bz2"
-HOMEPAGE="http://nbsmtp.ferdyx.org"
-
-SLOT="0"
-KEYWORDS="alpha ~amd64 hppa ppc sparc x86"
-LICENSE="GPL-2"
-IUSE="ssl ipv6 debug"
-
-DEPEND="virtual/libc
- ssl? ( dev-libs/openssl )"
-
-PROVIDE="virtual/mta"
-
-src_compile() {
- local myconf
-
- epatch ${FILESDIR}/${PN}-CRAM-MD5.diff
-
- econf $(use_enable ssl) \
- $(use_enable debug) \
- $(use_enable ipv6) \
- ${myconf} || die
-
- make || die
-}
-
-src_install() {
- dodir /usr/bin
- dobin nbsmtp
- dobin scripts/nbqueue
- doman nbsmtprc.5 nbsmtp.8
- dodoc INSTALL DOCS Doxyfile
-}