mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
5e38556079
minor COMMENT typos and surrounding whitespace fixes. Categories G-I. CR: D201 Approved by: portmgr (bapt)
40 lines
846 B
Makefile
40 lines
846 B
Makefile
# Created by: Romain Tartiere <romain@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mscgen
|
|
PORTVERSION= 0.20
|
|
PORTREVISION= 3
|
|
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= Message Sequence Chart Renderer
|
|
|
|
OPTIONS_DEFINE= FREETYPE PNG
|
|
OPTIONS_DEFAULT=FREETYPE PNG
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MFREETYPE}
|
|
CONFIGURE_ARGS+=--with-freetype
|
|
LIB_DEPENDS+= freetype:${PORTSDIR}/print/freetype2
|
|
.else
|
|
CONFIGURE_ARGS+=--without-freetype
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPNG}
|
|
CONFIGURE_ARGS+=--with-png
|
|
LIB_DEPENDS+= gd:${PORTSDIR}/graphics/gd
|
|
.else
|
|
CONFIGURE_ARGS+=--without-png
|
|
.endif
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAN1= mscgen.1
|
|
|
|
.include <bsd.port.mk>
|