Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 May 2019 10:53:45 +0000 (UTC)
From:      Ganael LAPLANCHE <martymac@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r501166 - in head: emulators/dolphin-emu emulators/jzintv emulators/pcsxr games/afternoonstalker games/blobby games/briquolo games/burgerspace games/cosmosmash games/jfsw games/openalch...
Message-ID:  <201905101053.x4AArjM3003433@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: martymac
Date: Fri May 10 10:53:45 2019
New Revision: 501166
URL: https://svnweb.freebsd.org/changeset/ports/501166

Log:
  Add missing USES=sdl for my ports
  
  (and also reorder a few things)

Modified:
  head/emulators/dolphin-emu/Makefile
  head/emulators/jzintv/Makefile
  head/emulators/pcsxr/Makefile
  head/games/afternoonstalker/Makefile
  head/games/blobby/Makefile
  head/games/briquolo/Makefile
  head/games/burgerspace/Makefile
  head/games/cosmosmash/Makefile
  head/games/jfsw/Makefile
  head/games/openalchemist/Makefile
  head/games/openjazz/Makefile
  head/games/trackballs/Makefile
  head/games/triplane/Makefile

Modified: head/emulators/dolphin-emu/Makefile
==============================================================================
--- head/emulators/dolphin-emu/Makefile	Fri May 10 09:42:57 2019	(r501165)
+++ head/emulators/dolphin-emu/Makefile	Fri May 10 10:53:45 2019	(r501166)
@@ -42,7 +42,7 @@ LIB_DEPENDS=	libpulse.so:audio/pulseaudio \
 		libhidapi.so:comms/hidapi
 
 USES=		cmake compiler:c++17-lang desktop-file-utils gl iconv \
-		pkgconfig qmake qt:5
+		pkgconfig qmake qt:5 sdl
 
 USE_GITHUB=	yes
 GH_PROJECT=	dolphin

Modified: head/emulators/jzintv/Makefile
==============================================================================
--- head/emulators/jzintv/Makefile	Fri May 10 09:42:57 2019	(r501165)
+++ head/emulators/jzintv/Makefile	Fri May 10 10:53:45 2019	(r501166)
@@ -14,13 +14,14 @@ COMMENT=	Portable Intellivision(TM) Emulator
 
 LICENSE=	GPLv2
 
-WRKSRC=		${WRKDIR}/jzintv-1.0-beta4
-BUILD_WRKSRC=	${WRKSRC}/src
-USES=		alias gmake zip
+USES=		alias gmake sdl zip
 USE_XORG=	x11 xau xdmcp
 USE_SDL=	sdl
+
 CPPFLAGS+=	-I${LOCALBASE}/include `${SDL_CONFIG} --cflags`
 LDFLAGS+=	-L${LOCALBASE}/lib `${SDL_CONFIG} --libs` -lm
+WRKSRC=		${WRKDIR}/jzintv-1.0-beta4
+BUILD_WRKSRC=	${WRKSRC}/src
 
 OPTIONS_DEFINE=	TOOLS DOCS EXAMPLES
 OPTIONS_SUB=	yes

Modified: head/emulators/pcsxr/Makefile
==============================================================================
--- head/emulators/pcsxr/Makefile	Fri May 10 09:42:57 2019	(r501165)
+++ head/emulators/pcsxr/Makefile	Fri May 10 10:53:45 2019	(r501166)
@@ -17,10 +17,8 @@ LIB_DEPENDS=	libvorbis.so:audio/libvorbis \
 		libcdio.so:sysutils/libcdio \
 		libavformat.so:multimedia/ffmpeg
 
-WRKSRC_SUBDIR=	${PORTNAME}
-
 USES=		cmake desktop-file-utils dos2unix gettext gl gnome iconv \
-		libarchive libtool pkgconfig tar:bzip2
+		libarchive libtool pkgconfig sdl tar:bzip2
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	martymac
@@ -33,6 +31,8 @@ USE_XORG=	ice sm x11 xv xext xxf86vm xtst
 USE_SDL=	sdl2
 USE_GL=	gl
 INSTALLS_ICONS=	yes
+
+WRKSRC_SUBDIR=	${PORTNAME}
 
 CMAKE_ARGS+=	-DDL_LIB:STRING="" \
 		-DMANPREFIX:STRING="${MANPREFIX}" \

