diff options
author | bapt <bapt@FreeBSD.org> | 2013-04-23 06:25:20 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-04-23 06:25:20 +0800 |
commit | aefc9ed3a3a226316bc776cbe93cfd9c3d036d28 (patch) | |
tree | 8554d759bfd6a38c98a7062e4e529bf8a9f5f069 /CHANGES | |
parent | d845c4fc7f3c84ec9f8fcfae9600a013c579bbcc (diff) | |
download | freebsd-ports-gnome-aefc9ed3a3a226316bc776cbe93cfd9c3d036d28.tar.gz freebsd-ports-gnome-aefc9ed3a3a226316bc776cbe93cfd9c3d036d28.tar.zst freebsd-ports-gnome-aefc9ed3a3a226316bc776cbe93cfd9c3d036d28.zip |
Introduce USES= pkgconfig to replace USE_PKGCONFIG
It can take 3 arguments:
build (default,implicit) to add pkgconf into BUILD_DEPENDS
run to add pkgconf into RUN_DEPENDS
both to add pkgconf into both RUN and BUILD DEPENDS
This deprecates USE_PKGCONFIG, please convert your ports.
USE_PKGCONFIG will be removed as soon as it is no more used in
the ports tree
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. +20130323: +AUTHOR: bapt@FreeBSD.org + + * New USES macro to handle support for pkgconf (pkg-config) dependency: + + USES= pkgconfig[:build] will add pkgconf into BUILD_DEPENDS + USES= pkgconfig:run will add pkgconf into RUN_DEPENDS + USES= pkgconfig:both will add pkgconf into both RUN and BUILD DEPENDS + + It deprecates USE_PKGCONFIG which will be removed as soon as it is not + used anymore + 20130320: AUTHOR: jgh@FreeBSD.org |