From 72bfd921afb407ed021ca31390d3b0762ae31ae1 Mon Sep 17 00:00:00 2001 From: mezz Date: Fri, 24 Dec 2004 19:44:27 +0000 Subject: Add pkg-install.in to restore libgnome's keys if libgnome's .schemas file exits. I think this is the best explain why: mezz: Because, when you install libgnome and it depends on gnomevfs2, so libgnome will always overwrite gnomevfs2's key. If you reinstall or upgrade gnomevfs2 alone and it will overwrite libgnome's key, so I figure we add pkg-install.in in gnomevfs2 to allow libgnome's key to be in the top again. marcus: Okay, that makes sense. Probably safe to preserve the dependencies that way. mezz: Right and I figure that will make the bug report to be lesser trouble for GNOME developers and us. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3327 df743ca5-7f9a-e211-a948-0013205c9059 --- devel/gnome-vfs/Makefile | 6 ++++++ devel/gnome-vfs/pkg-install.in | 19 +++++++++++++++++++ devel/gnomevfs2/Makefile | 6 ++++++ devel/gnomevfs2/pkg-install.in | 19 +++++++++++++++++++ 4 files changed, 50 insertions(+) create mode 100644 devel/gnome-vfs/pkg-install.in create mode 100644 devel/gnomevfs2/pkg-install.in diff --git a/devel/gnome-vfs/Makefile b/devel/gnome-vfs/Makefile index e0a3399da..4c3e7d263 100644 --- a/devel/gnome-vfs/Makefile +++ b/devel/gnome-vfs/Makefile @@ -33,6 +33,7 @@ CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ BSD_PTHREAD_LIBS=${PTHREAD_LIBS} +PKGINSTALL= ${WRKDIR}/pkg-install PKGDEINSTALL= ${WRKDIR}/pkg-deinstall GCONF_SCHEMAS= desktop_default_applications.schemas \ @@ -95,6 +96,8 @@ post-patch: s|%%X11BASE%%|${X11BASE}|g' \ ${WRKSRC}/libgnomevfs/xdgmime.c \ ${WRKSRC}/libgnomevfs/gnome-vfs-mime-info.c + @${SED} -e 's|%%X11BASE%%|${X11BASE}|g' \ + < ${MASTERDIR}/pkg-install.in > ${PKGINSTALL} @${SED} -e 's|%%X11BASE%%|${X11BASE}|g' \ < ${MASTERDIR}/pkg-deinstall.in > ${PKGDEINSTALL} @@ -104,4 +107,7 @@ pre-configure: ${FALSE}; \ fi +post-install: + @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL + .include diff --git a/devel/gnome-vfs/pkg-install.in b/devel/gnome-vfs/pkg-install.in new file mode 100644 index 000000000..6a407a1e4 --- /dev/null +++ b/devel/gnome-vfs/pkg-install.in @@ -0,0 +1,19 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Restore gconf keys of libgnome. + +if [ "$2" != "POST-INSTALL" ]; then + exit 0 +fi + +SCHEMAS=%%X11BASE%%/etc/gconf/schemas/desktop_gnome_applications_terminal.schemas + +if [ -f ${SCHEMAS} ]; then + env GCONF_CONFIG_SOURCE=xml::%%X11BASE%%/etc/gconf/gconf.xml.defaults \ + %%X11BASE%%/bin/gconftool-2 --makefile-install-rule ${SCHEMAS} \ + > /dev/null || /usr/bin/true +fi + +exit 0 diff --git a/devel/gnomevfs2/Makefile b/devel/gnomevfs2/Makefile index e0a3399da..4c3e7d263 100644 --- a/devel/gnomevfs2/Makefile +++ b/devel/gnomevfs2/Makefile @@ -33,6 +33,7 @@ CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ BSD_PTHREAD_LIBS=${PTHREAD_LIBS} +PKGINSTALL= ${WRKDIR}/pkg-install PKGDEINSTALL= ${WRKDIR}/pkg-deinstall GCONF_SCHEMAS= desktop_default_applications.schemas \ @@ -95,6 +96,8 @@ post-patch: s|%%X11BASE%%|${X11BASE}|g' \ ${WRKSRC}/libgnomevfs/xdgmime.c \ ${WRKSRC}/libgnomevfs/gnome-vfs-mime-info.c + @${SED} -e 's|%%X11BASE%%|${X11BASE}|g' \ + < ${MASTERDIR}/pkg-install.in > ${PKGINSTALL} @${SED} -e 's|%%X11BASE%%|${X11BASE}|g' \ < ${MASTERDIR}/pkg-deinstall.in > ${PKGDEINSTALL} @@ -104,4 +107,7 @@ pre-configure: ${FALSE}; \ fi +post-install: + @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL + .include diff --git a/devel/gnomevfs2/pkg-install.in b/devel/gnomevfs2/pkg-install.in new file mode 100644 index 000000000..6a407a1e4 --- /dev/null +++ b/devel/gnomevfs2/pkg-install.in @@ -0,0 +1,19 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# Restore gconf keys of libgnome. + +if [ "$2" != "POST-INSTALL" ]; then + exit 0 +fi + +SCHEMAS=%%X11BASE%%/etc/gconf/schemas/desktop_gnome_applications_terminal.schemas + +if [ -f ${SCHEMAS} ]; then + env GCONF_CONFIG_SOURCE=xml::%%X11BASE%%/etc/gconf/gconf.xml.defaults \ + %%X11BASE%%/bin/gconftool-2 --makefile-install-rule ${SCHEMAS} \ + > /dev/null || /usr/bin/true +fi + +exit 0 -- cgit v1.2.3