Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 May 2008 15:14:36 +0200 (CEST)
From:      Marcus von Appen <mva@sysfault.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        dyeske@gmail.com
Subject:   ports/123395: [PATCH] graphics/blender: add script installation
Message-ID:  <200805041314.m44DEa9I051485@medusa.sysfault.org>
Resent-Message-ID: <200805041320.m44DK25m026736@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         123395
>Category:       ports
>Synopsis:       [PATCH] graphics/blender: add script installation
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sun May 04 13:20:02 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     Marcus von Appen
>Release:        FreeBSD 7.0-STABLE i386
>Organization:
>Environment:
System: FreeBSD medusa.sysfault.org 7.0-STABLE FreeBSD 7.0-STABLE #0: Thu Apr 17 19:16:56 CEST 2008
>Description:

The attached patch intalls the scripts found under release/ within the
source package and links them (through the blender wrapper script) to
the user specific home directory on the first start to be automatically
available.

For the maintainer and commiter: 
The user-def.mk was updated to contain the necessary export variables
only. It still is not perfect and esepcially the SDL export will need
improvements to make use of devel/sdl12, I guess.

Added file(s):
- files/blender.in
- pkg-plist

Port maintainer (dyeske@gmail.com) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- blender-2.45_2.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/graphics/blender/Makefile /usr/ports/graphics/blender.new/Makefile
--- /usr/ports/graphics/blender/Makefile	2008-04-19 19:49:57.000000000 +0200
+++ /usr/ports/graphics/blender.new/Makefile	2008-05-04 14:12:31.000000000 +0200
@@ -6,7 +6,7 @@
 
 PORTNAME=	blender
 PORTVERSION=	2.45
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics games
 MASTER_SITES=	http://download.blender.org/source/ \
 		http://mirror.cs.umn.edu/blender.org/source/	\
@@ -24,7 +24,6 @@
 		openal.0:${PORTSDIR}/audio/openal \
 		avutil.1:${PORTSDIR}/multimedia/ffmpeg
 
-PLIST_FILES=	bin/blender
 USE_XORG=	x11 xext xmu xi
 USE_GETTEXT=	yes
 USE_PYTHON=	2.5+
@@ -32,6 +31,8 @@
 USE_GL=	gl glu
 USE_GMAKE=	yes
 
+SUB_FILES=	blender
+
 PORTDOCS=	README bf-members.txt blender-scons.txt  python-dev-guide.txt \
 		blender-cmake.txt blender-guardedalloc.txt \
 		interface_API.txt blender-scons-dev.txt oldbugs.txt
@@ -69,8 +70,7 @@
 
 pre-configure:
 	@${REINPLACE_CMD} -e \
-		's|sdl11-config|${SDL_CONFIG}|; \
-		s|2.3|${PYTHON_VER}|' \
+		's|2.4|${PYTHON_VER}|' \
 		${WRKSRC}/source/nan_definitions.mk
 
 	@${REINPLACE_CMD} -e \
@@ -90,8 +90,17 @@
 	@${REINPLACE_CMD} -e \
 		's|-FIX_NAN_WARN||' \
 		${WRKSRC}/source/nan_warn.mk
+
 do-install:
-	@${INSTALL_PROGRAM} ${WRKSRC}/obj/freebsd/bin/blender ${PREFIX}/bin
+	@${INSTALL_SCRIPT} ${WRKDIR}/blender ${PREFIX}/bin/blender
+	@${INSTALL_PROGRAM} ${WRKSRC}/obj/freebsd/bin/blender ${PREFIX}/bin/blender-bin
+
+	@${MKDIR} ${DATADIR}
+	${CP} -R ${WRKSRC}/release/scripts ${DATADIR}
+	${INSTALL_DATA} ${WRKSRC}/bin/.blender/.Blanguages ${DATADIR}
+	${INSTALL_DATA} ${WRKSRC}/bin/.blender/.bfont.ttf ${DATADIR}
+	${CP} -R ${WRKSRC}/bin/.blender/locale ${DATADIR}
+
 .if !defined(WITH_NOPORTDOCS)
 	@${CP} -p ${WRKSRC}/README ${WRKSRC}/doc/
 	@${INSTALL} -d ${DOCSDIR}/
