1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00
freebsd-ports/lang/f77/Makefile
Thierry Thomas faaf5c9d38 - Remove the ancient pkg-plist: this port does not install f2c, and it
may be confusing;

- Use PLIST_FILES;

- Switch PREFIX / LOCALBASE.
2006-07-28 21:52:44 +00:00

48 lines
1.2 KiB
Makefile

# Ports collection makefile for: f77-freebsd
# Date created: 19 JAN 1999
# Whom: Steven G. Kargl
#
# $FreeBSD$
#
PORTNAME= f77
PORTVERSION= 0.3
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= lioux
DISTNAME= f77-freebsd.0.3
MAINTAINER= ports@FreeBSD.org
COMMENT= Fortran 77 driver utility for f2c and gcc
.ifdef GNU_CPP
RUN_DEPENDS= ${LOCALBASE}/bin/f2c:${PORTSDIR}/lang/f2c
.else
RUN_DEPENDS= ${LOCALBASE}/bin/fpp:${PORTSDIR}/devel/fpp \
${LOCALBASE}/bin/f2c:${PORTSDIR}/lang/f2c
.endif
# Set F77NAME to the name of the Fortran 77 wrapper.
F77NAME= ftn77
.ifdef GNU_CPP
MAKE_ARGS= "CFLAGS= ${CFLAGS} -DPP_COMMAND='\"${CPP}\"' \
-DF2C_COMMAND='\"${LOCALBASE}/bin/f2c\"'"
.else
MAKE_ARGS= "CFLAGS= ${CFLAGS} -DSUN_FPP \
-DPP_COMMAND='\"${LOCALBASE}/bin/fpp\"' \
-DF2C_COMMAND='\"${LOCALBASE}/bin/f2c\"'"
.endif
ALL_TARGET= depend all
MAN1= ${F77NAME}.1
PLIST_FILES= bin/${F77NAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/f77 ${PREFIX}/bin/${F77NAME}
@${SED} -e 's/F77/${F77NAME}/g' -e 's/f77/${F77NAME}/g' \
${WRKSRC}/f77.1 > ${WRKSRC}/${F77NAME}.1
${INSTALL_MAN} ${WRKSRC}/${F77NAME}.1 ${PREFIX}/man/man1
.include <bsd.port.mk>