2021-10-08 18:38:32 by Nia Alarie | Files touched by this commit (46) | |
Log message:
lang: Remove gcc3.
|
2019-11-03 20:04:09 by Roland Illig | Files touched by this commit (159) |
Log message:
lang: align variable assignments
pkglint -Wall -F --only aligned --only indent -r
No manual corrections.
|
2018-01-07 14:04:44 by Roland Illig | Files touched by this commit (583) |
Log message:
Fix indentation in buildlink3.mk files.
The actual fix as been done by "pkglint -F */*/buildlink3.mk", and was
reviewed manually.
There are some .include lines that still are indented with zero spaces
although the surrounding .if is indented. This is existing practice.
|
2014-09-06 10:20:29 by Jonathan Perkin | Files touched by this commit (14) |
Log message:
Replace all references to _GCC_REQD with the appropriate logical value for
each GCC version. Using the variable causes impossible version constraints
when a specific GCC is depended upon but the user is using something newer,
as _GCC_REQD will be set to the higher value.
|
2013-04-06 22:27:30 by Blue Rats | Files touched by this commit (94) |
Log message:
Resolves:
"INFO_FILES should be set to YES or yes."
"Packages that install info files should set INFO_FILES."
Makefile and PLIST warning, respectively.
|
2012-10-02 22:11:57 by Aleksej Saushev | Files touched by this commit (187) |
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
|
2012-05-07 03:54:16 by David A. Holland | Files touched by this commit (473) |
Log message:
Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=)
It turns out there were a lot of these.
|
2009-11-07 19:03:55 by Aleksej Saushev | Files touched by this commit (1) |
Log message:
Support DESTDIR.
|
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.
|
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%.
|