View | Details | Raw Unified | Return to bug 205601
Collapse All | Expand All

(-)Makefile (-2 / +3 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	profanity
3
PORTNAME=	profanity
4
PORTVERSION=	0.4.6
4
PORTVERSION=	0.4.7
5
CATEGORIES=	net-im
5
CATEGORIES=	net-im
6
MASTER_SITES=	http://www.profanity.im/
6
MASTER_SITES=	http://www.profanity.im/
7
7
Lines 14-20 Link Here
14
LIB_DEPENDS=	libstrophe.so:${PORTSDIR}/net-im/libstrophe \
14
LIB_DEPENDS=	libstrophe.so:${PORTSDIR}/net-im/libstrophe \
15
		libglib-2.0.so:${PORTSDIR}/devel/glib20 \
15
		libglib-2.0.so:${PORTSDIR}/devel/glib20 \
16
		libcurl.so:${PORTSDIR}/ftp/curl \
16
		libcurl.so:${PORTSDIR}/ftp/curl \
17
		libotr.so:${PORTSDIR}/security/libotr3
17
		libotr.so:${PORTSDIR}/security/libotr3 \
18
		libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid
18
19
19
OPTIONS_DEFINE=NOTIFY
20
OPTIONS_DEFINE=NOTIFY
20
USES=		ncurses pkgconfig autoreconf
21
USES=		ncurses pkgconfig autoreconf
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (profanity-0.4.6.tar.gz) = 9672667e419958dd75d40cc0f253087ba1ae7df0c3c855eaa780831ad8282a9f
1
SHA256 (profanity-0.4.7.tar.gz) = b02c4e029fe84941050ccab6c8cdf5f15df23de5d1384b4d1ec66da6faee11dd
2
SIZE (profanity-0.4.6.tar.gz) = 431828
2
SIZE (profanity-0.4.7.tar.gz) = 463291
(-)files/patch-configure.ac (-32 lines)
Lines 1-32 Link Here
1
--- configure.ac.orig	2015-03-09 09:51:22.000000000 +0100
2
+++ configure.ac	2015-03-09 09:56:17.000000000 +0100
3
@@ -141,22 +141,21 @@
4
 ### Windows uses native OS calls
5
 ### OSX requires terminal-notifier
6
 
7
-AS_IF([test "x$PLATFORM" = xosx],
8
-        [AS_IF([test "x$enable_notifications" != xno],
9
+AS_IF([test "x$enable_notifications" != xno],
10
             [NOTIFIER_PATH="no"
11
             AC_PATH_PROG(NOTIFIER_PATH, terminal-notifier, no)
12
             AS_IF([test "x$NOTIFIER_PATH" = xno],
13
                 [AS_IF([test "x$enable_notifications" = xyes],
14
-                    [AC_MSG_ERROR([terminal-notifier not found, required for desktop notifications.])],
15
+                    [AC_MSG_WARN([terminal-notifier not found, required for desktop notifications on OS X.])],
16
                     [AC_MSG_NOTICE([Desktop notifications not supported.])])],
17
-                [AC_DEFINE([HAVE_OSXNOTIFY], [1], [terminal notifier])])])],
18
-    [test "x$PLATFORM" = xnix],
19
-        [AS_IF([test "x$enable_notifications" != xno],
20
+                [AC_DEFINE([HAVE_OSXNOTIFY], [1], [terminal notifier])])])
21
+
22
+AS_IF([test "x$enable_notifications" != xno],
23
             [PKG_CHECK_MODULES([libnotify], [libnotify],
24
                 [AC_DEFINE([HAVE_LIBNOTIFY], [1], [libnotify module])],
25
                 [AS_IF([test "x$enable_notifications" = xyes],
26
-                    [AC_MSG_ERROR([libnotify is required but does not exist])],
27
-                    [AC_MSG_NOTICE([libnotify support will be disabled])])])])])
28
+                    [AC_MSG_WARN([libnotify is required but does not exist])],
29
+                    [AC_MSG_NOTICE([libnotify support will be disabled])])])])
30
 
31
 # TODO: rewrite this
32
 if test "x$with_xscreensaver" = xyes; then

Return to bug 205601