svn commit: r318111 - head/x11/gnome-applets

Koop Mast kwm at FreeBSD.org
Mon May 13 15:40:05 UTC 2013


Author: kwm
Date: Mon May 13 15:40:04 2013
New Revision: 318111
URL: http://svnweb.freebsd.org/changeset/ports/318111

Log:
  Add NOTIFY to OPTIONS_DEFINE [1], also fix logic bug in notify support
  
  PR:		ports/178205 [1]
  Submitted by:	olgeni@

Modified:
  head/x11/gnome-applets/Makefile

Modified: head/x11/gnome-applets/Makefile
==============================================================================
--- head/x11/gnome-applets/Makefile	Mon May 13 15:39:33 2013	(r318110)
+++ head/x11/gnome-applets/Makefile	Mon May 13 15:40:04 2013	(r318111)
@@ -41,13 +41,13 @@ LDFLAGS+=	-L${LOCALBASE}/lib ${PTHREAD_L
 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
 


More information about the svn-ports-all mailing list