mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
b760897dde
Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10845
32 lines
856 B
Makefile
32 lines
856 B
Makefile
# Created by: demon@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gource
|
|
PORTVERSION= 0.43
|
|
PORTREVISION= 6
|
|
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= libSDL_image.so:graphics/sdl_image \
|
|
libfreetype.so:print/freetype2 \
|
|
libpcre.so:devel/pcre \
|
|
libboost_filesystem.so:devel/boost-libs
|
|
RUN_DEPENDS= ${LOCALBASE}/include/glm/glm.hpp:math/glm
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake pkgconfig compiler:c++0x
|
|
USE_GL= glew
|
|
|
|
CONFIGURE_ARGS+=--with-boost-system=boost_system \
|
|
--with-boost-filesystem=boost_filesystem
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.mk>
|