View | Details | Raw Unified | Return to bug 104876 | Differences between
and this patch

Collapse All | Expand All

(-)libnotify/Makefile (-5 / +4 lines)
Lines 6-26 Link Here
6
#
6
#
7
7
8
PORTNAME=	libnotify
8
PORTNAME=	libnotify
9
PORTVERSION=	0.4.2
9
PORTVERSION=	0.4.3
10
PORTREVISION=	2
11
CATEGORIES=	devel gnome
10
CATEGORIES=	devel gnome
12
MASTER_SITES=	http://www.galago-project.org/files/releases/source/libnotify/
11
MASTER_SITES=	http://www.galago-project.org/files/releases/source/libnotify/
13
12
14
MAINTAINER=	andreas@syndrom23.de
13
MAINTAINER=	gnome@FreeBSD.org
15
COMMENT=	A library for desktop notifications
14
COMMENT=	A library for desktop notifications
16
15
17
LIB_DEPENDS=	dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \
16
LIB_DEPENDS=	dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \
18
		popt.0:${PORTSDIR}/devel/popt
17
		popt.0:${PORTSDIR}/devel/popt
19
18
20
USE_GNOME=	gnomehack gnometarget intlhack glib20 gtk20
19
USE_GNOME=	gnomehack gnometarget intlhack glib20 gtk20 ltverhack
21
USE_GMAKE=	yes
20
USE_GMAKE=	yes
22
INSTALLS_SHLIB=	yes
21
INSTALLS_SHLIB=	yes
23
GNU_CONFIGURE=	yes
22
USE_AUTOTOOLS=	libtool:15
24
CONFIGURE_ARGS= --without-gtk-doc
23
CONFIGURE_ARGS= --without-gtk-doc
25
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
24
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
26
		LDFLAGS="-L${LOCALBASE}/lib"
25
		LDFLAGS="-L${LOCALBASE}/lib"
(-)libnotify/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (libnotify-0.4.2.tar.gz) = 25585318503079a513af7064bb59c04d
1
MD5 (libnotify-0.4.3.tar.gz) = 5c81a26b461b2abd4c02a918b8486539
2
SHA256 (libnotify-0.4.2.tar.gz) = 9e95499badd1b0da67b1422caa4198dbe61c961300b7001173eace18b8b2c38e
2
SHA256 (libnotify-0.4.3.tar.gz) = 15b0492ac252f6e8ce57c106bda0722413196d16d198c97f20a05908d1b977af
3
SIZE (libnotify-0.4.2.tar.gz) = 388355
3
SIZE (libnotify-0.4.3.tar.gz) = 389402
(-)libnotify/files/patch-libnotify-notification.c (-21 lines)
Lines 1-21 Link Here
1
diff -Naur libnotify-0.4.2.orig/libnotify/notification.c libnotify-0.4.2/libnotify/notification.c
2
--- libnotify/notification.c	2006-06-15 11:14:03.000000000 +0200
3
+++ libnotify/notification.c	2006-06-18 05:09:08.000000000 +0200
4
@@ -901,7 +901,7 @@
5
 		return FALSE;
6
 	}
7
 
8
-	g_value_init(value, dbus_g_type_get_collection("GArray", G_TYPE_CHAR));
9
+	g_value_init(value, DBUS_TYPE_G_UCHAR_ARRAY); 
10
 	g_value_set_boxed_take_ownership(value, byte_array);
11
 	g_value_array_append(array, value);
12
 
13
@@ -961,7 +961,7 @@
14
 
15
 	value = g_new0(GValue, 1);
16
 	g_value_init(value, G_TYPE_VALUE_ARRAY);
17
-	g_value_set_boxed(value, image_struct);
18
+	g_value_set_boxed_take_ownership(value, image_struct);
19
 
20
 	g_hash_table_insert(notification->priv->hints,
21
 						g_strdup("icon_data"), value);
(-)libnotify/pkg-plist (-1 / +1 lines)
Lines 5-11 Link Here
5
lib/libnotify.a
5
lib/libnotify.a
6
lib/libnotify.la
6
lib/libnotify.la
7
lib/libnotify.so
7
lib/libnotify.so
8
lib/libnotify.so.2
8
lib/libnotify.so.1
9
libdata/pkgconfig/libnotify.pc
9
libdata/pkgconfig/libnotify.pc
10
share/gtk-doc/html/libnotify/NotifyNotification.html
10
share/gtk-doc/html/libnotify/NotifyNotification.html
11
share/gtk-doc/html/libnotify/ch01.html
11
share/gtk-doc/html/libnotify/ch01.html

Return to bug 104876