diff options
author | madpilot <madpilot@FreeBSD.org> | 2018-01-14 06:15:33 +0800 |
---|---|---|
committer | madpilot <madpilot@FreeBSD.org> | 2018-01-14 06:15:33 +0800 |
commit | 6f12ee5bf2392c34eb01cbc336ca90d948bf262c (patch) | |
tree | da3f99cbbf63b077a5059b29c4df167e80fd2db0 /x11-toolkits/girara | |
parent | 8deb62abffd505e7bb2dfe3b2a810520044d8bc4 (diff) | |
download | freebsd-ports-gnome-6f12ee5bf2392c34eb01cbc336ca90d948bf262c.tar.gz freebsd-ports-gnome-6f12ee5bf2392c34eb01cbc336ca90d948bf262c.tar.zst freebsd-ports-gnome-6f12ee5bf2392c34eb01cbc336ca90d948bf262c.zip |
- Add NOTIFY option, enabled by default
- Add JSONC option, disabled by default
These options allow controlling two optional dependencies of girara,
which where being silently linked if present on the system when
compiling.
PR: 224876
Submitted by: pawel@
MFH: 2018Q1
Diffstat (limited to 'x11-toolkits/girara')
-rw-r--r-- | x11-toolkits/girara/Makefile | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/x11-toolkits/girara/Makefile b/x11-toolkits/girara/Makefile index 8f5f73b7dace..854a8a69bf64 100644 --- a/x11-toolkits/girara/Makefile +++ b/x11-toolkits/girara/Makefile @@ -3,6 +3,7 @@ PORTNAME= girara PORTVERSION= 0.2.8 +PORTREVISION= 1 CATEGORIES= x11-toolkits graphics MASTER_SITES= https://pwmt.org/projects/girara/download/ \ http://www.madpilot.net/~mad/pwmt.org/ @@ -19,10 +20,19 @@ LIBDIR= ${PREFIX}/lib MAKE_ENV+= SFLAGS=${STRIP} \ VERBOSE=1 -OPTIONS_DEFINE= NLS +OPTIONS_DEFINE= JSONC NLS NOTIFY +OPTIONS_DEFAULT= NOTIFY +JSONC_DESC= Support json configuration dump -OPTIONS_SUB= yes -NLS_USES= gettext +OPTIONS_SUB= yes + +JSONC_LIB_DEPENDS= libjson-c.so:devel/json-c +JSONC_MAKE_ENV_OFF= WITH_JSON=0 + +NLS_USES= gettext + +NOTIFY_LIB_DEPENDS= libnotify.so:devel/libnotify +NOTIFY_MAKE_ENV_OFF= WITH_LIBNOTIFY=0 post-patch: .SILENT ${REINPLACE_CMD} -e 's|^\(CFLAGS +=\) -std=c11|\1|' \ |