45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.18 2014/03/17 23:21:26 sthen Exp $
|
|
|
|
COMMENT= graphical representation of CVS repository
|
|
|
|
DISTNAME= cvsgraph-1.6.1
|
|
REVISION= 0
|
|
CATEGORIES= devel
|
|
HOMEPAGE= http://www.akhphd.au.dk/~bertho/cvsgraph
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += c gd>=18 jpeg m png pthread z
|
|
|
|
MODULES= converters/libiconv
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/release/
|
|
|
|
LIB_DEPENDS= graphics/gd
|
|
|
|
ALL_TARGET=
|
|
|
|
CONFIGURE_STYLE= gnu dest
|
|
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
|
|
LIBS="-lpng -ljpeg -lz -lm -liconv"
|
|
CONFIGURE_ARGS= --with-gd-inc=${LOCALBASE}/include \
|
|
--with-gd-lib=${LOCALBASE}/lib \
|
|
--with-freetype-lib=${X11BASE}/lib
|
|
USE_GROFF = Yes
|
|
|
|
NO_TEST= Yes
|
|
|
|
pre-build:
|
|
@perl -pi -e 's,!!SYSCONFDIR!!,${SYSCONFDIR},g' ${WRKSRC}/cvsgraph.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/cvsgraph ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/cvsgraph
|
|
${INSTALL_DATA} ${WRKSRC}/cvsgraph.conf \
|
|
${PREFIX}/share/examples/cvsgraph
|
|
${INSTALL_MAN} ${WRKSRC}/cvsgraph.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/cvsgraph.conf.5 ${PREFIX}/man/man5
|
|
|
|
.include <bsd.port.mk>
|