diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2014-04-07 19:58:47 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2014-04-07 19:58:47 +0000 |
commit | e29f9882d788de78c89315a2e9b41849c8f8ecfa (patch) | |
tree | 17d3c896e788dd7409d49fd50f70b7d6971aa399 /x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild | |
parent | Use EAPI5 instead of EAPI1. (diff) | |
download | gentoo-2-e29f9882d788de78c89315a2e9b41849c8f8ecfa.tar.gz gentoo-2-e29f9882d788de78c89315a2e9b41849c8f8ecfa.tar.bz2 gentoo-2-e29f9882d788de78c89315a2e9b41849c8f8ecfa.zip |
Use EAPI5 instead of EAPI1. Missing inherit eutils for epatch.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild')
-rw-r--r-- | x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild b/x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild index aa72e828dd7a..549e881b6f2f 100644 --- a/x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild +++ b/x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild @@ -1,33 +1,30 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild,v 1.8 2012/03/18 12:40:32 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild,v 1.9 2014/04/07 19:58:47 ssuominen Exp $ -EAPI=1 +EAPI=5 inherit gkrellm-plugin -IUSE="nls" - DESCRIPTION="A plugin for GKrellM2 that has a VU meter and a sound chart" HOMEPAGE="http://members.dslextreme.com/users/billw/gkrellmss/gkrellmss.html" SRC_URI="http://web.wt.net/~billw/gkrellmss/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 ppc ~sparc x86" +IUSE="nls" + RDEPEND="=sci-libs/fftw-3* media-libs/alsa-lib" - DEPEND="${RDEPEND}" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="alpha amd64 ppc ~sparc x86" - PLUGIN_SO="src/gkrellmss.so" PLUGIN_DOCS="Themes" src_compile() { local myconf - - use nls && myconf="${myconf} enable_nls=1" + use nls && myconf+=" enable_nls=1" addpredict /dev/snd - emake ${myconf} || die + emake ${myconf} } |