diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-21 06:42:44 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-21 06:42:44 +0000 |
commit | 0325847dd781deafbec399c130259cd63403657d (patch) | |
tree | 9dec07a58a4d36054eb780dd3ef3ea231f7a4d4b /games-strategy/wesnoth | |
parent | replaced another patch by epatch (diff) | |
download | historical-0325847dd781deafbec399c130259cd63403657d.tar.gz historical-0325847dd781deafbec399c130259cd63403657d.tar.bz2 historical-0325847dd781deafbec399c130259cd63403657d.zip |
Work around for broken compile on ppc from Ernst Persson via bug #48326; tidy
Diffstat (limited to 'games-strategy/wesnoth')
-rw-r--r-- | games-strategy/wesnoth/ChangeLog | 5 | ||||
-rw-r--r-- | games-strategy/wesnoth/Manifest | 4 | ||||
-rw-r--r-- | games-strategy/wesnoth/wesnoth-0.7.3.ebuild | 16 |
3 files changed, 15 insertions, 10 deletions
diff --git a/games-strategy/wesnoth/ChangeLog b/games-strategy/wesnoth/ChangeLog index 37e5be8ddd49..f693dcbdbc16 100644 --- a/games-strategy/wesnoth/ChangeLog +++ b/games-strategy/wesnoth/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-strategy/wesnoth # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.20 2004/04/18 23:26:21 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/ChangeLog,v 1.21 2004/04/21 06:42:44 mr_bones_ Exp $ + + 20 Apr 2004; Michael Sterrett <mr_bones_@gentoo.org> wesnoth-0.7.3.ebuild: + Work around for broken compile on ppc from Ernst Persson via bug #48326; tidy *wesnoth-0.7.3 (18 Apr 2004) diff --git a/games-strategy/wesnoth/Manifest b/games-strategy/wesnoth/Manifest index 56f0f5e0b825..aa840bbfea87 100644 --- a/games-strategy/wesnoth/Manifest +++ b/games-strategy/wesnoth/Manifest @@ -1,9 +1,9 @@ MD5 4e2b8d7f20404e2ec067f052d1142fba wesnoth-0.7.ebuild 955 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 -MD5 af893cde1822416d506b93127e46c48b ChangeLog 2894 +MD5 25b31495b80c6cf66cd73d1e58053201 ChangeLog 3052 MD5 8e682d1d562a88ad935d27893417ffac wesnoth-0.7.2.ebuild 1011 MD5 68343aa5c3c7919a357a99c16b316431 wesnoth-0.7.1.ebuild 957 -MD5 22412e6a25826d9766dfc9574e5d27f5 wesnoth-0.7.3.ebuild 1042 +MD5 e5a28a60716ca01c3d5795c244713c20 wesnoth-0.7.3.ebuild 1089 MD5 2218dd653ddf591503d9bde5beb4df8c files/digest-wesnoth-0.7 65 MD5 943fc665866e98d256c99403826c7cbd files/digest-wesnoth-0.7.2 67 MD5 eed8758f69d700eedc02234ae1a428d8 files/digest-wesnoth-0.7.1 67 diff --git a/games-strategy/wesnoth/wesnoth-0.7.3.ebuild b/games-strategy/wesnoth/wesnoth-0.7.3.ebuild index 5bcd3033e455..d6d070455f9f 100644 --- a/games-strategy/wesnoth/wesnoth-0.7.3.ebuild +++ b/games-strategy/wesnoth/wesnoth-0.7.3.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-0.7.3.ebuild,v 1.1 2004/04/18 23:26:21 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-0.7.3.ebuild,v 1.2 2004/04/21 06:42:44 mr_bones_ Exp $ -inherit games +inherit flag-o-matic games DESCRIPTION="A fantasy turn-based strategy game" HOMEPAGE="http://www.wesnoth.org/" @@ -21,13 +21,15 @@ DEPEND=">=media-libs/libsdl-1.2 virtual/x11" src_compile() { + append-flags -fsigned-char + egamesconf \ --disable-dependency-tracking \ - `use_enable server` \ - `use_enable editor` \ - `use_enable tools` \ - `use_enable gnome` \ - `use_enable kde` \ + $(use_enable server) \ + $(use_enable editor) \ + $(use_enable tools) \ + $(use_enable gnome) \ + $(use_enable kde) \ || die emake || die "emake failed" } |