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 | 0e2bb0aa2df8d403d633100adf695816e113df7f (patch) | |
tree | 9bbcc7de6b9bf733c8b0d9c6b6aaaec35037bfd7 /net-mail | |
parent | Added tests for 0.25 for platform verification (diff) | |
download | historical-0e2bb0aa2df8d403d633100adf695816e113df7f.tar.gz historical-0e2bb0aa2df8d403d633100adf695816e113df7f.tar.bz2 historical-0e2bb0aa2df8d403d633100adf695816e113df7f.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 | 14 | ||||
-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, 60 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..6ef78cec2270 --- /dev/null +++ b/net-mail/smtptools/Manifest @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 47661ef994bad0df99bc146aa657250e ChangeLog 426 +MD5 edf1302532947c93356a5109715d6a75 smtptools-0.2.3.ebuild 731 +MD5 76d3681a949c983c4790bcd7e89d77bc metadata.xml 254 +MD5 b9039ecb54e23c7820331c02902fa2a0 files/digest-smtptools-0.2.3 67 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.6 (GNU/Linux) + +iD8DBQFBhPK610xuJSrg3/sRAkyRAJ0SN3PzGS3jf7ssAD1vO/tTkHy1FQCeOJ6B +/uzQ9bkMiYdQCYhCH5lq95Y= +=XAYY +-----END PGP SIGNATURE----- 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 +} |