From owner-svn-ports-all@FreeBSD.ORG Wed Oct 16 22:41:34 2013 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 ESMTP id 8CCAA8CC; Wed, 16 Oct 2013 22:41:34 +0000 (UTC) (envelope-from nemysis@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6B74F2FC4; Wed, 16 Oct 2013 22:41:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9GMfYph026889; Wed, 16 Oct 2013 22:41:34 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9GMfYkM026886; Wed, 16 Oct 2013 22:41:34 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201310162241.r9GMfYkM026886@svn.freebsd.org> From: Rusmir Dusko Date: Wed, 16 Oct 2013 22:41:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330555 - in head/games/epiar: . 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.14 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: Wed, 16 Oct 2013 22:41:34 -0000 Author: nemysis Date: Wed Oct 16 22:41:33 2013 New Revision: 330555 URL: http://svnweb.freebsd.org/changeset/ports/330555 Log: - Change maintainer email to @FreeBSD.org - Use the new format for LIB_DEPENDS - USES gmake pkgconfig - Support STAGEDIR - Add patches, fix build with Clang Approved by: wg/pawel (mentors) Added: head/games/epiar/files/ head/games/epiar/files/patch-Source-Utilities-log.cpp (contents, props changed) Modified: head/games/epiar/Makefile Modified: head/games/epiar/Makefile ============================================================================== --- head/games/epiar/Makefile Wed Oct 16 22:21:32 2013 (r330554) +++ head/games/epiar/Makefile Wed Oct 16 22:41:33 2013 (r330555) @@ -5,9 +5,8 @@ PORTNAME= epiar PORTVERSION= 0.5.1 PORTREVISION= 2 CATEGORIES= games -MASTER_SITES= GH -MAINTAINER= nemysis@gmx.ch +MAINTAINER= nemysis@FreeBSD.org COMMENT= Space trading/exploring sim with RPG elements LICENSE= GPLv2 CCbyNCSA3 @@ -16,10 +15,10 @@ LICENSE_NAME_CCbyNCSA3=Attribution-NonCo LICENSE_FILE_CCbyNCSA3=${WRKSRC}/LICENSE.music LICENSE_PERMS_CCbyNCSA3=dist-mirror pkg-mirror auto-accept -LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 \ - ftgl:${PORTSDIR}/graphics/ftgl \ - xml2:${PORTSDIR}/textproc/libxml2 \ - physfs:${PORTSDIR}/devel/physfs +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ + libftgl.so:${PORTSDIR}/graphics/ftgl \ + libxml2.so:${PORTSDIR}/textproc/libxml2 \ + libphysfs.so:${PORTSDIR}/devel/physfs USE_GITHUB= yes GH_ACCOUNT= knowknowledge @@ -27,29 +26,24 @@ GH_PROJECT= Epiar GH_TAGNAME= ${GH_COMMIT} GH_COMMIT= 44046e3 -USES= pkgconfig +USES= gmake pkgconfig USE_SDL= image mixer sdl USE_GL= glu USE_AUTOTOOLS= aclocal autoheader automake autoconf AUTOMAKE_ARGS= --add-missing ACLOCAL_ARGS= GNU_CONFIGURE= yes -USE_GMAKE= yes PORTDOCS= AUTHORS ChangeLog README OPTIONS_DEFINE= DOCS -NO_STAGE= yes -.include - post-install: - @${MKDIR} ${PREFIX}/share/applications - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.desktop ${PREFIX}/share/applications + @${MKDIR} ${STAGEDIR}${PREFIX}/share/applications/ + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.desktop \ + ${STAGEDIR}${PREFIX}/share/applications/ -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include Added: head/games/epiar/files/patch-Source-Utilities-log.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/epiar/files/patch-Source-Utilities-log.cpp Wed Oct 16 22:41:33 2013 (r330555) @@ -0,0 +1,10 @@ +--- Source/Utilities/log.cpp.orig 2012-10-27 10:18:51.000000000 +0200 ++++ Source/Utilities/log.cpp 2013-10-11 00:14:27.000000000 +0200 +@@ -10,6 +10,7 @@ + #include "common.h" + #include "Utilities/log.h" + #include "Engine/hud.h" ++#include + + /**\class Log + * \brief Main logging facilities for the code base. */