summaryrefslogtreecommitdiff
path: root/sysutils/gio-fam
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2012-05-01 18:45:51 +0000
committeradam <adam@pkgsrc.org>2012-05-01 18:45:51 +0000
commita1389d0a9619e8f81d111c6a32c34615dc84189b (patch)
tree1540a3b8598c3d7a7db409df4a6edbf1cdd26a4f /sysutils/gio-fam
parent7492f79ff2015768bce78e7ec887149c5c2d5677 (diff)
downloadpkgsrc-a1389d0a9619e8f81d111c6a32c34615dc84189b.tar.gz
Changes 2.32.2:
* GApplication: can now have a NULL application ID * g_clear_object: fix warnings when using it on C++ (due to lack of ability to implicitly cast void*) * GDBus: - add our own implementation of the message bus for use on Windows only - fix up a few bugs that use of this bus uncovered in GDBus - escape nonce files in dbus addressess (think 'c:\') - support initial underscores in dbus codegen namespace (for private) * Fix misdetection of GNUstep as Cocoa (for the MacOS GSettings backend) * make sure configure fails if AC_CHECK_ALIGNOF cannot detect the alignment * GAppInfo: overwrite the DISPLAY only if it is set in the launch context * glib/tests/date: force US locale running the GDateTime tests * GSocketControlMessage: Don't warn about unknown messages * Resources: - fix broken use of GVDB on big endian machines - set a 'display name' so that pretty file names appear in Gtk CSS warning messages * GMainContext: - block child sources when blocking the parent - introduce more testcases for child sources * Translations updates: Brazilian Portuguese French Galician Italian Lithuanian Polish Polish Serbian Simplified Chinese Spanish * Bug fixed: 619026 avoid warning in gutils.h when using gcc with -Wconversion 669260 Open/Save dialog hangs waiting for data with libsoup 671249 GApplication: Allow a null application_id? 672786 goa-daemon: action in notification doesn't work 673409 g_resource_lookup_data may return stale data pointer 674172 glib-2.32.1 misdetects GNUstep as Cocoa 674345 cssprovider: Make sure to print out file name in css warnings 674483 broken configure results when cross-compiling with gcc >= 4.5
Diffstat (limited to 'sysutils/gio-fam')
-rw-r--r--sysutils/gio-fam/Makefile10
-rw-r--r--sysutils/gio-fam/hacks.mk15
2 files changed, 19 insertions, 6 deletions
diff --git a/sysutils/gio-fam/Makefile b/sysutils/gio-fam/Makefile
index 16cff6ff279..8ed4c48c3ea 100644
--- a/sysutils/gio-fam/Makefile
+++ b/sysutils/gio-fam/Makefile
@@ -1,13 +1,11 @@
-# $NetBSD: Makefile,v 1.5 2012/03/08 14:49:45 obache Exp $
-#
+# $NetBSD: Makefile,v 1.6 2012/05/01 18:45:53 adam Exp $
.include "../../devel/glib2/Makefile.common"
-PKGNAME:= ${PKGNAME:S/glib2/gio-fam/}
-PKGREVISION= 1
-CATEGORIES= sysutils
+PKGNAME:= ${PKGNAME:S/glib2/gio-fam/}
+CATEGORIES= sysutils
-COMMENT= FAM backend for GIO, the glib VFS API
+COMMENT= FAM backend for GIO, the glib VFS API
NOT_FOR_PLATFORM= HPUX-*-* OSF1-*-*
diff --git a/sysutils/gio-fam/hacks.mk b/sysutils/gio-fam/hacks.mk
new file mode 100644
index 00000000000..a8b0b2c14c7
--- /dev/null
+++ b/sysutils/gio-fam/hacks.mk
@@ -0,0 +1,15 @@
+# $NetBSD: hacks.mk,v 1.1 2012/05/01 18:45:53 adam Exp $
+
+.if !defined(GIOFAM_HACKS_MK)
+GIOFAM_HACKS_MK= # defined
+
+.if ${OPSYS} == "Darwin"
+PKG_HACKS+= darwin-iconv
+SUBST_CLASSES+= iconv
+SUBST_STAGE.iconv= pre-configure
+SUBST_MESSAGE.iconv= Changing libiconv_open to iconv_open.
+SUBST_FILES.iconv= configure
+SUBST_SED.iconv= -e 's,libiconv_open,iconv_open,g'
+.endif
+
+.endif