Import gconf2-1.2.1

--
GConf is a configuration database system, functionally similar to the
Windows registry but lots better.

For more information about GConf and the GNOME project, visit:

WWW: http://www.gnome.org/projects/gconf/

From marcm for gnome2
This commit is contained in:
todd 2003-01-31 18:26:49 +00:00
parent 8c4b10bce1
commit ce2fd6972d
13 changed files with 574 additions and 0 deletions

47
devel/gconf2/Makefile Normal file
View File

@ -0,0 +1,47 @@
# $OpenBSD: Makefile,v 1.1.1.1 2003/01/31 18:26:49 todd Exp $
COMMENT= "configuration database system for GNOME"
VERSION= 1.2.1
DISTNAME= GConf-${VERSION}
PKGNAME= gconf2-${VERSION}
CATEGORIES= devel
HOMEPAGE= http://www.gnome.org/projects/gconf/
MAINTAINER= Marc Matteo <marcm@openbsd.org>
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/GConf/1.2/}
EXTRACT_SUFX= .tar.bz2
MODULES= gettext
BUILD_DEPENDS= :pkgconfig->=0.12.0p1:devel/pkgconfig
LIB_DEPENDS= ORBit-2::devel/ORBit2 \
gdk-x11-2.0.0.0,gdk_pixbuf-2.0.0.0,gtk-x11-2.0.0.0::x11/gtk+2 \
gthread-2.0.0.7::devel/glib2 \
xml2.6::textproc/libxml
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
SEPARATE_BUILD= concurrent
DEFAULT_GCONF_SOURCE= xml::/var/db/gconf/gconf.xml.defaults
USE_X11= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
CONFIGURE_ARGS+= --disable-gtk-conf
CONFIGURE_ARGS+= --enable-gconf-source=${DEFAULT_GCONF_SOURCE}
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
post-install:
@${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gconf2; \
cp -Rp ${WRKINST}/${SYSCONFDIR}/* ${PREFIX}/share/examples/gconf2; \
.include <bsd.port.mk>

3
devel/gconf2/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (GConf-1.2.1.tar.bz2) = 4e5ffdebd7dbf6d86459f6e57f8d772c
RMD160 (GConf-1.2.1.tar.bz2) = c376dc106e0d6ae8349a00768979d4effbc36b37
SHA1 (GConf-1.2.1.tar.bz2) = a0b585dbfbd598380bd4e40f275ff478b196eefc

View File

@ -0,0 +1,76 @@
$OpenBSD: patch-configure,v 1.1.1.1 2003/01/31 18:26:49 todd Exp $
--- configure.orig Sun Aug 4 11:18:52 2002
+++ configure Thu Dec 12 16:07:27 2002
@@ -1068,7 +1068,11 @@ esac
# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
# absolute.
ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
-ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
+if test -z "$ac_top_builddir"; then
+ ac_abs_top_builddir=`cd "$ac_dir" && pwd`
+else
+ ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
+fi
ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
@@ -5653,8 +5657,8 @@ else
hardcode_direct=yes
hardcode_shlibpath_var=no
if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
- archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linker_flags'
- hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
+ hardcode_libdir_flag_spec='${wl}-R$libdir'
export_dynamic_flag_spec='${wl}-E'
else
case "$host_os" in
@@ -5663,8 +5667,8 @@ else
hardcode_libdir_flag_spec='-R$libdir'
;;
*)
- archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linker_flags'
- hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
+ hardcode_libdir_flag_spec='${wl}-R$libdir'
;;
esac
fi
@@ -7861,9 +7865,9 @@ fi
PKGCONFIG_MODULES='gmodule-2.0 >= 2.0.1 gobject-2.0 >= 2.0.1 ORBit-2.0 >= 2.4.0 linc >= 0.5.0'
-PKGCONFIG_MODULES_WITH_XML="$PKGCONFIG_MODULES libxml-2.0"
+PKGCONFIG_MODULES_WITH_XML=" libxml-2.0 $PKGCONFIG_MODULES"
PKGCONFIG_MODULES_WITH_GTK=" $PKGCONFIG_MODULES gtk+-2.0 >= 2.0.0"
-PKGCONFIG_MODULES_WITH_XML_AND_GTK=" $PKGCONFIG_MODULES gtk+-2.0 libxml-2.0"
+PKGCONFIG_MODULES_WITH_XML_AND_GTK=" libxml-2.0 $PKGCONFIG_MODULES gtk+-2.0"
succeeded=no
@@ -12217,7 +12221,11 @@ esac
# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
# absolute.
ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
-ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
+if test -z "$ac_top_builddir"; then
+ ac_abs_top_builddir=`cd "$ac_dir" && pwd`
+else
+ ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
+fi
ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
@@ -12564,7 +12572,11 @@ esac
# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
# absolute.
ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
-ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
+if test -z "$ac_top_builddir"; then
+ ac_abs_top_builddir=`cd "$ac_dir" && pwd`
+else
+ ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
+fi
ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`

View File

@ -0,0 +1,11 @@
$OpenBSD: patch-doc_gconf_Makefile_in,v 1.1.1.1 2003/01/31 18:26:49 todd Exp $
--- doc/gconf/Makefile.in.orig Tue Jul 23 09:48:05 2002
+++ doc/gconf/Makefile.in Tue Jul 23 09:48:26 2002
@@ -312,6 +312,7 @@ maintainer-clean-generic clean mostlycle
@ENABLE_GTK_DOC_TRUE@all-local: html-build.stamp
+@ENABLE_GTK_DOC_FALSE@all-local:
#### scan ####

View File

@ -0,0 +1,11 @@
$OpenBSD: patch-gconf_Makefile_in,v 1.1.1.1 2003/01/31 18:26:49 todd Exp $
--- gconf/Makefile.in.orig Sun Aug 18 20:38:08 2002
+++ gconf/Makefile.in Sun Aug 18 20:38:12 2002
@@ -150,6 +150,7 @@ INCLUDES = \
-DVERSION=\""$(VERSION)"\" \
-DGCONF_ENABLE_INTERNALS=1 \
-DGCONFD=\""$(GCONFD_BINARY_NAME)"\" \
+ -DGCONF_CONFIG_SOURCE=\""$(GCONF_CONFIG_SOURCE)"\" \
$(NULL)

View File

@ -0,0 +1,26 @@
$OpenBSD: patch-gconf_default_path_in,v 1.1.1.1 2003/01/31 18:26:49 todd Exp $
--- gconf/default.path.in.orig Mon Aug 26 13:06:35 2002
+++ gconf/default.path.in Mon Aug 26 13:08:24 2002
@@ -6,20 +6,15 @@
# See the GConf manual for details
# Look first in systemwide mandatory settings directory
-# (commented out until xml backend knows how to be read-only for users)
-xml:readonly:@EXPANDED_SYSCONFDIR@/gconf/gconf.xml.mandatory
+xml:readonly:/var/db/gconf/gconf.xml.mandatory
# Now see where users want us to look - basically the user can stick arbitrary
# sources in a ~/.gconf.path file and they're inserted here
include "$(HOME)/.gconf.path"
# Give users a default storage location, ~/.gconf
-
xml:readwrite:$(HOME)/.gconf
# Finally, look at the systemwide defaults
-# (commented out for now)
-xml:readonly:@EXPANDED_SYSCONFDIR@/gconf/gconf.xml.defaults
-
-
+xml:readonly:/var/db/gconf/gconf.xml.defaults

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-gconf_gconftool_c,v 1.1.1.1 2003/01/31 18:26:49 todd Exp $
--- gconf/gconftool.c.orig Wed Jun 12 13:32:24 2002
+++ gconf/gconftool.c Sun Aug 18 20:38:39 2002
@@ -2683,7 +2683,7 @@ do_get_default_source (const gchar** arg
}
/* Use default database */
- source = g_strconcat("xml::", GCONF_ETCDIR, "/gconf.xml.defaults", NULL);
+ source = g_strconcat(GCONF_CONFIG_SOURCE, NULL);
printf("%s\n", source);
g_free(source);

View File

@ -0,0 +1,72 @@
$OpenBSD: patch-ltmain_sh,v 1.1.1.1 2003/01/31 18:26:49 todd Exp $
--- ltmain.sh.orig Sun Aug 4 11:18:41 2002
+++ ltmain.sh Thu Aug 8 14:01:36 2002
@@ -1073,6 +1073,17 @@ compiler."
continue
;;
+ -pthread)
+ case $host in
+ *-*-openbsd*)
+ deplibs="$deplibs $arg"
+ ;;
+ *)
+ continue
+ ;;
+ esac
+ ;;
+
-module)
module=yes
continue
@@ -1530,6 +1541,9 @@ compiler."
fi
continue
;;
+ -pthread)
+ continue
+ ;;
%DEPLIBS%)
alldeplibs=yes
continue
@@ -4526,40 +4540,6 @@ relink_command=\"$relink_command\""
# Exit here if they wanted silent mode.
test "$show" = : && exit 0
- echo "----------------------------------------------------------------------"
- echo "Libraries have been installed in:"
- for libdir in $libdirs; do
- echo " $libdir"
- done
- echo
- echo "If you ever happen to want to link against installed libraries"
- echo "in a given directory, LIBDIR, you must either use libtool, and"
- echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
- echo "flag during linking and do at least one of the following:"
- if test -n "$shlibpath_var"; then
- echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
- echo " during execution"
- fi
- if test -n "$runpath_var"; then
- echo " - add LIBDIR to the \`$runpath_var' environment variable"
- echo " during linking"
- fi
- if test -n "$hardcode_libdir_flag_spec"; then
- libdir=LIBDIR
- eval flag=\"$hardcode_libdir_flag_spec\"
-
- echo " - use the \`$flag' linker flag"
- fi
- if test -n "$admincmds"; then
- echo " - have your system administrator run these commands:$admincmds"
- fi
- if test -f /etc/ld.so.conf; then
- echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
- fi
- echo
- echo "See any operating system documentation about shared libraries for"
- echo "more information, such as the ld(1) and ld.so(8) manual pages."
- echo "----------------------------------------------------------------------"
exit 0
;;

