notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

FInally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combinatio for a given watch list. This is what FreshPorts will look for.

non port: devel/ode-devel/Makefile

Number of commits found: 15

Wednesday, 25 Jun 2014
05:35 bapt search for other commits by this committer
Convert GMAKE to MAKE_CMD
Please note that lots of invocation of MAKE_CMD here are wrong as they do not
properly respect MAKE_ENV and friends

With hat:	portmgr
Original commitRevision:359185 
Tuesday, 27 May 2014
19:00 amdmi3 search for other commits by this committer
- Mark DEPRECATED and set EXPIRATION_DATE

PR:		189619
Submitted by:	amdmi3
Approved by:	maintainer timeout
Original commitRevision:355562 
Saturday, 24 May 2014
07:09 vanilla search for other commits by this committer
Stageify.

Approved by:	portmgr@
Original commitRevision:354989 
Friday, 20 Sep 2013
17:13 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
devel part 3)
Original commitRevision:327724 
Saturday, 11 May 2013
13:49 bapt search for other commits by this committer
Convert to new options framework
Original commitRevision:317876 
Friday, 20 Nov 2009
22:53 pav search for other commits by this committer
- Mark MAKE_JOBS_UNSAFE

Reported by:    pointyhat
Original commit
Saturday, 19 Apr 2008
17:56 miwi search for other commits by this committer
- 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)
Original commit
Saturday, 22 Mar 2008
08:55 miwi search for other commits by this committer
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Bump PORTREVISION

Approved by:    portmgr (xorg cleanup)
Original commit
Saturday, 19 May 2007
20:32 flz search for other commits by this committer
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Original commit
Monday, 14 Aug 2006
05:39 acm search for other commits by this committer
- Fix building on amd64/ia64

Approved by:    garga (mentor)
Original commit
Sunday, 23 Jul 2006
02:45 acm search for other commits by this committer
Change maintainer address to my @FreeBSD.org email

Approved by:    garga (mentor)
Original commit
Sunday, 26 Mar 2006
17:23 sem search for other commits by this committer
- Update to 060223
- Remove USE_REINPLACE
- Modify mastersite

PR:             ports/94116
Submitted by:   maintainer
Original commit
Monday, 2 Jan 2006
20:12 edwin search for other commits by this committer
[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
Original commit
Monday, 28 Nov 2005
18:30 mnag search for other commits by this committer
Mark as BROKEN on amd64, ia64 and sparc64

Pointy hat by:  kris
Original commit
Sunday, 13 Nov 2005
02:14 mnag search for other commits by this committer
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
Original commit

Number of commits found: 15