freebsd-ports/math/plplot/Makefile
Kevin Lo 621afdd675 - Add build option to support Tcl/Tk
- Bump PORTREVISION

PR: 32951
Submitted by: Ports Fury
2001-12-22 13:59:12 +00:00

61 lines
1.6 KiB
Makefile

# New ports collection makefile for: plplot
# Date created: 03 Oct 1997
# Whom: Thomas Gellekum <tg@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= plplot
PORTVERSION= 5.0.4
PORTREVISION= 1
CATEGORIES= math
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
LIB_DEPENDS= gd.2:${PORTSDIR}/graphics/gd
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
USE_XLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= F77="${FC}" FFLAGS="${FFLAGS}" \
CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib" \
GDINCDIR="${LOCALBASE}/include/gd" \
GDLIBDIR="${LOCALBASE}/lib" \
XINCDIR="${X11BASE}/include" \
XLIBDIR="${X11BASE}/lib" \
PLPLOT_PREFIX="${PREFIX}/share/plplot" \
DEMOS_DIR="${PREFIX}/share/examples/plplot" \
INFO_DIR="${PREFIX}/info" \
M4="${LOCALBASE}/bin/gm4"
CONFIGURE_ARGS= --disable-python --with-double
INSTALLS_SHLIB= yes
.if defined(WITH_TCLTK)
LIB_DEPENDS+= itk32.1:${PORTSDIR}/x11-toolkits/itk
CONFIGURE_ENV+= ITCLINCDIR="${LOCALBASE}/include/itcl3.2" \
ITCLLIBDIR="${LOCALBASE}/lib" \
ITCLLIBSTR="-litcl32" \
ITKINCDIR="${LOCALBASE}/include/itk3.2" \
ITKLIBDIR="${LOCALBASE}/lib" \
ITKLIBSTR="-litk32" \
TCLINCDIR="${LOCALBASE}/include/tcl8.3" \
TCLLIBDIR="${LOCALBASE}/lib" \
TCLLIBSTR="-ltcl83" \
TKINCDIR="${LOCALBASE}/include/tk8.3" \
TKLIBDIR="${LOCALBASE}/lib" \
TKLIBSTR="-ltk83"
PLIST_SUB+= TCLTK=""
.else
CONFIGURE_ARGS+= --disable-itcl --disable-tcl --disable-tk
PLIST_SUB+= TCLTK="@comment "
.endif
post-patch:
.for file in scripts/mktclIndex
@${PERL} -pi -e 's|tclsh|${LOCALBASE}/bin/tclsh8.3|g' ${WRKSRC}/${file}
.endfor
.include <bsd.port.mk>