summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--net-mail/sendEmail/ChangeLog7
-rw-r--r--net-mail/sendEmail/Manifest4
-rw-r--r--net-mail/sendEmail/files/digest-sendEmail-1.421
-rw-r--r--net-mail/sendEmail/metadata.xml16
-rw-r--r--net-mail/sendEmail/sendEmail-1.42.ebuild30
5 files changed, 58 insertions, 0 deletions
diff --git a/net-mail/sendEmail/ChangeLog b/net-mail/sendEmail/ChangeLog
new file mode 100644
index 000000000000..8920c27da8e2
--- /dev/null
+++ b/net-mail/sendEmail/ChangeLog
@@ -0,0 +1,7 @@
+# ChangeLog for net-mail/sendEmail
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/sendEmail/ChangeLog,v 1.1 2004/06/19 01:29:20 humpback Exp $
+
+ 19 Jun 2004; Gustavo Felisberto <humpback@gentoo.org>; :
+ Initial import
+
diff --git a/net-mail/sendEmail/Manifest b/net-mail/sendEmail/Manifest
new file mode 100644
index 000000000000..05340e911e04
--- /dev/null
+++ b/net-mail/sendEmail/Manifest
@@ -0,0 +1,4 @@
+MD5 b9f68f9955ecadf0fa14e09373804b67 metadata.xml 696
+MD5 0736e9da9c8b73f18b862fe1cb7b348b sendEmail-1.42.ebuild 545
+MD5 d3a217c801557e87cfa1efa49e158a15 ChangeLog 204
+MD5 09a6b718ff080adf3ca92b588f56b8e8 files/digest-sendEmail-1.42 66
diff --git a/net-mail/sendEmail/files/digest-sendEmail-1.42 b/net-mail/sendEmail/files/digest-sendEmail-1.42
new file mode 100644
index 000000000000..743d1336c203
--- /dev/null
+++ b/net-mail/sendEmail/files/digest-sendEmail-1.42
@@ -0,0 +1 @@
+MD5 38464b9c9b017b65a3ed7bad8eeaddbc sendEmail-v1.42.tar.gz 15573
diff --git a/net-mail/sendEmail/metadata.xml b/net-mail/sendEmail/metadata.xml
new file mode 100644
index 000000000000..0dd365c833c7
--- /dev/null
+++ b/net-mail/sendEmail/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer>
+ <email>humpback@gentoo.org</email>
+</maintainer>
+<longdescription> SendEmail is a lightweight, completly command line based,
+SMTP email agent. If you have the need to send email from a command prompt
+this tool is perfect. It was designed to be used in bash scripts, Perl
+programs, and web sites, but it is also quite useful in many other contexts.
+SendEmail is written in Perl and is unique in that it requires NO SPECIAL
+MODULES. It has a straight forward interface, making it very easy to use.
+</longdescription>
+</pkgmetadata>
+
diff --git a/net-mail/sendEmail/sendEmail-1.42.ebuild b/net-mail/sendEmail/sendEmail-1.42.ebuild
new file mode 100644
index 000000000000..946f5a2ee3a1
--- /dev/null
+++ b/net-mail/sendEmail/sendEmail-1.42.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/sendEmail/sendEmail-1.42.ebuild,v 1.1 2004/06/19 01:29:20 humpback Exp $
+
+DESCRIPTION="Command line based, SMTP email agent"
+
+HOMEPAGE="http://caspian.dotconf.net/menu/Software/SendEmail/"
+
+SRC_URI="http://caspian.dotconf.net/menu/Software/SendEmail/${PN}-v${PV}.tar.gz"
+
+LICENSE="as-is"
+
+SLOT="0"
+
+KEYWORDS="~x86"
+
+IUSE=""
+
+DEPEND=""
+
+RDEPEND="dev-lang/perl"
+
+S=${WORKDIR}/${PN}-v${PV}
+
+
+src_install() {
+ dodir /usr/bin
+ exeinto /usr/bin ; doexe sendEmail
+ dodoc CHANGELOG README TODO
+}