forked from Lainports/freebsd-ports
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
32 lines
876 B
Makefile
32 lines
876 B
Makefile
# Created by: demon@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gource
|
|
PORTVERSION= 0.47
|
|
PORTREVISION= 11
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= https://github.com/acaudwell/Gource/releases/download/${PORTNAME}-${PORTVERSION}/
|
|
|
|
MAINTAINER= demon@FreeBSD.org
|
|
COMMENT= OpenGL-based 3D visualisation tool for source control repositories
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/glm/glm.hpp:math/glm
|
|
LIB_DEPENDS= libfreetype.so:print/freetype2 \
|
|
libpcre.so:devel/pcre \
|
|
libboost_filesystem.so:devel/boost-libs \
|
|
libpng.so:graphics/png
|
|
RUN_DEPENDS= ${LOCALBASE}/include/glm/glm.hpp:math/glm
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake gl pkgconfig compiler:c++0x
|
|
USE_GL= glew gl glu
|
|
USE_SDL= image2 sdl2
|
|
|
|
CONFIGURE_ARGS+=--with-boost-system=boost_system \
|
|
--with-boost-filesystem=boost_filesystem
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.mk>
|