summaryrefslogtreecommitdiff
path: root/mk/scripts/genindex.awk
AgeCommit message (Collapse)AuthorFilesLines
2013-05-09Split BUILD_DEPENDS into TOOL_DEPENDS and BUILD_DEPENDS in mk/.riastradh1-1/+2
Build depends are target packages that are needed at build-time for, e.g., static libraries to link against, header files to include, &c. Tool depends are native packages that are needed at build-time for, e.g., compilers/linkers/&c. to run. ok agc
2008-09-07Apply patch from Aleksej Saushev to fix index generation.wiz1-7/+7
2006-12-15Remove trailing tabs.martti1-16/+16
2006-12-15Remove trailing spaces.martti1-6/+6
2003-09-02Merge pkgviews-mk branch into the HEAD by running:jlam1-1/+1
cd pkgsrc/mk cvs update -Pd -A cvs update -Pd -j pkgviews-mk-base -j pkgviews-mk
2003-07-25- fix bug that gave an invalid entry in the homepage field when there isdmcmahill1-3/+13
no listed homepage. Thanks to Grant Beattie for noting this and providing a patch which I changed slightly. - fix a bug which put extra stuff in the categories field. Thanks to Grant for noting this.
2003-07-24- add HOMEPAGE as the last field in the INDEX file.dmcmahill1-30/+20
- make the paths be relative to PKGSRCDIR as opposed to absolute. - some cleanup/simplification of the awk code.
2003-07-23rework the INDEX file generation. The new approach speeds up things bydmcmahill1-0/+389
several orders of magnitude and 'make index' now takes 30 minutes or so instead of several days on my test machine. The approach now is to take one pass through every package and extract some key information including the explicitly listed dependencies. After the data is extracted, the dependencies are flattened in one step which avoids the extremely inefficient recursive make that was previously used.