2000-01-29 22:51:04 +01:00
|
|
|
# New ports collection makefile for: graphviz
|
|
|
|
# Date created: 03 Feb 1998
|
|
|
|
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
1998-02-04 09:37:51 +01:00
|
|
|
#
|
1999-08-25 08:16:32 +02:00
|
|
|
# $FreeBSD$
|
1998-02-04 09:37:51 +01:00
|
|
|
#
|
|
|
|
|
2000-04-14 12:48:02 +02:00
|
|
|
PORTNAME= graphviz
|
2005-03-05 05:50:47 +01:00
|
|
|
PORTVERSION= 2.2
|
2003-07-07 08:45:45 +02:00
|
|
|
CATEGORIES= graphics tk84
|
2002-04-18 16:42:22 +02:00
|
|
|
MASTER_SITES= http://www.graphviz.org/pub/graphviz/ARCHIVE/
|
1998-02-04 09:37:51 +01:00
|
|
|
|
2002-06-25 09:50:58 +02:00
|
|
|
MAINTAINER= perky@FreeBSD.org
|
2003-02-25 07:25:35 +01:00
|
|
|
COMMENT= Graph Visualization Software from AT&T and Bell Labs
|
1998-02-04 09:37:51 +01:00
|
|
|
|
2000-10-23 14:37:30 +02:00
|
|
|
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
|
2001-09-11 04:22:51 +02:00
|
|
|
png.5:${PORTSDIR}/graphics/png \
|
2002-03-11 18:25:31 +01:00
|
|
|
freetype.9:${PORTSDIR}/print/freetype2 \
|
2004-05-14 08:50:12 +02:00
|
|
|
tk84.1:${PORTSDIR}/x11-toolkits/tk84 \
|
|
|
|
expat.5:${PORTSDIR}/textproc/expat2
|
2000-10-23 14:37:30 +02:00
|
|
|
|
2004-05-14 08:50:12 +02:00
|
|
|
USE_BISON= yes
|
|
|
|
USE_GMAKE= yes
|
2004-03-30 21:20:22 +02:00
|
|
|
USE_ICONV= yes
|
2000-11-14 16:49:46 +01:00
|
|
|
USE_XPM= yes
|
2004-05-14 08:50:12 +02:00
|
|
|
GNU_CONFIGURE= yes
|
2003-07-07 08:45:45 +02:00
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/tcl8.4 -I${LOCALBASE}/include/tk8.4" \
|
2000-11-14 16:49:46 +01:00
|
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
2003-07-07 08:45:45 +02:00
|
|
|
TCLCONFIG=${LOCALBASE}/lib/tcl8.4/tclConfig.sh \
|
|
|
|
TKCONFIG=${LOCALBASE}/lib/tk8.4/tkConfig.sh \
|
2004-05-14 08:50:12 +02:00
|
|
|
MISSING=${TRUE}
|
2003-10-16 07:14:10 +02:00
|
|
|
CONFIGURE_ARGS= --program-transform-name="s/x/x/" \
|
2004-05-14 08:50:12 +02:00
|
|
|
--with-iconvlibdir=${LOCALBASE}/lib \
|
|
|
|
--with-tclsh=${LOCALBASE}/tcl8.4 \
|
|
|
|
--with-wish=${LOCALBASE}/wish8.4
|
2000-11-14 16:49:46 +01:00
|
|
|
INSTALLS_SHLIB= yes
|
|
|
|
LDCONFIG_DIRS= ${PREFIX}/lib/graphviz
|
2004-05-14 08:50:12 +02:00
|
|
|
MAKE_ENV= EXPR_COMPAT=yes MISSING=${TRUE}
|
2000-10-23 14:37:30 +02:00
|
|
|
|
2005-03-05 05:50:47 +01:00
|
|
|
MAN1= acyclic.1 bcomps.1 ccomps.1 dijkstra.1 dot.1 dotneato-config.1 \
|
|
|
|
dotty.1 gc.1 gvcolor.1 gvpack.1 gvpr.1 gxl2dot.1 lefty.1 \
|
|
|
|
lneato.1 nop.1 prune.1 sccmap.1 tred.1 unflatten.1
|
2002-11-12 10:14:16 +01:00
|
|
|
MAN3= agraph.3 cdt.3 expr.3 graph.3 pack.3 pathplan.3
|
2005-03-05 05:50:47 +01:00
|
|
|
MANN= gdtclft.n tcldot.n tkspline.n
|
|
|
|
MLINKS= dot.1 circo.1 \
|
|
|
|
gxl2dot.1 dot2gxl.1 \
|
|
|
|
dot.1 fdp.1 \
|
|
|
|
dot.1 neato.1 \
|
|
|
|
dot.1 twopi.1
|
2001-02-28 16:03:58 +01:00
|
|
|
|
2004-11-05 10:42:14 +01:00
|
|
|
MYPORTDOCS= dotguide.pdf dottyguide.pdf leftyguide.pdf \
|
|
|
|
neatoguide.pdf Dot.ref FAQ.html
|
1998-02-04 09:37:51 +01:00
|
|
|
|
2001-02-28 16:03:58 +01:00
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
2001-08-05 21:12:27 +02:00
|
|
|
@${MKDIR} ${DOCSDIR}
|
2003-11-07 10:28:14 +01:00
|
|
|
.for file in ${MYPORTDOCS}
|
2001-08-05 21:12:27 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR}
|
2001-02-28 16:03:58 +01:00
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
2003-10-16 07:14:10 +02:00
|
|
|
.include <bsd.port.mk>
|