Skip site navigation (1)Skip section navigation (2)

CVS log for ports/devel/ode-devel/Makefile

[BACK] Up to [FreeBSD] / ports / devel / ode-devel

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.16: download - view: text, markup, annotated - select for diffs
Fri Nov 20 22:53:00 2009 UTC (2 years, 2 months ago) by pav
Branches: MAIN
CVS tags: RELEASE_9_0_0, RELEASE_8_2_0, RELEASE_8_1_0, RELEASE_7_4_0, RELEASE_7_3_0, RELEASE_6_EOL, HEAD
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +1 -0 lines
- Mark MAKE_JOBS_UNSAFE

Reported by:	pointyhat

Revision 1.15: download - view: text, markup, annotated - select for diffs
Sat Apr 19 17:48:00 2008 UTC (3 years, 9 months ago) by miwi
Branches: MAIN
CVS tags: RELEASE_8_0_0, RELEASE_7_2_0, RELEASE_7_1_0, RELEASE_6_4_0, RELEASE_5_EOL
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -2 lines
- Remove unneeded dependency from gtk12/gtk20 [1]
- 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)

Revision 1.14: download - view: text, markup, annotated - select for diffs
Sat Mar 22 08:55:30 2008 UTC (3 years, 10 months ago) by miwi
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +1 -2 lines
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Bump PORTREVISION

Approved by:	portmgr (xorg cleanup)

Revision 1.13: download - view: text, markup, annotated - select for diffs
Sat May 19 20:03:23 2007 UTC (4 years, 8 months ago) by flz
Branches: MAIN
CVS tags: RELEASE_7_0_0, RELEASE_6_3_0
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +1 -1 lines
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Mon Aug 14 05:39:11 2006 UTC (5 years, 5 months ago) by acm
Branches: MAIN
CVS tags: RELEASE_6_2_0, RELEASE_4_EOL, PRE_XORG_7
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +5 -0 lines
- Fix building on amd64/ia64

Approved by:	garga (mentor)

Revision 1.11: download - view: text, markup, annotated - select for diffs
Sun Jul 23 02:45:20 2006 UTC (5 years, 6 months ago) by acm
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +1 -1 lines
Change maintainer address to my @FreeBSD.org email

Approved by:	garga (mentor)

Revision 1.10: download - view: text, markup, annotated - select for diffs
Sun Mar 26 17:23:10 2006 UTC (5 years, 10 months ago) by sem
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +1 -2 lines
- Update to 060223
- Remove USE_REINPLACE
- Modify mastersite

PR:		ports/94116
Submitted by:	maintainer

Revision 1.9: download - view: text, markup, annotated - select for diffs
Mon Jan 2 20:12:50 2006 UTC (6 years, 1 month ago) by edwin
Branches: MAIN
CVS tags: RELEASE_6_1_0, RELEASE_5_5_0
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +0 -4 lines
[PATCH] devel/ode and devel/ode-devel: unbreak on 64bit platforms

	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

Revision 1.8: download - view: text, markup, annotated - select for diffs
Mon Nov 28 18:30:34 2005 UTC (6 years, 2 months ago) by mnag
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +4 -0 lines
Mark as BROKEN on amd64, ia64 and sparc64

Pointy hat by:	kris

Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Nov 13 02:14:57 2005 UTC (6 years, 2 months ago) by mnag
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +15 -25 lines
New port devel/ode-devel

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

Revision 1.6: download - view: text, markup, annotated - select for diffs
Tue May 31 07:39:54 2005 UTC (6 years, 8 months ago) by pav
Branches: MAIN
CVS tags: old_old_RELEASE_6_0_0
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +12 -0 lines
- enable an "OPCODE" library that is required to support triangle mesh objects.
- 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)

Revision 1.5: download - view: text, markup, annotated - select for diffs
Fri Jul 23 08:44:18 2004 UTC (7 years, 6 months ago) by arved
Branches: MAIN
CVS tags: old_old_RELEASE_5_4_0, old_old_RELEASE_5_3_0, old_old_RELEASE_4_11_0
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +1 -1 lines
Respect CXX

PR:		69461
Submitted by:	David Yeske <dyeske@yahoo.com>

Revision 1.4: download - view: text, markup, annotated - select for diffs
Sat Jun 26 21:36:45 2004 UTC (7 years, 7 months ago) by pav
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +1 -0 lines
- Raise PORTEPOCH, PORTVERSION went backwards in previous commit

Reported by:	eik's chkversion

Revision 1.3: download - view: text, markup, annotated - select for diffs
Sat Jun 26 18:36:17 2004 UTC (7 years, 7 months ago) by pav
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +3 -8 lines
- Update to 0.5

PR:		ports/67741
Submitted by:	Ying-Chieh Liao <ijliao@FreeBSD.csie.NCTU.edu.tw>
Approved by:	maintainer timeout (15 days)

Revision 1.2: download - view: text, markup, annotated - select for diffs
Sat Apr 3 13:52:48 2004 UTC (7 years, 10 months ago) by kris
Branches: MAIN
CVS tags: old_old_RELEASE_4_10_0
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +7 -1 lines
BROKEN on amd64: Does not build

Revision 1.1: download - view: text, markup, annotated - select for diffs
Mon Mar 15 09:57:40 2004 UTC (7 years, 10 months ago) by krion
Branches: MAIN
Add ode 0.039,

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>

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options