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) combination for a given watch list. This is what FreshPorts will look for.

non port: x11-wm/golem/Makefile

Number of commits found: 31

Sunday, 4 Aug 2019
09:07 antoine search for other commits by this committer
Deprecate ports broken for more than 6 months
Original commitRevision:508082 
Monday, 25 Feb 2019
12:15 bapt search for other commits by this committer
First step at deorbitting esound:
remove esound options where it is possible to, categories x11*
Original commitRevision:493852 
Saturday, 23 Feb 2019
16:38 bapt search for other commits by this committer
Mark as broken: all plugins fails to load: undefined symbol 'display'
Original commitRevision:493705 
Tuesday, 18 Sep 2018
19:20 emaste search for other commits by this committer
Bump PORTREVISION for changed CFLAGS

I adjusted CFLAGS in several ports to allow linking with lld on i386 but
missed the corresponding PORTREVISION bump.

Related commits:
r480023 r480045 r480047 r480048 r480049 r480061 r480062 r480068

Reported by:	antoine
Approved by:	antoine
Original commitRevision:480069 
17:48 emaste search for other commits by this committer
x11-wm/golem: add -fPIC on i386, to allow linking with lld

By default lld does not allow non-PIC code where PIC is required.
Other architectures already apply -fPIC; do so for i386 as well.

Approved by:	portmgr (lld blanket)
Sponsored by:	The FreeBSD Foundation
Original commitRevision:480049 
Saturday, 7 Jul 2018
06:44 linimon search for other commits by this committer
Mark these ports as broken on aarch64, and, where appropriate, armvX.

While here, pet portlint and modernize.

Approved by:	portmgr (tier-2 blanket)
Original commitRevision:474058 
Monday, 19 Oct 2015
15:05 danfe search for other commits by this committer
Get rid of hand-rolled `do-build' and `do-install' targets which serve the
sole purpose to avoid using our standard MAKE_ENV.

They were introduced in r279589 as part of "update to 0.0.6" PR 159499 by
Kato (duh!) some four years ago; in r359185 bapt@ had mentioned that "lots
of invocation of MAKE_CMD here are wrong as they do not properly respect
MAKE_ENV" (which is ironic as avoiding MAKE_ENV *is* their only point) but
the the real problem was neither fixed nor rationale for ugly work-around
explained.

The port builds itself through a series of recursive make(1) calls, and is
using variables to pass various bits of internal state to submakes.  This
approach typically requires strict discipline and can be hard to implement
correctly, to an extent being considered harmful [Miller 1997].

Incidentally, ${MAKE_ENV} includes variables that are 1) used by the port's
own build logic and 2) are not handled in a robust way by it.

Problem #1: consider the following code from `Makefile.rules.gnu.in':

  ifndef LIBDIR
    LIBDIR=.
  endif

This is roughly equivalent to the following:

  ifeq ($(origin LIBDIR), undefined)
    LIBDIR=.
  else
    # use whatever LIBDIR value make(1) can deduce
  endif

