diff options
author | stas <stas@FreeBSD.org> | 2006-09-20 11:21:59 +0000 |
---|---|---|
committer | stas <stas@FreeBSD.org> | 2006-09-20 11:21:59 +0000 |
commit | 690719e4d56669840ac4b9264f949634ed10d1c1 (patch) | |
tree | f8a62d437d458241263339bd8d7a8582056207da /graphics/blender-devel | |
parent | 5cbdf409c7db9b9d115b500f9084c97595f61719 (diff) | |
download | FreeBSD-ports-690719e4d56669840ac4b9264f949634ed10d1c1.zip FreeBSD-ports-690719e4d56669840ac4b9264f949634ed10d1c1.tar.gz |
- Update devel/sdl12 to version 1.2.11. Now we employ stock SDL directory
structure (i.e. include/SDL for includes and sdl-config for configuration
binary)
- Update graphics/sdl_ttf to version 2.0.8
- Update graphics/sdl_image to version 1.2.5
- Update audio/sdl_mixer to version 1.2.7
- Update net/sdl_net to version 1.2.6
- Update Mk/bsd.sdl.mk accordingly
- Fix dependent ports to fit the new directory structure and avoid several
API breakages
- Bump up portrevisions for all dependent ports to allow them to be upgraded
by portupgrade/portmaster etc tools
Approved by: kris (portmgr), sem (mentor)
Diffstat (limited to 'graphics/blender-devel')
-rw-r--r-- | graphics/blender-devel/Makefile | 1 | ||||
-rw-r--r-- | graphics/blender-devel/files/patch-SConstruct | 14 |
2 files changed, 12 insertions, 3 deletions
diff --git a/graphics/blender-devel/Makefile b/graphics/blender-devel/Makefile index fd2b318..9b8b8a7 100644 --- a/graphics/blender-devel/Makefile +++ b/graphics/blender-devel/Makefile @@ -6,6 +6,7 @@ PORTNAME= blender PORTVERSION= 2.40 +PORTREVISION= 1 CATEGORIES= graphics games MASTER_SITES= http://download.blender.org/source/ \ ftp://ftp.cs.umn.edu/pub/blender.org/source/ \ diff --git a/graphics/blender-devel/files/patch-SConstruct b/graphics/blender-devel/files/patch-SConstruct index ff4a549..13e5311 100644 --- a/graphics/blender-devel/files/patch-SConstruct +++ b/graphics/blender-devel/files/patch-SConstruct @@ -1,5 +1,5 @@ ---- SConstruct.orig Tue Dec 20 10:56:12 2005 -+++ SConstruct Fri Dec 30 16:43:44 2005 +--- SConstruct.orig Tue Dec 20 18:56:12 2005 ++++ SConstruct Tue Sep 12 17:15:19 2006 @@ -735,7 +735,7 @@ openal_libpath = ['/usr/lib'] openal_include = ['/usr/include'] @@ -9,7 +9,7 @@ print "Building for FreeBSD" use_international = 'false' use_gameengine = 'false' -@@ -773,6 +773,10 @@ +@@ -773,13 +773,17 @@ jpeg_lib = ['jpeg'] jpeg_libpath = ['/usr/local/lib'] jpeg_include = ['/usr/local/include'] @@ -20,3 +20,11 @@ # OpenGL library information opengl_lib = ['GL', 'GLU'] opengl_static = ['/usr/lib/libGL.a', '/usr/lib/libGLU.a'] + opengl_libpath = ['/usr/lib', '/usr/X11R6/lib'] + opengl_include = ['/usr/X11R6/include/'] + # SDL library information +- sdl_env.ParseConfig ('sdl11-config --cflags --libs') ++ sdl_env.ParseConfig ('sdl-config --cflags --libs') + sdl_cflags = sdl_env.Dictionary()['CCFLAGS'] + sdl_include = sdl_env.Dictionary()['CPPPATH'] + sdl_libpath = ['/usr/local/include/SDL11'] |