summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2009-02-10 11:55:04 +0000
committerAlfredo Tupone <tupone@gentoo.org>2009-02-10 11:55:04 +0000
commit90475566a3d6701e50547b563fda78736503f13b (patch)
tree1936be57ed66ef43a9ad5b76357f5a108dffbc80 /games-puzzle/seatris
parentFix --as-needed bug #247444 (diff)
downloadgentoo-2-90475566a3d6701e50547b563fda78736503f13b.tar.gz
gentoo-2-90475566a3d6701e50547b563fda78736503f13b.tar.bz2
gentoo-2-90475566a3d6701e50547b563fda78736503f13b.zip
Fix --as-needed bug #247446
(Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r8 x86_64)
Diffstat (limited to 'games-puzzle/seatris')
-rw-r--r--games-puzzle/seatris/ChangeLog6
-rw-r--r--games-puzzle/seatris/files/seatris-0.0.14-as-needed.patch11
-rw-r--r--games-puzzle/seatris/seatris-0.0.14.ebuild5
3 files changed, 19 insertions, 3 deletions
diff --git a/games-puzzle/seatris/ChangeLog b/games-puzzle/seatris/ChangeLog
index 2798bb31d9ad..8efeb8e7ddb6 100644
--- a/games-puzzle/seatris/ChangeLog
+++ b/games-puzzle/seatris/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-puzzle/seatris
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/seatris/ChangeLog,v 1.7 2009/01/29 02:12:43 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/seatris/ChangeLog,v 1.8 2009/02/10 11:55:04 tupone Exp $
+
+ 10 Feb 2009; Alfredo Tupone <tupone@gentoo.org>
+ +files/seatris-0.0.14-as-needed.patch, seatris-0.0.14.ebuild:
+ Fix --as-needed bug #247446 by flameeyes@gentoo.org
29 Jan 2009; Michael Sterrett <mr_bones_@gentoo.org>
seatris-0.0.14.ebuild:
diff --git a/games-puzzle/seatris/files/seatris-0.0.14-as-needed.patch b/games-puzzle/seatris/files/seatris-0.0.14-as-needed.patch
new file mode 100644
index 000000000000..1cd22fb52fd9
--- /dev/null
+++ b/games-puzzle/seatris/files/seatris-0.0.14-as-needed.patch
@@ -0,0 +1,11 @@
+--- Makefile.in.old 2009-02-10 12:54:35.000000000 +0100
++++ Makefile.in 2009-02-10 12:55:16.000000000 +0100
+@@ -11,7 +11,7 @@
+ parse.o readcfg.o
+
+ seatris: $(OBJS)
+- $(CC) $(LFLAGS) $(LIBS) -o seatris $(OBJS)
++ $(CC) $(LDFLAGS) -o seatris $(OBJS) $(LIBS)
+
+ clean:
+ rm -f *.o seatris
diff --git a/games-puzzle/seatris/seatris-0.0.14.ebuild b/games-puzzle/seatris/seatris-0.0.14.ebuild
index b8ecf7429420..381d0e689e09 100644
--- a/games-puzzle/seatris/seatris-0.0.14.ebuild
+++ b/games-puzzle/seatris/seatris-0.0.14.ebuild
@@ -1,9 +1,9 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild,v 1.9 2009/01/29 02:12:43 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild,v 1.10 2009/02/10 11:55:04 tupone Exp $
EAPI=2
-inherit games
+inherit eutils games
DESCRIPTION="A color ncurses tetris clone"
HOMEPAGE="http://www.earth.li/projectpurple/progs/seatris.html"
@@ -21,6 +21,7 @@ src_prepare() {
-e "s:/var/lib/games:${GAMES_STATEDIR}:" \
scoring.h seatris.6 \
|| die "sed failed"
+ epatch "${FILESDIR}"/${P}-as-needed.patch
}
src_install () {