diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-08-26 18:30:14 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-08-26 18:30:14 +0000 |
commit | b11ee9599f6fc1e74dfe09f68b3c834bc3e1b7df (patch) | |
tree | f53a81d5eab45272badf5956c8e82781e950a5a0 /games-arcade/tecnoballz | |
parent | Depend on timidity-freepats. Add default configuration file. Bug #334311. Dro... (diff) | |
download | gentoo-2-b11ee9599f6fc1e74dfe09f68b3c834bc3e1b7df.tar.gz gentoo-2-b11ee9599f6fc1e74dfe09f68b3c834bc3e1b7df.tar.bz2 gentoo-2-b11ee9599f6fc1e74dfe09f68b3c834bc3e1b7df.zip |
fix building with make 3.82 (bug #334629)
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'games-arcade/tecnoballz')
-rw-r--r-- | games-arcade/tecnoballz/ChangeLog | 8 | ||||
-rw-r--r-- | games-arcade/tecnoballz/tecnoballz-0.92.ebuild | 9 |
2 files changed, 13 insertions, 4 deletions
diff --git a/games-arcade/tecnoballz/ChangeLog b/games-arcade/tecnoballz/ChangeLog index 785003359229..be944d1d1039 100644 --- a/games-arcade/tecnoballz/ChangeLog +++ b/games-arcade/tecnoballz/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-arcade/tecnoballz -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/tecnoballz/ChangeLog,v 1.4 2009/10/25 12:48:58 maekke Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/tecnoballz/ChangeLog,v 1.5 2010/08/26 18:30:14 mr_bones_ Exp $ + + 26 Aug 2010; Michael Sterrett <mr_bones_@gentoo.org> + tecnoballz-0.92.ebuild: + fix building with make 3.82 (bug #334629) 25 Oct 2009; Markus Meier <maekke@gentoo.org> tecnoballz-0.92.ebuild: amd64/x86 stable, bug #288667 diff --git a/games-arcade/tecnoballz/tecnoballz-0.92.ebuild b/games-arcade/tecnoballz/tecnoballz-0.92.ebuild index 94e0903ba907..d1e482baafaa 100644 --- a/games-arcade/tecnoballz/tecnoballz-0.92.ebuild +++ b/games-arcade/tecnoballz/tecnoballz-0.92.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/tecnoballz/tecnoballz-0.92.ebuild,v 1.5 2010/01/25 22:04:51 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/tecnoballz/tecnoballz-0.92.ebuild,v 1.6 2010/08/26 18:30:14 mr_bones_ Exp $ EAPI=2 inherit eutils autotools games @@ -23,6 +23,11 @@ src_prepare() { epatch "${FILESDIR}"/${P}-gcc43.patch \ "${FILESDIR}"/${P}-automake.patch mv man/${PN}.fr.6 man/fr/${PN}.6 || die "failed moving man pages" + # don't combine explicit and implicit rules for make 3.82 (bug #334629) + sed -i \ + -e '/supervisor.c /s/.c /.cc /' \ + src/Makefile.am \ + || die 'sed failed' eautoreconf } |