2015-09-30 07:08:51 by Tobias Nygren | Files touched by this commit (19) | |
Log message: Remove socks5 due to distfile unavailability and a license which forbids redistribution. Equivalent functionality is provided by the free net/dante package (or even "ssh -D" for simple use cases) |
2014-10-09 16:07:17 by Thomas Klausner | Files touched by this commit (1163) |
Log message: Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles. |
2014-03-11 15:05:19 by Jonathan Perkin | Files touched by this commit (350) |
Log message: Remove example rc.d scripts from PLISTs. These are now handled dynamically if INIT_SYSTEM is set to "rc.d", or ignored otherwise. |
2012-11-19 03:59:39 by Joerg Sonnenberger | Files touched by this commit (2) |
Log message: Rename struct to not conflict with C99's restrict keyword. |
2012-10-23 19:19:22 by Aleksej Saushev | Files touched by this commit (671) |
Log message: Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days. |
2009-06-30 02:07:26 by Joerg Sonnenberger | Files touched by this commit (159) |
Log message: Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with MAKE_JOBS=2 and worked without. |
2009-06-14 20:09:49 by Joerg Sonnenberger | Files touched by this commit (291) |
Log message: Remove @dirrm entries from PLISTs |
2009-06-12 21:09:39 by Roland Illig | Files touched by this commit (36) |
Log message: Removed redundant .gz suffix for man pages. |
2009-05-19 10:59:39 by Thomas Klausner | Files touched by this commit (383) |
Log message: Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT block). Uncomment some commented out LICENSE lines while here. |
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. |