26 lines
684 B
Bash
26 lines
684 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13.ebuild,v 1.10 2010/03/12 00:41:48 sping Exp $
|
|
|
|
inherit gkrellm-plugin
|
|
|
|
IUSE="alsa"
|
|
DESCRIPTION="A mixer control plugin for gkrellm"
|
|
HOMEPAGE="http://gkrellm.luon.net/volume.php"
|
|
SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="2"
|
|
KEYWORDS="alpha amd64 ppc sparc x86"
|
|
|
|
DEPEND="alsa? ( media-libs/alsa-lib )"
|
|
|
|
S=${WORKDIR}/${PN}
|
|
|
|
PLUGIN_SO=volume.so
|
|
|
|
src_compile() {
|
|
local myconf=""
|
|
use alsa && myconf="${myconf} enable_alsa=1"
|
|
make ${myconf} || die "make failed"
|
|
}
|