aboutsummaryrefslogtreecommitdiff
path: root/devel/ode-devel
Commit message (Collapse)AuthorAgeFilesLines
* - Mark MAKE_JOBS_UNSAFEPav Lucistnik2009-11-201-0/+1
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=244567
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-191-2/+2
| | | | | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav) Notes: svn path=/head/; revision=211584
* - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORGMartin Wilke2008-03-221-2/+1
| | | | | | | | | - Bump PORTREVISION Approved by: portmgr (xorg cleanup) Notes: svn path=/head/; revision=209570
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-1/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* - Fix building on amd64/ia64Jose Alonso Cardenas Marquez2006-08-141-0/+5
| | | | | | | Approved by: garga (mentor) Notes: svn path=/head/; revision=170545
* Change maintainer address to my @FreeBSD.org emailJose Alonso Cardenas Marquez2006-07-231-1/+1
| | | | | | | Approved by: garga (mentor) Notes: svn path=/head/; revision=168518
* - Update to 060223Sergey Matveychuk2006-03-263-35/+4
| | | | | | | | | | | - Remove USE_REINPLACE - Modify mastersite PR: ports/94116 Submitted by: maintainer Notes: svn path=/head/; revision=158159
* [PATCH] devel/ode and devel/ode-devel: unbreak on 64bit platformsEdwin Groothuis2006-01-022-4/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | devel/ode and devel/ode-devel ports are marked broken on non-i386 archs (i.e. amd64, ia64), because ode fail to build on these systems with following errors: c++ -Iinclude -c -fno-exceptions -fomit-frame-pointer -O -pipe -I/usr/X11R6/include +-DdNODEBUG -o ode/src/timer.o ode/src/timer.cpp {standard input}: Assembler messages: {standard input}:62: Error: `(%esi)' is not a valid 64 bit base/index expression {standard input}:63: Error: `4(%esi)' is not a valid 64 bit base/index expression {standard input}:86: Error: `(%esi)' is not a valid 64 bit base/index expression {standard input}:87: Error: `4(%esi)' is not a valid 64 bit base/index expression {standard input}:172: Error: `(%esi)' is not a valid 64 bit base/index expression {standard input}:173: Error: `4(%esi)' is not a valid 64 bit base/index expression {standard input}:194: Error: `(%esi)' is not a valid 64 bit base/index expression {standard input}:195: Error: `4(%esi)' is not a valid 64 bit base/index expression {standard input}:234: Error: `(%esi)' is not a valid 64 bit base/index expression {standard input}:235: Error: `4(%esi)' is not a valid 64 bit base/index expression gmake: *** [ode/src/timer.o] Error 1 *** Error code 2 Stop in /usr/ports/devel/ode. After some investigation, I think I've solved the problem, and it would be great to unbreak ode at last. The build on 64 bit platforms fails because some 32 bit assembly gets included in the ode/src/timer.cpp file. That, on it's turn, happens because ode's configurator (simple configure analogue written in C) has too weak checking for `pentium compatibility' of host system - it just tries to compile following assembly code: `mov $0, %eax' as a test. That compiles well on 64 bit platforms, but because addressing scheme is now 64bit, above-mentioned errors occur when compiling ode's source itself. The fix is to add a patch to configurator.c that makes `pentium compatibility' test more strict. Thus, test will fail on 64 bit ystems and i386 assembly won't be used (ode will use more portable routines instead). This patch is not well tested, as I myself have no 64 bit machines in the vicinity, but it surely doesn't break ode on x86 :) I've mailed it to ode author, it's now also in ODE's CVS. PR: ports/90077 Submitted by: Dmitry Marakasov <amdmi3@mail.ru> Approved by: maintainer timeout Notes: svn path=/head/; revision=152601
* Mark as BROKEN on amd64, ia64 and sparc64Marcus Alves Grando2005-11-281-0/+4
| | | | | | | Pointy hat by: kris Notes: svn path=/head/; revision=149817
* New port devel/ode-develMarcus Alves Grando2005-11-133-31/+22
| | | | | | | | | | | | | | | | | | | ODE is a free, industrial quality library for simulating articulated rigid body dynamics - for example ground vehicles, legged creatures, and moving objects in VR environments. It is fast, flexible, robust and platform independent, with advanced joints, contact with friction, and built-in collision detection. WWW: http://www.ode.org/ Add CONFLICTS in devel/ode PR: 88581 Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> Repocopy by: marcus Notes: svn path=/head/; revision=148069
* Remove extra dir in ode-devel.Marcus Alves Grando2005-11-136-158/+0
| | | | Notes: svn path=/head/; revision=148066
* - enable an "OPCODE" library that is required to support triangle mesh objects.Pav Lucistnik2005-05-316-4/+88
| | | | | | | | | | | | | | - changes the header include order so as not to pick up installed includes before local ones - suppresses the unneeded use of values.h - works around an inlining limitation in g++ PR: ports/81610 Submitted by: Jonathan Hanna <jhanna@shaw.ca> Approved by: David Yeske <dyeske@yahoo.com> (maintainer) Notes: svn path=/head/; revision=136492
* Respect CXXTilman Keskinoz2004-07-234-4/+4
| | | | | | | | PR: 69461 Submitted by: David Yeske <dyeske@yahoo.com> Notes: svn path=/head/; revision=114481
* - Raise PORTEPOCH, PORTVERSION went backwards in previous commitPav Lucistnik2004-06-262-0/+2
| | | | | | | Reported by: eik's chkversion Notes: svn path=/head/; revision=112337
* - Update to 0.5Pav Lucistnik2004-06-2610-42/+32
| | | | | | | | | PR: ports/67741 Submitted by: Ying-Chieh Liao <ijliao@FreeBSD.csie.NCTU.edu.tw> Approved by: maintainer timeout (15 days) Notes: svn path=/head/; revision=112334
* BROKEN on amd64: Does not buildKris Kennaway2004-04-032-2/+14
| | | | Notes: svn path=/head/; revision=106033
* Add ode 0.039,Kirill Ponomarev2004-03-1510-0/+228
ODE is a free, industrial quality library for simulating articulated rigid body dynamics - for example ground vehicles, legged creatures, and moving objects in VR environments. It is fast, flexible, robust and platform independent, with advanced joints, contact with friction, and built-in collision detection. PR: ports/64288 Submitted by: David Yeske <dyeske@yahoo.com> Notes: svn path=/head/; revision=104064