diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-06-25 18:34:11 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-06-25 18:34:11 +0000 |
commit | b14e058de069257e4a8feed3463170c199b53e76 (patch) | |
tree | 80426d759f88bd19d1f60ddb0a91b6428fbfed10 /x11-misc | |
parent | Added config options for gtkhtml and gnome. (diff) | |
download | historical-b14e058de069257e4a8feed3463170c199b53e76.tar.gz historical-b14e058de069257e4a8feed3463170c199b53e76.tar.bz2 historical-b14e058de069257e4a8feed3463170c199b53e76.zip |
Added config options for alsa.
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xfce4-mixer/Manifest | 2 | ||||
-rw-r--r-- | x11-misc/xfce4-mixer/xfce4-mixer-0.1.ebuild | 16 |
2 files changed, 14 insertions, 4 deletions
diff --git a/x11-misc/xfce4-mixer/Manifest b/x11-misc/xfce4-mixer/Manifest index d10e40760dc2..c3eafe070e9d 100644 --- a/x11-misc/xfce4-mixer/Manifest +++ b/x11-misc/xfce4-mixer/Manifest @@ -1,3 +1,3 @@ MD5 83637e6aaf35c56e0c4b196ada75303f ChangeLog 343 -MD5 c5c791d17e3769333298549b438dc6b5 xfce4-mixer-0.1.ebuild 788 +MD5 92d5f3a47f5582609351e2b78220cad3 xfce4-mixer-0.1.ebuild 912 MD5 c526f5907fb7c1e85dbea2759a2b47ab files/digest-xfce4-mixer-0.1 67 diff --git a/x11-misc/xfce4-mixer/xfce4-mixer-0.1.ebuild b/x11-misc/xfce4-mixer/xfce4-mixer-0.1.ebuild index 2f04192321d6..5c346ee90786 100644 --- a/x11-misc/xfce4-mixer/xfce4-mixer-0.1.ebuild +++ b/x11-misc/xfce4-mixer/xfce4-mixer-0.1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfce4-mixer/xfce4-mixer-0.1.ebuild,v 1.3 2003/06/25 06:09:29 bcowan Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfce4-mixer/xfce4-mixer-0.1.ebuild,v 1.4 2003/06/25 18:33:54 bcowan Exp $ -IUSE="" +IUSE="alsa" S=${WORKDIR}/${P} DESCRIPTION="Xfce4 Mixer" @@ -18,8 +18,18 @@ DEPEND=">=x11-libs/gtk+-2.0.6 dev-libs/libxml2 >=x11-wm/xfce4-3.90.0" +src_compile() { + local myconf + myconf="" + + use alsa && myconf="${myconf} --with-sound=alsa" + + econf ${myconf} || die + emake || die +} + src_install() { make DESTDIR=${D} install || die - dodoc AUTHORS INSTALL NEWS COPYING README ChangeLog TODO + dodoc AUTHORS INSTALL COPYING README TODO } |