summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2002-07-29 08:19:16 +0000
committerDan Armak <danarmak@gentoo.org>2002-07-29 08:19:16 +0000
commit1fd04495dff6f382c98a78f65c378d702ac1014d (patch)
tree8986b841f19c50281923873d96cc2c957232c78b /net-news
parentFixed typo in the HOMEPAGE. (diff)
downloadgentoo-2-1fd04495dff6f382c98a78f65c378d702ac1014d.tar.gz
gentoo-2-1fd04495dff6f382c98a78f65c378d702ac1014d.tar.bz2
gentoo-2-1fd04495dff6f382c98a78f65c378d702ac1014d.zip
new version
Diffstat (limited to 'net-news')
-rw-r--r--net-news/newspost/ChangeLog8
-rw-r--r--net-news/newspost/files/digest-newspost-2.01
-rw-r--r--net-news/newspost/newspost-1.20.ebuild4
-rw-r--r--net-news/newspost/newspost-2.0.ebuild39
4 files changed, 49 insertions, 3 deletions
diff --git a/net-news/newspost/ChangeLog b/net-news/newspost/ChangeLog
index 8139c96ae727..3c07030e326a 100644
--- a/net-news/newspost/ChangeLog
+++ b/net-news/newspost/ChangeLog
@@ -1,6 +1,12 @@
# 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 $
+# $Header: /var/cvsroot/gentoo-x86/net-news/newspost/ChangeLog,v 1.2 2002/07/29 08:19:15 danarmak Exp $
+
+*newspost-2.0 (29 Jul 2002)
+
+ 29 Jul 2002; Dan Armak <danarmak@gentoo.org> ChangeLog :
+
+ New version with many important changes.
*newspost-1.20 (29 Jul 2002)
diff --git a/net-news/newspost/files/digest-newspost-2.0 b/net-news/newspost/files/digest-newspost-2.0
new file mode 100644
index 000000000000..b068f8ec0dce
--- /dev/null
+++ b/net-news/newspost/files/digest-newspost-2.0
@@ -0,0 +1 @@
+MD5 664f96c37b2a6566cf55dc4e040648fe newspost-2.0.tar.gz 58001
diff --git a/net-news/newspost/newspost-1.20.ebuild b/net-news/newspost/newspost-1.20.ebuild
index 53e0bc32955b..9ebc30007118 100644
--- a/net-news/newspost/newspost-1.20.ebuild
+++ b/net-news/newspost/newspost-1.20.ebuild
@@ -1,10 +1,10 @@
# 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 $
+# $Header: /var/cvsroot/gentoo-x86/net-news/newspost/newspost-1.20.ebuild,v 1.2 2002/07/29 08:19:15 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"
+SRC_URI="http://newspost.unixcab.org/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
diff --git a/net-news/newspost/newspost-2.0.ebuild b/net-news/newspost/newspost-2.0.ebuild
new file mode 100644
index 000000000000..3807f7a3674e
--- /dev/null
+++ b/net-news/newspost/newspost-2.0.ebuild
@@ -0,0 +1,39 @@
+# 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-2.0.ebuild,v 1.1 2002/07/29 08:19:16 danarmak Exp $
+
+DESCRIPTION="a usenet binary autoposter for unix"
+HOMEPAGE="http://newspost.unixcab.org/"
+SRC_URI="http://newspost.unixcab.org/download/${P}.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:OPT_FLAGS = :OPT_FLAGS = ${CFLAGS}#:" Makefile.orig > Makefile
+
+}
+
+src_compile() {
+ emake || die
+}
+
+src_install () {
+ dobin newspost
+ doman man/man1/newspost.1
+ dodoc README
+ dodoc CHANGES
+ dodoc COPYING
+}