summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Hadaway <raker@gentoo.org>2002-11-02 21:14:10 +0000
committerNick Hadaway <raker@gentoo.org>2002-11-02 21:14:10 +0000
commit3e1670292cf7cc2101674829c0be628b82f87a4c (patch)
treeb210375ca7bae667c6a5b325b84f337292be251d /net-mail/smtpclient
parentNew ebuild. See bug #7768 (diff)
downloadgentoo-2-3e1670292cf7cc2101674829c0be628b82f87a4c.tar.gz
gentoo-2-3e1670292cf7cc2101674829c0be628b82f87a4c.tar.bz2
gentoo-2-3e1670292cf7cc2101674829c0be628b82f87a4c.zip
New ebuild added to portage. See bug #7770
Diffstat (limited to 'net-mail/smtpclient')
-rw-r--r--net-mail/smtpclient/ChangeLog13
-rw-r--r--net-mail/smtpclient/files/digest-smtpclient-1.0.01
-rw-r--r--net-mail/smtpclient/smtpclient-1.0.0.ebuild31
3 files changed, 45 insertions, 0 deletions
diff --git a/net-mail/smtpclient/ChangeLog b/net-mail/smtpclient/ChangeLog
new file mode 100644
index 000000000000..c2216334c6f0
--- /dev/null
+++ b/net-mail/smtpclient/ChangeLog
@@ -0,0 +1,13 @@
+# ChangeLog for net-mail/smtpclient
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/smtpclient/ChangeLog,v 1.1 2002/11/02 21:14:10 raker Exp $
+
+*smtpclient-1.0.0 (10 Sep 2002)
+
+ 02 Nov 2002; Nick Hadaway <raker@gentoo.org> smtpclient-1.0.0.ebuild :
+ Added IUSE. Added to portage.
+
+ 10 Sep 2002; Russell Adams <rladams@kelsey-seybold.com>
+ smtpclient-1.0.0.ebuild:
+ Initial version. Verified compile and installation.
+
diff --git a/net-mail/smtpclient/files/digest-smtpclient-1.0.0 b/net-mail/smtpclient/files/digest-smtpclient-1.0.0
new file mode 100644
index 000000000000..2b755e4157db
--- /dev/null
+++ b/net-mail/smtpclient/files/digest-smtpclient-1.0.0
@@ -0,0 +1 @@
+MD5 8b5d9260572107bb901edf6aacbf3747 smtpclient-1.0.0.tar.gz 40033
diff --git a/net-mail/smtpclient/smtpclient-1.0.0.ebuild b/net-mail/smtpclient/smtpclient-1.0.0.ebuild
new file mode 100644
index 000000000000..36f3e65fce40
--- /dev/null
+++ b/net-mail/smtpclient/smtpclient-1.0.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/smtpclient/smtpclient-1.0.0.ebuild,v 1.1 2002/11/02 21:14:10 raker Exp $
+
+IUSE=""
+
+DESCRIPTION="Minimal SMTP client"
+HOMEPAGE="http://www.engelschall.com/sw/smtpclient/"
+SRC_URI="http://www.engelschall.com/sw/smtpclient/distrib/smtpclient-1.0.0.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="x86"
+
+DEPEND="virtual/glibc"
+
+src_compile() {
+
+ econf || die "configure failed"
+
+ emake || die "parallel make failed"
+
+}
+
+src_install () {
+
+ dobin smtpclient
+
+ doman smtpclient.1
+
+}