diff options
author | adam <adam@pkgsrc.org> | 2005-08-03 11:58:14 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2005-08-03 11:58:14 +0000 |
commit | 7e5037406f9e0c834774982e89a5104159ee5de0 (patch) | |
tree | 417e828ca6b945b201d96d4e84bbf13afdb3d6a7 /graphics/blender/Makefile | |
parent | 9304173a9fb4543b4d1e8e7e9904269aec9245a4 (diff) | |
download | pkgsrc-7e5037406f9e0c834774982e89a5104159ee5de0.tar.gz |
Changes 2.37a:
* Appending from files does not set the string for "last loaded file". That could give an accidentally save over of used library files.
* International Font support was broken for non-Latin fonts.
* Other fixes
Diffstat (limited to 'graphics/blender/Makefile')
-rw-r--r-- | graphics/blender/Makefile | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/graphics/blender/Makefile b/graphics/blender/Makefile index c61f27809a3..5d2f8a34c40 100644 --- a/graphics/blender/Makefile +++ b/graphics/blender/Makefile @@ -1,22 +1,19 @@ -# $NetBSD: Makefile,v 1.45 2005/06/16 06:57:57 jlam Exp $ -# +# $NetBSD: Makefile,v 1.46 2005/08/03 11:58:14 adam Exp $ -DISTNAME= blender-2.36 -PKGREVISION= 2 -CATEGORIES= graphics -MASTER_SITES= ftp://ftp.cs.umn.edu/pub/blender.org/source/ \ - http://download.blender.org/source/ +DISTNAME= blender-2.37a +CATEGORIES= graphics +MASTER_SITES= ftp://ftp.cs.umn.edu/pub/blender.org/source/ \ + http://download.blender.org/source/ -MAINTAINER= jschauma@NetBSD.org -HOMEPAGE= http://www.blender.org/ -COMMENT= Fully integrated 3D graphics creation suite +MAINTAINER= jschauma@NetBSD.org +HOMEPAGE= http://www.blender.org/ +COMMENT= Fully integrated 3D graphics creation suite BUILD_DEPENDS+= scons>=0.96:../../devel/scons WRKSRC= ${WRKDIR}/blender - +USE_LIBTOOL= yes USE_TOOLS+= gmake -USE_LIBTOOL= YES LDFLAGS+= -lcrypto @@ -39,11 +36,14 @@ do-install: ${CHMOD} +x ${WRKDIR}/blender/bin/blender ${INSTALL_PROGRAM} ${WRKSRC}/blender-bin ${PREFIX}/bin ${INSTALL_DATA_DIR} ${PREFIX}/share/blender/scripts - ${INSTALL_DATA} ${WRKSRC}/release/scripts/* ${PREFIX}/share/blender/scripts + ${INSTALL_DATA} ${WRKSRC}/release/scripts/*.py \ + ${PREFIX}/share/blender/scripts + ${INSTALL_DATA_DIR} ${PREFIX}/share/blender/scripts/bpymodules + ${INSTALL_DATA} ${WRKSRC}/release/scripts/bpymodules/*.py \ + ${PREFIX}/share/blender/scripts/bpymodules ${INSTALL} ${WRKDIR}/blender/bin/blender ${PREFIX}/bin .include "../../devel/SDL/buildlink3.mk" -.include "../../devel/zlib/buildlink3.mk" .include "../../graphics/Mesa/buildlink3.mk" .include "../../graphics/jpeg/buildlink3.mk" .include "../../graphics/png/buildlink3.mk" |