diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-04-12 17:21:02 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-04-12 17:21:02 +0000 |
commit | 55fb454b22c77f1b0462644ee360196c261503a9 (patch) | |
tree | a426912f93a2b9ad4a1cc79ecfa953f05c704396 /media-sound/jack/jack-3.0.0.ebuild | |
parent | Update and reorder variables a bit. Based off Nikoli's patch. (diff) | |
download | gentoo-2-55fb454b22c77f1b0462644ee360196c261503a9.tar.gz gentoo-2-55fb454b22c77f1b0462644ee360196c261503a9.tar.bz2 gentoo-2-55fb454b22c77f1b0462644ee360196c261503a9.zip |
Fix usage of distutils.eclass.
(Portage version: 2.2.0_alpha29_p17/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/jack/jack-3.0.0.ebuild')
-rw-r--r-- | media-sound/jack/jack-3.0.0.ebuild | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/media-sound/jack/jack-3.0.0.ebuild b/media-sound/jack/jack-3.0.0.ebuild index 7f128165f7cd..7fb6f381347e 100644 --- a/media-sound/jack/jack-3.0.0.ebuild +++ b/media-sound/jack/jack-3.0.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/jack/jack-3.0.0.ebuild,v 1.14 2010/05/28 21:08:01 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/jack/jack-3.0.0.ebuild,v 1.15 2011/04/12 17:21:02 arfrever Exp $ EAPI="3" PYTHON_DEPEND="2" @@ -26,18 +26,15 @@ RDEPEND="${DEPEND} media-sound/lame media-sound/cdparanoia" +DISTUTILS_SETUP_FILES=("setup-cursesmodule.py") + pkg_setup() { python_set_active_version 2 python_pkg_setup } -src_compile() { - python setup-cursesmodule.py build || die "compilation failed" -} - src_install() { - python setup-cursesmodule.py install --root="${D}" \ - || die "curses module install failed" + distutils_src_install dobin jack || die "dobin failed" |