openbsd-ports/math/graphviz/Makefile
alek adbbf78ea1 - Better *DEPENDS for x11/tk/8.4
- Fix MODULE as only converters/libiconv is needed
- Put LOCALBASE/lib before X11BASE/lib so correct version of libexpat will
  be used
- Bump PKGNAME

ok naddy@
2005-03-14 15:27:13 +00:00

66 lines
1.6 KiB
Makefile

# $OpenBSD: Makefile,v 1.15 2005/03/14 15:27:13 alek Exp $
COMMENT= "graph drawing software"
DISTNAME= graphviz-1.16
PKGNAME= ${DISTNAME}p1
CATEGORIES= math devel graphics
HOMEPAGE= http://www.graphviz.org/
MAINTAINER= Marc Espie <espie@openbsd.org>
PERMIT_DISTFILES_FTP= No
PERMIT_DISTFILES_CDROM= No
# As long as the licence is shown, everything is fine
PERMIT_PACKAGE_FTP= Yes
PERMIT_PACKAGE_CDROM= Yes
WANTLIB= ICE SM X11 Xaw Xext Xmu Xpm Xt c fontconfig freetype m z
MASTER_SITES= ${HOMEPAGE}pub/graphviz/ARCHIVE/
MODULES= converters/libiconv
LIB_DEPENDS= expat.4::textproc/expat \
jpeg.62::graphics/jpeg \
png.2::graphics/png
BUILD_DEPENDS= :tk-8.4.*:x11/tk/8.4
RUN_DEPENDS= ${BUILD_DEPENDS}
CONFIGURE_STYLE=gnu
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
--enable-static \
--with-mylibgd
CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
DOCBASE= ${PREFIX}/share/doc/graphviz
EXBASE= ${PREFIX}/share/examples/graphviz
FAKE_FLAGS= htmldir="${DOCBASE}/html" \
pdfdir="${DOCBASE}/pdf" \
txtdir="${DOCBASE}" \
demodir="${EXBASE}/demo" \
directeddir="${EXBASE}/graphs/directed" \
leftydir="${EXBASE}/lefty" \
pathplanexampledir="${EXBASE}/demo/pathplan_data" \
undirecteddir="${EXBASE}/graphs/undirected"
SUBST_VARS= PKGNAME
.include <bsd.own.mk>
ACCEPT_GRAPHVIZ_LICENSE?=No
post-extract:
.if ${ACCEPT_GRAPHVIZ_LICENSE:L} == "no"
@echo "You must read ${WRKDIST}/COPYING first"
@echo "To accept the license, restart the build with"
@echo "ACCEPT_GRAPHVIZ_LICENSE=Yes"
@exit 1
.endif
post-install:
@cd ${PREFIX}/lib && ln -s graphviz/lib*.so.0.0 .
.include <bsd.port.mk>