From owner-svn-ports-head@FreeBSD.ORG Sat Oct 19 02:57:24 2013 Return-Path: Delivered-To: svn-ports-head@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 8739AF84; Sat, 19 Oct 2013 02:57:24 +0000 (UTC) (envelope-from amdmi3@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 754732E71; Sat, 19 Oct 2013 02:57:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9J2vOZM009229; Sat, 19 Oct 2013 02:57:24 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9J2vO5r009228; Sat, 19 Oct 2013 02:57:24 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201310190257.r9J2vO5r009228@svn.freebsd.org> From: Dmitry Marakasov Date: Sat, 19 Oct 2013 02:57:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330837 - head/games/phlipple X-SVN-Group: ports-head 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.14 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: Sat, 19 Oct 2013 02:57:24 -0000 Author: amdmi3 Date: Sat Oct 19 02:57:23 2013 New Revision: 330837 URL: http://svnweb.freebsd.org/changeset/ports/330837 Log: - Support staging - Use new LIB_DEPENDS syntax Deleted: head/games/phlipple/pkg-plist Modified: head/games/phlipple/Makefile Modified: head/games/phlipple/Makefile ============================================================================== --- head/games/phlipple/Makefile Sat Oct 19 02:57:17 2013 (r330836) +++ head/games/phlipple/Makefile Sat Oct 19 02:57:23 2013 (r330837) @@ -9,9 +9,9 @@ MASTER_SITES= SF/${PORTNAME} MAINTAINER= amdmi3@FreeBSD.org COMMENT= Flipping squares will never be the same -LIB_DEPENDS= ogg:${PORTSDIR}/audio/libogg \ - vorbis:${PORTSDIR}/audio/libvorbis \ - GLEW:${PORTSDIR}/graphics/glew +LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg \ + libvorbis.so:${PORTSDIR}/audio/libvorbis \ + libGLEW.so:${PORTSDIR}/graphics/glew GNU_CONFIGURE= yes USES= pkgconfig @@ -21,16 +21,17 @@ USE_GL= gl glu CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +PLIST_FILES= bin/${PORTNAME} \ + share/applications/${PORTNAME}.desktop \ + share/pixmaps/${PORTNAME}.png +PLIST_DIRSTRY= share/applications PORTDOCS= * +PORTDATA= * -NO_STAGE= yes -.include +OPTIONS_DEFINE= DOCS +OPTIONS_DEFAULT=DOCS post-patch: @${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' ${WRKSRC}/src/*.c -.if ! ${PORT_OPTIONS:MDOCS} - @${REINPLACE_CMD} -e '/install-data-am:/ s|install-dist_docDATA||' \ - ${WRKSRC}/Makefile.in -.endif .include