diff options
author | Dan Armak <danarmak@gentoo.org> | 2003-04-02 16:29:17 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2003-04-02 16:29:17 +0000 |
commit | 8865235f343771ba4f491534f260a2087696d0e1 (patch) | |
tree | c8c697896da08051d66dbb96790d0f7734054d1a /net-news | |
parent | new version, closes #15544 (diff) | |
download | gentoo-2-8865235f343771ba4f491534f260a2087696d0e1.tar.gz gentoo-2-8865235f343771ba4f491534f260a2087696d0e1.tar.bz2 gentoo-2-8865235f343771ba4f491534f260a2087696d0e1.zip |
new upstream version, closes #16037
Diffstat (limited to 'net-news')
-rw-r--r-- | net-news/newspost/ChangeLog | 7 | ||||
-rw-r--r-- | net-news/newspost/files/digest-newspost-2.1 | 1 | ||||
-rw-r--r-- | net-news/newspost/newspost-2.1.ebuild | 40 |
3 files changed, 47 insertions, 1 deletions
diff --git a/net-news/newspost/ChangeLog b/net-news/newspost/ChangeLog index 97f5ffd6279b..5f01ba752ca4 100644 --- a/net-news/newspost/ChangeLog +++ b/net-news/newspost/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-news/newspost # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-news/newspost/ChangeLog,v 1.3 2003/02/12 08:37:24 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-news/newspost/ChangeLog,v 1.4 2003/04/02 16:29:17 danarmak Exp $ + +*newspost-2.1 (02 Apr 2003) + + 02 Apr 2003; Dan Armak <danarmak@gentoo.org> newspost-2.1.ebuild: + New upstream version. Closes bug #16037 - thanks to BiOCHiP for submitting. *newspost-2.0 (29 Jul 2002) diff --git a/net-news/newspost/files/digest-newspost-2.1 b/net-news/newspost/files/digest-newspost-2.1 new file mode 100644 index 000000000000..892cd0f37c8d --- /dev/null +++ b/net-news/newspost/files/digest-newspost-2.1 @@ -0,0 +1 @@ +MD5 9c5e1847c2ca0be49e521ea866dcccd6 newspost-2.1.tar.gz 61287 diff --git a/net-news/newspost/newspost-2.1.ebuild b/net-news/newspost/newspost-2.1.ebuild new file mode 100644 index 000000000000..718f9457099c --- /dev/null +++ b/net-news/newspost/newspost-2.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-news/newspost/newspost-2.1.ebuild,v 1.1 2003/04/02 16:29:17 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" +RDEPEND="sys-libs/glibc" + +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 +} |