aboutsummaryrefslogtreecommitdiff
path: root/x11-wm/golem
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of hand-rolled `do-build' and `do-install' targets which serve theAlexey Dokuchaev2015-10-193-10/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. Notes: svn path=/head/; revision=399689
* - Attempt to unbreak on PowerPC (verified) and SPARC (not verified)Alexey Dokuchaev2015-10-192-30/+21
| | | | | | | | | | | - 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 Notes: svn path=/head/; revision=399663
* - Strip binariesDmitry Marakasov2015-06-161-0/+3
| | | | Notes: svn path=/head/; revision=389887
* - Drop @dirrm* from and add empty directories to pkg-plistsDmitry Marakasov2015-01-281-67/+8
| | | | | | | Approved by: portmgr blanket, kwm (for gnome@ ports) Notes: svn path=/head/; revision=378031
* Update "BSD" license in x11 categoriesMark Felder2014-12-071-1/+1
| | | | Notes: svn path=/head/; revision=374203
* Convert GMAKE to MAKE_CMDBaptiste Daroussin2014-06-251-2/+2
| | | | | | | | | | 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 Notes: svn path=/head/; revision=359185
* - Convert USE_BZIP2/XZ to USESMartin Wilke2014-06-021-2/+1
| | | | | | | Approved by: portmgr Notes: svn path=/head/; revision=356196
* Support STAGEDIR.Vanilla I. Shu2014-01-233-42/+83
| | | | | | | Approved by: portmgr (blanket infrastructure) Notes: svn path=/head/; revision=340775
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-211-5/+2
| | | | | | | x11-wm) Notes: svn path=/head/; revision=327786
* - Convert to new perl frameworkMathieu Arnold2013-08-031-1/+2
| | | | | | | - Remove MAKE_JOBS_SAFE=yes, it's the default. Notes: svn path=/head/; revision=324191
* Convert to new options frameworkBaptiste Daroussin2012-05-311-4/+4
| | | | Notes: svn path=/head/; revision=297880
* Mark as broken on sparc64 as well (and, presumably, ia64).Mark Linimon2011-12-221-2/+2
| | | | | | | Hat: portmgr Notes: svn path=/head/; revision=287858
* Mark as broken on powerpc: does not compile.Mark Linimon2011-11-111-0/+3
| | | | | | | | Hat: portmgr Feature safe: yes Notes: svn path=/head/; revision=285526
* Update to 0.0.6Emanuel Haupt2011-08-137-303/+397
| | | | | | | | PR: 159499 Submitted by: KATO Tsuguru <tkato432@yahoo.com> Notes: svn path=/head/; revision=279589
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* For ports maintained by ports@FreeBSD.org, remove names and/orDoug Barton2009-12-211-3/+0
| | | | | | | | | | | e-mail addresses from the pkg-descr file that could reasonably be mistaken for maintainer contact information in order to avoid confusion on the part of users looking for support. As a pleasant side effect this also avoids confusion and/or frustration for people who are no longer maintaining those ports. Notes: svn path=/head/; revision=246327
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-191-7/+6
| | | | | | | | | | | | | | | | | | - 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
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-0/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* - Add SHA256Pav Lucistnik2005-11-251-0/+1
| | | | Notes: svn path=/head/; revision=149470
* Maintainer no longer has time to look after these ports. We appreciateMark Linimon2005-09-111-1/+1
| | | | | | | | | the help in the past. Approved by: maintainer Notes: svn path=/head/; revision=142488
* Fix build with gcc-3.4Kirill Ponomarev2004-08-043-1/+20
| | | | | | | | PR: ports/69981 Submitted by: Andrey Slusar <vasallia@ukr.net> Notes: svn path=/head/; revision=115392
* SIZEify (maintainer timeout)Trevor Johnson2004-03-311-0/+1
| | | | Notes: svn path=/head/; revision=105747
* Better fix for amd64 (and ia64, omitted in previous); only compile withKris Kennaway2004-03-192-3/+10
| | | | | | | -fPIC those files that require it. Notes: svn path=/head/; revision=104678
* Respect CFLAGS. Fix build on AMD64Tilman Keskinoz2004-02-281-1/+3
| | | | | | | Reported by: bento Notes: svn path=/head/; revision=102435
* De-pkg-comment.Akinori MUSHA2003-02-212-1/+1
| | | | Notes: svn path=/head/; revision=76045
* upgrade to 0.0.5Ying-Chieh Liao2002-05-222-2/+2
| | | | | | | | PR: 38420 Submitted by: maintainer Notes: svn path=/head/; revision=59706
* Update to version 0.0.4Kevin Lo2001-12-225-5/+35
| | | | | | | | PR: 32633 Submitted by: MAINTAINER Notes: svn path=/head/; revision=51987
* Change maintainer to the author.Yukihiro Nakai2001-09-243-6/+4
| | | | | | | | | | | Update to 0.0.3 Add USE_XPM PR: ports/30725 Submitted by: KATO Tsuguru <tkato@prontomail.com> Notes: svn path=/head/; revision=48153
* Add MANCOMPRESSEDYukihiro Nakai2001-08-121-0/+2
| | | | Notes: svn path=/head/; revision=46150
* Smal window manager with theme and pluginYukihiro Nakai2001-08-105-0/+286
Notes: svn path=/head/; revision=46049