summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2013-07-04 16:50:42 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2013-07-04 16:50:42 +0000
commit9880b703aba61b635c18e192d20cb0823cc35228 (patch)
tree2a2d2c502433496bab7a6594e1bc765b86fb9390 /games-kids
parentSwitch to cmake-utils_src_prepare. (diff)
downloadgentoo-2-9880b703aba61b635c18e192d20cb0823cc35228.tar.gz
gentoo-2-9880b703aba61b635c18e192d20cb0823cc35228.tar.bz2
gentoo-2-9880b703aba61b635c18e192d20cb0823cc35228.zip
quiet gcc warning (bug #475724)
(Portage version: 2.1.12.2/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-kids')
-rw-r--r--games-kids/tuxmath/ChangeLog5
-rw-r--r--games-kids/tuxmath/tuxmath-2.0.1.ebuild8
2 files changed, 9 insertions, 4 deletions
diff --git a/games-kids/tuxmath/ChangeLog b/games-kids/tuxmath/ChangeLog
index bb970206befd..b8b114a07080 100644
--- a/games-kids/tuxmath/ChangeLog
+++ b/games-kids/tuxmath/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for games-kids/tuxmath
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-kids/tuxmath/ChangeLog,v 1.17 2013/07/04 06:01:49 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-kids/tuxmath/ChangeLog,v 1.18 2013/07/04 16:50:42 mr_bones_ Exp $
+
+ 04 Jul 2013; Michael Sterrett <mr_bones_@gentoo.org> tuxmath-2.0.1.ebuild:
+ quiet gcc warning (bug #475724)
04 Jul 2013; Michael Sterrett <mr_bones_@gentoo.org> tuxmath-1.7.2.ebuild,
tuxmath-2.0.1.ebuild:
diff --git a/games-kids/tuxmath/tuxmath-2.0.1.ebuild b/games-kids/tuxmath/tuxmath-2.0.1.ebuild
index 01285d947352..c39fa999df9f 100644
--- a/games-kids/tuxmath/tuxmath-2.0.1.ebuild
+++ b/games-kids/tuxmath/tuxmath-2.0.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-kids/tuxmath/tuxmath-2.0.1.ebuild,v 1.2 2013/07/04 06:01:49 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-kids/tuxmath/tuxmath-2.0.1.ebuild,v 1.3 2013/07/04 16:50:42 mr_bones_ Exp $
EAPI=5
inherit eutils gnome2-utils games
@@ -36,8 +36,10 @@ S=${WORKDIR}/${MY_PN}-${PV}
src_prepare() {
sed -i \
-e '/\bdoc\b/d' \
- Makefile.in \
- || die "sed failed"
+ Makefile.in || die
+ sed -i \
+ -e '/strncat/s/)/ - 1)/' \
+ src/server.c || die
}
src_configure() {