summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2004-10-15 07:00:06 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2004-10-15 07:00:06 +0000
commite284be7a6bfe482a5aca679adcba3c7e6776fc98 (patch)
tree9a2dbe3f91e6ff97242701c1e92a3e07250f6f5a /games-emulation
parentCleaning broken realvnc out of tightvnc (Manifest recommit) (diff)
downloadgentoo-2-e284be7a6bfe482a5aca679adcba3c7e6776fc98.tar.gz
gentoo-2-e284be7a6bfe482a5aca679adcba3c7e6776fc98.tar.bz2
gentoo-2-e284be7a6bfe482a5aca679adcba3c7e6776fc98.zip
hardened doesn't seem to like the dynamic core (bug #66038)
Diffstat (limited to 'games-emulation')
-rw-r--r--games-emulation/dosbox/ChangeLog5
-rw-r--r--games-emulation/dosbox/dosbox-0.62.ebuild8
2 files changed, 10 insertions, 3 deletions
diff --git a/games-emulation/dosbox/ChangeLog b/games-emulation/dosbox/ChangeLog
index 782311df67b7..648206185f3c 100644
--- a/games-emulation/dosbox/ChangeLog
+++ b/games-emulation/dosbox/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for games-emulation/dosbox
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/dosbox/ChangeLog,v 1.13 2004/10/04 01:03:15 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/dosbox/ChangeLog,v 1.14 2004/10/15 07:00:06 mr_bones_ Exp $
+
+ 14 Oct 2004; Michael Sterrett <mr_bones_@gentoo.org> dosbox-0.62.ebuild:
+ hardened doesn't seem to like the dynamic core (bug #66038)
03 Oct 2004; Michael Sterrett <mr_bones_@gentoo.org> dosbox-0.62.ebuild:
make the sdl-sound dep explicit (bug #66179)
diff --git a/games-emulation/dosbox/dosbox-0.62.ebuild b/games-emulation/dosbox/dosbox-0.62.ebuild
index aafc6eb1f537..343048ae09eb 100644
--- a/games-emulation/dosbox/dosbox-0.62.ebuild
+++ b/games-emulation/dosbox/dosbox-0.62.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/dosbox/dosbox-0.62.ebuild,v 1.2 2004/10/04 01:03:15 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/dosbox/dosbox-0.62.ebuild,v 1.3 2004/10/15 07:00:06 mr_bones_ Exp $
inherit eutils games
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/dosbox/${P}.tar.gz"
KEYWORDS="x86 ~amd64 ~ppc"
LICENSE="GPL-2"
SLOT="0"
-IUSE="alsa opengl"
+IUSE="alsa hardened opengl"
DEPEND="virtual/libc
alsa? ( media-libs/alsa-lib )
@@ -35,6 +35,10 @@ src_compile() {
if ! use alsa ; then
myconf="--without-alsa-prefix --without-alsa-inc-prefix --disable-alsatest"
fi
+ # bug #66038
+ if use hardened ; then
+ myconf="${myconf} --disable-dynamic-x86"
+ fi
egamesconf \
--disable-dependency-tracking \
${myconf} \