svn commit: r314562 - in head/ports-mgmt/pkg: . files

b.f. bf1783 at googlemail.com
Mon Mar 18 14:06:24 UTC 2013


On 3/18/13, Bryan Drewery <bdrewery at freebsd.org> wrote:
> Author: bdrewery
> Date: Mon Mar 18 13:04:26 2013
> New Revision: 314562
> URL: http://svnweb.freebsd.org/changeset/ports/314562
>
> Log:
>   - Fix lib/gio/modules/giomodule.cache being seen as a leftover
>     due to @unexec gio-querymodules running before files were deinstalled.
>     A more extensible solution is being sought for 1.0.10 to be used
> through
>     bsd.pkgng.mk
>
>   Reported by:	miwi, swills
>   With hat:	portmgr
>
> Added:
>   head/ports-mgmt/pkg/files/patch-libpkg__pkg_ports.c   (contents, props
> changed)
> Modified:
>   head/ports-mgmt/pkg/Makefile
>
> Modified: head/ports-mgmt/pkg/Makefile
> ==============================================================================
> --- head/ports-mgmt/pkg/Makefile	Mon Mar 18 13:02:03 2013	(r314561)
> +++ head/ports-mgmt/pkg/Makefile	Mon Mar 18 13:04:26 2013	(r314562)
> @@ -2,7 +2,7 @@
>
>  PORTNAME=	pkg
>  DISTVERSION=	1.0.9
> -PORTREVISION=	1
> +PORTREVISION=	2
>  CATEGORIES=	ports-mgmt
>  MASTER_SITES=	LOCAL/portmgr \
>  		http://files.etoilebsd.net/pkg/
>
> Added: head/ports-mgmt/pkg/files/patch-libpkg__pkg_ports.c
> ==============================================================================
> --- /dev/null	00:00:00 1970	(empty, because file is newly added)
> +++ head/ports-mgmt/pkg/files/patch-libpkg__pkg_ports.c	Mon Mar 18 13:04:26
> 2013	(r314562)
> @@ -0,0 +1,12 @@
> +diff --git libpkg/pkg_ports.c libpkg/pkg_ports.c
> +index 1c46faa..7bb7bff 100644
> +--- libpkg/pkg_ports.c
> ++++ libpkg/pkg_ports.c
> +@@ -363,6 +363,7 @@ meta_exec(struct plist *p, char *line, bool unexec)
> + 		    strstr(cmd, "mkfontscale") || strstr(cmd, "mkfontdir") ||
> + 		    strstr(cmd, "fc-cache") || strstr(cmd, "fonts.dir") ||
> + 		    strstr(cmd, "fonts.scale") ||
> ++		    strstr(cmd, "gio-querymodules") ||
> + 		    strstr(cmd, "gtk-update-icon-cache") ||
> + 		    strstr(cmd, "update-desktop-database") ||
> + 		    strstr(cmd, "update-mime-database")) {
>

Some ports that set GLIB_SCHEMAS are also failing the plist checks due
to the presence of an altered
share/glib-2.0/schemas/gschemas.compiled.  Some of the other gnome
@unexec directives that are not already covered by the altered patch
may also cause problems.

b.


More information about the svn-ports-all mailing list