summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2011-06-17 10:25:17 +0000
committerAlfredo Tupone <tupone@gentoo.org>2011-06-17 10:25:17 +0000
commit47cee07c38e8f995c04f4aef6afc629282803046 (patch)
tree457233d6b11193e4e78e6a5063abb228a6291ee8 /games-action
parentMove to eapi4. (diff)
downloadgentoo-2-47cee07c38e8f995c04f4aef6afc629282803046.tar.gz
gentoo-2-47cee07c38e8f995c04f4aef6afc629282803046.tar.bz2
gentoo-2-47cee07c38e8f995c04f4aef6afc629282803046.zip
Fix underlink. Bug #369039
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'games-action')
-rw-r--r--games-action/luola/ChangeLog8
-rw-r--r--games-action/luola/files/luola-1.3.0-underlink.patch11
-rw-r--r--games-action/luola/luola-1.3.0-r1.ebuild11
3 files changed, 25 insertions, 5 deletions
diff --git a/games-action/luola/ChangeLog b/games-action/luola/ChangeLog
index fd0a894aea1b..4ef0af052387 100644
--- a/games-action/luola/ChangeLog
+++ b/games-action/luola/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-action/luola
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/luola/ChangeLog,v 1.10 2009/01/05 17:39:11 mr_bones_ Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-action/luola/ChangeLog,v 1.11 2011/06/17 10:25:17 tupone Exp $
+
+ 17 Jun 2011; Tupone Alfredo <tupone@gentoo.org> luola-1.3.0-r1.ebuild,
+ +files/luola-1.3.0-underlink.patch:
+ Fix underlink. Bug #369039 by Diego Elio Pettenò
05 Jan 2009; Michael Sterrett <mr_bones_@gentoo.org>
luola-1.3.0-r1.ebuild:
diff --git a/games-action/luola/files/luola-1.3.0-underlink.patch b/games-action/luola/files/luola-1.3.0-underlink.patch
new file mode 100644
index 000000000000..5bf998177be7
--- /dev/null
+++ b/games-action/luola/files/luola-1.3.0-underlink.patch
@@ -0,0 +1,11 @@
+--- src/Makefile.am.old 2011-06-17 08:41:40.882481147 +0200
++++ src/Makefile.am 2011-06-17 08:41:58.497602372 +0200
+@@ -2,7 +2,7 @@
+
+ bin_PROGRAMS = luola
+
+-luola_LDADD = @SDL_LIBS@
++luola_LDADD = @SDL_LIBS@ -lm
+
+ luola_SOURCES = \
+ defines.h \
diff --git a/games-action/luola/luola-1.3.0-r1.ebuild b/games-action/luola/luola-1.3.0-r1.ebuild
index 8eecf19e57d2..380fc02a12b4 100644
--- a/games-action/luola/luola-1.3.0-r1.ebuild
+++ b/games-action/luola/luola-1.3.0-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/luola/luola-1.3.0-r1.ebuild,v 1.3 2009/01/05 17:39:11 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/luola/luola-1.3.0-r1.ebuild,v 1.4 2011/06/17 10:25:17 tupone Exp $
EAPI=2
-inherit eutils games
+inherit eutils autotools games
DESCRIPTION="A 2D multiplayer arcade game resembling V-Wing"
HOMEPAGE="http://luolamies.org/software/luola/"
@@ -28,11 +28,16 @@ DEPEND="media-libs/libsdl
src_prepare() {
local p
+ epatch "${FILESDIR}"/${P}-underlink.patch
+
cd "${S}/src"
for p in ${PATCH_SET}
do
epatch "${DISTDIR}/${p##*/}"
done
+
+ cd ..
+ eautoreconf
}
src_configure() {