View File

@ -0,0 +1,30 @@
#!/bin/sh
#
# $OpenBSD: DEINSTALL,v 1.1.1.1 2003/01/31 18:26:49 todd Exp $
#
set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
FILES='
gconf/2/path
'
echo
echo "+--------------- $1"
echo "| To really remove $1 from your system you should also"
echo "| remove the configuration files from the ${SYSCONFDIR} directory."
echo "| Remove the directories in which the files reside as well if empty."
echo "|"
echo "| If you are planning on installing $1 again in the future"
echo "| you can leave it as it is."
echo "|"
echo "| FYI, the following configuration files belong to this package:"
echo "|"
for f in ${FILES}; do
echo "| ${SYSCONFDIR}/$f"
done
echo "+--------------- $1"
echo
exit 0

6
devel/gconf2/pkg/DESCR Normal file
View File

@ -0,0 +1,6 @@
GConf is a configuration database system, functionally similar to the
Windows registry but lots better.
For more information about GConf and the GNOME project, visit:
WWW: ${HOMEPAGE}

100
devel/gconf2/pkg/INSTALL Normal file
View File

@ -0,0 +1,100 @@
#!/bin/sh
#
# $OpenBSD: INSTALL,v 1.1.1.1 2003/01/31 18:26:49 todd Exp $
P_NAME=gconf2
DIRS='
gconf/2
'
FILES='
gconf/2/path
'
set -e
PREFIX=${PKG_PREFIX:-/usr/local}
PATH=/bin:/usr/bin:/sbin:/usr/sbin
do_post() {
DEST_PFX=${SYSCONFDIR}
SOURCE_PFX=${PREFIX}/share/examples/${P_NAME}
echo
echo "+--------------- ${P_NAME}"
# install dirs if neccessary
for d in ${DIRS}; do
if [ ! -d "${DEST_PFX}/$d" ]; then
install -d ${DEST_PFX}/$d
fi
done
install -d /var/db/gconf/gconf.xml.defaults
install -d /var/db/gconf/gconf.xml.mandatory
# install or take note of existing config files
for f in ${FILES}; do
if [ -f "${DEST_PFX}/$f" ]; then
OLD_CONFS="${OLD_CONFS} $f"
else
if ! install -m 644 ${SOURCE_PFX}/$f ${DEST_PFX}/$f; then
echo "| ERROR: The following file could not be installed, exiting: ${DEST_PFX}/$f"
exit 1
fi
NEW_CONFS="${NEW_CONFS} $f"
fi
done
# print status report
if [ -n "${NEW_CONFS}" ]; then
echo "| The following NEW configuration files have been installed:"
echo "|"
for f in ${NEW_CONFS}; do
echo "| ${DEST_PFX}/$f"
done
fi
if [ -n "${OLD_CONFS}" ]; then
if [ -n "${NEW_CONFS}" ]; then
echo "|"
fi
echo "| The following OLD configuration files were found and have NOT been"
echo "| overwritten:"
echo "|"
for f in ${OLD_CONFS}; do
echo "| ${DEST_PFX}/$f"
done
echo "|"
echo "| You should however manually compare them to their equivalents in"
echo "|"
echo "| ${SOURCE_PFX}"
echo "|"
echo "| and update your configuration as needed."
fi
echo "+--------------- ${P_NAME}"
echo
}
# verify proper execution
#
if [ $# -ne 2 ]; then
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
fi
# Verify/process the command
#
case $2 in
PRE-INSTALL)
;;
POST-INSTALL)
do_post
;;
*)
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
exit 1
;;
esac
exit 0

