summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2006-02-27 20:56:09 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2006-02-27 20:56:09 +0000
commit3977adacd3701291c3e7fc28c334096e50acc002 (patch)
tree3580b0243d9c99c53a43714e8b00f8ee0c8f760f /games-emulation/dosbox-cvs
parentAdd IUSE (diff)
downloadgentoo-2-3977adacd3701291c3e7fc28c334096e50acc002.tar.gz
gentoo-2-3977adacd3701291c3e7fc28c334096e50acc002.tar.bz2
gentoo-2-3977adacd3701291c3e7fc28c334096e50acc002.zip
alsa is actually a hard dep.
(Portage version: 2.1_pre5-r1)
Diffstat (limited to 'games-emulation/dosbox-cvs')
-rw-r--r--games-emulation/dosbox-cvs/ChangeLog6
-rw-r--r--games-emulation/dosbox-cvs/dosbox-cvs-20030809.ebuild14
2 files changed, 9 insertions, 11 deletions
diff --git a/games-emulation/dosbox-cvs/ChangeLog b/games-emulation/dosbox-cvs/ChangeLog
index e849b54d5d8f..2500167aecb4 100644
--- a/games-emulation/dosbox-cvs/ChangeLog
+++ b/games-emulation/dosbox-cvs/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-emulation/dosbox-cvs
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/dosbox-cvs/ChangeLog,v 1.11 2006/02/07 03:45:33 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/dosbox-cvs/ChangeLog,v 1.12 2006/02/27 20:56:09 mr_bones_ Exp $
+
+ 27 Feb 2006; Michael Sterrett <mr_bones_@gentoo.org>
+ dosbox-cvs-20030809.ebuild:
+ alsa is actually a hard dep. configure.in automagically detects it otherwise.
05 Feb 2006; Michael Sterrett <mr_bones_@gentoo.org>
dosbox-cvs-20030809.ebuild:
diff --git a/games-emulation/dosbox-cvs/dosbox-cvs-20030809.ebuild b/games-emulation/dosbox-cvs/dosbox-cvs-20030809.ebuild
index 537c82a222af..1526ebc3ddcf 100644
--- a/games-emulation/dosbox-cvs/dosbox-cvs-20030809.ebuild
+++ b/games-emulation/dosbox-cvs/dosbox-cvs-20030809.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/dosbox-cvs/dosbox-cvs-20030809.ebuild,v 1.13 2006/02/07 03:45:33 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/dosbox-cvs/dosbox-cvs-20030809.ebuild,v 1.14 2006/02/27 20:56:09 mr_bones_ Exp $
inherit games cvs
@@ -10,9 +10,9 @@ HOMEPAGE="http://dosbox.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
-IUSE="alsa opengl debug"
+IUSE="opengl debug"
-DEPEND="alsa? ( media-libs/alsa-lib )
+DEPEND="media-libs/alsa-lib
opengl? ( virtual/opengl )
>=media-libs/libsdl-1.2.0
sys-libs/zlib
@@ -27,18 +27,12 @@ ECVS_TOP_DIR=${DISTDIR}/cvs-src/${PN}
S=${WORKDIR}/${ECVS_MODULE}
src_compile() {
- local myconf
-
- if ! use alsa ; then
- myconf="--without-alsa-prefix --without-alsa-inc-prefix --disable-alsatest"
- fi
./autogen.sh || die "autogen.sh failed"
egamesconf \
--disable-dependency-tracking \
$(use_enable debug debug heavy) \
- ${myconf} \
$(use_enable opengl) \
- || die
+ || die
emake || die "emake failed"
}