diff options
author | jbeich <jbeich@FreeBSD.org> | 2016-04-13 18:37:34 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2016-04-13 18:37:34 +0800 |
commit | f4530be1f5a8f24388144b3b59090d0375714e4a (patch) | |
tree | e719409b6619de5371fe21df609fa58d68a0497e /CHANGES | |
parent | ee00c1f1115ca8d39ff4d10b9ee42bd2672f13f9 (diff) | |
download | freebsd-ports-gnome-f4530be1f5a8f24388144b3b59090d0375714e4a.tar.gz freebsd-ports-gnome-f4530be1f5a8f24388144b3b59090d0375714e4a.tar.zst freebsd-ports-gnome-f4530be1f5a8f24388144b3b59090d0375714e4a.zip |
Add CONFIGURE_OUTSOURCE support
If CONFIGURE_OUTSOURCE is defined HAS_CONFIGURE invokes configure script
and builds the port out of source tree, under ${WRKDIR}/.build by default.
The feature is inspired by USES=cmake:outsource and USES=qmake:outsource.
PR: 208294
Exp-run by: antoine
Approved by: portmgr (mat)
Differential Revision: https://reviews.freebsd.org/D4157
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -10,6 +10,18 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20160416: +AUTHOR: jbeich@FreeBSD.org + + Introducing CONFIGURE_OUTSOURCE. It changes HAS_CONFIGURE and GNU_CONFIGURE + by invoking configure, build and install stage outside of source tree e.g., + + $ mkdir ../.build + $ cd ../.build + $ ${OLDPWD}/configure + $ gmake + $ gmake install + 20160402: AUTHOR: bapt@FreeBSD.org |