blob: 03ca8aae586c1665ed4645205d876f0d8b011b39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2009 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.7 2009/08/03 16:12:10 lack Exp $
EAPI=1
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"
pkg_setup() {
if ! use esd && ! use alsa; then
die "You must enable at least one of USE=esd or USE=alsa"
fi
}
src_compile() {
local myconf
use nls && myconf="${myconf} enable_nls=1"
addpredict /dev/snd
emake ${myconf} || die
}
|