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.
Problems found locating distfiles:
Package anthy: missing distfile 2ch.t
Package anthy: missing distfile okinawa-20090801.t
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
0.0.12
* add dubeolsik yetgeul keyboard
* make sebeolsik yetgeul keyboard layout conform to HWP
* add API to get builtin keyboard list
* use Unicode jamo for incomplete syllable
* gettextize
* bug fix for Unicode 5.2
* fix wrong characters in ahnmatae(#31548)
* add command line tool hangul
0.0.11
* fixed preedit string bug: #315256
* added Ahnmatae method
* updated hanja frequency data and reordered hanja table according to it:
#315200
* fixed bugs in hanja data
* updated old hangul jamo combination table according to Unicode standard 5.2:
#315127
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.