summaryrefslogtreecommitdiff
path: root/print/kpathsea/buildlink3.mk
AgeCommit message (Collapse)AuthorFilesLines
2018-01-07Fix indentation in buildlink3.mk files.rillig1-3/+3
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.
2010-09-13Update kpathsea to 6.0.0.minskim1-2/+2
Changes: - Added texhash. - Changed some function names.
2009-06-09Update kpathsea to 5.0.0.minskim1-2/+2
Changes: * Make shared library version and general package version the same. * Make library re-entrant.
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
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.
2009-01-03Import kpathsea-3.5.7 from pkgsrc-wip.minskim1-0/+20
Kpathsea is a library to do path searching. It is used in the Web2C implementation of TeX and friends. The library's fundamental purpose is to return a filename from a list of directories specified by the user, similar to what shells do when looking up program names to execute.