diff options
author | Matthew Hunt <mph@FreeBSD.org> | 1998-05-26 04:04:19 +0000 |
---|---|---|
committer | Matthew Hunt <mph@FreeBSD.org> | 1998-05-26 04:04:19 +0000 |
commit | 8a15221195b1b871246d70fe75a07fdf3a320012 (patch) | |
tree | beda86044bdcb3e842e6511fa6258eab0f11daac /graphics/rayshade/Makefile | |
parent | 213cd15a424e78cdbe2260280b0a20d42bff0612 (diff) | |
download | ports-8a15221195b1b871246d70fe75a07fdf3a320012.tar.gz ports-8a15221195b1b871246d70fe75a07fdf3a320012.zip |
Notes
Diffstat (limited to 'graphics/rayshade/Makefile')
-rw-r--r-- | graphics/rayshade/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/graphics/rayshade/Makefile b/graphics/rayshade/Makefile new file mode 100644 index 000000000000..15ca5be60b29 --- /dev/null +++ b/graphics/rayshade/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: rayshade +# Version required: 4.0 +# Date created: 21 January 1998 +# Whom: giffunip@asme.org +# +# $Id$ +# + +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 + +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.mk> |