Knowing that LIBDIR is set to some other value (`..') by inner makefiles,
that code can be rewritten more elaborately like this:

  ifeq ($(origin LIBDIR), undefined)
    LIBDIR=.
  else ifeq ($(origin LIBDIR), file)
    # use LIBDIR value set by some Makefile
  else
    # use whatever LIBDIR value make(1) can deduce
  endif

Now, because LIBDIR is passed to make(1) via MAKE_ENV and the code above
does not have "ifeq ($(origin LIBDIR), environment)" check, the build was
affected by unexpected bogus value of it and subsequently failed.  Since
the only valid place we can expect "our" LIBDIR to come from is makefiles,
we can inhibit unwanted pollution from the environment by rewriting the
initial code like this:

  ifneq ($(origin LIBDIR), file)
    LIBDIR=.
  endif

Problem #2 is similar: checking for CFLAGS and LDFLAGS to protect their
initial assignment is very fragile as many frameworks akin to the Ports
Collection would provide some default values.  While it is usually safe
to append to them, it is almost always a bad idea to use them verbatim.

Apparently, these checks were put there to support resetting CFLAGS and
LDFLAGS in `util/Makefile', but since removing them does not hurt do so
regardless of small pollution in that one case that does not affect the
build in any noticeable way.
Original commitRevision:399689 
12:50 danfe search for other commits by this committer
- Attempt to unbreak on PowerPC (verified) and SPARC (not verified)
- Use option helpers, GC no longer needed WANT_GNOME, sort USES, and
  include b.p.m. bits just once at the end
- Drop explicit "support" for ia64: the port is marked broken on it,
  while the architecture itself was never a first-class citizen in
  FreeBSD and official killed in -CURRENT for a while now
Original commitRevision:399663 
Tuesday, 16 Jun 2015
23:43 amdmi3 search for other commits by this committer
- Strip binaries
Original commitRevision:389887 
Sunday, 7 Dec 2014
13:54 feld search for other commits by this committer
Update "BSD" license in x11 categories
Original commitRevision:374203 
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 
Monday, 2 Jun 2014
07:16 miwi search for other commits by this committer
- Convert USE_BZIP2/XZ to USES

Approved by:	portmgr
Original commitRevision:356196 
Thursday, 23 Jan 2014
03:06 vanilla search for other commits by this committer
Support STAGEDIR.

Approved by:	portmgr (blanket infrastructure)
Original commitRevision:340775 
Saturday, 21 Sep 2013
00:01 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
x11-wm)
Original commitRevision:327786 
Saturday, 3 Aug 2013
13:44 mat search for other commits by this committer
- Convert to new perl framework
- Remove MAKE_JOBS_SAFE=yes, it's the default.
Original commitRevision:324191 
Thursday, 31 May 2012
14:49 bapt search for other commits by this committer
Convert to new options framework
Original commit
Thursday, 22 Dec 2011
11:12 linimon search for other commits by this committer
Mark as broken on sparc64 as well (and, presumably, ia64).

Hat:            portmgr
Original commit
Friday, 11 Nov 2011
05:06 linimon search for other commits by this committer
Mark as broken on powerpc: does not compile.

Hat:            portmgr
Feature safe:   yes
Original commit
Saturday, 13 Aug 2011
10:42 ehaupt search for other commits by this committer
Update to 0.0.6

PR:             159499
Submitted by:   KATO Tsuguru <tkato432@yahoo.com>
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, 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
Sunday, 11 Sep 2005
21:59 linimon search for other commits by this committer
Maintainer no longer has time to look after these ports.  We appreciate
the help in the past.

Approved by:    maintainer
Original commit
Wednesday, 4 Aug 2004
10:00 krion search for other commits by this committer
Fix build with gcc-3.4

PR:             ports/69981
Submitted by:   Andrey Slusar <vasallia@ukr.net>
Original commit
Friday, 19 Mar 2004
23:01 kris search for other commits by this committer
Better fix for amd64 (and ia64, omitted in previous); only compile with
-fPIC those files that require it.
Original commit
Saturday, 28 Feb 2004
18:27 arved search for other commits by this committer
Respect CFLAGS. Fix build on AMD64

Reported by:    bento
Original commit
Friday, 21 Feb 2003
14:19 knu search for other commits by this committer
De-pkg-comment.
Original commit
Wednesday, 22 May 2002
14:48 ijliao search for other commits by this committer
upgrade to 0.0.5

PR:             38420
Submitted by:   maintainer
Original commit
Saturday, 22 Dec 2001
14:35 kevlo search for other commits by this committer
Update to version 0.0.4    
Original commit
Monday, 24 Sep 2001
15:00 nakai search for other commits by this committer
Change maintainer to the author.   Update to 0.0.3   Add USE_XPM    
Original commit
Sunday, 12 Aug 2001
18:53 nakai search for other commits by this committer
Add MANCOMPRESSED    
Original commit
Friday, 10 Aug 2001
17:48 nakai search for other commits by this committer
Smal window manager with theme and plugin    
Original commit

Number of commits found: 31