mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
1cd277bdce
GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk. Part II, Bump PORTREVISIONs. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs)
41 lines
943 B
Makefile
41 lines
943 B
Makefile
# Created by: Shin'ya Murakami <murakami@ahs.scitec.kobe-u.ac.jp>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dcl
|
|
PORTVERSION= 5.4.7
|
|
PORTREVISION= 2
|
|
CATEGORIES= science graphics
|
|
MASTER_SITES= http://www.gfd-dennou.org/library/dcl/ \
|
|
http://dennou-h.gfd-dennou.org/library/dcl/ \
|
|
http://dennou-q.gfd-dennou.org/library/dcl/
|
|
|
|
MAINTAINER= murashin@gfd-dennou.org
|
|
COMMENT= Scientific graphic library for geoscience
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
USES= fortran pkgconfig
|
|
USE_XORG= x11 xext
|
|
USE_GNOME= gtk20 gdkpixbuf2
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} --with-x
|
|
|
|
PORTDOCS= CHECK CREDITS HISTORY README
|
|
PORTEXAMPLES= *
|
|
|
|
RESTRICTED= No commercial use
|
|
|
|
NO_STAGE= yes
|
|
post-install:
|
|
.if !defined(NOPORTEXAMPLES)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/demo/ && ${COPYTREE_SHARE} \* ${EXAMPLESDIR})
|
|
.endif
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|