diff --git a/devel/ode/Makefile b/devel/ode/Makefile index d3ddd1ccf2e3..53481dfc5291 100644 --- a/devel/ode/Makefile +++ b/devel/ode/Makefile @@ -1,54 +1,53 @@ # Created by: David Yeske PORTNAME= ode PORTVERSION= 0.13 PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= SF/opende/ODE/${PORTVERSION} MAINTAINER= acm@FreeBSD.org COMMENT= Articulated rigid body dynamics library LICENSE= LGPL21 BSD3CLAUSE LICENSE_COMB= dual -USES= gl tar:bzip2 libtool pathfix -USE_GL= yes +USES= tar:bzip2 libtool pathfix GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-shared TEST_TARGET= check +USE_CXXSTD= c++03 -OPTIONS_DEFINE= GIMPACT DOUBLE OU +OPTIONS_DEFINE= GIMPACT DOUBLE OU DEMOS GIMPACT_DESC= Enable gimpact instead of opcode support DOUBLE_DESC= Enable double precision (BROKEN with GIMPACT) OU_DESC= Enable Thread-local storage (Experimental) +DEMOS_DESC= Build demos (not installed) +GIMPACT_PREVENTS= DOUBLE GIMPACT_CONFIGURE_ON= --with-trimesh=gimpact GIMPACT_CONFIGURE_OFF= --with-trimesh=opcode -DOUBLE_CONFIGURE_ENABLE= double-precision -OU_CONFIGURE_ENABLE= ou - -.include - -.if ${PORT_OPTIONS:MGIMPACT} && ${PORT_OPTIONS:MDOUBLE} -IGNORE= currently double precision is not supported by gimpact -.endif +DOUBLE_CONFIGURE_ENABLE=double-precision +OU_CONFIGURE_ENABLE= ou +DEMOS_CONFIGURE_ENABLE= demos +DEMOS_USES= gl localbase pkgconfig +DEMOS_USE= GL=gl,glu post-patch: @${REINPLACE_CMD} -e '/if test/ s|==|=|' -e 's|^\( *CFLAGS=\)|#\1|;' \ -e 's|^\( *CPPFLAGS=\)|#\1|' -e 's|^\( *CXXFLAGS=\)|#\1|' \ -e 's|CPPFLAGS+=" |CPPFLAGS="$$CPPFLAGS |' \ ${WRKSRC}/configure @${FIND} ${WRKSRC} -type f -name Makefile.in -print0 | ${XARGS} -0 ${REINPLACE_CMD} \ -e '/^DEFAULT_INCLUDES/ s|$$| -I$$(top_builddir)/include|' \ -e '/CFLAGS/ s|-O[12]||' @${REINPLACE_CMD} 's|||g' \ ${WRKSRC}/build/config-default.h ${WRKSRC}/ou/src/ou/malloc.cpp post-install: ${SED} -e '/PACKAGE/ s|^|//|; /VERSION/ s|^|//|' ${WRKSRC}/ode/src/config.h \ > ${STAGEDIR}${PREFIX}/include/ode/config.h .include diff --git a/devel/ode/files/patch-ode_demo_demo__jointPR.cpp b/devel/ode/files/patch-ode_demo_demo__jointPR.cpp new file mode 100644 index 000000000000..189a7ef9e500 --- /dev/null +++ b/devel/ode/files/patch-ode_demo_demo__jointPR.cpp @@ -0,0 +1,11 @@ +--- ode/demo/demo_jointPR.cpp.orig 2013-08-19 17:48:05 UTC ++++ ode/demo/demo_jointPR.cpp +@@ -329,7 +329,7 @@ int main (int argc, char **argv) + { + int j = i+1; + if ( j+1 > argc || // Check if we have enough arguments +- argv[j] == '\0' || // We should have a path here ++ argv[j][0] == '\0' || // We should have a path here + argv[j][0] == '-' ) // We should have a path not a command line + Help(argv); + else diff --git a/devel/ode/files/patch-ode_demo_demo__jointPU.cpp b/devel/ode/files/patch-ode_demo_demo__jointPU.cpp new file mode 100644 index 000000000000..588366a601a4 --- /dev/null +++ b/devel/ode/files/patch-ode_demo_demo__jointPU.cpp @@ -0,0 +1,11 @@ +--- ode/demo/demo_jointPU.cpp.orig 2013-12-06 21:52:14 UTC ++++ ode/demo/demo_jointPU.cpp +@@ -579,7 +579,7 @@ int main (int argc, char **argv) + if (0 == strcmp ("-t", argv[i]) || 0 == strcmp ("--texture-path", argv[i]) ) { + int j = i+1; + if ( j+1 > argc || // Check if we have enough arguments +- argv[j] == '\0' || // We should have a path here ++ argv[j][0] == '\0' || // We should have a path here + argv[j][0] == '-' ) // We should have a path not a command line + Help (argv); + else diff --git a/devel/ode/files/patch-ode_demo_demo__piston.cpp b/devel/ode/files/patch-ode_demo_demo__piston.cpp new file mode 100644 index 000000000000..3fdbb3327816 --- /dev/null +++ b/devel/ode/files/patch-ode_demo_demo__piston.cpp @@ -0,0 +1,11 @@ +--- ode/demo/demo_piston.cpp.orig 2013-08-19 17:48:05 UTC ++++ ode/demo/demo_piston.cpp +@@ -659,7 +659,7 @@ int main (int argc, char **argv) + { + int j = i+1; + if ( j+1 > argc || // Check if we have enough arguments +- argv[j] == '\0' || // We should have a path here ++ argv[j][0] == '\0' || // We should have a path here + argv[j][0] == '-' ) // We should have a path not a command line + Help (argv); + else