summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2005-07-10 02:33:40 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2005-07-10 02:33:40 +0000
commit5e174e2f22863547ba52cfd88c608439f462e68b (patch)
tree47eb744c134eba9e30a66039f9db914331b7d943 /games-emulation/daphne
parent#89558: fixed licence (diff)
downloadhistorical-5e174e2f22863547ba52cfd88c608439f462e68b.tar.gz
historical-5e174e2f22863547ba52cfd88c608439f462e68b.tar.bz2
historical-5e174e2f22863547ba52cfd88c608439f462e68b.zip
use user CFLAGS instead (bug #96403)
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'games-emulation/daphne')
-rw-r--r--games-emulation/daphne/ChangeLog8
-rw-r--r--games-emulation/daphne/Manifest16
-rw-r--r--games-emulation/daphne/daphne-0.99.6-r2.ebuild14
3 files changed, 17 insertions, 21 deletions
diff --git a/games-emulation/daphne/ChangeLog b/games-emulation/daphne/ChangeLog
index 2101a2b8dec3..e177aa7ff786 100644
--- a/games-emulation/daphne/ChangeLog
+++ b/games-emulation/daphne/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-emulation/daphne
-# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/daphne/ChangeLog,v 1.8 2004/08/08 03:20:00 mr_bones_ Exp $
+# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/daphne/ChangeLog,v 1.9 2005/07/10 02:33:40 mr_bones_ Exp $
+
+ 10 Jul 2005; Michael Sterrett <mr_bones_@gentoo.org>
+ daphne-0.99.6-r2.ebuild:
+ use user CFLAGS instead (bug #96403)
07 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org>
daphne-0.99.6-r2.ebuild:
diff --git a/games-emulation/daphne/Manifest b/games-emulation/daphne/Manifest
index bbb2f46093ef..68e1c45ceade 100644
--- a/games-emulation/daphne/Manifest
+++ b/games-emulation/daphne/Manifest
@@ -1,15 +1,5 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-MD5 33dda2b9e3db204b5ee2b6f28baad36e ChangeLog 1053
-MD5 eb416c113d4423b6f9e89ef9c837c77e daphne-0.99.6-r2.ebuild 1956
MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158
-MD5 b8108296fd1d844b69546291e958bb4c files/0.99.6-local-dapinput.patch 669
+MD5 85284e83790b51e673b35fdcb53f2f77 daphne-0.99.6-r2.ebuild 2006
+MD5 88f57ec49f1b4ceb2d7fc50fbbf7db96 ChangeLog 1175
MD5 8c819c5ceafbe235dfa7fb2a35bf84ce files/digest-daphne-0.99.6-r2 70
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.9.10 (GNU/Linux)
-
-iD8DBQFBVSEVHTu7gpaalycRArNGAJ9yhWahjjorEg99aWpcU+syM5mSSgCbB0Gf
-8ZGfgZqOdi5nXdem/Ohe3xo=
-=t76Z
------END PGP SIGNATURE-----
+MD5 b8108296fd1d844b69546291e958bb4c files/0.99.6-local-dapinput.patch 669
diff --git a/games-emulation/daphne/daphne-0.99.6-r2.ebuild b/games-emulation/daphne/daphne-0.99.6-r2.ebuild
index 3474b83cf2dc..c7be23184166 100644
--- a/games-emulation/daphne/daphne-0.99.6-r2.ebuild
+++ b/games-emulation/daphne/daphne-0.99.6-r2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2004 Gentoo Foundation
+# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/daphne/daphne-0.99.6-r2.ebuild,v 1.8 2004/09/25 07:40:54 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/daphne/daphne-0.99.6-r2.ebuild,v 1.9 2005/07/10 02:33:40 mr_bones_ Exp $
inherit eutils flag-o-matic games
@@ -13,14 +13,13 @@ SLOT="0"
KEYWORDS="x86"
IUSE=""
-RDEPEND="virtual/libc
- media-libs/libogg
+RDEPEND="media-libs/libogg
media-libs/libvorbis
media-libs/libsdl
media-libs/sdl-mixer
sys-libs/zlib"
-S="${WORKDIR}/${PN}"
+S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
@@ -28,7 +27,10 @@ src_unpack() {
replace-cpu-flags i686 pentium3 pentium4 i586 #18807
cd "${S}/src"
- sed -e "s:-march=i686:${CFLAGS}:" \
+ sed \
+ -e "/^DFLAGS/d" \
+ -e "/-fexpensive-optimizations/d " \
+ -e "s/\${DFLAGS}/${CFLAGS}/g" \
Makefile.vars.linux_x86 > Makefile.vars \
|| die "sed failed"