b35132e4a8
Gource is an animated tree with the root directory of the project at its centre. Directories appear as branches with files as leaves. Developers can be seen working on the tree at the times they contributed to the project. Currently Gource includes built-in log generation support for Git, Mercurial and Bazaar and SVN. Gource can also parse logs produced by several third party tools for CVS repositories. from Gonzalo L. R. (MAINTAINER) with tweaks by me ok sthen@
35 lines
743 B
Makefile
35 lines
743 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/10/20 10:56:59 jasper Exp $
|
|
|
|
COMMENT = software version control visualization tool
|
|
|
|
DISTNAME = gource-0.37
|
|
CATEGORIES = sysutils graphics
|
|
HOMEPAGE = http://gource.googlecode.com/
|
|
|
|
MAINTAINER = Gonzalo L. R. <gonzalo@x61.com.ar>
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${HOMEPAGE}/files/
|
|
|
|
CONFIGURE_STYLE = gnu noman
|
|
|
|
WANTLIB += GL GLEW GLU SDL SDL_image c freetype m pcre pthread
|
|
WANTLIB += stdc++ z
|
|
|
|
LIB_DEPENDS = devel/pcre \
|
|
devel/sdl-image \
|
|
graphics/glew \
|
|
print/freetype
|
|
|
|
USE_GROFF = Yes
|
|
|
|
post-install:
|
|
@gzip -d ${PREFIX}/man/man1/gource.1.gz
|
|
|
|
.include <bsd.port.mk>
|