From owner-svn-ports-all@FreeBSD.ORG Thu Jul 24 16:08:40 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DA5EFAEC; Thu, 24 Jul 2014 16:08:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD0BF2FED; Thu, 24 Jul 2014 16:08:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6OG8ecE018546; Thu, 24 Jul 2014 16:08:40 GMT (envelope-from adamw@svn.freebsd.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6OG8eAM018543; Thu, 24 Jul 2014 16:08:40 GMT (envelope-from adamw@svn.freebsd.org) Message-Id: <201407241608.s6OG8eAM018543@svn.freebsd.org> From: Adam Weinberger Date: Thu, 24 Jul 2014 16:08:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362816 - in head/games/libdungeonmaker: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Jul 2014 16:08:40 -0000 Author: adamw Date: Thu Jul 24 16:08:39 2014 New Revision: 362816 URL: http://svnweb.freebsd.org/changeset/ports/362816 QAT: https://qat.redports.org/buildarchive/r362816/ Log: include stdlib.h for rand(3) to fix build. While here, remove the profiled lib from the plist. Its creation is changes with NO_PROFILE in src.conf, and it's pretty unnecessary, so I'm removing it from the plist altogether for simplicity. Added: head/games/libdungeonmaker/files/patch-DungeonMaker.h (contents, props changed) Modified: head/games/libdungeonmaker/Makefile head/games/libdungeonmaker/pkg-plist Modified: head/games/libdungeonmaker/Makefile ============================================================================== --- head/games/libdungeonmaker/Makefile Thu Jul 24 16:06:52 2014 (r362815) +++ head/games/libdungeonmaker/Makefile Thu Jul 24 16:08:39 2014 (r362816) @@ -22,7 +22,6 @@ do-install: ${INSTALL_LIB} ${WRKSRC}/libdungeonmaker.a ${STAGEDIR}${PREFIX}/lib ${INSTALL_LIB} ${WRKSRC}/libdungeonmaker.so ${STAGEDIR}${PREFIX}/lib ${INSTALL_LIB} ${WRKSRC}/libdungeonmaker.so.2 ${STAGEDIR}${PREFIX}/lib - ${INSTALL_LIB} ${WRKSRC}/libdungeonmaker_p.a ${STAGEDIR}${PREFIX}/lib ${INSTALL} ${WRKSRC}/DungeonMaker.h ${STAGEDIR}${PREFIX}/include @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/DM2_Manual/* ${STAGEDIR}${DOCSDIR} Added: head/games/libdungeonmaker/files/patch-DungeonMaker.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/libdungeonmaker/files/patch-DungeonMaker.h Thu Jul 24 16:08:39 2014 (r362816) @@ -0,0 +1,10 @@ +--- DungeonMaker.h.orig 2014-07-24 11:55:26.000000000 -0400 ++++ DungeonMaker.h 2014-07-24 11:55:51.000000000 -0400 +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + + ///* ATTENTION: In this version, the method DungeonMaker:: PutPlonkOnMap() puts MOBs and treasure on the map literally, by changing the SquareData of the Map square where the stuff goes. This is just for demonstration purposes to make it easier to show stuff without having an engine for rendering objects. If you use the DungeonMaker in your own program, you must refrain from calling this function, and instead write your own function that puts stuff on the map as objects and leaves the MapData as it is. + Modified: head/games/libdungeonmaker/pkg-plist ============================================================================== --- head/games/libdungeonmaker/pkg-plist Thu Jul 24 16:06:52 2014 (r362815) +++ head/games/libdungeonmaker/pkg-plist Thu Jul 24 16:08:39 2014 (r362816) @@ -2,7 +2,6 @@ include/DungeonMaker.h lib/libdungeonmaker.a lib/libdungeonmaker.so lib/libdungeonmaker.so.2 -lib/libdungeonmaker_p.a %%PORTDOCS%%%%DOCSDIR%%/Contents.gif %%PORTDOCS%%%%DOCSDIR%%/Next.gif %%PORTDOCS%%%%DOCSDIR%%/Prev.gif