summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2009-04-22 02:14:05 +0000
committerMart Raudsepp <leio@gentoo.org>2009-04-22 02:14:05 +0000
commitd0b706e923215ef824817383fded02f23cf76309 (patch)
treec1ee6d43be90b3071eb9787fc8a28d3cbaee81e0 /dev-python/pygtk
parentIn order to get amarok-2.0.2 to build, I've appended --as-needed to the ldflags. (diff)
downloadgentoo-2-d0b706e923215ef824817383fded02f23cf76309.tar.gz
gentoo-2-d0b706e923215ef824817383fded02f23cf76309.tar.bz2
gentoo-2-d0b706e923215ef824817383fded02f23cf76309.zip
Remove old
(Portage version: 2.2_rc22/cvs/Linux 2.6.29-gentoo-r1 x86_64)
Diffstat (limited to 'dev-python/pygtk')
-rw-r--r--dev-python/pygtk/ChangeLog5
-rw-r--r--dev-python/pygtk/pygtk-2.14.0.ebuild76
2 files changed, 4 insertions, 77 deletions
diff --git a/dev-python/pygtk/ChangeLog b/dev-python/pygtk/ChangeLog
index 96d9f4e31167..f978e6a5c696 100644
--- a/dev-python/pygtk/ChangeLog
+++ b/dev-python/pygtk/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/pygtk
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygtk/ChangeLog,v 1.210 2009/04/21 09:12:07 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/pygtk/ChangeLog,v 1.211 2009/04/22 02:14:05 leio Exp $
+
+ 22 Apr 2009; Mart Raudsepp <leio@gentoo.org> -pygtk-2.14.0.ebuild:
+ Remove old
21 Apr 2009; Raúl Porcel <armin76@gentoo.org> pygtk-2.14.1.ebuild:
arm/ia64/sh/sparc stable wrt #266668
diff --git a/dev-python/pygtk/pygtk-2.14.0.ebuild b/dev-python/pygtk/pygtk-2.14.0.ebuild
deleted file mode 100644
index 89e6f4fcb03e..000000000000
--- a/dev-python/pygtk/pygtk-2.14.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pygtk/pygtk-2.14.0.ebuild,v 1.7 2009/03/30 13:33:28 armin76 Exp $
-
-inherit eutils flag-o-matic gnome.org python virtualx
-
-DESCRIPTION="GTK+2 bindings for Python"
-HOMEPAGE="http://www.pygtk.org/"
-
-LICENSE="LGPL-2.1"
-SLOT="2"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd"
-IUSE="doc examples"
-
-RDEPEND=">=dev-libs/glib-2.8.0
- >=x11-libs/pango-1.16.0
- >=dev-libs/atk-1.12.0
- >=x11-libs/gtk+-2.13.6
- >=gnome-base/libglade-2.5.0
- >=dev-lang/python-2.4.4-r5
- >=dev-python/pycairo-1.0.2
- >=dev-python/pygobject-2.15.3
- !arm? ( dev-python/numeric )"
-
-DEPEND="${RDEPEND}
- doc? ( dev-libs/libxslt >=app-text/docbook-xsl-stylesheets-1.70.1 )
- >=dev-util/pkgconfig-0.9"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Fix declaration of codegen in .pc
- epatch "${FILESDIR}/${PN}-2.13.0-fix-codegen-location.patch"
-
- # disable pyc compiling
- mv "${S}"/py-compile "${S}"/py-compile.orig
- ln -s $(type -P true) "${S}"/py-compile
-}
-
-src_compile() {
- use hppa && append-flags -ffunction-sections
- econf $(use_enable doc docs) --enable-thread
-
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog INSTALL MAPPING NEWS README THREADS TODO
-
- if use examples; then
- rm examples/Makefile*
- insinto /usr/share/doc/${PF}
- doins -r examples
- fi
-}
-
-src_test() {
- cd tests
- Xemake check-local || die "tests failed"
-}
-
-pkg_postinst() {
- python_version
- python_need_rebuild
- python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0
-}
-
-pkg_postrm() {
- python_version
- python_mod_cleanup /usr/$(get_libdir)/python*/site-packages/gtk-2.0
- rm -f "${ROOT}"/usr/$(get_libdir)/python${PYVER}/site-packages/pygtk.{py,pth}
- alternatives_auto_makesym /usr/$(get_libdir)/python${PYVER}/site-packages/pygtk.py pygtk.py-[0-9].[0-9]
- alternatives_auto_makesym /usr/$(get_libdir)/python${PYVER}/site-packages/pygtk.pth pygtk.pth-[0-9].[0-9]
-}