From owner-svn-ports-head@freebsd.org Thu Jun 29 09:00:17 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0B7D0D97640; Thu, 29 Jun 2017 09:00:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CC4FB7BFE0; Thu, 29 Jun 2017 09:00:16 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5T90FLg003866; Thu, 29 Jun 2017 09:00:15 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5T90Fcl003865; Thu, 29 Jun 2017 09:00:15 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201706290900.v5T90Fcl003865@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 29 Jun 2017 09:00:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444632 - head/games/lander X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/lander X-SVN-Commit-Revision: 444632 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2017 09:00:17 -0000 Author: amdmi3 Date: Thu Jun 29 09:00:15 2017 New Revision: 444632 URL: https://svnweb.freebsd.org/changeset/ports/444632 Log: - Fix LICENSE - Add LICENSE_FILE - Add missing depends - Switch to USES=localbase - Switch to options helpers Modified: head/games/lander/Makefile Modified: head/games/lander/Makefile ============================================================================== --- head/games/lander/Makefile Thu Jun 29 08:56:46 2017 (r444631) +++ head/games/lander/Makefile Thu Jun 29 09:00:15 2017 (r444632) @@ -11,19 +11,20 @@ MASTER_SITES= http://www.nickg.me.uk/files/ \ MAINTAINER= amdmi3@FreeBSD.org COMMENT= Lunar Lander clone -LICENSE= GPLv3 +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libfreetype.so:print/freetype2 \ - libboost_filesystem.so:devel/boost-libs + libboost_filesystem.so:devel/boost-libs \ + libpng.so:graphics/png GNU_CONFIGURE= yes -USES= gettext pkgconfig +USES= gettext localbase pkgconfig USE_SDL= sdl image mixer USE_GL= gl glu CONFIGURE_ARGS= --with-boost="${LOCALBASE}" \ --with-boost-filesystem=boost_filesystem -LDFLAGS= -L${LOCALBASE}/lib PORTDOCS= * PORTDATA= * @@ -40,8 +41,8 @@ OPTIONS_DEFINE= DOCS post-patch: @${REINPLACE_CMD} -e 's|-R$$found_dir||g' ${WRKSRC}/configure -post-install: - ${MKDIR} ${STAGEDIR}${DOCSDIR} +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/ .include