27ab5137ce
implies lang/gcc44 up from lang/gcc43. Approved by: portmgr
42 lines
777 B
Makefile
42 lines
777 B
Makefile
# ex:ts=8
|
|
# Ports collection Makefile for: libctl
|
|
# Date created: Apr 4, 2003
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libctl
|
|
PORTVERSION= 3.0.3
|
|
PORTREVISION= 5
|
|
CATEGORIES= science math
|
|
MASTER_SITES= http://ab-initio.mit.edu/libctl/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Control Language Library
|
|
|
|
LIB_DEPENDS= guile.20:${PORTSDIR}/lang/guile
|
|
|
|
USE_AUTOTOOLS= libtool:22
|
|
USE_FORTRAN= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
MAN1= gen-ctl-io.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 700000
|
|
BROKEN= does not compile on FreeBSD 6.X
|
|
.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>
|