diff options
author | bapt <bapt@FreeBSD.org> | 2017-10-12 03:03:24 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2017-10-12 03:03:24 +0800 |
commit | 3edb1756c7b1b3f35edfbbe645e30a5f06cde48d (patch) | |
tree | 0b4db4639f09e760dc626b3c4cba7e78bc84e43b /CHANGES | |
parent | 99b7f16a85917435cfee264f865123f648139f01 (diff) | |
download | freebsd-ports-gnome-3edb1756c7b1b3f35edfbbe645e30a5f06cde48d.tar.gz freebsd-ports-gnome-3edb1756c7b1b3f35edfbbe645e30a5f06cde48d.tar.zst freebsd-ports-gnome-3edb1756c7b1b3f35edfbbe645e30a5f06cde48d.zip |
Introduce the new BINARY_ALIAS variable
When defined it will create symlinks of some given binaries in a directory which
will be prepended to the PATH.
The syntax is the following:
BINARY_ALIAS= target1=source1 target2=source2
For example to have a "swig" binary in the path which will be pointing at
swig3.0 and a "sed" pointing at GNU sed: gsed
BINARY_ALIAS= swig=swig3.0 sed=gsed
Reviewed by: swills, adamw, mat
Approved by: swills (portmgr)
Differential Revision: https://reviews.freebsd.org/D12603
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -10,6 +10,20 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20171011: +AUTHOR: bapt@FreeBSD.org + + New BINARY_ALIAS variable has been added, when defined it will create symlinks + of some given binaries in a directory which will be prepended to the PATH. + + The syntax is the following: + BINARY_ALIAS= target1=source1 target2=source2 + + For example to have a "swig" binary in the path which will be pointing at + swig3.0 and a "sed" pointing at GNU sed: gsed + + BINARY_ALIAS= swig=swig3.0 sed=gsed + 20170625: AUTHOR: kde@FreeBSD.org |