View File

@ -0,0 +1,4 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2003/01/31 18:26:49 todd Exp $
lib/GConf/2/libgconfbackend-xml.so
lib/libgconf-2.so.5.0
DYNLIBDIR(%D/lib)

176
devel/gconf2/pkg/PLIST Normal file
View File

@ -0,0 +1,176 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2003/01/31 18:26:49 todd Exp $
bin/gconftool-2
include/gconf/2/gconf/gconf-changeset.h
include/gconf/2/gconf/gconf-client.h
include/gconf/2/gconf/gconf-engine.h
include/gconf/2/gconf/gconf-enum-types.h
include/gconf/2/gconf/gconf-error.h
include/gconf/2/gconf/gconf-listeners.h
include/gconf/2/gconf/gconf-schema.h
include/gconf/2/gconf/gconf-value.h
include/gconf/2/gconf/gconf.h
lib/GConf/2/libgconfbackend-xml.a
lib/GConf/2/libgconfbackend-xml.la
lib/libgconf-2.a
lib/libgconf-2.la
lib/pkgconfig/gconf-2.0.pc
libexec/gconf-sanity-check-2
libexec/gconfd-2
share/aclocal/gconf-2.m4
share/examples/gconf2/gconf/2/path
share/gtk-doc/html/gconf/c120.html
share/gtk-doc/html/gconf/c21.html
share/gtk-doc/html/gconf/c381.html
share/gtk-doc/html/gconf/c490.html
share/gtk-doc/html/gconf/conventions.html
share/gtk-doc/html/gconf/gconf-client-reference.html
share/gtk-doc/html/gconf/gconf-client.html
share/gtk-doc/html/gconf/gconf-gconf-backend.html
share/gtk-doc/html/gconf/gconf-gconf-changeset.html
share/gtk-doc/html/gconf/gconf-gconf-engine.html
share/gtk-doc/html/gconf/gconf-gconf-error.html
share/gtk-doc/html/gconf/gconf-gconf-internals.html
share/gtk-doc/html/gconf/gconf-gconf-listeners.html
share/gtk-doc/html/gconf/gconf-gconf-locale.html
share/gtk-doc/html/gconf/gconf-gconf-schema.html
share/gtk-doc/html/gconf/gconf-gconf-sources.html
share/gtk-doc/html/gconf/gconf-gconf-value.html
share/gtk-doc/html/gconf/gconf-gconf.html
share/gtk-doc/html/gconf/gconf-internals-reference.html
share/gtk-doc/html/gconf/gconf-reference.html
share/gtk-doc/html/gconf/gconfclient.html
share/gtk-doc/html/gconf/gconftool.html
share/gtk-doc/html/gconf/index.html
share/gtk-doc/html/gconf/index.sgml
share/gtk-doc/html/gconf/x184.html
share/gtk-doc/html/gconf/x236.html
share/gtk-doc/html/gconf/x289.html
share/gtk-doc/html/gconf/x42.html
share/gtk-doc/html/gconf/x462.html
share/gtk-doc/html/gconf/x485.html
share/locale/ar/LC_MESSAGES/GConf2.mo
share/locale/az/LC_MESSAGES/GConf2.mo
share/locale/bg/LC_MESSAGES/GConf2.mo
share/locale/ca/LC_MESSAGES/GConf2.mo
share/locale/cs/LC_MESSAGES/GConf2.mo
share/locale/da/LC_MESSAGES/GConf2.mo
share/locale/de/LC_MESSAGES/GConf2.mo
share/locale/el/LC_MESSAGES/GConf2.mo
share/locale/es/LC_MESSAGES/GConf2.mo
share/locale/eu/LC_MESSAGES/GConf2.mo
share/locale/fi/LC_MESSAGES/GConf2.mo
share/locale/fr/LC_MESSAGES/GConf2.mo
share/locale/ga/LC_MESSAGES/GConf2.mo
share/locale/gl/LC_MESSAGES/GConf2.mo
share/locale/hu/LC_MESSAGES/GConf2.mo
share/locale/it/LC_MESSAGES/GConf2.mo
share/locale/ja/LC_MESSAGES/GConf2.mo
share/locale/ko/LC_MESSAGES/GConf2.mo
share/locale/ms/LC_MESSAGES/GConf2.mo
share/locale/nl/LC_MESSAGES/GConf2.mo
share/locale/nn/LC_MESSAGES/GConf2.mo
share/locale/no/LC_MESSAGES/GConf2.mo
share/locale/pl/LC_MESSAGES/GConf2.mo
share/locale/pt/LC_MESSAGES/GConf2.mo
share/locale/pt_BR/LC_MESSAGES/GConf2.mo
share/locale/ro/LC_MESSAGES/GConf2.mo
share/locale/ru/LC_MESSAGES/GConf2.mo
share/locale/sk/LC_MESSAGES/GConf2.mo
share/locale/sl/LC_MESSAGES/GConf2.mo
share/locale/sv/LC_MESSAGES/GConf2.mo
share/locale/tr/LC_MESSAGES/GConf2.mo
share/locale/uk/LC_MESSAGES/GConf2.mo
share/locale/vi/LC_MESSAGES/GConf2.mo
share/locale/zh_CN/LC_MESSAGES/GConf2.mo
share/locale/zh_TW/LC_MESSAGES/GConf2.mo
%%SHARED%%
@exec mkdir -p %D/share/schemas
@dirrm share/schemas
@comment @dirrm share/locale/zh_TW/LC_MESSAGES
@comment @dirrm share/locale/zh_TW
@comment @dirrm share/locale/zh_CN/LC_MESSAGES
@comment @dirrm share/locale/zh_CN
@comment @dirrm share/locale/vi/LC_MESSAGES
@comment @dirrm share/locale/vi
@comment @dirrm share/locale/uk/LC_MESSAGES
@comment @dirrm share/locale/uk
@comment @dirrm share/locale/tr/LC_MESSAGES
@comment @dirrm share/locale/tr
@comment @dirrm share/locale/sv/LC_MESSAGES
@comment @dirrm share/locale/sv
@comment @dirrm share/locale/sl/LC_MESSAGES
@comment @dirrm share/locale/sl
@comment @dirrm share/locale/sk/LC_MESSAGES
@comment @dirrm share/locale/sk
@comment @dirrm share/locale/ru/LC_MESSAGES
@comment @dirrm share/locale/ru
@comment @dirrm share/locale/ro/LC_MESSAGES
@comment @dirrm share/locale/ro
@comment @dirrm share/locale/pt_BR/LC_MESSAGES
@comment @dirrm share/locale/pt_BR
@comment @dirrm share/locale/pt/LC_MESSAGES
@comment @dirrm share/locale/pt
@comment @dirrm share/locale/pl/LC_MESSAGES
@comment @dirrm share/locale/pl
@comment @dirrm share/locale/no/LC_MESSAGES
@comment @dirrm share/locale/no
@comment @dirrm share/locale/nn/LC_MESSAGES
@comment @dirrm share/locale/nn
@comment @dirrm share/locale/nl/LC_MESSAGES
@comment @dirrm share/locale/nl
@comment @dirrm share/locale/ms/LC_MESSAGES
@comment @dirrm share/locale/ms
@comment @dirrm share/locale/ko/LC_MESSAGES
@comment @dirrm share/locale/ko
@comment @dirrm share/locale/ja/LC_MESSAGES
@comment @dirrm share/locale/ja
@comment @dirrm share/locale/it/LC_MESSAGES
@comment @dirrm share/locale/it
@comment @dirrm share/locale/hu/LC_MESSAGES
@comment @dirrm share/locale/hu
@comment @dirrm share/locale/gl/LC_MESSAGES
@comment @dirrm share/locale/gl
@comment @dirrm share/locale/ga/LC_MESSAGES
@comment @dirrm share/locale/ga
@comment @dirrm share/locale/fr/LC_MESSAGES
@comment @dirrm share/locale/fr
@comment @dirrm share/locale/fi/LC_MESSAGES
@comment @dirrm share/locale/fi
@comment @dirrm share/locale/eu/LC_MESSAGES
@comment @dirrm share/locale/eu
@comment @dirrm share/locale/es/LC_MESSAGES
@comment @dirrm share/locale/es
@comment @dirrm share/locale/el/LC_MESSAGES
@comment @dirrm share/locale/el
@comment @dirrm share/locale/de/LC_MESSAGES
@comment @dirrm share/locale/de
@comment @dirrm share/locale/da/LC_MESSAGES
@comment @dirrm share/locale/da
@comment @dirrm share/locale/cs/LC_MESSAGES
@comment @dirrm share/locale/cs
@comment @dirrm share/locale/ca/LC_MESSAGES
@comment @dirrm share/locale/ca
@comment @dirrm share/locale/bg/LC_MESSAGES
@comment @dirrm share/locale/bg
@comment @dirrm share/locale/az/LC_MESSAGES
@comment @dirrm share/locale/az
@comment @dirrm share/locale/ar/LC_MESSAGES
@comment @dirrm share/locale/ar
@comment @dirrm share/locale
@dirrm share/gtk-doc/html/gconf
@comment @dirrm share/gtk-doc/html
@comment @dirrm share/gtk-doc
@comment @exec mkdir -p %D/share/examples/gconf2/gconf/gconf.xml.mandatory
@comment @dirrm share/examples/gconf2/gconf/gconf.xml.mandatory
@comment @exec mkdir -p %D/share/examples/gconf2/gconf/gconf.xml.defaults
@comment @dirrm share/examples/gconf2/gconf/gconf.xml.defaults
@dirrm share/examples/gconf2/gconf/2
@dirrm share/examples/gconf2/gconf
@dirrm share/examples/gconf2
@comment @dirrm share/aclocal
@comment @dirrm lib/pkgconfig
@dirrm lib/GConf/2
@comment (conflicts w/gconf1) @dirrm lib/GConf
@dirrm include/gconf/2/gconf
@dirrm include/gconf/2
@comment (conflicts w/gconf1) @dirrm include/gconf