mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
15945f8122
to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit)
67 lines
2.1 KiB
Makefile
67 lines
2.1 KiB
Makefile
# Created by: Shaun Amott <shaun@inerd.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= raster3d
|
|
PORTVERSION= 3.0.2
|
|
PORTREVISION= 6
|
|
CATEGORIES= graphics biology
|
|
MASTER_SITES= http://skuld.bmsc.washington.edu/${PORTNAME}/
|
|
DISTNAME= Raster3D_${PORTVERSION:R}-${PORTVERSION:E}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Set of tools for generating raster images of proteins and molecules
|
|
|
|
LICENSE= ART20
|
|
|
|
LIB_DEPENDS= libgd.so:${PORTSDIR}/graphics/gd \
|
|
libtiff.so:${PORTSDIR}/graphics/tiff
|
|
|
|
OPTIONS_DEFINE= IMAGEMAGICK DOCS EXAMPLES
|
|
OPTIONS_DEFAULT=IMAGEMAGICK
|
|
|
|
USES= fortran
|
|
MAKE_ARGS= INCDIRS="-I${LOCALBASE}/include" LIBDIRS="-L${LOCALBASE}/lib" \
|
|
CC="${CC}" CFLAGS="${CFLAGS}" FC="${FC}" FFLAGS="${FFLAGS}" \
|
|
RM="${RM}" OS="${OPSYS}"
|
|
ALL_TARGET= linux all
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
CFLAGS+= -DLINUX -DNETWORKBYTEORDER -Dgfortran
|
|
FFLAGS+= -fno-range-check -ffixed-line-length-132
|
|
|
|
IMAGEMAGICK_RUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick
|
|
OPTIONS_SUB= yes
|
|
|
|
BROKEN_sparc64= Does not compile with GCC 4.2: internal compiler error
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-install:
|
|
.for file in avs2ps balls normal3d rastep render ribbon rings3d rods
|
|
cd ${WRKSRC} && ${INSTALL_PROGRAM} ${file} ${STAGEDIR}${PREFIX}/bin
|
|
.endfor
|
|
.for file in worms
|
|
cd ${WRKSRC} && ${INSTALL_SCRIPT} ${file} ${STAGEDIR}${PREFIX}/bin
|
|
.endfor
|
|
.if ${PORT_OPTIONS:MIMAGEMAGICK}
|
|
.for file in label3d stereo3d
|
|
cd ${WRKSRC} && ${INSTALL_SCRIPT} ${file} ${STAGEDIR}${PREFIX}/bin
|
|
.endfor
|
|
.endif
|
|
cd ${WRKSRC}/doc && ${INSTALL_MAN} *.l ${STAGEDIR}${MANLPREFIX}/man/manl
|
|
${MKDIR} ${STAGEDIR}${DATADIR}/materials
|
|
cd ${WRKSRC}/materials && ${INSTALL_DATA} * ${STAGEDIR}${DATADIR}/materials
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/doc && ${INSTALL_DATA} R3D_manual.pdf ${STAGEDIR}${DOCSDIR}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}/html
|
|
cd ${WRKSRC}/html && ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR}/html
|
|
.endif
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
|
|
${RM} -rf ${STAGEDIR}${EXAMPLESDIR}/msms/CVS
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|