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 | 5530e29735aa23f711860bf37bd85d0d38115e01 (patch) | |
tree | 6c36ca536b2317e4c970fb915752cabcc9dfc964 /games-arcade/cob | |
parent | Initial import, bug #20902. (diff) | |
download | historical-5530e29735aa23f711860bf37bd85d0d38115e01.tar.gz historical-5530e29735aa23f711860bf37bd85d0d38115e01.tar.bz2 historical-5530e29735aa23f711860bf37bd85d0d38115e01.zip |
gcc34 compile fix (bug #119061)
Package-Manager: portage-2.0.53
Diffstat (limited to 'games-arcade/cob')
-rw-r--r-- | games-arcade/cob/ChangeLog | 7 | ||||
-rw-r--r-- | games-arcade/cob/Manifest | 4 | ||||
-rw-r--r-- | games-arcade/cob/cob-0.9.ebuild | 14 |
3 files changed, 19 insertions, 6 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/Manifest b/games-arcade/cob/Manifest index 21eed077bbe3..8dc11b3152b8 100644 --- a/games-arcade/cob/Manifest +++ b/games-arcade/cob/Manifest @@ -1,4 +1,4 @@ -MD5 5ad9d5c42fde1eb5bfdf1644fa72e90f ChangeLog 528 -MD5 f0f35a0e6a041066e98a5240ab08854d cob-0.9.ebuild 604 +MD5 d77d62fde10261f081013a081783453b ChangeLog 638 +MD5 047a5196c15440b4893cad8815087352 cob-0.9.ebuild 752 MD5 09914fc65d6866e0aa4e7731b5a56869 files/digest-cob-0.9 59 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 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 |