diff options
author | kwm <kwm@FreeBSD.org> | 2013-05-13 23:40:04 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2013-05-13 23:40:04 +0800 |
commit | 2aeffcde44baf5aff4e1eb972a6fbd3ff319105a (patch) | |
tree | 9a0dff3a581cec1fc46d80b2edee03f0e505bfc0 /x11 | |
parent | 35dbaf2a32aae7512a13ee61cfa806ad9cf2a5a9 (diff) | |
download | freebsd-ports-gnome-2aeffcde44baf5aff4e1eb972a6fbd3ff319105a.tar.gz freebsd-ports-gnome-2aeffcde44baf5aff4e1eb972a6fbd3ff319105a.tar.zst freebsd-ports-gnome-2aeffcde44baf5aff4e1eb972a6fbd3ff319105a.zip |
Add NOTIFY to OPTIONS_DEFINE [1], also fix logic bug in notify support
PR: ports/178205 [1]
Submitted by: olgeni@
Diffstat (limited to 'x11')
-rw-r--r-- | x11/gnome-applets/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/gnome-applets/Makefile b/x11/gnome-applets/Makefile index 48290d59ecb5..36f8261099fc 100644 --- a/x11/gnome-applets/Makefile +++ b/x11/gnome-applets/Makefile @@ -41,13 +41,13 @@ LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} GCONF_SCHEMAS= charpick.schemas drivemount.schemas geyes.schemas \ mixer.schemas multiload.schemas stickynotes.schemas -OPTIONS_DEFINE= MINI_COMMANDER +OPTIONS_DEFINE= MINI_COMMANDER NOTIFY MINI_COMMANDER_DESC= Mini-commander applet .include <bsd.port.options.mk> .if exists(${LOCALBASE}/libdata/pkgconfig/libnotify.pc) || \ - !${PORT_OPTIONS:MNOTIFY} + ${PORT_OPTIONS:MNOTIFY} LIB_DEPENDS+= notify:${PORTSDIR}/devel/libnotify .endif |