svn commit: r332082 - in head/games/blobby: . files
Ganael LAPLANCHE
martymac at FreeBSD.org
Wed Oct 30 07:16:49 UTC 2013
Author: martymac
Date: Wed Oct 30 07:16:48 2013
New Revision: 332082
URL: http://svnweb.freebsd.org/changeset/ports/332082
Log:
- Enable staging
- Switch to new LIB_DEPENDS format
- Fix build with Clang
Added:
head/games/blobby/files/patch-src-Clock.h (contents, props changed)
Modified:
head/games/blobby/Makefile
Modified: head/games/blobby/Makefile
==============================================================================
--- head/games/blobby/Makefile Wed Oct 30 07:13:02 2013 (r332081)
+++ head/games/blobby/Makefile Wed Oct 30 07:16:48 2013 (r332082)
@@ -3,6 +3,7 @@
PORTNAME= blobby
PORTVERSION= 1.0r3
+PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= SF/${PORTNAME}/Blobby%20Volley%202%20%28Linux%29/1.0RC3/
DISTNAME= blobby2-linux-1.0rc3
@@ -12,8 +13,8 @@ COMMENT= Official continuation of the fa
LICENSE= GPLv2
-LIB_DEPENDS= physfs:${PORTSDIR}/devel/physfs \
- drm:${PORTSDIR}/graphics/libdrm
+LIB_DEPENDS= libphysfs.so:${PORTSDIR}/devel/physfs \
+ libdrm.so:${PORTSDIR}/graphics/libdrm
BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip \
${LOCALBASE}/include/boost/crc.hpp:${PORTSDIR}/devel/boost-libs
@@ -29,14 +30,13 @@ DOS2UNIX_REGEX= .*\.(c|h|cpp)
PORTDOCS= AUTHORS ChangeLog INSTALL NEWS README TODO
-NO_STAGE= yes
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
- @${MKDIR} ${DOCSDIR}
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}
.for doc in ${PORTDOCS}
- ${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
.endfor
.endif
Added: head/games/blobby/files/patch-src-Clock.h
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/blobby/files/patch-src-Clock.h Wed Oct 30 07:16:48 2013 (r332082)
@@ -0,0 +1,10 @@
+--- src/Clock.h.orig 2013-10-28 17:23:32.000000000 +0100
++++ src/Clock.h 2013-10-28 17:28:11.000000000 +0100
+@@ -19,6 +19,7 @@
+
+ #pragma once
+
++#include <ctime>
+ #include <string>
+
+ /*! \class Clock
More information about the svn-ports-head
mailing list