diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2005-03-18 14:22:07 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2005-03-18 14:22:07 +0000 |
commit | ed5dd821c47a570e11a9af84af473c8167aa53a7 (patch) | |
tree | 045ef8b87e35fa837d4999243650c4e5818bf796 /net-news/straw/straw-0.22.ebuild | |
parent | Use giflib rather than libungif for bug 85720. Also removed unnecessary nogtk... (diff) | |
download | gentoo-2-ed5dd821c47a570e11a9af84af473c8167aa53a7.tar.gz gentoo-2-ed5dd821c47a570e11a9af84af473c8167aa53a7.tar.bz2 gentoo-2-ed5dd821c47a570e11a9af84af473c8167aa53a7.zip |
Moved from net-www/straw to net-news/straw.
Diffstat (limited to 'net-news/straw/straw-0.22.ebuild')
-rw-r--r-- | net-news/straw/straw-0.22.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/net-news/straw/straw-0.22.ebuild b/net-news/straw/straw-0.22.ebuild new file mode 100644 index 000000000000..69b80f93b413 --- /dev/null +++ b/net-news/straw/straw-0.22.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-news/straw/straw-0.22.ebuild,v 1.1 2005/03/18 14:22:07 seemant Exp $ + +inherit gnome2 python distutils + +DESCRIPTION="RSS/RDF News Aggregator" +HOMEPAGE="http://www.nongnu.org/straw/" +SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.bz2" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="" + +DEPEND=">=dev-lang/python-2.2.3-r3" + +RDEPEND="${DEPEND} + >=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/egenix-mx-base-2 + >=dev-python/adns-python-1.0.0" +# REMIND : egenix-mx-base is only needed for the conversion of +# pre 0.22 straw databases. It should be removed at some point. +# foser <foser@gentoo.org> 18 Feb 2004 + + +src_install() { + + distutils_src_install \ + --prefix=/usr \ + --sysconfdir=/etc \ + --disable-schemas-install + +} + +pkg_postinst() { + + distutils_pkg_postinst + gnome2_pkg_postinst # need this for gconf schemas + + echo + einfo "Consult the README if you have database conversion problems on startup." + echo + +} + +pkg_postrm() { + + distutils_pkg_postrm + gnome2_pkg_postrm + +} |