1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00

Add an option for libnotify support

Submitted by: Denis D <stdedjub@googlemail.com> (Makefile changes)
This commit is contained in:
Tilman Keskinoz 2015-03-09 14:27:57 +00:00
parent 0a449ca9e2
commit dc0db7761b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=380850
2 changed files with 41 additions and 1 deletions

View File

@ -16,9 +16,17 @@ LIB_DEPENDS= libstrophe.so:${PORTSDIR}/net-im/libstrophe \
libcurl.so:${PORTSDIR}/ftp/curl \
libotr.so:${PORTSDIR}/security/libotr3
USES= ncurses pkgconfig
OPTIONS_DEFINE=NOTIFY
USES= ncurses pkgconfig autoreconf
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-otr
CONFIGURE_ENV= LIBS="${CFLAGS} -lcrypto"
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNOTIFY}
LIB_DEPENDS+= libnotify.so:${PORTSDIR}/devel/libnotify
CONFIGURE_ARGS+= --enable-notifications
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,32 @@
--- configure.ac.orig 2015-03-09 09:51:22.000000000 +0100
+++ configure.ac 2015-03-09 09:56:17.000000000 +0100
@@ -141,22 +141,21 @@
### Windows uses native OS calls
### OSX requires terminal-notifier
-AS_IF([test "x$PLATFORM" = xosx],
- [AS_IF([test "x$enable_notifications" != xno],
+AS_IF([test "x$enable_notifications" != xno],
[NOTIFIER_PATH="no"
AC_PATH_PROG(NOTIFIER_PATH, terminal-notifier, no)
AS_IF([test "x$NOTIFIER_PATH" = xno],
[AS_IF([test "x$enable_notifications" = xyes],
- [AC_MSG_ERROR([terminal-notifier not found, required for desktop notifications.])],
+ [AC_MSG_WARN([terminal-notifier not found, required for desktop notifications on OS X.])],
[AC_MSG_NOTICE([Desktop notifications not supported.])])],
- [AC_DEFINE([HAVE_OSXNOTIFY], [1], [terminal notifier])])])],
- [test "x$PLATFORM" = xnix],
- [AS_IF([test "x$enable_notifications" != xno],
+ [AC_DEFINE([HAVE_OSXNOTIFY], [1], [terminal notifier])])])
+
+AS_IF([test "x$enable_notifications" != xno],
[PKG_CHECK_MODULES([libnotify], [libnotify],
[AC_DEFINE([HAVE_LIBNOTIFY], [1], [libnotify module])],
[AS_IF([test "x$enable_notifications" = xyes],
- [AC_MSG_ERROR([libnotify is required but does not exist])],
- [AC_MSG_NOTICE([libnotify support will be disabled])])])])])
+ [AC_MSG_WARN([libnotify is required but does not exist])],
+ [AC_MSG_NOTICE([libnotify support will be disabled])])])])
# TODO: rewrite this
if test "x$with_xscreensaver" = xyes; then