Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Apr 2015 11:58:42 +0000 (UTC)
From:      Koop Mast <kwm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r383994 - in head: audio/goobox deskutils/caja-extensions games/hitori graphics/shotwell graphics/shotwell/files www/gnome-user-share x11-fm/sushi
Message-ID:  <201504141158.t3EBwgD1038982@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kwm
Date: Tue Apr 14 11:58:42 2015
New Revision: 383994
URL: https://svnweb.freebsd.org/changeset/ports/383994

Log:
  Fix some glib schema issues.
  
  The schemas should be listed in GLIB_SCHEMAS instead of in the plist so the
    glib schema database can be updated on installed/removal of the package.
    This updating is done by the GLIB_SCHEMAS macro.
  
  Make shotwell not run glib-compile-schemas in the stagedir, this has no effect.
  Additional this generates the share/glib-2.0/schemas/gschemas.compiled file.
    This file is managed by the glib20 port. And has a changing checksum because
    it recompiled every time a GLIB_SCHEMAS enabled port is installed or removed.

Modified:
  head/audio/goobox/Makefile
  head/audio/goobox/pkg-plist
  head/deskutils/caja-extensions/Makefile
  head/deskutils/caja-extensions/pkg-plist
  head/games/hitori/Makefile
  head/games/hitori/pkg-plist
  head/graphics/shotwell/Makefile
  head/graphics/shotwell/files/patch-Makefile
  head/graphics/shotwell/pkg-plist
  head/www/gnome-user-share/Makefile
  head/www/gnome-user-share/pkg-plist
  head/x11-fm/sushi/Makefile
  head/x11-fm/sushi/pkg-plist

Modified: head/audio/goobox/Makefile
==============================================================================
--- head/audio/goobox/Makefile	Tue Apr 14 10:44:54 2015	(r383993)
+++ head/audio/goobox/Makefile	Tue Apr 14 11:58:42 2015	(r383994)
@@ -4,7 +4,7 @@
 
 PORTNAME=	goobox
 PORTVERSION=	3.3.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	audio gnome
 MASTER_SITES=	GNOME
 DIST_SUBDIR=	gnome3
@@ -29,6 +29,8 @@ CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 INSTALL_TARGET=	install-strip
 
+GLIB_SCHEMAS=	org.gnome.Goobox.gschema.xml
+
 OPTIONS_DEFINE=	NOTIFY
 OPTIONS_DEFAULT=NOTIFY
 

Modified: head/audio/goobox/pkg-plist
==============================================================================
--- head/audio/goobox/pkg-plist	Tue Apr 14 10:44:54 2015	(r383993)
+++ head/audio/goobox/pkg-plist	Tue Apr 14 11:58:42 2015	(r383994)
@@ -2,7 +2,6 @@ bin/goobox
 share/GConf/gsettings/goobox.convert
 share/appdata/goobox.appdata.xml
 share/applications/goobox.desktop
-share/glib-2.0/schemas/org.gnome.Goobox.gschema.xml
 share/help/C/goobox/index.page
 share/help/C/goobox/legal.xml
 share/help/C/goobox/preferences.page

Modified: head/deskutils/caja-extensions/Makefile
==============================================================================
--- head/deskutils/caja-extensions/Makefile	Tue Apr 14 10:44:54 2015	(r383993)
+++ head/deskutils/caja-extensions/Makefile	Tue Apr 14 11:58:42 2015	(r383994)
@@ -3,7 +3,7 @@
 
 PORTNAME=	caja-extensions
 PORTVERSION=	1.8.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	deskutils mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate
@@ -24,4 +24,7 @@ CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 INSTALL_TARGET=	install-strip
 
+GLIB_SCHEMAS=	org.mate.Caja.Sendto.gschema.xml \
+		org.mate.caja-open-terminal.gschema.xml
+
 .include <bsd.port.mk>

Modified: head/deskutils/caja-extensions/pkg-plist
==============================================================================
--- head/deskutils/caja-extensions/pkg-plist	Tue Apr 14 10:44:54 2015	(r383993)
+++ head/deskutils/caja-extensions/pkg-plist	Tue Apr 14 11:58:42 2015	(r383994)
@@ -19,8 +19,6 @@ share/MateConf/gsettings/caja-sendto-con
 %%DATADIR%%/caja-image-rotate.ui
 %%DATADIR%%/caja-sendto.ui
 %%DATADIR%%/share-dialog.ui
