From owner-svn-ports-head@FreeBSD.ORG Sun May 11 14:19:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3C4A7E11; Sun, 11 May 2014 14:19:52 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 297982677; Sun, 11 May 2014 14:19:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4BEJqwb001684; Sun, 11 May 2014 14:19:52 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4BEJqd0001683; Sun, 11 May 2014 14:19:52 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201405111419.s4BEJqd0001683@svn.freebsd.org> From: Dmitry Marakasov Date: Sun, 11 May 2014 14:19:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353695 - head/graphics/ogre3d 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.18 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: Sun, 11 May 2014 14:19:52 -0000 Author: amdmi3 Date: Sun May 11 14:19:51 2014 New Revision: 353695 URL: http://svnweb.freebsd.org/changeset/ports/353695 QAT: https://qat.redports.org/buildarchive/r353695/ Log: - Support staging - Convert USE_BZIP2 to USES - Use new LIB_DEPENDS syntax Approved by: portmgr blanket Modified: head/graphics/ogre3d/Makefile Modified: head/graphics/ogre3d/Makefile ============================================================================== --- head/graphics/ogre3d/Makefile Sun May 11 14:18:54 2014 (r353694) +++ head/graphics/ogre3d/Makefile Sun May 11 14:19:51 2014 (r353695) @@ -12,19 +12,17 @@ WRKSRC= ${WRKDIR}/sinbad-ogre-dd30349ea MAINTAINER= oliver@FreeBSD.org COMMENT= A scene-oriented, flexible 3D engine written in C++ -LIB_DEPENDS= zzip.13:${PORTSDIR}/devel/zziplib \ +LIB_DEPENDS= libzzip.so:${PORTSDIR}/devel/zziplib \ libfreetype.so:${PORTSDIR}/print/freetype2 \ - freeimage.3:${PORTSDIR}/graphics/freeimage + libfreeimage.so:${PORTSDIR}/graphics/freeimage OPTIONS_DEFINE= BOOST -USE_LDCONFIG= YES -USE_BZIP2= YES -USES= cmake pkgconfig compiler:c++11-lib +USE_LDCONFIG= yes +USES= tar:bzip2 cmake pkgconfig compiler:c++11-lib USE_SDL= sdl USE_XORG= xaw xrandr -NO_STAGE= yes .include .if ${PORT_OPTIONS:MBOOST} @@ -60,11 +58,9 @@ post-patch: ${WRKSRC}/OgreMain/include/OgrePlatform.h post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for docfile in README COPYING AUTHORS - @${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include