1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/graphics/rayshade/Makefile
Satoshi Asami 8c3d3a3494 Hm...seems the broken-ness is confined to 4-current now.
sampling.c: In function `UnitCirclePoint':
sampling.c:116: syntax error before `/'
sampling.c:116: warning: integer overflow in expression
sampling.c:116: syntax error before `)'
sampling.c:118: syntax error before `/'
sampling.c:118: warning: integer overflow in expression
sampling.c:118: syntax error before `)'
sampling.c:122: syntax error before `/'
sampling.c:122: warning: integer overflow in expression
sampling.c:122: syntax error before `)'
sampling.c:123: syntax error before `/'
sampling.c:123: warning: integer overflow in expression
sampling.c:123: syntax error before `)'
*** Error code 1
1999-09-21 07:22:40 +00:00

47 lines
1.3 KiB
Makefile

# New ports collection makefile for: rayshade
# Version required: 4.0
# Date created: 21 January 1998
# Whom: giffunip@asme.org
#
# $FreeBSD$
#
DISTNAME= rayshade.4.0
PKGNAME= rayshade-4.0
CATEGORIES= graphics
MASTER_SITES= ftp://graphics.stanford.edu/pub/rayshade/ \
ftp://ftp.princeton.edu/pub/Graphics/rayshade.4.0/
EXTRACT_SUFX= .tar.Z
MAINTAINER= ports@FreeBSD.org
BUILD_DEPENDS= $(LOCALBASE)/lib/librle.a:${PORTSDIR}/graphics/urt
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 400000
BROKEN= build
.endif
HAS_CONFIGURE= yes
CONFIGURE_SCRIPT= Configure
CONFIGURE_ARGS+= < ${WRKDIR}/config.ans
ALL_TARGET=
pre-configure:
$(SED) -e "s,@CFLAGS@,${CFLAGS}," < ${FILESDIR}/config.ans > \
${WRKDIR}/config.ans
do-install:
$(INSTALL_PROGRAM) $(WRKSRC)/rayshade/rayshade $(PREFIX)/bin
# THIS ARE NOT USED BY ANY PORT
# $(INSTALL_DATA) $(WRKSRC)/libray/libray.a $(PREFIX)/lib
# $(INSTALL_DATA) $(WRKSRC)/libshade/libshade.a $(PREFIX)/lib
$(MKDIR) $(PREFIX)/share/doc/rayshade
$(INSTALL_DATA) $(WRKSRC)/Doc/Guide/* $(PREFIX)/share/doc/rayshade
$(INSTALL_DATA) $(WRKSRC)/Doc/quickref.txt $(PREFIX)/share/doc/rayshade
$(MKDIR) $(PREFIX)/share/examples/rayshade
$(INSTALL_DATA) $(WRKSRC)/Examples/* $(PREFIX)/share/examples/rayshade
.include <bsd.port.post.mk>