mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
38 lines
773 B
Makefile
38 lines
773 B
Makefile
# ex:ts=8
|
|
# Ports collection Makefile for: libctl
|
|
# Date created: Apr 4, 2003
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libctl
|
|
PORTVERSION= 3.0.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= science math
|
|
MASTER_SITES= http://ab-initio.mit.edu/libctl/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Control Language Library
|
|
|
|
LIB_DEPENDS= guile.15:${PORTSDIR}/lang/guile
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV+= FC="${FC}" F77="${F77}" FFLAGS="${FFLAGS}"
|
|
WANT_FORTRAN=yes #dummy but future use
|
|
BUILD_DEPENDS+= gfortran42:${PORTSDIR}/lang/gcc42
|
|
FC= gfortran42
|
|
F77= gfortran42
|
|
|
|
MAN1= gen-ctl-io.1
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
${CP} -R ${WRKSRC}/doc/ ${DOCSDIR}
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${CP} -R ${WRKSRC}/examples/ ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|