diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-01-15 14:30:05 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-01-15 14:30:05 +0000 |
commit | 2ec91998075a55121502992ed97f4c8b0ea16eb1 (patch) | |
tree | 709553ade586853526258a870e29ec3075627c24 /games-arcade/cob | |
parent | Initial import, bug #20902. (diff) | |
download | gentoo-2-2ec91998075a55121502992ed97f4c8b0ea16eb1.tar.gz gentoo-2-2ec91998075a55121502992ed97f4c8b0ea16eb1.tar.bz2 gentoo-2-2ec91998075a55121502992ed97f4c8b0ea16eb1.zip |
gcc34 compile fix (bug #119061)
(Portage version: 2.0.53)
Diffstat (limited to 'games-arcade/cob')
-rw-r--r-- | games-arcade/cob/ChangeLog | 7 | ||||
-rw-r--r-- | games-arcade/cob/cob-0.9.ebuild | 14 |
2 files changed, 17 insertions, 4 deletions
diff --git a/games-arcade/cob/ChangeLog b/games-arcade/cob/ChangeLog index 1eebaa7e76d9..27bb8a2902c6 100644 --- a/games-arcade/cob/ChangeLog +++ b/games-arcade/cob/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-arcade/cob -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/cob/ChangeLog,v 1.4 2005/10/30 03:33:36 weeve Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/cob/ChangeLog,v 1.5 2006/01/15 14:30:05 mr_bones_ Exp $ + + 15 Jan 2006; Michael Sterrett <mr_bones_@gentoo.org> cob-0.9.ebuild: + gcc34 compile fix (bug #119061) 30 Oct 2005; Jason Wever <weeve@gentoo.org> cob-0.9.ebuild: Added ~sparc keyword. diff --git a/games-arcade/cob/cob-0.9.ebuild b/games-arcade/cob/cob-0.9.ebuild index e427cd7afe8b..275a80e6eedf 100644 --- a/games-arcade/cob/cob-0.9.ebuild +++ b/games-arcade/cob/cob-0.9.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/cob/cob-0.9.ebuild,v 1.7 2005/10/30 03:33:36 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/cob/cob-0.9.ebuild,v 1.8 2006/01/15 14:30:05 mr_bones_ Exp $ inherit games @@ -15,6 +15,16 @@ IUSE="" DEPEND="media-libs/libsdl" +src_unpack() { + unpack ${A} + cd "${S}" + # gcc34 compile fix (bug #119061) + sed -i \ + -e '195 s/;//' \ + cob/sdw.hxx \ + || die "sed failed" +} + src_install() { egamesinstall || die "egamesinstall failed" dodoc AUTHORS ChangeLog README |