diff options
author | Marinus Schraal <foser@gentoo.org> | 2002-12-22 18:43:52 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2002-12-22 18:43:52 +0000 |
commit | b3f51c6080a577855cdae0c766b72c4046118d4b (patch) | |
tree | ebccda9e12b51b76f5fae4ea3d8bc32f12375d20 /net-www/straw | |
parent | bug 12469 gets all the thanks - compiles with perl 5.8 (diff) | |
download | historical-b3f51c6080a577855cdae0c766b72c4046118d4b.tar.gz historical-b3f51c6080a577855cdae0c766b72c4046118d4b.tar.bz2 historical-b3f51c6080a577855cdae0c766b72c4046118d4b.zip |
New version
Diffstat (limited to 'net-www/straw')
-rw-r--r-- | net-www/straw/files/digest-straw-0.14 | 1 | ||||
-rw-r--r-- | net-www/straw/files/gentoo-straw-0.12.patch | 17 | ||||
-rw-r--r-- | net-www/straw/straw-0.14.ebuild | 39 |
3 files changed, 40 insertions, 17 deletions
diff --git a/net-www/straw/files/digest-straw-0.14 b/net-www/straw/files/digest-straw-0.14 new file mode 100644 index 000000000000..71ee24679279 --- /dev/null +++ b/net-www/straw/files/digest-straw-0.14 @@ -0,0 +1 @@ +MD5 4c8bc0fea9c0e78083754e21f266c538 straw-0.14.tar.bz2 63778 diff --git a/net-www/straw/files/gentoo-straw-0.12.patch b/net-www/straw/files/gentoo-straw-0.12.patch deleted file mode 100644 index 2f25f9b4adf5..000000000000 --- a/net-www/straw/files/gentoo-straw-0.12.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- src/lib/MainWindow.py.old 2002-11-02 17:12:40.000000000 +0100 -+++ src/lib/MainWindow.py 2002-11-02 17:13:00.000000000 +0100 -@@ -630,10 +630,10 @@ - self._item_view.display_item(item) - - def display_status_message(self, m): -- cid = self._status_view.get_context_id("asdf") -- self._status_view.pop(cid) -- if len(m): -- self._status_view.push(cid, m) -+ #cid = self._status_view.get_context_id("asdf") -+ #self._status_view.pop(cid) -+ #if len(m): -+ # self._status_view.push(cid, m) - return - - def number_of_new(self, feed): diff --git a/net-www/straw/straw-0.14.ebuild b/net-www/straw/straw-0.14.ebuild new file mode 100644 index 000000000000..af39e2213f45 --- /dev/null +++ b/net-www/straw/straw-0.14.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-www/straw/straw-0.14.ebuild,v 1.1 2002/12/22 18:43:52 foser Exp $ + +DESCRIPTION="rss news aggregator" +HOMEPAGE="http://www.nongnu.org/straw/" +SRC_URI="http://savannah.nongnu.org/download/${PN}/${PN}.pkg/${PV}/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="virtual/python + >=gnome-base/libglade-2 + >=gnome-base/libgnome-2.0.1 + >=dev-python/gnome-python-1.99.13 + >=dev-python/pygtk-1.99.13-r1 + >=dev-python/bsddb3-3.4.0 + >=dev-python/PyXML-0.8.1 + >=dev-python/egenix-mx-base-2" + +S="${WORKDIR}/${P}" + +src_unpack() { + unpack ${A} + + cd ${S} + mv Makefile Makefile.orig + sed -e "s:-d \$(BINDIR) \$(LIBDIR) \$(DATADIR):-d \$(BINDIR) \$(LIBDIR) \$(DATADIR) \$(APPLICATIONSDIR) \$(ICONDIR):" Makefile.orig > Makefile || die +} + +src_compile() { + emake || die +} + +src_install() { + make PREFIX=${D}/usr install || die + + dodoc NEWS README TODO +} |