mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
011dce24ce
- Add an entry to UPDATING
47 lines
847 B
Makefile
47 lines
847 B
Makefile
# ex:ts=8
|
|
# Ports collection Makefile for: libctl
|
|
# Date created: Apr 4, 2003
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libctl
|
|
PORTVERSION= 3.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= science math
|
|
MASTER_SITES= http://ab-initio.mit.edu/libctl/
|
|
|
|
MAINTAINER= devel@stasyan.com
|
|
COMMENT= Control Language Library
|
|
|
|
LIB_DEPENDS= guile.21:${PORTSDIR}/lang/guile
|
|
|
|
USE_AUTOTOOLS= libtool
|
|
USE_FORTRAN= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
MAN1= gen-ctl-io.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "i386" || ${ARCH} == "sparc64"
|
|
BROKEN= Does not compile on i386 or sparc64
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 700000
|
|
USE_FORTRAN= g77
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${CP} -R ${WRKSRC}/doc/ ${DOCSDIR}
|
|
.endif
|
|
.if !defined(NOPORTEXAMPLES)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${CP} -R ${WRKSRC}/examples/ ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|