2009-07-07 20:22:37 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
user-destdir support
|
2009-06-14 20:25:20 by Joerg Sonnenberger | Files touched by this commit (321) |
Log message:
Remove @dirrm entries from PLISTs
|
2009-03-20 20:25:55 by Joerg Sonnenberger | Files touched by this commit (1252) |
Log message:
Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
|
2008-01-04 02:25:51 by Roland Illig | Files touched by this commit (2) |
Log message:
Fixed pkglint warnings.
|
2007-12-24 19:57:49 by Blair Sadewitz | Files touched by this commit (2) |
Log message:
Add logic gleefully ripped from x11/Xaw3d/buildlink3.mk to make these
libraries work properly with xaw.buildlink3.mk. That's better!
This was done so that X/Open Curses (pkgsrc-wip/pdcurses) could
have a chance of using these libraries. ;)
|
2007-06-20 18:49:18 by Johnny C. Lam | Files touched by this commit (2) |
Log message:
Don't install the Makefiles from the doc/app-defaults directory, which
are useless. Fixes the failed check-wrkref target in the latest bulk
build.
Bump PKGREVISION to 3.
|
2007-01-30 22:00:31 by Joerg Sonnenberger | Files touched by this commit (2) |
Log message:
Modular Xorg support.
|
2006-12-12 22:52:38 by Joerg Sonnenberger | Files touched by this commit (63) |
Log message:
Replace mk/bsd.prefs.mk includes with bsd.fast.prefs.mk includes.
The redundant parsing of bsd.prefs.mk is mostly avoided now and
parse time e.g. for x11/kdebase3 gets reduced by up to 10%.
|
2006-07-09 01:11:17 by Johnny C. Lam | Files touched by this commit (877) |
Log message:
Change the format of BUILDLINK_ORDER to contain depth information as well,
and add a new helper target and script, "show-buildlink3", that outputs
a listing of the buildlink3.mk files included as well as the depth at
which they are included.
For example, "make show-buildlink3" in fonts/Xft2 displays:
zlib
fontconfig
iconv
zlib
freetype2
expat
freetype2
Xrender
renderproto
|
2006-07-09 00:39:49 by Johnny C. Lam | Files touched by this commit (877) |
Log message:
Track information in a new variable BUILDLINK_ORDER that informs us
of the order in which buildlink3.mk files are (recursively) included
by a package Makefile.
|