Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Sep 2013 16:00:57 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r326521 - head/games/worldofpadman
Message-ID:  <201309061600.r86G0voq095226@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danfe
Date: Fri Sep  6 16:00:57 2013
New Revision: 326521
URL: http://svnweb.freebsd.org/changeset/ports/326521

Log:
  - Move NO_PACKAGE higher, where it's usually expected to be found
  - Convert USE_GMAKE and modernize LIB_DEPENDS while I'm here

Modified:
  head/games/worldofpadman/Makefile

Modified: head/games/worldofpadman/Makefile
==============================================================================
--- head/games/worldofpadman/Makefile	Fri Sep  6 15:56:54 2013	(r326520)
+++ head/games/worldofpadman/Makefile	Fri Sep  6 16:00:57 2013	(r326521)
@@ -16,11 +16,12 @@ EXTRACT_ONLY=	worldofpadman.run \
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Open source FPS game inspired by the Padman comic strip
 
+NO_PACKAGE=	package will be ~600MB; set FORCE_PACKAGE if you really want it
+
+USES=		gmake
 USE_MAKESELF=	yes
-USE_GMAKE=	yes
 MAKE_ENV=	DEFAULT_BASEDIR="${DATADIR}" PTHREAD_LIBS="${PTHREAD_LIBS}"
 ALL_TARGET=	release
-NO_PACKAGE=	package will be ~600MB; set FORCE_PACKAGE if you really want it
 
 SRC_FILE=	${PORTNAME}-${PORTVERSION}
 VM_ARCHS=	amd64 i386 powerpc
@@ -55,7 +56,7 @@ MAKE_ENV+=	HAVE_VM_COMPILED=true
 .if ${PORT_OPTIONS:MCLIENT} || ${PORT_OPTIONS:MSMP_CLIENT}
 # cURL
 .  if ${PORT_OPTIONS:MCURL}
-LIB_DEPENDS+=	curl:${PORTSDIR}/ftp/curl
+LIB_DEPENDS+=	libcurl.so:${PORTSDIR}/ftp/curl
 MAKE_ENV+=	USE_CURL=1
 .    if ${PORT_OPTIONS:MCURL_DLOPEN}
 MAKE_ENV+=	USE_CURL_DLOPEN=1
@@ -74,7 +75,7 @@ USE_GL=		glu
 USE_SDL=	sdl
 # Vorbis
 .  if ${PORT_OPTIONS:MVORBIS}
-LIB_DEPENDS+=	vorbis:${PORTSDIR}/audio/libvorbis
+LIB_DEPENDS+=	libvorbis.so:${PORTSDIR}/audio/libvorbis
 MAKE_ENV+=	USE_CODEC_VORBIS=1
 .  endif
 .endif
@@ -103,7 +104,7 @@ PLIST_SUB+=	GAMELIBS="@comment "
 .endif
 
 .if ${PORT_OPTIONS:MMP3}
-LIB_DEPENDS+=	mad:${PORTSDIR}/audio/libmad
+LIB_DEPENDS+=	libmad.so:${PORTSDIR}/audio/libmad
 MAKE_ENV+=	USE_CODEC_MP3=1
 .endif
 



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