diff options
Diffstat (limited to 'x11-plugins/wmmixer/wmmixer-2.0_beta4.ebuild')
-rw-r--r-- | x11-plugins/wmmixer/wmmixer-2.0_beta4.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/x11-plugins/wmmixer/wmmixer-2.0_beta4.ebuild b/x11-plugins/wmmixer/wmmixer-2.0_beta4.ebuild new file mode 100644 index 000000000000..09f180f2cb5e --- /dev/null +++ b/x11-plugins/wmmixer/wmmixer-2.0_beta4.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmmixer/wmmixer-2.0_beta4.ebuild,v 1.1 2004/01/26 11:58:58 spock Exp $ + +IUSE="alsa oss" + +S=${WORKDIR}/${P} +DESCRIPTION="The next generation of WMMixer with native ALSA and OSS support." +SRC_URI="http://freakzone.net/gordon/src/${PN}-2.0b4.tar.gz" +HOMEPAGE="http://freakzone.net/gordon/#wmmixer" + +DEPEND="virtual/x11 + alsa? ( media-libs/alsa-lib )" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~sparc" + +S="${WORKDIR}/${PN}-2.0b4" + +src_unpack() { + + unpack ${A} + cd ${S} + sed -i 's#/usr/local/share#/usr/share#g' src/wmmixer.h example/* +} + +src_compile() { + + local myconf="" + + if [ `use alsa` ] ; then + myconf="${myconf} --enable-alsa" + elif [ `use oss` ] ; then + myconf="${myconf} --disable-alsatest --enable-oss" + fi + + econf "${myconf}" || die + emake || die +} + +src_install() { + + einstall || die + dodoc README COPYING AUTHORS example/home.wmmixerrc example/home.wmmixer + + einfo + einfo "Two sample configuration files have been installed in /usr/share/doc/${PF}/." + einfo "You can copy one of them to ~/.wmmixerrc and adjust any settings you may need." + einfo +} |