summaryrefslogtreecommitdiffstats
path: root/graphics/blender/Makefile
diff options
context:
space:
mode:
authorolgeni <olgeni@FreeBSD.org>2001-01-29 15:13:28 +0000
committerolgeni <olgeni@FreeBSD.org>2001-01-29 15:13:28 +0000
commit4afc8e1ef49a0980c71a1fcb426dca048b17c618 (patch)
tree4dec39f4a4b555c6c8cf24e9c5d2f6068a3140f4 /graphics/blender/Makefile
parent9bc64ddd3ee2992ee77eed40b3c68d3d38d278cc (diff)
downloadFreeBSD-ports-4afc8e1ef49a0980c71a1fcb426dca048b17c618.zip
FreeBSD-ports-4afc8e1ef49a0980c71a1fcb426dca048b17c618.tar.gz
* Fix the Makefile header (blender-static -> blender)
* Add ONLY_FOR_ARCHS (i386) * Install sequence and texture plugins * Support PORTDOCS Reviewed by: will (I didn't switch to the dynamic blender version yet, because there are still some problems with Mesa library links)
Diffstat (limited to 'graphics/blender/Makefile')
-rw-r--r--graphics/blender/Makefile23
1 files changed, 17 insertions, 6 deletions
diff --git a/graphics/blender/Makefile b/graphics/blender/Makefile
index 0cfb27f..1f10795 100644
--- a/graphics/blender/Makefile
+++ b/graphics/blender/Makefile
@@ -1,4 +1,4 @@
-# New ports collection makefile for: blender-static
+# New ports collection makefile for: blender
# Date created: 14 November 2000
# Whom: Jimmy Olgeni <olgeni@uli.it>
#
@@ -13,17 +13,28 @@ DISTNAME= blender${PORTVERSION}-freebsd-3.4-i386-static
MAINTAINER= olgeni@FreeBSD.org
-NO_CDROM= "Commercial distribution prohibited"
-
USE_X_PREFIX= YES
-
-do-build:
- @echo "This is an install only port."
+NO_CDROM= "Commercial distribution prohibited"
+NO_BUILD= YES
+ONLY_FOR_ARCHS= i386
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/blender ${PREFIX}/bin
${MKDIR} ${PREFIX}/share/doc/blender
+ ${MKDIR} ${PREFIX}/lib/blender/plugins/texture \
+ ${PREFIX}/lib/blender/plugins/sequence
+.for SEQ in blur.so scatter.so showzbuf.so
+ ${INSTALL_PROGRAM} ${WRKSRC}/plugins/sequence/${SEQ} \
+ ${PREFIX}/lib/blender/plugins/sequence
+.endfor
+.for TEXT in clouds2.so tiles.so
+ ${INSTALL_PROGRAM} ${WRKSRC}/plugins/texture/${TEXT} \
+ ${PREFIX}/lib/blender/plugins/texture
+.endfor
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${PREFIX}/share/doc/blender
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/blender
${INSTALL_DATA} ${WRKSRC}/copyright.txt ${PREFIX}/share/doc/blender
+.endif
.include <bsd.port.mk>
OpenPOWER on IntegriCloud