diff options
author | demon <demon@FreeBSD.org> | 2013-10-26 01:35:10 +0800 |
---|---|---|
committer | demon <demon@FreeBSD.org> | 2013-10-26 01:35:10 +0800 |
commit | 9aa1adf5133518036b6b58f53b84cba8a6f8d4ad (patch) | |
tree | 297a57c53e4404421886972f34d16cd54d3bf183 /graphics | |
parent | b0ce8861dd1b9ffa136dcbf7df2112bb07d7df53 (diff) | |
download | freebsd-ports-gnome-9aa1adf5133518036b6b58f53b84cba8a6f8d4ad.tar.gz freebsd-ports-gnome-9aa1adf5133518036b6b58f53b84cba8a6f8d4ad.tar.zst freebsd-ports-gnome-9aa1adf5133518036b6b58f53b84cba8a6f8d4ad.zip |
Convert to new LIB_DEPENDS format;
Fix build on 10/stable (USES=compiler)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gource/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/graphics/gource/Makefile b/graphics/gource/Makefile index 3f287c28784c..5a100de3f757 100644 --- a/graphics/gource/Makefile +++ b/graphics/gource/Makefile @@ -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 \ |