diff options
author | ryoon <ryoon@pkgsrc.org> | 2013-01-02 02:22:07 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2013-01-02 02:22:07 +0000 |
commit | 9ac912e0beb1f33b7c49a5ca681f21b5fa85d630 (patch) | |
tree | 9d465c20f33a6352bbf90058d3c361aa71f8395f /graphics/blender/Makefile | |
parent | bb6da095db2368fcaa5a8df26d22a6576079be35 (diff) | |
download | pkgsrc-9ac912e0beb1f33b7c49a5ca681f21b5fa85d630.tar.gz |
Update to 2.65a
* Fix build on NetBSD current, repoted by dholland@
Fix NetBSD version conditional and link to libexecinfo
Changelog:
* More features
* 200 over bug fixes
Diffstat (limited to 'graphics/blender/Makefile')
-rw-r--r-- | graphics/blender/Makefile | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/graphics/blender/Makefile b/graphics/blender/Makefile index f80466593bd..fda56f8253a 100644 --- a/graphics/blender/Makefile +++ b/graphics/blender/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.83 2012/12/09 17:37:44 ryoon Exp $ +# $NetBSD: Makefile,v 1.84 2013/01/02 02:22:07 ryoon Exp $ -DISTNAME= blender-2.64a -PKGREVISION= 1 +DISTNAME= blender-2.65a CATEGORIES= graphics MASTER_SITES= http://download.blender.org/source/ @@ -13,7 +12,7 @@ LICENSE= gnu-gpl-v2 USE_TOOLS+= gmake USE_LANGUAGES= c c++ -PYTHON_VERSIONS_ACCEPTED= 32 +PYTHON_VERSIONS_ACCEPTED= 33 BUILD_DEPENDS+= scons-[0-9]*:../../devel/scons @@ -24,6 +23,12 @@ FIND_PREFIX:= SCONSDIR=scons INSTALLATION_DIRS= bin share/blender +.if ${OPSYS} == "NetBSD" +.if !empty(OS_VERSION:M6.*) +LDFLAGS+= -lexecinfo +.endif +.endif + # To pass LDFLAGS to compiler/linker MYLDFLAGS= `printf "'%s'," ${LDFLAGS} | sed -e 's:,$$::'` pre-configure: @@ -64,7 +69,8 @@ do-install: cd ${WRKSRC} && \ ${SCONSDIR}/bin/scons ${SCONS_ARGS} -CHECK_INTERPRETER_SKIP= share/blender/${DISTNAME:S/blender-//:C/[a-z]//}/scripts/*.py share/blender/${DISTNAME:S/blender-//:C/[a-z]//}datafiles/*.py +CHECK_INTERPRETER_SKIP= share/blender/${DISTNAME:S/blender-//:C/[a-z]//}/scripts/*.py share/blender/${DISTNAME:S/blender-//:C/[a-z]//}datafiles/*.py \ + share/blender/2.65/python/lib/python3.3/venv/scripts/posix/pydoc post-install: ${LN} -sf ${PREFIX}/share/blender/blender \ |