diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-10-15 07:00:06 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-10-15 07:00:06 +0000 |
commit | 5f1b79c333855e0c8c76fc19aed4b43b3f8e554b (patch) | |
tree | 055fd019e98abc6f108dd967ca7f28ea5e49be17 /games-emulation | |
parent | Cleaning broken realvnc out of tightvnc (diff) | |
download | historical-5f1b79c333855e0c8c76fc19aed4b43b3f8e554b.tar.gz historical-5f1b79c333855e0c8c76fc19aed4b43b3f8e554b.tar.bz2 historical-5f1b79c333855e0c8c76fc19aed4b43b3f8e554b.zip |
hardened doesn't seem to like the dynamic core (bug #66038)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/dosbox/ChangeLog | 5 | ||||
-rw-r--r-- | games-emulation/dosbox/Manifest | 4 | ||||
-rw-r--r-- | games-emulation/dosbox/dosbox-0.62.ebuild | 8 |
3 files changed, 12 insertions, 5 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/Manifest b/games-emulation/dosbox/Manifest index 7f957ea3bc6a..5606334c780b 100644 --- a/games-emulation/dosbox/Manifest +++ b/games-emulation/dosbox/Manifest @@ -1,9 +1,9 @@ -MD5 c33a7b0084ef3b94845a287a01e15a36 ChangeLog 1943 +MD5 681d7e9d3ce48aeb5573ba8fce64dfa5 ChangeLog 2081 MD5 95e2b5bfd7767aeae061c77f7e1a055e metadata.xml 221 MD5 7bb8a8751ef2fb0617d00126797e60f7 dosbox-0.60.ebuild 880 MD5 0ef2fd60dc5781d72b1a290452945642 dosbox-0.61.ebuild 1084 MD5 6e4c88905ec735ea32946271c5bf5896 dosbox-0.58.ebuild 692 -MD5 59ce3528e2338749c2eb8168f31ec4b3 dosbox-0.62.ebuild 1152 +MD5 9a83ee96c1e12a703dc6571a3c0d3e42 dosbox-0.62.ebuild 1246 MD5 6c3131692034dda3f27046c037aabc58 files/digest-dosbox-0.61 63 MD5 709911d69c3fb90908508f4c3116a07f files/digest-dosbox-0.58 63 MD5 a15acc3d9f2a2d55bde29cf697f86297 files/digest-dosbox-0.60 63 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} \ |