diff options
author | arved <arved@FreeBSD.org> | 2015-03-09 22:27:57 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2015-03-09 22:27:57 +0800 |
commit | 61cb290edc0f8597df91249bbff53fddb06d7ff0 (patch) | |
tree | bb91dfd1fc87adb6fe8c17c838bf1874ef63aa33 /net-im | |
parent | a676db82fe7100ade6ebb08204a1c3bef850c0ac (diff) | |
download | freebsd-ports-graphics-61cb290edc0f8597df91249bbff53fddb06d7ff0.tar.gz freebsd-ports-graphics-61cb290edc0f8597df91249bbff53fddb06d7ff0.tar.zst freebsd-ports-graphics-61cb290edc0f8597df91249bbff53fddb06d7ff0.zip |
Add an option for libnotify support
Submitted by: Denis D <stdedjub@googlemail.com> (Makefile changes)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/profanity/Makefile | 10 | ||||
-rw-r--r-- | net-im/profanity/files/patch-configure.ac | 32 |
2 files changed, 41 insertions, 1 deletions
diff --git a/net-im/profanity/Makefile b/net-im/profanity/Makefile index 29b949ea007..7947b5b97fd 100644 --- a/net-im/profanity/Makefile +++ b/net-im/profanity/Makefile @@ -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> diff --git a/net-im/profanity/files/patch-configure.ac b/net-im/profanity/files/patch-configure.ac new file mode 100644 index 00000000000..7949b2ae0a1 --- /dev/null +++ b/net-im/profanity/files/patch-configure.ac @@ -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 |