svn commit: r381436 - in head/games/openclonk: . files
Pawel Pekala
pawel at FreeBSD.org
Mon Mar 16 20:10:14 UTC 2015
Author: pawel
Date: Mon Mar 16 20:10:12 2015
New Revision: 381436
URL: https://svnweb.freebsd.org/changeset/ports/381436
QAT: https://qat.redports.org/buildarchive/r381436/
Log:
- Update to version 6.0, add one more LICENSE [1]
- Add USES=desktop-file-utils, port installs desktop file
- Add INSTALL_ICONS=yes, icons are installed
PR: 198622 [1]
Submitted by: Kevin Zheng <kevinz5000 at gmail.com> (maintainer) [1]
Added:
head/games/openclonk/files/patch-CMakeLists.txt (contents, props changed)
Deleted:
head/games/openclonk/files/patch-src__platform__StdSync.h
Modified:
head/games/openclonk/Makefile
head/games/openclonk/distinfo
Modified: head/games/openclonk/Makefile
==============================================================================
--- head/games/openclonk/Makefile Mon Mar 16 19:35:37 2015 (r381435)
+++ head/games/openclonk/Makefile Mon Mar 16 20:10:12 2015 (r381436)
@@ -2,17 +2,16 @@
# $FreeBSD$
PORTNAME= openclonk
-PORTVERSION= 5.1
-DISTVERSIONPREFIX= 5.
+PORTVERSION= 6.0
DISTVERSIONSUFFIX= -src
-PORTREVISION= 2
CATEGORIES= games
-MASTER_SITES= http://www.openclonk.org/builds/release/${DISTVERSIONPREFIX}${DISTVERSION}/
+MASTER_SITES= http://www.openclonk.org/builds/release/${DISTVERSION}/
MAINTAINER= kevinz5000 at gmail.com
COMMENT= Multiplayer action game involving small and nimble humanoids
-LICENSE= ISCL
+LICENSE= ISCL CC0-1.0
+LICENSE_COMB= dual
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs \
@@ -22,13 +21,14 @@ LIB_DEPENDS= libboost_thread.so:${PORTSD
libpng.so:${PORTSDIR}/graphics/png \
libvorbis.so:${PORTSDIR}/audio/libvorbis
-USES= compiler:c++11-lib cmake iconv pkgconfig tar:bzip2
+USES= compiler:c++11-lib cmake desktop-file-utils iconv pkgconfig tar:bzip2
USE_GL= glew
USE_GNOME= gtk20
USE_SDL= sdl mixer
USE_XORG= x11 xpm
+INSTALLS_ICONS= yes
-WRKSRC= ${WRKDIR}/openclonk-release-${DISTVERSIONPREFIX}${DISTVERSION}-src
+WRKSRC= ${WRKDIR}/openclonk-release-${DISTVERSION}-src
.include <bsd.port.pre.mk>
Modified: head/games/openclonk/distinfo
==============================================================================
--- head/games/openclonk/distinfo Mon Mar 16 19:35:37 2015 (r381435)
+++ head/games/openclonk/distinfo Mon Mar 16 20:10:12 2015 (r381436)
@@ -1,2 +1,2 @@
-SHA256 (openclonk-5.5.1-src.tar.bz2) = c038d6dc2ef9a3d7966b18ba6147b9dd136f353dfaa5796455f9917b79255743
-SIZE (openclonk-5.5.1-src.tar.bz2) = 65383438
+SHA256 (openclonk-6.0-src.tar.bz2) = 89271011c14a239c3000f057c12699c2ce1242187d41c4d2f6fd11b1d46a0248
+SIZE (openclonk-6.0-src.tar.bz2) = 68762594
Added: head/games/openclonk/files/patch-CMakeLists.txt
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/openclonk/files/patch-CMakeLists.txt Mon Mar 16 20:10:12 2015 (r381436)
@@ -0,0 +1,21 @@
+--- CMakeLists.txt.orig 2015-03-15 19:33:38 UTC
++++ CMakeLists.txt
+@@ -912,7 +912,6 @@ if(USE_SDL_MAINLOOP OR (Audio_TK STREQUA
+ find_package(SDL)
+ SET(HAVE_SDL ${SDL_FOUND})
+ include_directories(${SDL_INCLUDE_DIR})
+- target_link_libraries(openclonk ${SDL_LIBRARY})
+ endif()
+
+ ############################################################################
+@@ -1094,6 +1093,10 @@ target_link_libraries(openclonk
+ libmisc
+ )
+
++if (SDL_FOUND)
++ target_link_libraries(openclonk ${SDL_LIBRARY})
++endif()
++
+ if(Audio_FOUND)
+ target_link_libraries(openclonk ${Audio_LIBRARIES})
+ include_directories(${Audio_INCLUDE_DIRS})
More information about the svn-ports-all
mailing list