diff -ruN --exclude=CVS /usr/ports/graphics/blender/files/blender.in /usr/ports/graphics/blender.new/files/blender.in
--- /usr/ports/graphics/blender/files/blender.in	1970-01-01 01:00:00.000000000 +0100
+++ /usr/ports/graphics/blender.new/files/blender.in	2008-05-04 14:05:13.000000000 +0200
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+if [ ! -d ${HOME}/.blender ]; then
+	echo "Creating links in home directory..."
+	ln -s %%PREFIX%%/share/blender ${HOME}/.blender
+fi
+exec %%PREFIX%%/bin/blender-bin "$@"
+
diff -ruN --exclude=CVS /usr/ports/graphics/blender/files/patch-user-def.mk /usr/ports/graphics/blender.new/files/patch-user-def.mk
--- /usr/ports/graphics/blender/files/patch-user-def.mk	2007-10-29 22:11:28.000000000 +0100
+++ /usr/ports/graphics/blender.new/files/patch-user-def.mk	2008-05-04 12:23:56.000000000 +0200
@@ -1,6 +1,6 @@
---- ./user-def.mk.orig	Thu Oct  4 22:55:33 2007
-+++ ./user-def.mk	Thu Oct  4 22:56:26 2007
-@@ -0,0 +1,74 @@
+--- user-def.mk.orig	2008-05-04 12:21:22.000000000 +0200
++++ user-def.mk	2008-05-04 12:23:42.000000000 +0200
+@@ -0,0 +1,33 @@
 +export NAN_DEBUG=-g
 +
 +export TYPE := $(shell echo `uname -s`)
@@ -8,70 +8,29 @@
 +# Allow 64bit compiles.
 +export NAN_YESIAMSTUPID=true
 +
