diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2010-01-10 23:11:27 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2010-01-10 23:11:27 +0000 |
commit | 9fa811fdb8af5924778e8888fe12df851a753d13 (patch) | |
tree | 3d8ea46794d9d25b55e48ebd231594af1fa977c7 /x11-misc | |
parent | Version bump #279057 and block app-text/yudit #247972. (diff) | |
download | gentoo-2-9fa811fdb8af5924778e8888fe12df851a753d13.tar.gz gentoo-2-9fa811fdb8af5924778e8888fe12df851a753d13.tar.bz2 gentoo-2-9fa811fdb8af5924778e8888fe12df851a753d13.zip |
Fix python dep per bug #299198.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/driconf/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/driconf/driconf-0.9.1.ebuild | 15 |
2 files changed, 11 insertions, 11 deletions
diff --git a/x11-misc/driconf/ChangeLog b/x11-misc/driconf/ChangeLog index 023347d83944..0de2b942efcc 100644 --- a/x11-misc/driconf/ChangeLog +++ b/x11-misc/driconf/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/driconf -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/driconf/ChangeLog,v 1.21 2009/04/06 18:45:17 bluebird Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/driconf/ChangeLog,v 1.22 2010/01/10 23:11:27 scarabeus Exp $ + + 10 Jan 2010; Tomáš Chvátal <scarabeus@gentoo.org> driconf-0.9.1.ebuild: + Fix python dep per bug #299198. 06 Apr 2009; Friedrich Oslage <bluebird@gentoo.org> driconf-0.9.1.ebuild: Add ~sparc keyword, bug #251832 diff --git a/x11-misc/driconf/driconf-0.9.1.ebuild b/x11-misc/driconf/driconf-0.9.1.ebuild index 9614aaf56724..0acca80153af 100644 --- a/x11-misc/driconf/driconf-0.9.1.ebuild +++ b/x11-misc/driconf/driconf-0.9.1.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/driconf/driconf-0.9.1.ebuild,v 1.8 2009/05/05 18:19:48 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/driconf/driconf-0.9.1.ebuild,v 1.9 2010/01/10 23:11:27 scarabeus Exp $ +EAPI="2" inherit distutils DESCRIPTION="driconf is a GTK+2 GUI configurator for DRI." @@ -14,18 +15,14 @@ SLOT="0" KEYWORDS="amd64 ppc ppc64 ~sparc x86" RDEPEND=">=x11-libs/gtk+-2.4 - >=dev-lang/python-2.3 + dev-lang/python[xml] >=dev-python/pygtk-2.4 - dev-python/pyxml x11-apps/xdriinfo" DEPEND="${RDEPEND}" DOCS="CHANGELOG COPYING PKG-INFO README TODO" -src_unpack() { - unpack ${A} - cd "${S}" - +src_prepare() { # Fix install locations which breaks location policy - Josh_B sed -i \ -e 's-/usr/local-/usr-g' \ @@ -41,5 +38,5 @@ src_install() { distutils_src_install insinto /usr/share/applications - doins driconf.desktop + doins driconf.desktop || die } |