diff options
author | Olivier Crête <tester@gentoo.org> | 2008-05-05 03:15:04 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2008-05-05 03:15:04 +0000 |
commit | 0d76ad4165892b2454c19a548064c9d246d48c02 (patch) | |
tree | cee79c0509905cc3ab3013bef2b647362d027d13 /app-pda/gpixpod | |
parent | Keyword for mips. (diff) | |
download | gentoo-2-0d76ad4165892b2454c19a548064c9d246d48c02.tar.gz gentoo-2-0d76ad4165892b2454c19a548064c9d246d48c02.tar.bz2 gentoo-2-0d76ad4165892b2454c19a548064c9d246d48c02.zip |
Require pkg-config, fix python version
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-pda/gpixpod')
-rw-r--r-- | app-pda/gpixpod/ChangeLog | 7 | ||||
-rw-r--r-- | app-pda/gpixpod/gpixpod-0.6.2.ebuild | 16 |
2 files changed, 14 insertions, 9 deletions
diff --git a/app-pda/gpixpod/ChangeLog b/app-pda/gpixpod/ChangeLog index f8837e8fdd21..6335c78b2a00 100644 --- a/app-pda/gpixpod/ChangeLog +++ b/app-pda/gpixpod/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-pda/gpixpod -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/gpixpod/ChangeLog,v 1.4 2006/12/22 18:39:22 swegener Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/gpixpod/ChangeLog,v 1.5 2008/05/05 03:15:04 tester Exp $ + + 05 May 2008; Olivier Crête <tester@gentoo.org> gpixpod-0.6.2.ebuild: + Require pkg-config, fix python version 21 Dec 2006; Jim Ramsay <lack@gentoo.org> gpixpod-0.6.2.ebuild: Adding keyword for ~x86 diff --git a/app-pda/gpixpod/gpixpod-0.6.2.ebuild b/app-pda/gpixpod/gpixpod-0.6.2.ebuild index 15cf129309f1..74963f0c7c8a 100644 --- a/app-pda/gpixpod/gpixpod-0.6.2.ebuild +++ b/app-pda/gpixpod/gpixpod-0.6.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/gpixpod/gpixpod-0.6.2.ebuild,v 1.3 2006/12/21 17:00:42 lack Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/gpixpod/gpixpod-0.6.2.ebuild,v 1.4 2008/05/05 03:15:04 tester Exp $ inherit distutils @@ -13,19 +13,21 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND=">=dev-python/pygtk-2.8.4 +RDEPEND=">=dev-python/pygtk-2.8.4 >=x11-libs/gtk+-2.0.0" -RDEPEND="${DEPEND}" +DEPEND="${RDEPEND} + dev-util/pkgconfig" src_unpack() { distutils_python_version unpack ${A} + cd ${S} # Fixing gpixpod.py for searching gpixpod.glade in the same directory - sed -i "s:gpixpod\.glade:/usr/share/gpixpod/gpixpod\.glade:g" ${S}/gpixpod.py + sed -i -e "s:gpixpod\.glade:/usr/share/gpixpod/gpixpod\.glade:g" /gpixpod.py - # Fixing launching script - sed -i "s:/usr/lib/gpixpod/:/usr/$(get_libdir)/python${PYVER}/site-packages/:" ${S}/gpixpod + # Fixing launching script and Makefile + sed -i -e s:python2.4:python${PYVER}:g Makefile gpixpod } src_install() { |