summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2002-07-28 22:04:05 +0000
committerDan Armak <danarmak@gentoo.org>2002-07-28 22:04:05 +0000
commit8a90df9ee44367363a6f0e79328e4eedfaf696f5 (patch)
treeb887d1336446a9e4fb02b7db082531935f325282 /net-news
parentoops, "1" too many :o) (diff)
downloadgentoo-2-8a90df9ee44367363a6f0e79328e4eedfaf696f5.tar.gz
gentoo-2-8a90df9ee44367363a6f0e79328e4eedfaf696f5.tar.bz2
gentoo-2-8a90df9ee44367363a6f0e79328e4eedfaf696f5.zip
user submission #4936. newspost is a usenet binary autoposter.
Diffstat (limited to 'net-news')
-rw-r--r--net-news/newspost/ChangeLog10
-rw-r--r--net-news/newspost/files/digest-newspost-1.201
-rw-r--r--net-news/newspost/newspost-1.20.ebuild38
3 files changed, 49 insertions, 0 deletions
diff --git a/net-news/newspost/ChangeLog b/net-news/newspost/ChangeLog
new file mode 100644
index 000000000000..8139c96ae727
--- /dev/null
+++ b/net-news/newspost/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-news/newspost
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/net-news/newspost/ChangeLog,v 1.1 2002/07/28 22:04:05 danarmak Exp $
+
+*newspost-1.20 (29 Jul 2002)
+
+ 29 Jul 2002; Dan Armak <danarmak@gentoo.org> ChangeLog :
+
+ User submission by Richard Jackson (#4936). newspost is a CL usenet binary
+ autoposter.
diff --git a/net-news/newspost/files/digest-newspost-1.20 b/net-news/newspost/files/digest-newspost-1.20
new file mode 100644
index 000000000000..d7923b3f1dd5
--- /dev/null
+++ b/net-news/newspost/files/digest-newspost-1.20
@@ -0,0 +1 @@
+MD5 ffe7dee11c77667f7bc3f70a73a00698 newspost-1.20.tar.gz 20483
diff --git a/net-news/newspost/newspost-1.20.ebuild b/net-news/newspost/newspost-1.20.ebuild
new file mode 100644
index 000000000000..53e0bc32955b
--- /dev/null
+++ b/net-news/newspost/newspost-1.20.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-news/newspost/newspost-1.20.ebuild,v 1.1 2002/07/28 22:04:05 danarmak Exp $
+
+DESCRIPTION="a usenet binary autoposter for unix"
+HOMEPAGE="http://newspost.unixcab.org/"
+SRC_URI="http://newspost.unixcab.org/download/newspost-1.20.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+
+# NOTE: This package should work on PPC but not tested!
+# It also has a solaris make file but we don't do solaris.
+# but it should mean that it is 64bit clean.
+KEYWORDS="x86"
+
+DEPEND="sys-libs/glibc sys-devel/gcc"
+
+S=${WORKDIR}/${P}
+
+src_unpack() {
+
+ unpack $A
+ cd $S
+ cp Makefile Makefile.orig
+ sed -e "s:CFLAGS = :CFLAGS = ${CFLAGS}#:" Makefile.orig > Makefile
+
+}
+
+src_compile() {
+ emake || die
+}
+
+src_install () {
+ dobin newspost
+ dodoc README
+ dodoc CHANGES
+ dodoc COPYING
+}