aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorBeat Gaetzi <beat@FreeBSD.org>2012-08-30 15:31:25 +0000
committerBeat Gaetzi <beat@FreeBSD.org>2012-08-30 15:31:25 +0000
commit68384983e2e2e54fe3609c4065619024cf9de74c (patch)
tree604018ada1d2e5cac1c6940dffa99659d40a3fe9 /CHANGES
parent89dfa9b70d02883b48fc2fb4f155ca79cec0976d (diff)
downloadports-68384983e2e2e54fe3609c4065619024cf9de74c.tar.gz
ports-68384983e2e2e54fe3609c4065619024cf9de74c.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
Notes
Notes: svn path=/head/; revision=303381
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES16
1 files changed, 16 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 045bd50a3b08..a7111996f8f6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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