1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/graphics/graphviz/Makefile
Maxim Sobolev 6dab917362 - Unbreak after last USE_LIBTOOL changes;
- don't install .la files;
- don't use black magick to create/delete .so symlinks to shared libraries -
  our pkg_* tools already work correctly with symlinks.
2002-04-25 15:36:30 +00:00

67 lines
1.8 KiB
Makefile

# New ports collection makefile for: graphviz
# Date created: 03 Feb 1998
# Whom: Thomas Gellekum <tg@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= graphviz
PORTVERSION= 1.8.5
CATEGORIES= graphics tk83
MASTER_SITES= http://www.graphviz.org/pub/graphviz/ARCHIVE/
MAINTAINER= perky@fallin.lv
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
png.5:${PORTSDIR}/graphics/png \
freetype.9:${PORTSDIR}/print/freetype2 \
tk83.1:${PORTSDIR}/x11-toolkits/tk83
USE_XPM= yes
USE_GMAKE= yes
USE_AUTOMAKE= yes
AUTOMAKE_ARGS= --add-missing
USE_LIBTOOL= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/tcl8.3 -I${LOCALBASE}/include/tk8.3" \
LDFLAGS="-L${LOCALBASE}/lib" \
TCLCONFIG=${LOCALBASE}/lib/tcl8.3/tclConfig.sh \
TKCONFIG=${LOCALBASE}/lib/tk8.3/tkConfig.sh \
AUTOHEADER=${LOCALBASE}/bin/autoheader213 \
AUTOCONF=${LOCALBASE}/bin/autoconf213 \
AUTOMAKE=${LOCALBASE}/bin/automake14 \
ACLOCAL=${LOCALBASE}/bin/aclocal14
INSTALLS_SHLIB= yes
LDCONFIG_DIRS= ${PREFIX}/lib/graphviz
MAN1= acyclic.1 ccomps.1 colorize.1 dot.1 dotty.1 gc.1 gpr.1 \
lefty.1 neato.1 nop.1 prune.1 sccmap.1 tred.1 \
twopi.1 unflatten.1
MAN3= agraph.3 cdt.3 expr.3 graph.3 pathplan.3
MANN= gdtclft.n tcldgl.n tcldgr.n tcldot.n tkspline.n
PORTDOCS= dotguide.pdf dottyguide.pdf gd.html leftyguide.pdf \
neatoguide.pdf tcldot.html Dot.ref FAQ.html
.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/include/iconv.h) || defined(WITH_ICONV)
LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv
CONFIGURE_ARGS= --with-iconvlibdir=${LOCALBASE}/lib
.endif
post-patch:
.if ${OSVERSION} >= 500032
@${PERL} -pi.orig -e 's|expr |expr -- |' ${WRKSRC}/libtool
.endif
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>