-share/glib-2.0/schemas/org.mate.Caja.Sendto.gschema.xml
-share/glib-2.0/schemas/org.mate.caja-open-terminal.gschema.xml
 share/gtk-doc/html/caja-sendto/api-index-full.html
 share/gtk-doc/html/caja-sendto/caja-sendto-caja-sendto-plugin.html
 share/gtk-doc/html/caja-sendto/caja-sendto.devhelp2

Modified: head/games/hitori/Makefile
==============================================================================
--- head/games/hitori/Makefile	Tue Apr 14 10:44:54 2015	(r383993)
+++ head/games/hitori/Makefile	Tue Apr 14 11:58:42 2015	(r383994)
@@ -4,6 +4,7 @@
 
 PORTNAME=	hitori
 PORTVERSION=	3.14.3
+PORTREVISION=	1
 CATEGORIES=	games gnome
 MASTER_SITES=	GNOME
 DIST_SUBDIR=	gnome3
@@ -20,4 +21,6 @@ GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 
+GLIB_SCHEMAS=	org.gnome.hitori.gschema.xml
+
 .include <bsd.port.mk>

Modified: head/games/hitori/pkg-plist
==============================================================================
--- head/games/hitori/pkg-plist	Tue Apr 14 10:44:54 2015	(r383993)
+++ head/games/hitori/pkg-plist	Tue Apr 14 11:58:42 2015	(r383994)
@@ -1,7 +1,6 @@
 bin/hitori
 share/appdata/hitori.appdata.xml
 share/applications/hitori.desktop
-share/glib-2.0/schemas/org.gnome.hitori.gschema.xml
 share/help/C/hitori/customization.page
 share/help/C/hitori/figures/hitori_main_window.png
 share/help/C/hitori/game.page

Modified: head/graphics/shotwell/Makefile
==============================================================================
--- head/graphics/shotwell/Makefile	Tue Apr 14 10:44:54 2015	(r383993)
+++ head/graphics/shotwell/Makefile	Tue Apr 14 11:58:42 2015	(r383994)
@@ -3,6 +3,7 @@
 
 PORTNAME=	shotwell
 PORTVERSION=	0.22.0
+PORTREVISION=	1
 CATEGORIES=	graphics gnome
 MASTER_SITES=	GNOME/sources/shotwell/${PORTVERSION:R}
 

Modified: head/graphics/shotwell/files/patch-Makefile
==============================================================================
--- head/graphics/shotwell/files/patch-Makefile	Tue Apr 14 10:44:54 2015	(r383993)
+++ head/graphics/shotwell/files/patch-Makefile	Tue Apr 14 11:58:42 2015	(r383994)
@@ -1,5 +1,5 @@
---- Makefile.orig	2015-03-28 15:11:25.000000000 +0100
-+++ Makefile	2015-03-28 15:14:57.000000000 +0100
+--- Makefile.orig	2015-03-24 01:38:31.000000000 +0100
++++ Makefile	2015-04-14 13:06:36.396704000 +0200
 @@ -13,7 +13,7 @@
  VALAC := $(shell which $(VALAC))
  endif
@@ -25,8 +25,12 @@
  	libexif >= 0.6.16 \
  	libgphoto2 >= 2.4.2 \
  	libraw >= 0.13.2 \
-@@ -544,8 +542,8 @@
- 	glib-compile-schemas $(DESTDIR)$(PREFIX)/share/glib-2.0/schemas
+@@ -541,11 +539,11 @@
+ 	$(INSTALL_DATA) misc/org.yorba.shotwell.gschema.xml $(DESTDIR)$(PREFIX)/share/glib-2.0/schemas
+ 	$(INSTALL_DATA) misc/org.yorba.shotwell-extras.gschema.xml $(DESTDIR)$(PREFIX)/share/glib-2.0/schemas
+ ifndef DISABLE_SCHEMAS_COMPILE
+-	glib-compile-schemas $(DESTDIR)$(PREFIX)/share/glib-2.0/schemas
++#	glib-compile-schemas $(DESTDIR)$(PREFIX)/share/glib-2.0/schemas
  endif
  ifndef DISABLE_GSETTINGS_CONVERT_INSTALL
 -	mkdir -p $(DESTDIR)/usr/share/GConf/gsettings

