36 lines
768 B
Makefile
36 lines
768 B
Makefile
# $OpenBSD: Makefile,v 1.20 2015/08/21 07:03:05 jasper Exp $
|
|
|
|
COMMENT= graphical representation of CVS repository
|
|
|
|
DISTNAME= cvsgraph-1.7.0
|
|
CATEGORIES= devel
|
|
HOMEPAGE= http://www.akhphd.au.dk/~bertho/cvsgraph
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += c fontconfig freetype gd jpeg m png pthread tiff vpx
|
|
WANTLIB += z
|
|
|
|
MODULES= converters/libiconv
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/release/
|
|
|
|
LIB_DEPENDS= graphics/gd
|
|
|
|
ALL_TARGET=
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --with-gd-inc=${LOCALBASE}/include \
|
|
--with-gd-lib=${LOCALBASE}/lib
|
|
CFLAGS += -I${LOCALBASE}/include
|
|
|
|
NO_TEST= Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/cvsgraph
|
|
${INSTALL_DATA} ${WRKSRC}/cvsgraph.conf \
|
|
${PREFIX}/share/examples/cvsgraph
|
|
|
|
.include <bsd.port.mk>
|