pkgsrc/graphics/blender/Makefile
jschauma 7beac37ecc Update to 2.31a as blender-2.31.0.1. Changes to 2.31:
- 3D Window: while moving Camera Object in camera view, the constraint
line was drawn incorrect.
- 3D Window: the Transform Panel displayed wrong when in FaceSelect or
VertexPaint mode.
- 3D Window: in the MKEY "move to layer" menu, the numeric hotkeys were
mixed up
- Ipo Window: in newly created Ipo Windows the Transform Panel was drawn
with zero size
- Rendering: autosmooth was always on when Material option "Radio" was
set... should only be done when render option "Radio" was set too.
- OSX: restored CTRL+F12 or ALT+F12 for rendering when your system ejects
CDROM with F12 (ahem!).
- OSX: fixed bug in using texture and sequence plugins (thanks Bischofftep!).
In the distro are sample compiled plugins (.so) included.
- MS Windows: the File Browse window displayed wrong path/filename on
attempt to read a non-existing directory.
- Added for the manual designers: when you want to make screenshot with a
pulldown or popup menu in it, press (alt+)ctrl+f3 while the menu is
visible, then ESC, and press (alt+)ctrl+f3 again. Note the (alt+) is
for OSX users only.
2004-01-10 20:25:10 +00:00

73 lines
1.9 KiB
Makefile

# $NetBSD: Makefile,v 1.28 2004/01/10 20:25:10 jschauma Exp $
#
DISTNAME= blender-2.31a
PKGNAME= blender-2.31.0.1
CATEGORIES= graphics
MASTER_SITES= ftp://ftp.cs.umn.edu/pub/blender.org/source/ \
http://download.blender.org/source/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= jschauma@NetBSD.org
HOMEPAGE= http://www.blender.org/
COMMENT= Fully integrated 3D graphics creation suite
USE_X11= YES
HAS_CONFIGURE= YES
USE_GMAKE= YES
USE_BUILDLINK2= YES
USE_LIBTOOL= YES
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
LDFLAGS+= -lcrypto
CONFIGURE_ENV+= PYTHON=${PYTHONBIN}
CONFIGURE_ARGS+= --prefix=${PREFIX} --without-ode
.include "../../mk/bsd.prefs.mk"
BUILD_DEFS+= BLENDER_USE_OGG BLENDER_USE_VORBIS
BUILD_DEFS+= BLENDER_USE_OPENAL BLENDER_USE_EXPPYTHON
BUILD_DEFS+= BLENDER_INSTALL_DOC
.if defined(BLENDER_INSTALL_DOC)
DEPENDS+= blender-doc:../../graphics/blender-doc
.endif
.if defined(BLENDER_USE_OGG)
CONFIGURE_ARGS+= --with-ogg=${PREFIX}
.include "../../audio/libogg/buildlink2.mk"
.else
CONFIGURE_ARGS+= --without-ogg --disable-oggtest
.endif
.if defined(BLENDER_USE_VORBIS)
CONFIGURE_ARGS+= --with-vorbis=${PREFIX}
.include "../../audio/libvorbis/buildlink2.mk"
.else
CONFIGURE_ARGS+= --without-vorbis --disable-vorbistest
.endif
.if defined(BLENDER_USE_OPENAL)
CONFIGURE_ARGS+= --enable-openal
.include "../../audio/openal/buildlink2.mk"
.endif
.if defined(BLENDER_USE_EXPPYTHON)
CONFIGURE_ARGS+= --enable-exppython
.else
CONFIGURE_ARGS+= --disable-exppython
.endif
.include "../../audio/openal/buildlink2.mk"
.include "../../devel/SDL/buildlink2.mk"
.include "../../devel/libtool/buildlink2.mk"
.include "../../devel/zlib/buildlink2.mk"
.include "../../graphics/Mesa/buildlink2.mk"
.include "../../graphics/jpeg/buildlink2.mk"
.include "../../graphics/png/buildlink2.mk"
.include "../../security/openssl/buildlink2.mk"
.include "../../lang/python/pyversion.mk"
.include "../../mk/bsd.pkg.mk"