FreeBSD Bugzilla – Attachment 153221 Details for
Bug 197852
[MAINTAINER] devel/ChipmunkPhysics: update to 7.0.0
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Port patch file
ChipmunkPhysics.patch (text/plain), 5.02 KB, created by
ports
on 2015-02-20 15:12:08 UTC
(
hide
)
Description:
Port patch file
Filename:
MIME Type:
Creator:
ports
Created:
2015-02-20 15:12:08 UTC
Size:
5.02 KB
patch
obsolete
>Index: Makefile >=================================================================== >--- Makefile (revision 379423) >+++ Makefile (working copy) >@@ -2,11 +2,11 @@ > # $FreeBSD$ > > PORTNAME= ChipmunkPhysics >-PORTVERSION= 6.2.1 >-PORTREVISION= 1 >+PORTVERSION= 7.0.0 >+#PORTREVISION= 0 > CATEGORIES= devel >-MASTER_SITES= http://chipmunk-physics.net/release/Chipmunk-6.x/ \ >- http://files.slembcke.net/chipmunk/release/Chipmunk-6.x/ \ >+MASTER_SITES= http://chipmunk-physics.net/release/Chipmunk-7.x/ \ >+ http://files.slembcke.net/chipmunk/release/Chipmunk-7.x/ \ > http://files.libsiege.org/chipmunk/ > DISTNAME= Chipmunk-${PORTVERSION} > >@@ -45,11 +45,11 @@ > > .if ${PORT_OPTIONS:MEXAMPLES} > ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} >- (cd ${WRKSRC}/Demo && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} "-name *\.c -or -name *\.h") >+ (cd ${WRKSRC}/demo && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} "-name *\.c -or -name *\.h") > .endif > > .if ${PORT_OPTIONS:MDEMOS} >- ${INSTALL_PROGRAM} ${WRKSRC}/Demo/chipmunk_demos ${STAGEDIR}${PREFIX}/bin >+ ${INSTALL_PROGRAM} ${WRKSRC}/demo/chipmunk_demos ${STAGEDIR}${PREFIX}/bin > .endif > > .include <bsd.port.mk> >Index: distinfo >=================================================================== >--- distinfo (revision 379423) >+++ distinfo (working copy) >@@ -1,2 +1,2 @@ >-SHA256 (Chipmunk-6.2.1.tgz) = 83a47da80c506541c00e1919c0dc83e5f94d13f6534ae15ad663359c171bc7aa >-SIZE (Chipmunk-6.2.1.tgz) = 1076190 >+SHA256 (Chipmunk-7.0.0.tgz) = 14ab380396a96b15951c42a2d7ca259a53ecab4e550a71857d13dcfd388a51cd >+SIZE (Chipmunk-7.0.0.tgz) = 1607961 >Index: files/patch-demo_CMakeLists.txt >=================================================================== >--- files/patch-demo_CMakeLists.txt (revision 0) >+++ files/patch-demo_CMakeLists.txt (working copy) >@@ -0,0 +1,13 @@ >+--- demo/CMakeLists.txt.orig 2015-02-20 13:46:16 UTC >++++ demo/CMakeLists.txt >+@@ -27,6 +27,10 @@ if(NOT MSVC) >+ list(APPEND chipmunk_demos_libraries m) >+ endif(NOT MSVC) >+ >++if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") >++ list(APPEND chipmunk_demos_libraries BlocksRuntime) >++endif(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD") >++ >+ file(GLOB chipmunk_demos_source_files "*.c") >+ >+ include_directories(${chipmunk_demos_include_dirs}) > >Property changes on: files/patch-demo_CMakeLists.txt >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: files/patch-include_chipmunk_chipmunk.h >=================================================================== >--- files/patch-include_chipmunk_chipmunk.h (revision 0) >+++ files/patch-include_chipmunk_chipmunk.h (working copy) >@@ -0,0 +1,11 @@ >+--- include/chipmunk/chipmunk.h.orig 2015-01-13 01:54:11 UTC >++++ include/chipmunk/chipmunk.h >+@@ -32,6 +32,8 @@ >+ #ifdef WIN32 >+ // For alloca(). >+ #include <malloc.h> >++#elif defined(__FreeBSD__) >++ /* already included in <stdlib.h> */ >+ #else >+ #include <alloca.h> >+ #endif > >Property changes on: files/patch-include_chipmunk_chipmunk.h >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: pkg-plist >=================================================================== >--- pkg-plist (revision 379423) >+++ pkg-plist (working copy) >@@ -1,27 +1,31 @@ > %%DEMOS%%bin/chipmunk_demos >+lib/libchipmunk.so.7 > lib/libchipmunk.so.%%VERSION%% > lib/libchipmunk.so > lib/libchipmunk.a > include/chipmunk/cpVect.h >+include/chipmunk/cpTransform.h > include/chipmunk/cpSpatialIndex.h > include/chipmunk/cpSpace.h >+include/chipmunk/cpSlideJoint.h >+include/chipmunk/cpSimpleMotor.h > include/chipmunk/cpShape.h >+include/chipmunk/cpRotaryLimitJoint.h >+include/chipmunk/cpRatchetJoint.h >+include/chipmunk/cpPolyline.h > include/chipmunk/cpPolyShape.h >+include/chipmunk/cpPivotJoint.h >+include/chipmunk/cpPinJoint.h >+include/chipmunk/cpMarch.h >+include/chipmunk/cpHastySpace.h >+include/chipmunk/cpGrooveJoint.h >+include/chipmunk/cpGearJoint.h >+include/chipmunk/cpDampedSpring.h >+include/chipmunk/cpDampedRotarySpring.h >+include/chipmunk/cpConstraint.h > include/chipmunk/cpBody.h > include/chipmunk/cpBB.h > include/chipmunk/cpArbiter.h >-include/chipmunk/constraints/util.h >-include/chipmunk/constraints/cpSlideJoint.h >-include/chipmunk/constraints/cpSimpleMotor.h >-include/chipmunk/constraints/cpRotaryLimitJoint.h >-include/chipmunk/constraints/cpRatchetJoint.h >-include/chipmunk/constraints/cpPivotJoint.h >-include/chipmunk/constraints/cpPinJoint.h >-include/chipmunk/constraints/cpGrooveJoint.h >-include/chipmunk/constraints/cpGearJoint.h >-include/chipmunk/constraints/cpDampedSpring.h >-include/chipmunk/constraints/cpDampedRotarySpring.h >-include/chipmunk/constraints/cpConstraint.h > include/chipmunk/chipmunk_unsafe.h > include/chipmunk/chipmunk_types.h > include/chipmunk/chipmunk_private.h
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 197852
: 153221 |
153308
|
153349