diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-05-30 09:53:23 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-05-30 09:53:23 +0000 |
commit | 26163212eea389d2f3413b14ea3260299bea8c77 (patch) | |
tree | 26d72e64bab48210c0c1171eb2debfa9a1400d66 /mail-mta/nbsmtp | |
parent | Moving to mail-mta/nbsmtp (diff) | |
download | gentoo-2-26163212eea389d2f3413b14ea3260299bea8c77.tar.gz gentoo-2-26163212eea389d2f3413b14ea3260299bea8c77.tar.bz2 gentoo-2-26163212eea389d2f3413b14ea3260299bea8c77.zip |
Moved from net-mail/nbsmtp to mail-mta/nbsmtp.
Diffstat (limited to 'mail-mta/nbsmtp')
-rw-r--r-- | mail-mta/nbsmtp/ChangeLog | 40 | ||||
-rw-r--r-- | mail-mta/nbsmtp/Manifest | 4 | ||||
-rw-r--r-- | mail-mta/nbsmtp/files/digest-nbsmtp-0.8 | 1 | ||||
-rw-r--r-- | mail-mta/nbsmtp/metadata.xml | 5 | ||||
-rw-r--r-- | mail-mta/nbsmtp/nbsmtp-0.8.ebuild | 25 |
5 files changed, 75 insertions, 0 deletions
diff --git a/mail-mta/nbsmtp/ChangeLog b/mail-mta/nbsmtp/ChangeLog new file mode 100644 index 000000000000..bb3ccd864470 --- /dev/null +++ b/mail-mta/nbsmtp/ChangeLog @@ -0,0 +1,40 @@ +# ChangeLog for net-mail/nbsmtp +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/ChangeLog,v 1.1 2004/05/30 09:53:23 robbat2 Exp $ + +*nbsmtp-0.8 (30 May 2004) + + 30 May 2004; Robin H. Johnson <robbat2@gentoo.org> metadata.xml, + nbsmtp-0.8.ebuild: + Moved from net-mail/nbsmtp to mail-mta/nbsmtp. + + 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords + +*nbsmtp-0.8 (13 Feb 2003) + + 13 Jul 2003; Daniel Ahlberg <aliz@gentoo.org> : + Added missing changelog entry. + + 21 Feb 2002; Grant Goodear <g2boojum@gentoo.org> : + + New ebuild from Scott Moynes. + + 1 Feb 2002; G.Bevin <gbevin@gentoo.org> skel.ChangeLog : + + This changelog is targetted to users. This means that the comments should be + well explained and written in clean English. + + Every new version or revision of the package has to be marked by a '*' + seperator line as above. Changements since the last revision have to be + added to the top of the file, underneath the initial copyright and cvs header + comments, in exactly the same format as this comment. + + This means that you start with header line that has the following format : + + date; your_name <your_email> changed_file1, changed_file2 : + + Below that line your explanation should follow. It has to be indented, + paragraphed and wrapped at a linewidth of 80 characters. + + Any details about what exactly changed in the code should be added as a + message when the changes are committed to cvs, not in this file. diff --git a/mail-mta/nbsmtp/Manifest b/mail-mta/nbsmtp/Manifest new file mode 100644 index 000000000000..9ccfe7024aca --- /dev/null +++ b/mail-mta/nbsmtp/Manifest @@ -0,0 +1,4 @@ +MD5 d3aefcc589b9e1eff773941370eb42b9 ChangeLog 1396 +MD5 5a8d35d1a02b4e4c92ea69bb78978631 nbsmtp-0.8.ebuild 594 +MD5 5721b86fd871bdfab77231abc6e02f68 metadata.xml 161 +MD5 699b53b1a713d738aa1008c6cd0b4f29 files/digest-nbsmtp-0.8 57 diff --git a/mail-mta/nbsmtp/files/digest-nbsmtp-0.8 b/mail-mta/nbsmtp/files/digest-nbsmtp-0.8 new file mode 100644 index 000000000000..6c212b90bd06 --- /dev/null +++ b/mail-mta/nbsmtp/files/digest-nbsmtp-0.8 @@ -0,0 +1 @@ +MD5 88e43a1d9d22210a4c9beba57ba96058 nbsmtp-0.8.tgz 9687 diff --git a/mail-mta/nbsmtp/metadata.xml b/mail-mta/nbsmtp/metadata.xml new file mode 100644 index 000000000000..51f94e3fbe0e --- /dev/null +++ b/mail-mta/nbsmtp/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>net-mail</herd> +</pkgmetadata> diff --git a/mail-mta/nbsmtp/nbsmtp-0.8.ebuild b/mail-mta/nbsmtp/nbsmtp-0.8.ebuild new file mode 100644 index 000000000000..f815a1ce8fcf --- /dev/null +++ b/mail-mta/nbsmtp/nbsmtp-0.8.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/nbsmtp-0.8.ebuild,v 1.1 2004/05/30 09:53:23 robbat2 Exp $ + +S=${WORKDIR} +DESCRIPTION="The No-Brainer SMTP" +SRC_URI="http://physeeks.dyndns.org:8000/download/${P}.tgz" +HOMEPAGE="http://physeeks.dyndns.org:8000/software.html" + +DEPEND="virtual/glibc" +PROVIDE="virtual/mta" + + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 sparc" + +src_compile() { + gcc ${CFLAGS} -o nbsmtp nbsmtp.c || die +} + +src_install () { + dobin nbsmtp + dodoc COPYING +} |