diff options
author | lioux <lioux@FreeBSD.org> | 2001-08-06 03:12:27 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2001-08-06 03:12:27 +0800 |
commit | 109625464efe7ecd4f8f55beff64de3bd6b8dabe (patch) | |
tree | 0d6f4a3740ddfe529fe2746ae3fd8f573e5bd09f /graphics/graphviz/Makefile | |
parent | 866b14f361fe89d691d022b4c1d2ad45ee6b7792 (diff) | |
download | freebsd-ports-gnome-109625464efe7ecd4f8f55beff64de3bd6b8dabe.tar.gz freebsd-ports-gnome-109625464efe7ecd4f8f55beff64de3bd6b8dabe.tar.zst freebsd-ports-gnome-109625464efe7ecd4f8f55beff64de3bd6b8dabe.zip |
o Update to 1.7.6
o Depend on freetype2 instead of freetype
o Remove all patches since they are no longer necessary in this
latest update
PR: 29015
Submitted by: Kato Tsuguru <tkato@prontomail.com>
Diffstat (limited to 'graphics/graphviz/Makefile')
-rw-r--r-- | graphics/graphviz/Makefile | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/graphics/graphviz/Makefile b/graphics/graphviz/Makefile index 2694e396fb23..196f044bacdc 100644 --- a/graphics/graphviz/Makefile +++ b/graphics/graphviz/Makefile @@ -6,35 +6,36 @@ # PORTNAME= graphviz -PORTVERSION= 1.7c +PORTVERSION= 1.7.6 CATEGORIES= graphics tk83 MASTER_SITES= http://www.research.att.com/sw/tools/graphviz/dist/ -DISTNAME= gviz${PORTVERSION:S/.//} +DISTNAME= gviz${PORTVERSION:S/.//g} EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ png.4:${PORTSDIR}/graphics/png \ + freetype.6:${PORTSDIR}/print/freetype2 \ tk83.1:${PORTSDIR}/x11-toolkits/tk83 WRKSRC= ${WRKDIR}/gv${PORTVERSION} -USE_FREETYPE= yes 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 -DHAVE_TERMIOS" \ +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 INSTALLS_SHLIB= yes LDCONFIG_DIRS= ${PREFIX}/lib/graphviz -MAN1= dot.1 dotty.1 lefty.1 neato.1 -MAN3= agraph.3 cdt.3 graph.3 pathplan.3 +MAN1= acyclic.1 ccomps.1 colorize.1 dot.1 dotty.1 gc.1 gpr.1 \ + lefty.1 neato.1 nop.1 sccmap.1 tred.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 \ @@ -43,19 +44,15 @@ PORTDOCS= dotguide.pdf dottyguide.pdf gd.html leftyguide.pdf \ post-patch: @cd ${WRKSRC} && aclocal && autoheader && libtoolize --force -# the tarball contains object files! -post-configure: - @cd ${WRKSRC} && ${GMAKE} clean - pre-build: @cd ${WRKSRC}/cdt && ./iffe - set cc ${CC} ${CFLAGS} : run \ features/common > ast_common.h post-install: .if !defined(NOPORTDOCS) - @${MKDIR} ${PREFIX}/share/doc/graphviz + @${MKDIR} ${DOCSDIR} .for file in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${PREFIX}/share/doc/graphviz + ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR} .endfor .endif |