Modified: head/games/afternoonstalker/Makefile
==============================================================================
--- head/games/afternoonstalker/Makefile	Fri May 10 09:42:57 2019	(r501165)
+++ head/games/afternoonstalker/Makefile	Fri May 10 10:53:45 2019	(r501166)
@@ -15,9 +15,10 @@ LICENSE=	GPLv2
 
 LIB_DEPENDS=	libflatzebra-0.1.so:devel/flatzebra
 
-USES=		pkgconfig
+USES=		pkgconfig sdl
 USE_CXXSTD=	gnu++98
 USE_SDL=	mixer sdl
+
 GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib

Modified: head/games/blobby/Makefile
==============================================================================
--- head/games/blobby/Makefile	Fri May 10 09:42:57 2019	(r501165)
+++ head/games/blobby/Makefile	Fri May 10 10:53:45 2019	(r501166)
@@ -23,12 +23,13 @@ BUILD_DEPENDS=	zip:archivers/zip \
 		${LOCALBASE}/include/boost/crc.hpp:devel/boost-libs
 
 USES=		cmake compiler:c++11-lang dos2unix gl localbase:ldflags \
-		pkgconfig
+		pkgconfig sdl
+USE_SDL=	sdl2
+USE_GL=		gl
+
 DOS2UNIX_REGEX=	.*\.(c|h|cpp)
 CMAKE_ARGS=	-DDATADIR:PATH="${DATADIR}"
 WRKSRC=		${WRKDIR}/blobby-${PORTVERSION}
-USE_SDL=	sdl2
-USE_GL=		gl
 
 PORTDOCS=	AUTHORS ChangeLog README TODO
 

Modified: head/games/briquolo/Makefile
==============================================================================
--- head/games/briquolo/Makefile	Fri May 10 09:42:57 2019	(r501165)
+++ head/games/briquolo/Makefile	Fri May 10 10:53:45 2019	(r501166)
@@ -14,10 +14,11 @@ LICENSE=	GPLv2
 
 LIB_DEPENDS=	libpng.so:graphics/png
 
-USES=		tar:bzip2 gl gmake iconv desktop-file-utils
+USES=		tar:bzip2 gl gmake iconv desktop-file-utils sdl
 USE_GL=		gl
 USE_SDL=	mixer sdl ttf
 USE_XORG=	x11
+
 GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib

Modified: head/games/burgerspace/Makefile
==============================================================================
--- head/games/burgerspace/Makefile	Fri May 10 09:42:57 2019	(r501165)
+++ head/games/burgerspace/Makefile	Fri May 10 10:53:45 2019	(r501166)
@@ -15,9 +15,10 @@ LICENSE=	GPLv2
 
 LIB_DEPENDS=	libflatzebra-0.1.so:devel/flatzebra
 
-USES=		pkgconfig
+USES=		pkgconfig sdl
 USE_CXXSTD=	gnu++98
 USE_SDL=	mixer sdl
+
 GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib

Modified: head/games/cosmosmash/Makefile
==============================================================================
--- head/games/cosmosmash/Makefile	Fri May 10 09:42:57 2019	(r501165)
+++ head/games/cosmosmash/Makefile	Fri May 10 10:53:45 2019	(r501166)
@@ -18,10 +18,11 @@ LIB_DEPENDS=	libflatzebra-0.1.so:devel/flatzebra \
 		libmikmod.so:audio/libmikmod \
 		libaudiofile.so:audio/libaudiofile
 
-USES=		iconv pkgconfig desktop-file-utils
+USES=		iconv pkgconfig desktop-file-utils sdl
 USE_CXXSTD=	gnu++98
 USE_SDL=	sdl image mixer
 USE_XORG=	x11 xau xdmcp
+
 GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include `${SDL_CONFIG} --cflags`
 LDFLAGS+=	-lpthread -L${LOCALBASE}/lib `${SDL_CONFIG} --libs`

Modified: head/games/jfsw/Makefile
==============================================================================
--- head/games/jfsw/Makefile	Fri May 10 09:42:57 2019	(r501165)
+++ head/games/jfsw/Makefile	Fri May 10 10:53:45 2019	(r501166)
@@ -18,7 +18,11 @@ LICENSE_PERMS_BuildLic=	dist-mirror no-dist-sell pkg-m
 LIB_DEPENDS=	libvorbisfile.so:audio/libvorbis
 
 USES=		alias compiler:c++11-lang dos2unix gl gmake gnome \
-		pkgconfig:build
+		pkgconfig:build sdl
+USE_GL=		gl
+USE_GNOME=	gtk20
+USE_SDL=	mixer sdl
+
 DOS2UNIX_REGEX=	.*(\.(c|h)|Makefile)(\.deps)?
 
 USE_GITHUB=	yes
