From owner-svn-ports-all@FreeBSD.ORG Wed Oct 30 07:53:39 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2DBDB415; Wed, 30 Oct 2013 07:53:39 +0000 (UTC) (envelope-from martymac@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 BC4DA2B52; Wed, 30 Oct 2013 07:53:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9U7rcEg071086; Wed, 30 Oct 2013 07:53:38 GMT (envelope-from martymac@svn.freebsd.org) Received: (from martymac@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9U7rbnP071082; Wed, 30 Oct 2013 07:53:37 GMT (envelope-from martymac@svn.freebsd.org) Message-Id: <201310300753.r9U7rbnP071082@svn.freebsd.org> From: Ganael LAPLANCHE Date: Wed, 30 Oct 2013 07:53:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332084 - in head/games/briquolo: . 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, 30 Oct 2013 07:53:39 -0000 Author: martymac Date: Wed Oct 30 07:53:37 2013 New Revision: 332084 URL: http://svnweb.freebsd.org/changeset/ports/332084 Log: - Fix build on CURRENT - Enable staging - Re-order LIB_DEPENDS and switch to new format - Update USES Added: head/games/briquolo/files/ head/games/briquolo/files/patch-desktop-Makefile.in (contents, props changed) head/games/briquolo/files/patch-src-Constante.cpp (contents, props changed) Modified: head/games/briquolo/Makefile head/games/briquolo/pkg-plist (contents, props changed) Modified: head/games/briquolo/Makefile ============================================================================== --- head/games/briquolo/Makefile Wed Oct 30 07:18:50 2013 (r332083) +++ head/games/briquolo/Makefile Wed Oct 30 07:53:37 2013 (r332084) @@ -3,23 +3,22 @@ PORTNAME= briquolo PORTVERSION= 0.5.7 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= games MASTER_SITES= http://briquolo.free.fr/download/ MAINTAINER= martymac@FreeBSD.org COMMENT= Breakout clone with an OpenGL 3D representation -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png - LICENSE= GPLv2 +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png + USE_BZIP2= yes USES= iconv USE_GL= gl USE_SDL= mixer sdl ttf -USE_GMAKE= yes -USE_GNOME= desktopfileutils +USES= gmake desktop-file-utils USE_XORG= x11 GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include @@ -27,22 +26,13 @@ LDFLAGS+= -L${LOCALBASE}/lib PLIST_SUB= VERSION="${PORTVERSION}" -#.if defined(WITHOUT_NLS) -#BROKEN= Unsupported: wants to link against libintl anyway -#CONFIGURE_ARGS+= --disable-nls -#PLIST_SUB+= NLS="@comment " -#.else +# Mandatory: wants to link against libintl anyway USES+= gettext PLIST_SUB+= NLS="" -#.endif -NO_STAGE= yes post-patch: ${REINPLACE_CMD} -e 's|png_infopp_NULL|NULL|g' \ -e 's|png_set_gray_1_2_4_to_8|png_set_expand_gray_1_2_4_to_8|' \ ${WRKSRC}/src/MOGL/MOGL_Image.cpp -post-install: - @-update-desktop-database - .include Added: head/games/briquolo/files/patch-desktop-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/briquolo/files/patch-desktop-Makefile.in Wed Oct 30 07:53:37 2013 (r332084) @@ -0,0 +1,11 @@ +--- desktop/Makefile.in.orig 2013-10-29 17:36:03.000000000 +0100 ++++ desktop/Makefile.in 2013-10-29 17:36:23.000000000 +0100 +@@ -204,7 +204,7 @@ + target_cpu = @target_cpu@ + target_os = @target_os@ + target_vendor = @target_vendor@ +-icondir = $(DESTDIR)$(datadir)/pixmaps ++icondir = $(datadir)/pixmaps + icon_DATA = briquolo.svg + EXTRA_DIST = briquolo.desktop briquolo.svg + all: all-am Added: head/games/briquolo/files/patch-src-Constante.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/briquolo/files/patch-src-Constante.cpp Wed Oct 30 07:53:37 2013 (r332084) @@ -0,0 +1,10 @@ +--- src/Constante.cpp.orig 2013-10-29 17:15:21.000000000 +0100 ++++ src/Constante.cpp 2013-10-29 17:18:30.000000000 +0100 +@@ -32,6 +32,7 @@ + #define WIN32_LEAN_AND_MEAN + #include + #else ++#include + #include + #endif + Modified: head/games/briquolo/pkg-plist ============================================================================== --- head/games/briquolo/pkg-plist Wed Oct 30 07:18:50 2013 (r332083) +++ head/games/briquolo/pkg-plist Wed Oct 30 07:53:37 2013 (r332084) @@ -113,5 +113,3 @@ share/pixmaps/briquolo.svg %%NLS%%share/locale/pl/LC_MESSAGES/briquolo.mo %%NLS%%share/locale/pt/LC_MESSAGES/briquolo.mo %%NLS%%share/locale/sk/LC_MESSAGES/briquolo.mo -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true