mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
# New ports collection makefile for: robot
|
|
# Date created: 11 October 2003
|
|
# Whom: Pedro F. Giffuni <giffunip@asme.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= robot
|
|
PORTVERSION= 4.93.89
|
|
PORTREVISION= 7
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ftp://lheaftp.gsfc.nasa.gov/pub/corbet/robot/
|
|
DISTNAME= robot-beta
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Graph plotting and data analysis program using OpenLook
|
|
|
|
BUILD_DEPENDS= fsplit:${PORTSDIR}/devel/fortran-utils \
|
|
imake:${PORTSDIR}/devel/imake
|
|
LIB_DEPENDS= xview.3:${PORTSDIR}/x11-toolkits/xview
|
|
|
|
USE_GMAKE= yes
|
|
MAKE_ENV+= OPENWINHOME=${LOCALBASE}
|
|
WEB_BROWSER?= firefox
|
|
USE_FORTRAN= yes
|
|
FFLAGS+= -ffixed-line-length-80
|
|
MAKE_ENV+= FFLAGS="${FFLAGS}"
|
|
|
|
MANL= robot.l
|
|
|
|
pre-build:
|
|
@${REINPLACE_CMD} -e 's+netscape+${WEB_BROWSER}+ ' \
|
|
${WRKSRC}/Robot/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/Robot/robot ${PREFIX}/bin
|
|
@${MKDIR} ${PREFIX}/lib/help
|
|
${INSTALL_DATA} ${WRKSRC}/Docs/robot.info ${PREFIX}/lib/help
|
|
${INSTALL_MAN} ${WRKSRC}/Docs/robot.man ${PREFIX}/man/manl/robot.l
|
|
.ifndef NOPORTDOCS
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/Docs/RobotManual.ps ${DOCSDIR}
|
|
@${GZIP_CMD} ${DOCSDIR}/RobotManual.ps
|
|
@${REINPLACE_CMD} -e 's+/usr/bin+${PREFIX}/bin+ ' \
|
|
${WRKSRC}/Demos/*.rob
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/Demos/*.rob ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|