summaryrefslogtreecommitdiff
path: root/community/slimevolley
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-03-12 00:01:32 +0000
committerroot <root@rshg054.dnsready.net>2012-03-12 00:01:32 +0000
commita6cb3ddef295c5feb4e03ee198dbb31cdf62d518 (patch)
tree4ea0c57a9a347779a3d69ebee2dc54d994a30235 /community/slimevolley
parent4640048ddd1331c9f6fc14b8921ccecdb6b1ea11 (diff)
Mon Mar 12 00:01:32 UTC 2012
Diffstat (limited to 'community/slimevolley')
-rw-r--r--community/slimevolley/PKGBUILD11
-rw-r--r--community/slimevolley/link-libm.patch14
2 files changed, 22 insertions, 3 deletions
diff --git a/community/slimevolley/PKGBUILD b/community/slimevolley/PKGBUILD
index 0259f974e..695f6eb3f 100644
--- a/community/slimevolley/PKGBUILD
+++ b/community/slimevolley/PKGBUILD
@@ -1,22 +1,25 @@
-# $Id: PKGBUILD 33998 2010-11-30 17:47:24Z lcarlier $
+# $Id: PKGBUILD 67388 2012-03-10 21:54:03Z lcarlier $
# Maintainer : Geoffroy Carrier <gcarrier@aur.archlinux.org>
# Contributor: Joel Schaerer <joel.schaerer@laposte.net>
pkgname=slimevolley
pkgver=2.4.2
-pkgrel=1
+pkgrel=2
pkgdesc="A simple yet fun arcade volley game"
arch=('i686' 'x86_64')
url="http://slime.tuxfamily.org/index.php"
license=('GPL')
depends=('sdl_net' 'sdl_ttf' 'sdl_image')
makedepends=('cmake')
-source=("http://downloads.tuxfamily.org/slime/v242/${pkgname}_${pkgver}.tar.bz2")
+source=("http://downloads.tuxfamily.org/slime/v242/${pkgname}_${pkgver}.tar.bz2"
+ link-libm.patch)
md5sums=('42d1287bf459c26475a9bb7a9bb167e5')
build() {
cd "$srcdir/$pkgname"
+ patch -Np1 -i ../link-libm.patch
+
cmake -DCMAKE_INSTALL_PREFIX:FILEPATH=/usr .
make
}
@@ -26,3 +29,5 @@ package() {
make DESTDIR="${pkgdir}" install
}
+md5sums=('42d1287bf459c26475a9bb7a9bb167e5'
+ '4e5a7d4fb97e8f482e5468acc795a17b')
diff --git a/community/slimevolley/link-libm.patch b/community/slimevolley/link-libm.patch
new file mode 100644
index 000000000..acbd21d37
--- /dev/null
+++ b/community/slimevolley/link-libm.patch
@@ -0,0 +1,14 @@
+Description: Link to libm to prevent FTBFS with --no-add-needed.
+Author: Evgeni Golov <evgeni@debian.org>
+Bug-Debian: http://bugs.debian.org/615775
+
+--- slimevolley-2.4.2.orig/CMakeLists.txt
++++ slimevolley-2.4.2/CMakeLists.txt
+@@ -42,6 +42,7 @@ LINK_LIBRARIES(
+ ${SDL_LIBRARY}
+ ${SDLTTF_LIBRARY}
+ ${SDLIMAGE_LIBRARY}
++ m
+ )
+
+ INCLUDE(FindGettext.cmake)