diff options
author | Jonathan Callen <abcd@gentoo.org> | 2010-09-22 01:23:46 +0000 |
---|---|---|
committer | Jonathan Callen <abcd@gentoo.org> | 2010-09-22 01:23:46 +0000 |
commit | 1b2934744ef9e31e4a1de245d04ccf3c5cf1ebc4 (patch) | |
tree | 119c31b98f2cffeff9dc9d7f2cc597fa0ea8838c /gnome-extra/gnome-audio/gnome-audio-2.22.2.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-1b2934744ef9e31e4a1de245d04ccf3c5cf1ebc4.tar.gz gentoo-2-1b2934744ef9e31e4a1de245d04ccf3c5cf1ebc4.tar.bz2 gentoo-2-1b2934744ef9e31e4a1de245d04ccf3c5cf1ebc4.zip |
Use EAPI=3, add ~amd64-linux/~x86-linux keywords and prefix support
(Portage version: 2.2_rc85_p16/cvs/Linux i686)
Diffstat (limited to 'gnome-extra/gnome-audio/gnome-audio-2.22.2.ebuild')
-rw-r--r-- | gnome-extra/gnome-audio/gnome-audio-2.22.2.ebuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnome-extra/gnome-audio/gnome-audio-2.22.2.ebuild b/gnome-extra/gnome-audio/gnome-audio-2.22.2.ebuild index b075e5282fd2..cda6c309f7bd 100644 --- a/gnome-extra/gnome-audio/gnome-audio-2.22.2.ebuild +++ b/gnome-extra/gnome-audio/gnome-audio-2.22.2.ebuild @@ -1,6 +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/gnome-extra/gnome-audio/gnome-audio-2.22.2.ebuild,v 1.10 2009/04/29 10:24:56 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-audio/gnome-audio-2.22.2.ebuild,v 1.11 2010/09/22 01:23:46 abcd Exp $ + +EAPI=3 inherit gnome2 @@ -9,15 +11,17 @@ HOMEPAGE="http://www.gnome.org/" SLOT="0" LICENSE="public-domain CCPL-Attribution-ShareAlike-2.0 CCPL-Attribution-3.0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="" DEPEND="" RDEPEND="" +src_configure() { :; } + src_compile() { :; } src_install() { - emake DESTDIR="${D}" install || die "installation failed" + emake DESTDIR="${ED}" install || die "installation failed" dodoc ChangeLog README } |