@@ -29,10 +33,6 @@ GH_TAGNAME=	5cff6a81708ff053b569ba4400fba073afe207fe \
 		a39ccf5e95961952d27754a255940be1d76ce85e:audio \
 		b1071da75cd465f59257240e5dbc60a014580190:mact
 GH_SUBDIR=	jfbuild:build jfaudiolib:audio jfmact:mact
-
-USE_GL=		gl
-USE_GNOME=	gtk20
-USE_SDL=	mixer sdl
 
 NO_CDROM=	Must be distributed only through the Internet and free of charge
 

Modified: head/games/openalchemist/Makefile
==============================================================================
--- head/games/openalchemist/Makefile	Fri May 10 09:42:57 2019	(r501165)
+++ head/games/openalchemist/Makefile	Fri May 10 10:53:45 2019	(r501166)
@@ -19,18 +19,18 @@ BUILD_DEPENDS=	zip:archivers/zip
 LIB_DEPENDS=	libclanCore.so:devel/clanlib1 \
 		libpng.so:graphics/png
 
-CPPFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-lpthread -L${LOCALBASE}/lib
-GNU_CONFIGURE=	yes
-
 USES=		autoreconf gl gmake gnome iconv jpeg pkgconfig python:2.7,run \
-		shebangfix
-SHEBANG_FILES=	openalchemist-config
-
+		sdl shebangfix
 USE_GNOME=	pygtk2
 USE_XORG=	xxf86vm xi x11 xmu xext xdamage xfixes xau xdmcp xt sm ice
 USE_GL=		gl glu
 USE_SDL=	sdl gfx
+
+CPPFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-lpthread -L${LOCALBASE}/lib
+GNU_CONFIGURE=	yes
+
+SHEBANG_FILES=	openalchemist-config
 
 PORTDOCS=	AUTHORS ChangeLog README TODO
 

Modified: head/games/openjazz/Makefile
==============================================================================
--- head/games/openjazz/Makefile	Fri May 10 09:42:57 2019	(r501165)
+++ head/games/openjazz/Makefile	Fri May 10 10:53:45 2019	(r501166)
@@ -10,15 +10,15 @@ COMMENT=	Free re-implementation of the Jazz Jackrabbit
 
 LICENSE=	GPLv2
 
-USES=	dos2unix gmake
+USES=	dos2unix gmake sdl
+USE_XORG=	x11 xext xrandr xrender xau xdmcp
+USE_SDL=	sdl
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	AlisterT
 
 DOS2UNIX_REGEX=	.*\.(h|cpp)
 ALL_TARGET=	OpenJazz
-USE_XORG=	x11 xext xrandr xrender xau xdmcp
-USE_SDL=	sdl
 
 CXXFLAGS+=	-I${LOCALBASE}/include `${SDL_CONFIG} --cflags` \
 		-DDATAPATH=\\\"${DATADIR}/\\\" -DHOMEDIR

Modified: head/games/trackballs/Makefile
==============================================================================
--- head/games/trackballs/Makefile	Fri May 10 09:42:57 2019	(r501165)
+++ head/games/trackballs/Makefile	Fri May 10 10:53:45 2019	(r501166)
@@ -16,12 +16,11 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 LIB_DEPENDS=	libguile-2.0.so:lang/guile2 \
 		libgc.so:devel/boehm-gc
 
-USES=		cmake desktop-file-utils gettext-runtime gl gnome pkgconfig
-
-USE_GITHUB=	yes
-
+USES=		cmake desktop-file-utils gettext-runtime gl gnome pkgconfig sdl
 USE_GL=		gl
 USE_SDL=	image2 mixer2 sdl2 ttf2
+
+USE_GITHUB=	yes
 
 INSTALLS_ICONS=	yes
 

Modified: head/games/triplane/Makefile
==============================================================================
--- head/games/triplane/Makefile	Fri May 10 09:42:57 2019	(r501165)
+++ head/games/triplane/Makefile	Fri May 10 10:53:45 2019	(r501166)
@@ -14,8 +14,9 @@ COMMENT=	Port of the original Triplane Turmoil game
 
 LICENSE=	GPLv3
 
-USES=		gmake
+USES=		gmake sdl
 USE_SDL=	sdl mixer
+
 WRKSRC=		${WRKDIR}/${DISTNAME}
 
 CFLAGS+=	-DTRIPLANE_DATA=\\\"${DATADIR}\\\"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905101053.x4AArjM3003433>