From owner-svn-ports-head@FreeBSD.ORG Fri Oct 25 17:35:11 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 6D0AB684; Fri, 25 Oct 2013 17:35:11 +0000 (UTC) (envelope-from demon@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 5A6C125BB; Fri, 25 Oct 2013 17:35:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9PHZBRn060589; Fri, 25 Oct 2013 17:35:11 GMT (envelope-from demon@svn.freebsd.org) Received: (from demon@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9PHZBhg060588; Fri, 25 Oct 2013 17:35:11 GMT (envelope-from demon@svn.freebsd.org) Message-Id: <201310251735.r9PHZBhg060588@svn.freebsd.org> From: Dmitry Sivachenko Date: Fri, 25 Oct 2013 17:35:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331617 - head/graphics/gource 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: Fri, 25 Oct 2013 17:35:11 -0000 Author: demon Date: Fri Oct 25 17:35:10 2013 New Revision: 331617 URL: http://svnweb.freebsd.org/changeset/ports/331617 Log: Convert to new LIB_DEPENDS format; Fix build on 10/stable (USES=compiler) Modified: head/graphics/gource/Makefile Modified: head/graphics/gource/Makefile ============================================================================== --- head/graphics/gource/Makefile Fri Oct 25 17:10:07 2013 (r331616) +++ head/graphics/gource/Makefile Fri Oct 25 17:35:10 2013 (r331617) @@ -11,16 +11,15 @@ MAINTAINER= demon@FreeBSD.org COMMENT= OpenGL-based 3D visualisation tool for source control repositories BUILD_DEPENDS= ${LOCALBASE}/include/glm/glm.hpp:${PORTSDIR}/math/glm -LIB_DEPENDS= SDL_image:${PORTSDIR}/graphics/sdl_image \ - freetype:${PORTSDIR}/print/freetype2 \ - pcre:${PORTSDIR}/devel/pcre \ - GLEW:${PORTSDIR}/graphics/glew \ - boost_filesystem:${PORTSDIR}/devel/boost-libs +LIB_DEPENDS= libSDL_image.so:${PORTSDIR}/graphics/sdl_image \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ + libpcre.so:${PORTSDIR}/devel/pcre \ + libGLEW.so:${PORTSDIR}/graphics/glew \ + libboost_filesystem.so:${PORTSDIR}/devel/boost-libs RUN_DEPENDS= ${LOCALBASE}/include/glm/glm.hpp:${PORTSDIR}/math/glm GNU_CONFIGURE= yes -USE_GCC= yes -USES= gmake pkgconfig +USES= gmake pkgconfig compiler:c++11-lang MANCOMPRESSED= yes CONFIGURE_ARGS+=--with-boost-system=boost_system \