diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2009-01-05 22:41:32 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2009-01-05 22:41:32 +0000 |
commit | 1342dbd12999340742daec2e3d59d0e24ee4ab9b (patch) | |
tree | bb2c937ad0ee6a8a39d743d5921d2e044338e84e /net-news/straw/straw-0.25.1-r1.ebuild | |
parent | Add fix to prevent pre-stripping, bug 235026. (diff) | |
download | gentoo-2-1342dbd12999340742daec2e3d59d0e24ee4ab9b.tar.gz gentoo-2-1342dbd12999340742daec2e3d59d0e24ee4ab9b.tar.bz2 gentoo-2-1342dbd12999340742daec2e3d59d0e24ee4ab9b.zip |
Removing straw per bug #187285.
Diffstat (limited to 'net-news/straw/straw-0.25.1-r1.ebuild')
-rw-r--r-- | net-news/straw/straw-0.25.1-r1.ebuild | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/net-news/straw/straw-0.25.1-r1.ebuild b/net-news/straw/straw-0.25.1-r1.ebuild deleted file mode 100644 index c36c62426e9b..000000000000 --- a/net-news/straw/straw-0.25.1-r1.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-news/straw/straw-0.25.1-r1.ebuild,v 1.4 2007/06/26 02:36:07 mr_bones_ Exp $ - -inherit gnome2 python distutils virtualx eutils - -DESCRIPTION="RSS/RDF News Aggregator" -HOMEPAGE="http://www.nongnu.org/straw/" -SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.gz" -LICENSE="GPL-2" - -SLOT="0" -KEYWORDS="x86 ~ppc ~amd64" -IUSE="" - -DEPEND=">=dev-lang/python-2.2.3-r3" - -RDEPEND="${DEPEND} - >=gnome-base/libglade-2.4 - >=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/gnome-python-extras - !ppc? ( >=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 - -pkg_setup() { - export maketype="python" - if ! echo "import gtkhtml2" | virtualmake; then - eerror "The gnome-python-extras gtkhtml2 module was not found." - eerror "Try unmerging gnome-python and gnome-python-extras" - eerror "And then try emerging straw again." - die "missing gtkhtml2 python module" - fi -} - -# This about of virtualmake in src_compile and src_install are -# pretty horrible.. why can't I compile gtk base modules in -# distutils without that (ps. I'm the upstream guy to blame) -# Olivier Crete <tester@gentoo.org> - -src_compile() { - epatch "${FILESDIR}"/${P}-setup-fix.patch - export maketype="distutils_src_compile" - virtualmake || die "compilation failed" -} - -src_install() { - # work around bug in straw's install script - export maketype="distutils_src_install" - virtualmake \ - --prefix=/usr \ - --sysconfdir=${D}/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 - -} |