diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2005-11-16 04:04:57 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2005-11-16 04:04:57 +0000 |
commit | 284114377dcad7735882c9a23f248f6bd0653a05 (patch) | |
tree | ad37ab396858aa3ce887a2e4ec0ff0f13c6b0ea7 /app-laptop/pbbuttonsd/pbbuttonsd-0.7.2.ebuild | |
parent | New version (diff) | |
download | gentoo-2-284114377dcad7735882c9a23f248f6bd0653a05.tar.gz gentoo-2-284114377dcad7735882c9a23f248f6bd0653a05.tar.bz2 gentoo-2-284114377dcad7735882c9a23f248f6bd0653a05.zip |
alsa and oss explicit support
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'app-laptop/pbbuttonsd/pbbuttonsd-0.7.2.ebuild')
-rw-r--r-- | app-laptop/pbbuttonsd/pbbuttonsd-0.7.2.ebuild | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/app-laptop/pbbuttonsd/pbbuttonsd-0.7.2.ebuild b/app-laptop/pbbuttonsd/pbbuttonsd-0.7.2.ebuild index 55439b2defa3..7b56518dfbf3 100644 --- a/app-laptop/pbbuttonsd/pbbuttonsd-0.7.2.ebuild +++ b/app-laptop/pbbuttonsd/pbbuttonsd-0.7.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/pbbuttonsd/pbbuttonsd-0.7.2.ebuild,v 1.1 2005/10/05 17:46:10 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/pbbuttonsd/pbbuttonsd-0.7.2.ebuild,v 1.2 2005/11/16 04:04:57 lu_zero Exp $ inherit eutils linux-info flag-o-matic @@ -11,11 +11,10 @@ SRC_URI="mirror://sourceforge/pbbuttons/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~ppc ~x86" -IUSE="acpi debug" +IUSE="acpi debug alsa oss" -DEPEND="virtual/libc - >=sys-apps/baselayout-1.8.6.12-r1" -RDEPEND="" +DEPEND=">=sys-apps/baselayout-1.8.6.12-r1" +RDEPEND="alsa? ( >=media-libs/alsa-lib-1.0 )" src_compile() { # Fix crash bug on some systems @@ -38,7 +37,10 @@ src_compile() { fi econf laptop=$laptop \ - $(use_enable debug) || die "Sorry, failed to configure pbbuttonsd" + $(use_enable debug) \ + $(use_enable alsa) \ + $(use_enable oss) \ + || die "Sorry, failed to configure pbbuttonsd" emake || die "Sorry, failed to compile pbbuttonsd" } |