diff options
author | Andrej Kacian <ticho@gentoo.org> | 2004-10-31 14:12:01 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2004-10-31 14:12:01 +0000 |
commit | 3eb7bbb8342e05f937ef0ea4d3bc55360fdf9b7f (patch) | |
tree | ff591073691abd4c7b7d98da7a3cc847862add12 /net-mail | |
parent | Added tests for 0.25 for platform verification (Manifest recommit) (diff) | |
download | gentoo-2-3eb7bbb8342e05f937ef0ea4d3bc55360fdf9b7f.tar.gz gentoo-2-3eb7bbb8342e05f937ef0ea4d3bc55360fdf9b7f.tar.bz2 gentoo-2-3eb7bbb8342e05f937ef0ea4d3bc55360fdf9b7f.zip |
Initial import. Closes #65848.
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/smtptools/ChangeLog | 11 | ||||
-rw-r--r-- | net-mail/smtptools/Manifest | 2 | ||||
-rw-r--r-- | net-mail/smtptools/files/digest-smtptools-0.2.3 | 1 | ||||
-rw-r--r-- | net-mail/smtptools/metadata.xml | 9 | ||||
-rw-r--r-- | net-mail/smtptools/smtptools-0.2.3.ebuild | 25 |
5 files changed, 48 insertions, 0 deletions
diff --git a/net-mail/smtptools/ChangeLog b/net-mail/smtptools/ChangeLog new file mode 100644 index 000000000000..0ffc5c41398b --- /dev/null +++ b/net-mail/smtptools/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for net-mail/smtptools +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/smtptools/ChangeLog,v 1.1 2004/10/31 14:12:01 ticho Exp $ + +*smtptools-0.2.3 (31 Oct 2004) + + 31 Oct 2004; Andrej Kacian <ticho@gentoo.org> +metadata.xml, + +smtptools-0.2.3.ebuild: + Initial import, closes #65848. Ebuild submitted by Jesse D. Guardiani + <jesse@wingnet.net>. + diff --git a/net-mail/smtptools/Manifest b/net-mail/smtptools/Manifest new file mode 100644 index 000000000000..5bf8598b1607 --- /dev/null +++ b/net-mail/smtptools/Manifest @@ -0,0 +1,2 @@ +MD5 ae25252b2f58fefa03a1409824be0802 smtptools-0.2.3.ebuild 639 +MD5 b9039ecb54e23c7820331c02902fa2a0 files/digest-smtptools-0.2.3 67 diff --git a/net-mail/smtptools/files/digest-smtptools-0.2.3 b/net-mail/smtptools/files/digest-smtptools-0.2.3 new file mode 100644 index 000000000000..08019b808c79 --- /dev/null +++ b/net-mail/smtptools/files/digest-smtptools-0.2.3 @@ -0,0 +1 @@ +MD5 16dd9da7b1b9c7462f207695ae323034 smtptools-0.2.3.tar.gz 117859 diff --git a/net-mail/smtptools/metadata.xml b/net-mail/smtptools/metadata.xml new file mode 100644 index 000000000000..fed54c02866d --- /dev/null +++ b/net-mail/smtptools/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>net-mail</herd> + <maintainer> + <email>ticho@gentoo.org</email> + <name>Andrej Kacian</name> + </maintainer> +</pkgmetadata> diff --git a/net-mail/smtptools/smtptools-0.2.3.ebuild b/net-mail/smtptools/smtptools-0.2.3.ebuild new file mode 100644 index 000000000000..37865cd4938d --- /dev/null +++ b/net-mail/smtptools/smtptools-0.2.3.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/net-mail/smtptools/smtptools-0.2.3.ebuild,v 1.1 2004/10/31 14:12:01 ticho Exp $ + +DESCRIPTION="A collection of tools to send or receive mails with SMTP" +SRC_URI="ftp://ftp.ohse.de/uwe/releases/${P}.tar.gz" +HOMEPAGE="http://www.ohse.de/uwe/software/${PN}.html" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/libc" + +src_compile() { + econf || die "configure failed" + emake || die "emake failed" +} + +src_install () { + make DESTDIR=${D} install || die "Installer failed" + dodoc AUTHORS COPYING README README.cvs README.smtpblast \ + README.tomaildir README.usmtpd TODO +} |