-+ifeq ($(TYPE), SunOS)
-+	export NAN_PYTHON=/usr/local
-+	export NAN_PYTHON_VERSION=2.5
-+	export NAN_OPENAL=/export/scratch/blender/src/openal/SunOS5.8
-+	export NAN_JPEG=/usr/local
-+	export NAN_PNG=/usr/local
-+	export NAN_SDL=/usr/local
-+	export NAN_SDLLIBS ?= $(shell $(NAN_SDL)/bin/sdl-config --libs) -lSDL_mixer
-+	export NAN_OPENEXR=/usr/local
-+        export NAN_OPENEXR_LIBS ?= $(NAN_OPENEXR)/lib/libIlmImf.a \
-+		$(NAN_OPENEXR)/lib/libIlmThread.a \
-+		$(NAN_OPENEXR)/lib/libHalf.a \
-+		$(NAN_OPENEXR)/lib/libIex.a
-+
-+	export NAN_ZLIB=/usr/local
-+	export NAN_FREETYPE=/usr/local
-+	export NAN_MOZILLA_INC=/usr/local/include/mozilla-1.0.1/
-+	export NAN_MOZILLA_LIB=/usr/local/lib/mozilla-1.0.1/
-+	export NAN_NSPR=/export/scratch/blender/SunOS5.8
-+	export NAN_GETTEXT=/opt/gnu
-+	export WITH_FREETYPE2=true
-+	export INTERNATIONAL=true
-+	export EXPYTHON=true
-+	export WITH_BF_GAMEPLAYER=true
-+	export NAN_NO_PLUGIN=true
-+#	export NAN_NO_KETSJI=true
-+	export WITH_FFMPEG=true
-+#	export NAN_FFMPEG=/export/scratch/blender/src/lib/solaris-2.8-sparc/ffmpeg
-+	export NAN_ICONV_LIBS=-L/opt/gnu/lib -R/opt/gnu/lib -liconv
-+	export WITH_ICONV=false
-+else
-+	export WITH_ICONV=false
-+#	export WITH_FFMPEG=true
-+	export WITH_FFMPEG=false
-+	export NAN_PYTHON=/usr/local
-+	export NAN_PYTHON_VERSION=2.5
-+	#export NAN_OPENAL=/usr
-+	export NAN_FMOD=/usr/local
-+	export NAN_JPEG=/usr/local
-+	export NAN_PNG=/usr/local
-+	export WITH_OPENEXR=true
-+#	export NAN_OPENEXR=/usr/local
-+	export NAN_OPENEXR=/usr/local
-+        export NAN_OPENEXR_LIBS ?= $(NAN_OPENEXR)/lib/libIlmImf.a \
-+		$(NAN_OPENEXR)/lib/libHalf.a \
-+		$(NAN_OPENEXR)/lib/libIex.a
-+
-+#		$(NAN_OPENEXR)/lib/libIlmThread.a \
-+
-+	export NAN_SDL=/export/scratch/blender/src/lib/linux-glibc2.2.5-i386/sdl
-+	export NAN_ODE=/export/scratch/blender/src/blender/extern/ode/dist
-+	export NAN_ZLIB=/usr/local
-+#	export NAN_FREETYPE=/usr
-+	export NAN_MESA=/export/scratch/crap/Mesa-6.2.1
-+	export NAN_MOZILLA_INC=/usr/include/mozilla/
-+	export NAN_MOZILLA_LIB=/usr/lib/mozilla/
-+	# I think it only needs includes so should be alright...
-+	export NAN_NSPR=/export/scratch/blender/src/nspr-4.2.2/mozilla/nsprpub/dist
-+
-+	export WITH_FREETYPE2=true
-+	export INTERNATIONAL=true
-+	export NAN_NO_STATIC = true
-+	export NAN_NO_PLUGIN=true
-+endif
++export WITH_ICONV=false
++export WITH_FFMPEG=false
++export NAN_PYTHON=/usr/local
++export NAN_PYTHON_VERSION=2.5
++#export NAN_OPENAL=/usr
++export NAN_FMOD=/usr/local
++export NAN_JPEG=/usr/local
++export NAN_PNG=/usr/local
++export WITH_OPENEXR=true
++export NAN_OPENEXR=/usr/local
++export NAN_OPENEXR_LIBS ?= $(NAN_OPENEXR)/lib/libIlmImf.a \
++	$(NAN_OPENEXR)/lib/libHalf.a \
++	$(NAN_OPENEXR)/lib/libIex.a
++#export NAN_SDL=/export/scratch/blender/src/lib/linux-glibc2.2.5-i386/sdl
++#export NAN_ODE=/export/scratch/blender/src/blender/extern/ode/dist
++export NAN_ZLIB=/usr/local
++export NAN_MESA=/export/scratch/crap/Mesa-6.2.1
++# I think it only needs includes so should be alright...
++export NAN_NSPR=/export/scratch/blender/src/nspr-4.2.2/mozilla/nsprpub/dist
++export WITH_FREETYPE2=true
++export INTERNATIONAL=true
++export NAN_NO_STATIC = true
++export NAN_NO_PLUGIN=true
 +
 +export WITH_VERSE=true
 +export WITH_BULLET=true
