diff options
Diffstat (limited to 'app-laptop')
-rw-r--r-- | app-laptop/pbbuttonsd/ChangeLog | 5 | ||||
-rw-r--r-- | app-laptop/pbbuttonsd/pbbuttonsd-0.7.2.ebuild | 14 |
2 files changed, 12 insertions, 7 deletions
diff --git a/app-laptop/pbbuttonsd/ChangeLog b/app-laptop/pbbuttonsd/ChangeLog index ea923536dfe7..7c597fd855f1 100644 --- a/app-laptop/pbbuttonsd/ChangeLog +++ b/app-laptop/pbbuttonsd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-laptop/pbbuttonsd # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/pbbuttonsd/ChangeLog,v 1.35 2005/10/05 17:46:10 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/pbbuttonsd/ChangeLog,v 1.36 2005/11/16 04:04:57 lu_zero Exp $ + + 16 Nov 2005; Luca Barbato <lu_zero@gentoo.org> pbbuttonsd-0.7.2.ebuild: + alsa and oss explicit support, kindly provided by Flameeyes *pbbuttonsd-0.7.2 (05 Oct 2005) 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" } |