diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-10-11 19:03:24 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-10-11 19:03:24 +0000 |
commit | ec229aec83d786e2a79f678b20dd346361b8a06a (patch) | |
tree | 0b4db4639f09e760dc626b3c4cba7e78bc84e43b /CHANGES | |
parent | 86a88c2df0a9f201c58f8528809d6dedeac3586f (diff) | |
download | ports-ec229aec83d786e2a79f678b20dd346361b8a06a.tar.gz ports-ec229aec83d786e2a79f678b20dd346361b8a06a.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
Notes
Notes:
svn path=/head/; revision=451772
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 |