From owner-svn-ports-all@FreeBSD.ORG Fri Sep 6 16:00:57 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 E9F125DE; Fri, 6 Sep 2013 16:00:57 +0000 (UTC) (envelope-from danfe@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 D64892AF4; Fri, 6 Sep 2013 16:00:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r86G0vJu095228; Fri, 6 Sep 2013 16:00:57 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r86G0voq095226; Fri, 6 Sep 2013 16:00:57 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201309061600.r86G0voq095226@svn.freebsd.org> From: Alexey Dokuchaev Date: Fri, 6 Sep 2013 16:00:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r326521 - head/games/worldofpadman 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: Fri, 06 Sep 2013 16:00:58 -0000 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