diff options
author | beat <beat@FreeBSD.org> | 2012-08-30 23:31:25 +0800 |
---|---|---|
committer | beat <beat@FreeBSD.org> | 2012-08-30 23:31:25 +0800 |
commit | 4eee183e3705c37b8aae479c1765206b82d23254 (patch) | |
tree | 604018ada1d2e5cac1c6940dffa99659d40a3fe9 /CHANGES | |
parent | 8dc3dbb663255f306dfa197c76521fb76dc96c5d (diff) | |
download | freebsd-ports-gnome-4eee183e3705c37b8aae479c1765206b82d23254.tar.gz freebsd-ports-gnome-4eee183e3705c37b8aae479c1765206b82d23254.tar.zst freebsd-ports-gnome-4eee183e3705c37b8aae479c1765206b82d23254.zip |
- Add ccache support for building ports. [1]
- Fix CONFIGURE_FAIL_MESSAGE to be pkgng-aware. [2]
- Resolve symlinks in PREFIX on deinstall. [3]
- Introduce CLEAN_FETCH_ENV variable to disable package dependency
in fetch target for mass fetching. [4]
PR: ports/169579 [1], ports/170552 [2],
ports/170784 [3], ports/170796 [4]
Submitted by: bdrewery@ [1], crees@ [2], gahr@ [3], ohauer@ [4]
Tested on: pointyhat
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -10,6 +10,22 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20120830: +AUTHOR: beat@FreeBSD.org + + * CCACHE support for building ports has been added (depends on + devel/ccache). Therefore new user settable variables are available: + + WITH_CCACHE_BUILD - Enable CCACHE support (Default off) + + NO_CCACHE - Disable CCACHE support for example for certain + ports if CCACHE is enabled. + + By default CCACHE uses $HOME/.ccache as cache directory. To use + a non-default cache directory this could be overwritten like: + + MAKE_ENV+= CCACHE_DIR=/var/cache/ccache + 20120820: AUTHOR: gahr@FreeBSD.org |