diff options
author | Jim Ramsay <lack@gentoo.org> | 2008-04-11 15:12:26 +0000 |
---|---|---|
committer | Jim Ramsay <lack@gentoo.org> | 2008-04-11 15:12:26 +0000 |
commit | e8460adabfd087a9718799f15b39c015dc6785c6 (patch) | |
tree | 0d4592dc7c85827a278ce77e053b11bb2c01763a /x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild | |
parent | Stable on ppc64; bug #217075 (diff) | |
download | historical-e8460adabfd087a9718799f15b39c015dc6785c6.tar.gz historical-e8460adabfd087a9718799f15b39c015dc6785c6.tar.bz2 historical-e8460adabfd087a9718799f15b39c015dc6785c6.zip |
Fixes build problems with fftw-2 by using fftw-3 instead (Bug 204569)
Package-Manager: portage-2.1.4.1
Diffstat (limited to 'x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild')
-rw-r--r-- | x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild b/x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild new file mode 100644 index 000000000000..d3cd1fba0730 --- /dev/null +++ b/x11-plugins/gkrellmss/gkrellmss-2.6-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2008 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.1 2008/04/11 15:12:26 lack Exp $ + +inherit gkrellm-plugin + +IUSE="alsa esd 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" + +RDEPEND="=sci-libs/fftw-3* + esd? ( media-sound/esound ) + alsa? ( 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" + + addpredict /dev/snd + emake ${myconf} || die +} |