8a90d6c204
PR: 54735 Submitted by: Pedro F. Giffuni <giffunip@yahoo.com>
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# New ports collection makefile for: dataplot
|
|
# Date created: 20 July 2003
|
|
# Whom: Pedro F. Giffuni <giffunip@asme.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dataplot
|
|
PORTVERSION= 20030530
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ftp://ftp.nist.gov/pub/dataplot/unix/:source \
|
|
http://www.itl.nist.gov/div898/software/dataplot.html/:doc
|
|
EXTRACT_SUFX= .tar.Z
|
|
DISTFILES= dataplot_source${EXTRACT_SUFX}:source \
|
|
dpsnapsh.pdf:doc
|
|
DIST_SUBDIR= dataplot
|
|
EXTRACT_ONLY= dataplot_source${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A free software system for statistical visualization
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libgd1.a:${PORTSDIR}/graphics/gd
|
|
|
|
USE_XLIB= yes
|
|
USE_REINPLACE= yes
|
|
NO_WRKSUBDIR= yes
|
|
MAXOBV?= 20000 # Make bigger if you need more observations/variable
|
|
|
|
post-extract:
|
|
@${INSTALL_DATA} ${FILESDIR}/Makefile.tmpl ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e 's;%%LOCALBASE%%;${LOCALBASE};g ; \
|
|
s;%%X11BASE%%;${X11BASE};g' \
|
|
${WRKSRC}/Makefile
|
|
@${MV} ${WRKSRC}/gl_src.c ${WRKSRC}/gl_src.c.bogus
|
|
pre-patch:
|
|
@${REINPLACE_CMD} -e 's/MAXOBV=100000/MAXOBV=${MAXOBV}/' \
|
|
${WRKSRC}/DPCOPA.INC
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/dpsnapsh.pdf \
|
|
${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|