diff -ruN --exclude=CVS /usr/ports/graphics/blender/pkg-plist /usr/ports/graphics/blender.new/pkg-plist
--- /usr/ports/graphics/blender/pkg-plist	1970-01-01 01:00:00.000000000 +0100
+++ /usr/ports/graphics/blender.new/pkg-plist	2008-05-04 14:39:51.000000000 +0200
@@ -0,0 +1,224 @@
+bin/blender
+bin/blender-bin
+%%DATADIR%%/.bfont.ttf
+%%DATADIR%%/.Blanguages
+%%DATADIR%%/locale/nl/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/pt_br/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/ja/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/cs/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/fr/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/pl/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/zh_cn/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/sr@Latn/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/ar/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/bg/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/ru/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/de/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/es/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/it/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/hr/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/sr/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/uk/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/fi/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/ro/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/hr_HR/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/ca/LC_MESSAGES/blender.mo
+%%DATADIR%%/locale/sv/LC_MESSAGES/blender.mo
+%%DATADIR%%/scripts/bpydata/config/readme.txt
+%%DATADIR%%/scripts/bpydata/readme.txt
+%%DATADIR%%/scripts/bpydata/KUlang.txt
+%%DATADIR%%/scripts/bpymodules/colladaImEx/cutils.py
+%%DATADIR%%/scripts/bpymodules/colladaImEx/__init__.py
+%%DATADIR%%/scripts/bpymodules/colladaImEx/xmlUtils.py
+%%DATADIR%%/scripts/bpymodules/colladaImEx/collada.py
+%%DATADIR%%/scripts/bpymodules/colladaImEx/logo.png
+%%DATADIR%%/scripts/bpymodules/colladaImEx/cstartup.py
+%%DATADIR%%/scripts/bpymodules/colladaImEx/helperObjects.py
+%%DATADIR%%/scripts/bpymodules/colladaImEx/translator.py
+%%DATADIR%%/scripts/bpymodules/BPyCurve.py
+%%DATADIR%%/scripts/bpymodules/defaultdoodads.py
+%%DATADIR%%/scripts/bpymodules/meshtools.py
+%%DATADIR%%/scripts/bpymodules/BPyWindow.py
+%%DATADIR%%/scripts/bpymodules/BPyMesh_redux.py
+%%DATADIR%%/scripts/bpymodules/BPyRender.py
+%%DATADIR%%/scripts/bpymodules/dxfReader.py
+%%DATADIR%%/scripts/bpymodules/BPyMessages.py
+%%DATADIR%%/scripts/bpymodules/BPyObject.py
+%%DATADIR%%/scripts/bpymodules/dxfColorMap.py
+%%DATADIR%%/scripts/bpymodules/eps2obj.py
+%%DATADIR%%/scripts/bpymodules/gimp2obj.py
+%%DATADIR%%/scripts/bpymodules/BPyBlender.py
+%%DATADIR%%/scripts/bpymodules/BPyMesh.py
+%%DATADIR%%/scripts/bpymodules/BPyMesh_octree.py
+%%DATADIR%%/scripts/bpymodules/BPySys.py
+%%DATADIR%%/scripts/bpymodules/mesh_gradient.py
+%%DATADIR%%/scripts/bpymodules/BPyAddMesh.py
+%%DATADIR%%/scripts/bpymodules/BPyNMesh.py
+%%DATADIR%%/scripts/bpymodules/ai2obj.py
+%%DATADIR%%/scripts/bpymodules/BPyRegistry.py
+%%DATADIR%%/scripts/bpymodules/BPyImage.py
+%%DATADIR%%/scripts/bpymodules/BPyArmature.py
+%%DATADIR%%/scripts/bpymodules/BPyMathutils.py
+%%DATADIR%%/scripts/bpymodules/svg2obj.py
+%%DATADIR%%/scripts/blenderLipSynchro.py
+%%DATADIR%%/scripts/slp_import.py
+%%DATADIR%%/scripts/bvh_import.py
+%%DATADIR%%/scripts/3ds_import.py
+%%DATADIR%%/scripts/uv_from_adjacent.py
+%%DATADIR%%/scripts/object_batch_name_edit.py
+%%DATADIR%%/scripts/vertexpaint_gradient.py
+%%DATADIR%%/scripts/mesh_solidify.py
+%%DATADIR%%/scripts/widgetwizard.py
+%%DATADIR%%/scripts/vertexpaint_selfshadow_ao.py
+%%DATADIR%%/scripts/uv_seams_from_islands.py
+%%DATADIR%%/scripts/vrml97_export.py
+%%DATADIR%%/scripts/sysinfo.py
+%%DATADIR%%/scripts/weightpaint_envelope_assign.py
+%%DATADIR%%/scripts/ac3d_import.py
+%%DATADIR%%/scripts/help_manual.py
+%%DATADIR%%/scripts/uvcalc_follow_active_coords.py
+%%DATADIR%%/scripts/faceselect_same_weights.py
+%%DATADIR%%/scripts/mesh_poly_reduce.py
+%%DATADIR%%/scripts/collada_import.py
+%%DATADIR%%/scripts/mesh_skin.py
+%%DATADIR%%/scripts/weightpaint_copy.py
+%%DATADIR%%/scripts/help_getting_started.py
+%%DATADIR%%/scripts/image_billboard.py
+%%DATADIR%%/scripts/3ds_export.py
+%%DATADIR%%/scripts/export_map.py
+%%DATADIR%%/scripts/help_release_notes.py
+%%DATADIR%%/scripts/collada_export.py
+%%DATADIR%%/scripts/export-iv-0.1.py
+%%DATADIR%%/scripts/object_random_loc_sz_rot.py
+%%DATADIR%%/scripts/mesh_cleanup.py
+%%DATADIR%%/scripts/ac3d_export.py
+%%DATADIR%%/scripts/save_theme.py
+%%DATADIR%%/scripts/object_sel2dupgroup.py
+%%DATADIR%%/scripts/help_web_blender.py
+%%DATADIR%%/scripts/lightwave_import.py
+%%DATADIR%%/scripts/image_find_paths.py
+%%DATADIR%%/scripts/mesh_wire.py
+%%DATADIR%%/scripts/mesh_boneweight_copy.py
+%%DATADIR%%/scripts/object_drop.py
+%%DATADIR%%/scripts/weightpaint_gradient.py
+%%DATADIR%%/scripts/DirectX8Exporter.py
+%%DATADIR%%/scripts/ply_import.py
+%%DATADIR%%/scripts/object_apply_def.py
+%%DATADIR%%/scripts/vertexpaint_from_material.py
+%%DATADIR%%/scripts/import_mdd.py
+%%DATADIR%%/scripts/export_obj.py
+%%DATADIR%%/scripts/scripttemplate_mesh_edit.py
+%%DATADIR%%/scripts/help_web_eshop.py
+%%DATADIR%%/scripts/export_mdd.py
+%%DATADIR%%/scripts/DirectX8Importer.py
+%%DATADIR%%/scripts/object_cookie_cutter.py
+%%DATADIR%%/scripts/IDPropBrowser.py
+%%DATADIR%%/scripts/uvcalc_smart_project.py
+%%DATADIR%%/scripts/lightwave_export.py
+%%DATADIR%%/scripts/envelope_symmetry.py
+%%DATADIR%%/scripts/bevel_center.py
+%%DATADIR%%/scripts/weightpaint_clean.py
+%%DATADIR%%/scripts/xsi_export.py
+%%DATADIR%%/scripts/help_web_usercomm.py
+%%DATADIR%%/scripts/import_obj.py
+%%DATADIR%%/scripts/uvcopy.py
+%%DATADIR%%/scripts/rvk1_torvk2.py
+%%DATADIR%%/scripts/md2_import.py
+%%DATADIR%%/scripts/image_auto_layout.py
+%%DATADIR%%/scripts/camera_changer.py
+%%DATADIR%%/scripts/flt_export.py
+%%DATADIR%%/scripts/export_lightwave_motion.py
+%%DATADIR%%/scripts/export_fbx.py
+%%DATADIR%%/scripts/uvcalc_quad_clickproj.py
+%%DATADIR%%/scripts/ply_export.py
+%%DATADIR%%/scripts/Axiscopy.py
+%%DATADIR%%/scripts/raw_import.py
+%%DATADIR%%/scripts/off_export.py
+%%DATADIR%%/scripts/xfig_export.py
+%%DATADIR%%/scripts/object_find.py
+%%DATADIR%%/scripts/weightpaint_grow_shrink.py
+%%DATADIR%%/scripts/console.py
+%%DATADIR%%/scripts/uvcalc_lightmap.py
+%%DATADIR%%/scripts/animation_trajectory.py
+%%DATADIR%%/scripts/discombobulator.py
+%%DATADIR%%/scripts/armature_symmetry.py
+%%DATADIR%%/scripts/raw_export.py
+%%DATADIR%%/scripts/obdatacopier.py
+%%DATADIR%%/scripts/config.py
+%%DATADIR%%/scripts/renameobjectbyblock.py
+%%DATADIR%%/scripts/help_web_devcomm.py
+%%DATADIR%%/scripts/export_cal3d.py
+%%DATADIR%%/scripts/help_browser.py
+%%DATADIR%%/scripts/colladaExport14.py
+%%DATADIR%%/scripts/uvcalc_from_adjacent.py
+%%DATADIR%%/scripts/paths_import.py
+%%DATADIR%%/scripts/off_import.py
+%%DATADIR%%/scripts/import_dxf.py
+%%DATADIR%%/scripts/mesh_unfolder.py
+%%DATADIR%%/scripts/image_edit.py
+%%DATADIR%%/scripts/help_bpy_api.py
+%%DATADIR%%/scripts/flt_import.py
+%%DATADIR%%/scripts/weightpaint_normalize.py
+%%DATADIR%%/scripts/md2_export.py
+%%DATADIR%%/scripts/unweld.py
+%%DATADIR%%/scripts/uv_export.py
+%%DATADIR%%/scripts/colladaImport14.py
+%%DATADIR%%/scripts/mesh_mirror_tool.py
+%%DATADIR%%/scripts/mesh_edges2curves.py
+%%DATADIR%%/scripts/add_mesh_torus.py
+%%DATADIR%%/scripts/hotkeys.py
+%%DATADIR%%/scripts/scripttemplate_object_edit.py
+%%DATADIR%%/scripts/flt_filewalker.py
+%%DATADIR%%/scripts/help_tutorials.py
+%%DATADIR%%/scripts/x3d_export.py
+@dirrm %%DATADIR%%/scripts/bpymodules/colladaImEx
+@dirrm %%DATADIR%%/scripts/bpymodules
+@dirrm %%DATADIR%%/scripts/bpydata/config
+@dirrm %%DATADIR%%/scripts/bpydata
+@dirrm %%DATADIR%%/scripts
+@dirrm %%DATADIR%%/locale/zh_cn/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/zh_cn
+@dirrm %%DATADIR%%/locale/uk/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/uk
+@dirrm %%DATADIR%%/locale/sv/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/sv
+@dirrm %%DATADIR%%/locale/sr@Latn/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/sr@Latn
+@dirrm %%DATADIR%%/locale/sr/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/sr
+@dirrm %%DATADIR%%/locale/ru/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/ru
+@dirrm %%DATADIR%%/locale/ro/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/ro
+@dirrm %%DATADIR%%/locale/pt_br/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/pt_br
+@dirrm %%DATADIR%%/locale/pl/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/pl
+@dirrm %%DATADIR%%/locale/nl/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/nl
+@dirrm %%DATADIR%%/locale/ja/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/ja
+@dirrm %%DATADIR%%/locale/it/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/it
+@dirrm %%DATADIR%%/locale/hr_HR/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/hr_HR
+@dirrm %%DATADIR%%/locale/hr/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/hr
+@dirrm %%DATADIR%%/locale/fr/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/fr
+@dirrm %%DATADIR%%/locale/fi/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/fi
+@dirrm %%DATADIR%%/locale/es/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/es
+@dirrm %%DATADIR%%/locale/de/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/de
+@dirrm %%DATADIR%%/locale/cs/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/cs
+@dirrm %%DATADIR%%/locale/ca/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/ca
+@dirrm %%DATADIR%%/locale/bg/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/bg
+@dirrm %%DATADIR%%/locale/ar/LC_MESSAGES
+@dirrm %%DATADIR%%/locale/ar
+@dirrm %%DATADIR%%/locale
+@dirrm %%DATADIR%%
--- blender-2.45_2.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200805041314.m44DEa9I051485>