Modified: head/graphics/shotwell/pkg-plist
==============================================================================
--- head/graphics/shotwell/pkg-plist	Tue Apr 14 10:44:54 2015	(r383993)
+++ head/graphics/shotwell/pkg-plist	Tue Apr 14 11:58:42 2015	(r383994)
@@ -33,7 +33,6 @@ share/GConf/gsettings/shotwell.convert
 share/appdata/shotwell.appdata.xml
 share/applications/shotwell-viewer.desktop
 share/applications/shotwell.desktop
-share/glib-2.0/schemas/gschemas.compiled
 share/gnome/help/shotwell/C/edit-adjustments.page
 share/gnome/help/shotwell/C/edit-crop.page
 share/gnome/help/shotwell/C/edit-enhance.page

Modified: head/www/gnome-user-share/Makefile
==============================================================================
--- head/www/gnome-user-share/Makefile	Tue Apr 14 10:44:54 2015	(r383993)
+++ head/www/gnome-user-share/Makefile	Tue Apr 14 11:58:42 2015	(r383994)
@@ -4,6 +4,7 @@
 
 PORTNAME=	gnome-user-share
 PORTVERSION=	3.14.0
+PORTREVISION=	1
 CATEGORIES=	www deskutils gnome
 MASTER_SITES=	GNOME
 DIST_SUBDIR=	gnome2
@@ -31,6 +32,8 @@ CPPFLAGS+=	-I${LOCALBASE}/include
 LIBS+=		-L${LOCALBASE}/lib
 INSTALL_TARGET=	install-strip
 
+GLIB_SCHEMAS=	org.gnome.desktop.file-sharing.gschema.xml
+
 post-patch:
 	@${REINPLACE_CMD} -e 's|/etc/httpd/modules|${LOCALBASE}/${APACHEMODDIR}|g' \
 		${WRKSRC}/data/dav_user_*.conf

Modified: head/www/gnome-user-share/pkg-plist
==============================================================================
--- head/www/gnome-user-share/pkg-plist	Tue Apr 14 10:44:54 2015	(r383993)
+++ head/www/gnome-user-share/pkg-plist	Tue Apr 14 11:58:42 2015	(r383994)
@@ -3,7 +3,6 @@ libexec/gnome-user-share-webdav
 lib/nautilus/extensions-3.0/libnautilus-share-extension.so
 share/GConf/gsettings/gnome-user-share.convert
 share/applications/gnome-user-share-webdav.desktop
-share/glib-2.0/schemas/org.gnome.desktop.file-sharing.gschema.xml
 share/gnome-user-share/dav_groupfile
 share/gnome-user-share/dav_user_2.0.conf
 share/gnome-user-share/dav_user_2.2.conf

Modified: head/x11-fm/sushi/Makefile
==============================================================================
--- head/x11-fm/sushi/Makefile	Tue Apr 14 10:44:54 2015	(r383993)
+++ head/x11-fm/sushi/Makefile	Tue Apr 14 11:58:42 2015	(r383994)
@@ -4,6 +4,7 @@
 
 PORTNAME=	sushi
 PORTVERSION=	3.12.0
+PORTREVISION=	1
 CATEGORIES=	x11-fm gnome
 MASTER_SITES=	GNOME
 DIST_SUBDIR=	gnome3
@@ -29,4 +30,6 @@ CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 INSTALL_TARGET=	install-strip
 
+GLIB_SCHEMAS=	org.gnome.sushi.gschema.xml
+
 .include <bsd.port.mk>

Modified: head/x11-fm/sushi/pkg-plist
==============================================================================
--- head/x11-fm/sushi/pkg-plist	Tue Apr 14 10:44:54 2015	(r383993)
+++ head/x11-fm/sushi/pkg-plist	Tue Apr 14 11:58:42 2015	(r383994)
@@ -3,7 +3,6 @@ lib/sushi/girepository-1.0/Sushi-1.0.typ
 lib/sushi/libsushi-1.0.so
 libexec/sushi-start
 share/dbus-1/services/org.gnome.Sushi.service
-share/glib-2.0/schemas/org.gnome.sushi.gschema.xml
 share/locale/an/LC_MESSAGES/sushi.mo
 share/locale/ar/LC_MESSAGES/sushi.mo
 share/locale/as/LC_MESSAGES/sushi.mo



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504141158.t3EBwgD1038982>