svn commit: r380850 - in head/net-im/profanity: . files
Tilman Keskinoz
arved at FreeBSD.org
Mon Mar 9 14:27:59 UTC 2015
Author: arved
Date: Mon Mar 9 14:27:57 2015
New Revision: 380850
URL: https://svnweb.freebsd.org/changeset/ports/380850
QAT: https://qat.redports.org/buildarchive/r380850/
Log:
Add an option for libnotify support
Submitted by: Denis D <stdedjub at googlemail.com> (Makefile changes)
Added:
head/net-im/profanity/files/
head/net-im/profanity/files/patch-configure.ac (contents, props changed)
Modified:
head/net-im/profanity/Makefile
Modified: head/net-im/profanity/Makefile
==============================================================================
--- head/net-im/profanity/Makefile Mon Mar 9 14:26:34 2015 (r380849)
+++ head/net-im/profanity/Makefile Mon Mar 9 14:27:57 2015 (r380850)
@@ -16,9 +16,17 @@ LIB_DEPENDS= libstrophe.so:${PORTSDIR}/n
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>
Added: head/net-im/profanity/files/patch-configure.ac
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net-im/profanity/files/patch-configure.ac Mon Mar 9 14:27:57 2015 (r380850)
@@ -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
More information about the svn-ports-all
mailing list