mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
35 lines
724 B
Makefile
35 lines
724 B
Makefile
# New ports collection makefile for: mscgen
|
|
# Date created: 2011-01-23
|
|
# Whom: Romain Tartiere <romain@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mscgen
|
|
PORTVERSION= 0.20
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.mcternan.me.uk/mscgen/software/ \
|
|
http://romain.blogreen.org/distfiles/
|
|
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
|
|
|
|
MAINTAINER= romain@FreeBSD.org
|
|
COMMENT= A Message Sequence Chart Renderer
|
|
|
|
OPTIONS= PNG "Enable PNG support" on
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if !defined(WITHOUT_PNG)
|
|
CONFIGURE_ARGS+=--with-png
|
|
LIB_DEPENDS+= gd.4:${PORTSDIR}/graphics/gd
|
|
.else
|
|
CONFIGURE_ARGS+=--without-png
|
|
.endif
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAN1= mscgen.1
|
|
|
|
.include <bsd.port.mk>
|