|
From: Yoda-JM <yo...@us...> - 2009-08-18 12:59:56
|
Module: performous
Branch: master
Commit: 37a5200e23cc40efdccf39c9d782e169695b9404
Author: Vincent Le Ligeour <yo...@us...>
Date: Tue Aug 18 14:59:20 2009 +0200
Added tools use flag to git ebuild
---
.../games-arcade/performous/performous-9999.ebuild | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/portage-overlay/games-arcade/performous/performous-9999.ebuild b/portage-overlay/games-arcade/performous/performous-9999.ebuild
index f068622..16ded03 100644
--- a/portage-overlay/games-arcade/performous/performous-9999.ebuild
+++ b/portage-overlay/games-arcade/performous/performous-9999.ebuild
@@ -27,7 +27,7 @@ LICENSE="GPL-2
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc ~ppc64"
-IUSE="debug alsa portaudio pulseaudio jack songs gstreamer"
+IUSE="debug alsa portaudio pulseaudio jack songs gstreamer tools"
RDEPEND="gnome-base/librsvg
dev-libs/boost
@@ -70,6 +70,11 @@ src_compile() {
mkdir build
cd build
plugins="-DLIBDA_AUTODETECT_PLUGINS=false -DLIBDA_PLUGIN_TESTING=false"
+ if use tools ; then
+ plugins="$plugins -DENABLE_TOOLS=true"
+ else
+ plugins="$plugins -DENABLE_TOOLS=false"
+ fi
if use alsa ; then
plugins="$plugins -DLIBDA_PLUGIN_ALSA=true"
else
|