diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-09-11 07:02:45 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-09-11 07:02:45 +0000 |
commit | 79bd820c0cca762afcd91179fb86ed6d11982a9e (patch) | |
tree | 23446aa1ad021bc25214444f38dfca367d228e38 /games-arcade/apricots | |
parent | Stable on ppc64; bug #147061 (diff) | |
download | gentoo-2-79bd820c0cca762afcd91179fb86ed6d11982a9e.tar.gz gentoo-2-79bd820c0cca762afcd91179fb86ed6d11982a9e.tar.bz2 gentoo-2-79bd820c0cca762afcd91179fb86ed6d11982a9e.zip |
gcc4 doesn't like -Wmissing-prototypes for c++
(Portage version: 2.1.1)
Diffstat (limited to 'games-arcade/apricots')
-rw-r--r-- | games-arcade/apricots/ChangeLog | 6 | ||||
-rw-r--r-- | games-arcade/apricots/apricots-0.2.6-r1.ebuild | 10 |
2 files changed, 12 insertions, 4 deletions
diff --git a/games-arcade/apricots/ChangeLog b/games-arcade/apricots/ChangeLog index 0beda9792fc2..cad0c7d0857e 100644 --- a/games-arcade/apricots/ChangeLog +++ b/games-arcade/apricots/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-arcade/apricots # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/apricots/ChangeLog,v 1.8 2006/08/09 17:04:03 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/apricots/ChangeLog,v 1.9 2006/09/11 07:02:45 mr_bones_ Exp $ + + 11 Sep 2006; Michael Sterrett <mr_bones_@gentoo.org> + apricots-0.2.6-r1.ebuild: + gcc4 doesn't like -Wmissing-prototypes for c++ *apricots-0.2.6-r1 (09 Aug 2006) diff --git a/games-arcade/apricots/apricots-0.2.6-r1.ebuild b/games-arcade/apricots/apricots-0.2.6-r1.ebuild index ab7fb9160b09..ccf63fd52595 100644 --- a/games-arcade/apricots/apricots-0.2.6-r1.ebuild +++ b/games-arcade/apricots/apricots-0.2.6-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/apricots/apricots-0.2.6-r1.ebuild,v 1.1 2006/08/09 17:04:03 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/apricots/apricots-0.2.6-r1.ebuild,v 1.2 2006/09/11 07:02:45 mr_bones_ Exp $ -inherit eutils games +inherit autotools eutils games DESCRIPTION="Fly a plane around bomb/shoot the enemy. Port of Planegame from Amiga." HOMEPAGE="http://www.fishies.org.uk/apricots.html" @@ -34,7 +34,11 @@ src_unpack() { -e "s:apricots.cfg:${GAMES_SYSCONFDIR}/${PN}/apricots.cfg:" \ README apricots.html \ || die "sed failed" - eautoconf + sed -i \ + -e 's/-Wmissing-prototypes//' \ + acinclude.m4 \ + || die "sed failed" + eautoreconf } src_install() { |