svn commit: r309574 - in head/devel: . ChipmunkPhysics
Bryan Drewery
bdrewery at FreeBSD.org
Fri Dec 28 15:57:39 UTC 2012
Author: bdrewery
Date: Fri Dec 28 15:57:37 2012
New Revision: 309574
URL: http://svnweb.freebsd.org/changeset/ports/309574
Log:
Chipmunk is a simple, lightweight, fast and portable 2D rigid body physics
library written in C. It's licensed under the unrestrictive, OSI approved MIT
license.
WWW: http://chipmunk-physics.net/
PR: ports/174465
Submitted by: "Tim Čas" <ports at stdrand.com>
Added:
head/devel/ChipmunkPhysics/
head/devel/ChipmunkPhysics/Makefile (contents, props changed)
head/devel/ChipmunkPhysics/distinfo (contents, props changed)
head/devel/ChipmunkPhysics/pkg-descr (contents, props changed)
head/devel/ChipmunkPhysics/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Added: head/devel/ChipmunkPhysics/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/ChipmunkPhysics/Makefile Fri Dec 28 15:57:37 2012 (r309574)
@@ -0,0 +1,23 @@
+# Created by: Tim Cas <ports at stdrand.com>
+# $FreeBSD$
+
+PORTNAME= ChipmunkPhysics
+PORTVERSION= 6.1.2
+CATEGORIES= devel
+MASTER_SITES= http://chipmunk-physics.net/release/Chipmunk-6.x/ \
+ http://files.libsiege.org/chipmunk/
+DISTNAME= Chipmunk-${PORTVERSION}
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= ports at stdrand.com
+COMMENT= 2D physics engine written in C
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE.txt
+
+USE_CMAKE= yes
+CMAKE_ARGS= -DBUILD_DEMOS=OFF
+
+USE_LDCONFIG= yes
+
+.include <bsd.port.mk>
Added: head/devel/ChipmunkPhysics/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/ChipmunkPhysics/distinfo Fri Dec 28 15:57:37 2012 (r309574)
@@ -0,0 +1,2 @@
+SHA256 (Chipmunk-6.1.2.tgz) = f9d3e7d2480e50b034081613c18fa90421d5bf002af813ef1443e832dac43fc2
+SIZE (Chipmunk-6.1.2.tgz) = 324892
Added: head/devel/ChipmunkPhysics/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/ChipmunkPhysics/pkg-descr Fri Dec 28 15:57:37 2012 (r309574)
@@ -0,0 +1,5 @@
+Chipmunk is a simple, lightweight, fast and portable 2D rigid body physics
+library written in C. It's licensed under the unrestrictive, OSI approved MIT
+license.
+
+WWW: http://chipmunk-physics.net/
Added: head/devel/ChipmunkPhysics/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/ChipmunkPhysics/pkg-plist Fri Dec 28 15:57:37 2012 (r309574)
@@ -0,0 +1,30 @@
+lib/libchipmunk.so.6.1.2
+lib/libchipmunk.so
+lib/libchipmunk.a
+include/chipmunk/cpBody.h
+include/chipmunk/chipmunk_unsafe.h
+include/chipmunk/cpVect.h
+include/chipmunk/cpSpatialIndex.h
+include/chipmunk/chipmunk_ffi.h
+include/chipmunk/chipmunk.h
+include/chipmunk/cpShape.h
+include/chipmunk/cpSpace.h
+include/chipmunk/cpPolyShape.h
+include/chipmunk/chipmunk_types.h
+include/chipmunk/cpArbiter.h
+include/chipmunk/cpBB.h
+include/chipmunk/chipmunk_private.h
+include/chipmunk/constraints/cpConstraint.h
+include/chipmunk/constraints/util.h
+include/chipmunk/constraints/cpGearJoint.h
+include/chipmunk/constraints/cpGrooveJoint.h
+include/chipmunk/constraints/cpSlideJoint.h
+include/chipmunk/constraints/cpDampedRotarySpring.h
+include/chipmunk/constraints/cpPivotJoint.h
+include/chipmunk/constraints/cpDampedSpring.h
+include/chipmunk/constraints/cpRatchetJoint.h
+include/chipmunk/constraints/cpSimpleMotor.h
+include/chipmunk/constraints/cpRotaryLimitJoint.h
+include/chipmunk/constraints/cpPinJoint.h
+ at dirrm include/chipmunk/constraints
+ at dirrm include/chipmunk
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Fri Dec 28 15:54:54 2012 (r309573)
+++ head/devel/Makefile Fri Dec 28 15:57:37 2012 (r309574)
@@ -4,6 +4,7 @@
COMMENT = Development utilities
SUBDIR += 9base
+ SUBDIR += ChipmunkPhysics
SUBDIR += ElectricFence
SUBDIR += ORBit
SUBDIR += ORBit2
More information about the svn-ports-head
mailing list