Date: Sun, 29 Sep 2013 13:55:30 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328696 - head/games/meandmyshadow Message-ID: <201309291355.r8TDtUZi005136@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Sun Sep 29 13:55:30 2013 New Revision: 328696 URL: http://svnweb.freebsd.org/changeset/ports/328696 Log: - Support staging - Use new LIB_DEPENDS syntax Deleted: head/games/meandmyshadow/pkg-plist Modified: head/games/meandmyshadow/Makefile Modified: head/games/meandmyshadow/Makefile ============================================================================== --- head/games/meandmyshadow/Makefile Sun Sep 29 13:48:26 2013 (r328695) +++ head/games/meandmyshadow/Makefile Sun Sep 29 13:55:30 2013 (r328696) @@ -11,14 +11,16 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-src MAINTAINER= amdmi3@FreeBSD.org COMMENT= Me and My Shadow puzzle/platform game -LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl +LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl USES= cmake USE_SDL= sdl ttf image mixer image gfx WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +PLIST_FILES= bin/${PORTNAME} PORTDOCS= * +PORTDATA= * DESKTOP_ENTRIES="Me and My Shadow" \ "Puzzle/platform game" \ @@ -27,7 +29,8 @@ DESKTOP_ENTRIES="Me and My Shadow" \ "Game;LogicGame;" \ false -NO_STAGE= yes +OPTIONS_DEFINE= DOCS + .include <bsd.port.options.mk> post-patch: @@ -35,13 +38,13 @@ post-patch: ${WRKSRC}/cmake/Modules/FindSDL_gfx.cmake post-install: - ${MKDIR} ${PREFIX}/share/pixmaps/ + ${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps/ ${INSTALL_DATA} ${WRKSRC}/icons/64x64/meandmyshadow.png \ - ${PREFIX}/share/pixmaps/ + ${STAGEDIR}${PREFIX}/share/pixmaps/ .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in AUTHORS ChangeLog docs/* - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ .endfor .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309291355.r8TDtUZi005136>