diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2002-02-22 02:58:29 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2002-02-22 02:58:29 +0000 |
commit | 6e1a3dc1ff5c38f510b9d76ae7432e9780144d51 (patch) | |
tree | c5958e6ee718c9b7a3c45aa6336886488c539abb /net-mail/nbsmtp | |
parent | Updated to 1.2.3. (diff) | |
download | gentoo-2-6e1a3dc1ff5c38f510b9d76ae7432e9780144d51.tar.gz gentoo-2-6e1a3dc1ff5c38f510b9d76ae7432e9780144d51.tar.bz2 gentoo-2-6e1a3dc1ff5c38f510b9d76ae7432e9780144d51.zip |
New ebuild. Closes bug #613.
Diffstat (limited to 'net-mail/nbsmtp')
-rw-r--r-- | net-mail/nbsmtp/ChangeLog | 29 | ||||
-rw-r--r-- | net-mail/nbsmtp/files/digest-nbsmtp-0.8 | 1 | ||||
-rw-r--r-- | net-mail/nbsmtp/nbsmtp-0.8.ebuild | 25 |
3 files changed, 55 insertions, 0 deletions
diff --git a/net-mail/nbsmtp/ChangeLog b/net-mail/nbsmtp/ChangeLog new file mode 100644 index 000000000000..f5673e6a6ead --- /dev/null +++ b/net-mail/nbsmtp/ChangeLog @@ -0,0 +1,29 @@ +# ChangeLog for <CATEGORY>/<PACKAGE_NAME> +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/net-mail/nbsmtp/ChangeLog,v 1.1 2002/02/22 02:58:28 g2boojum Exp $ + +*<PACKAGE_NAME>-<PACKAGE_VERSION>-<PACKAGE_RELEASE> (<DATE>) + + 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/net-mail/nbsmtp/files/digest-nbsmtp-0.8 b/net-mail/nbsmtp/files/digest-nbsmtp-0.8 new file mode 100644 index 000000000000..6c212b90bd06 --- /dev/null +++ b/net-mail/nbsmtp/files/digest-nbsmtp-0.8 @@ -0,0 +1 @@ +MD5 88e43a1d9d22210a4c9beba57ba96058 nbsmtp-0.8.tgz 9687 diff --git a/net-mail/nbsmtp/nbsmtp-0.8.ebuild b/net-mail/nbsmtp/nbsmtp-0.8.ebuild new file mode 100644 index 000000000000..e14e4e44e19f --- /dev/null +++ b/net-mail/nbsmtp/nbsmtp-0.8.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Scott Moynes <smoynes@nexus.carleton.ca> +# $Header: /var/cvsroot/gentoo-x86/net-mail/nbsmtp/nbsmtp-0.8.ebuild,v 1.1 2002/02/22 02:58:29 g2boojum 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" + +src_compile() { + gcc ${CFLAGS} -o nbsmtp nbsmtp.c || die +} + +src_install () { + dobin nbsmtp + dodoc COPYING +} |