the GNOME control center

This commit is contained in:
todd 2001-09-13 21:38:02 +00:00
parent 10dee33622
commit e2a99a1425
11 changed files with 606 additions and 0 deletions

View File

@ -0,0 +1,41 @@
# $OpenBSD: Makefile,v 1.1.1.1 2001/09/13 21:38:02 todd Exp $
COMMENT= "the GNOME control center"
V= 1.4.0.1
DISTNAME= control-center-${V}
CATEGORIES= x11 gnome
NEED_VERSION= 1.384
HOMEPAGE= http://www.gnome.org
MAINTAINER= Nils Nordman <nino@nforced.com>
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/control-center
LIB_DEPENDS= gnomecanvaspixbuf.::graphics/gdk-pixbuf,gnome \
gnome.36::x11/gnome/libs \
gnomevfs.::x11/gnome/vfs
BUILD_DEPENDS= scrollkeeper-config::textproc/scrollkeeper
RUN_DEPENDS= scrollkeeper-config::textproc/scrollkeeper
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
USE_X11= Yes
USE_GMAKE= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
CONFIGURE_ARGS+= --localstatedir=/var/gnome
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -loaf"
post-extract:
@mv ${WRKSRC}/capplets/screensaver-properties/screensaver-desktops/Superquadrics.desktop.i \
${WRKSRC}/capplets/screensaver-properties/screensaver-desktops/Superquadrics.desktop.in;
post-install:
@install -d ${PREFIX}/share/control-center; \
cp -r ${PREFIX}/../../etc/* ${PREFIX}/share/control-center/
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (control-center-1.4.0.1.tar.gz) = 53e3d628a0d53a4b74e1ae8d8cb057ff
RMD160 (control-center-1.4.0.1.tar.gz) = 363b3fa68f6cb137f4c710dc6ad7f3d6cb067540
SHA1 (control-center-1.4.0.1.tar.gz) = f1b8f9103f5be4ba916f629eaf47663427a97a68

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-configure,v 1.1.1.1 2001/09/13 21:38:02 todd Exp $
--- configure.orig Thu Aug 30 16:36:43 2001
+++ configure Thu Aug 30 16:37:11 2001
@@ -3323,7 +3323,7 @@ else
FALSE_FALSE=
fi
-ALL_LINGUAS="az bg ca cs da de el en_GB es et eu fi fr ga gl hr hu it ja ko lt nl no pl pt pt_BR ro ru sk sl sv tr uk wa zh_CN.GB2312 zh_TW.Big5"
+ALL_LINGUAS="az bg ca cs da de el en_GB es et eu fi fr ga gl hr hu it ko lt nl no pl pt pt_BR ro ru sk sl sv tr uk wa zh_CN.GB2312 zh_TW.Big5"
echo $ac_n "checking for working const""... $ac_c" 1>&6
echo "configure:3329: checking for working const" >&5
if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then

View File

@ -0,0 +1,51 @@
--- ltconfig.orig Fri Mar 9 17:21:39 2001
+++ ltconfig Thu Aug 30 16:35:15 2001
@@ -1105,6 +1105,9 @@ cygwin* | mingw*)
with_gnu_ld=no
fi
;;
+openbsd*)
+ with_gnu_ld=no
+ ;;
esac
@@ -1402,10 +1405,21 @@ else
;;
openbsd*)
- archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linkopts'
- hardcode_libdir_flag_spec='-R$libdir'
hardcode_direct=yes
hardcode_shlibpath_var=no
+ case "$host_os" in
+ openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linkopts'
+ hardcode_libdir_flag_spec='-R$libdir'
+ ;;
+ *)
+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linkopts'
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ if [ "`/usr/bin/file /usr/lib/libc.so.* | grep ELF`" != "" ]; then
+ export_dynamic_flag_spec='${wl}-E'
+ fi
+ ;;
+ esac
;;
os2*)
@@ -2022,13 +2036,10 @@ netbsd*)
openbsd*)
version_type=sunos
- if test "$with_gnu_ld" = yes; then
- need_lib_prefix=no
- need_version=no
- fi
library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix'
finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
shlibpath_var=LD_LIBRARY_PATH
+ deplibs_check_method='pass_all'
;;
os2*)

View File

@ -0,0 +1,83 @@
--- ltmain.sh.orig Fri Mar 9 17:21:39 2001
+++ ltmain.sh Thu Aug 30 16:35:15 2001
@@ -1079,7 +1079,18 @@ compiler."
# These systems don't actually have c library (as such)
continue
;;
+ *-*-openbsd*)
+ # Do not include libc due to us having libc/libc_r.
+ continue
+ ;;
esac
+ elif test "$arg" = "-lc_r"; then
+ case "$host" in
+ *-*-openbsd*)
+ # Do not include libc_r directly, use -pthread flag.
+ continue
+ ;;
+ esac
elif test "$arg" = "-lm"; then
case "$host" in
*-*-cygwin* | *-*-beos*)
@@ -1091,6 +1102,10 @@ compiler."
deplibs="$deplibs $arg"
;;
+ -?thread)
+ deplibs="$deplibs $arg"
+ ;;
+
-module)
module=yes
continue
@@ -1799,6 +1814,9 @@ compiler."
# rhapsody is a little odd...
deplibs="$deplibs -framework System"
;;
+ *-*-openbsd*)
+ # Do not include libc due to us having libc/libc_r.
+ ;;
*)
# Add libc to deplibs on all other systems.
deplibs="$deplibs -lc"
@@ -3567,40 +3585,6 @@ libdir='$install_libdir'\
# 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 \`-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,11 @@
$OpenBSD: patch-omf-install_Makefile_in,v 1.1.1.1 2001/09/13 21:38:02 todd Exp $
--- omf-install/Makefile.in.orig Thu Sep 13 19:00:35 2001
+++ omf-install/Makefile.in Thu Sep 13 19:00:54 2001
@@ -260,7 +260,6 @@ install-data-local:
-for file in $(srcdir)/*.omf; do \
$(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(omf_dest_dir); \
done
- -scrollkeeper-update -p $(scrollkeeper_localstate_dir)
uninstall-local:
-for file in $(srcdir)/*.omf; do \

View File

@ -0,0 +1,30 @@
#!/bin/sh
#
# $OpenBSD: DEINSTALL,v 1.1.1.1 2001/09/13 21:38:02 todd Exp $
#
echo
echo "*=================[ $1"
# scrollkeeper
echo "*"
echo "* Running scrollkeeper-update..."
/usr/local/bin/scrollkeeper-update -p $(/usr/local/bin/scrollkeeper-config --pkglocalstatedir)
echo "*"
echo "* To really remove $1 from your system you should also"
echo "* remove the configuration files from the /etc directory."
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 belongs to this package:"
echo "*"
for f in \
CORBA/servers/gnomecc.gnorba
do
echo "* /etc/$f"
done
echo "*================= $1 ]"
echo
exit 0

View File

@ -0,0 +1,6 @@
Control-center is a configuration tool for easily
setting up your GNOME environment.
For more information about the GNOME project, visit:
WWW: http://www.gnome.org

View File

@ -0,0 +1,84 @@
#!/bin/sh
#
# $OpenBSD: INSTALL,v 1.1.1.1 2001/09/13 21:38:02 todd Exp $
PREFIX=${PKG_PREFIX:-/usr/local}
PKGNAME=control-center
DEST_PFX=/etc
SOURCE_PFX=${PREFIX}/share/${PKGNAME}
do_post() {
echo
echo "*=================[ ${PKGNAME}"
# scrollkeeper
echo "*"
echo "* Running scrollkeeper-update..."
/usr/local/bin/scrollkeeper-update -p $(/usr/local/bin/scrollkeeper-config --pkglocalstatedir)
echo "*"
# install or take note of existing config files
install -d /etc/CORBA/servers
for f in \
CORBA/servers/gnomecc.gnorba
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 was found and have NOT been overwritten:"
echo "* You should however manually compare it to it's equivalent in ${SOURCE_PFX}"
echo "* and update your configuration if needed."
echo "*"
for f in ${OLD_CONFS}; do
echo "* ${DEST_PFX}/$f"
done
fi
echo "*================= ${PKGNAME} ]"
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,3 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2001/09/13 21:38:02 todd Exp $
lib/libcapplet.so.0.0
DYNLIBDIR(%D/lib)

View File

@ -0,0 +1,282 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2001/09/13 21:38:02 todd Exp $
bin/background-properties-capplet
bin/file-types-capplet
bin/gnome-edit-properties-capplet
bin/gnomecc
bin/keyboard-properties
bin/mouse-properties-capplet
bin/screensaver-properties-capplet
bin/sound-properties
bin/theme-selector-capplet
bin/ui-properties
bin/url-properties
bin/wm-properties-capplet
include/capplet-widget.h
lib/cappletConf.sh
lib/libcapplet.a
lib/libcapplet.la
share/control-center/.data/3d.desktop
share/control-center/.data/3d.png
share/control-center/.data/Ant.desktop
share/control-center/.data/Atlantis.desktop
share/control-center/.data/Attraction.desktop
share/control-center/.data/Blitspin.desktop
share/control-center/.data/Bouboule.desktop
share/control-center/.data/Braid.desktop
share/control-center/.data/Bsod.desktop
share/control-center/.data/Bubble3d.desktop
share/control-center/.data/Bubbles.desktop
share/control-center/.data/Bumps.desktop
share/control-center/.data/Cage.desktop
share/control-center/.data/Compass.desktop
share/control-center/.data/Coral.desktop
share/control-center/.data/Critical.desktop
share/control-center/.data/Crystal.desktop
share/control-center/.data/Cynosure.desktop
share/control-center/.data/Decayscreen.desktop
share/control-center/.data/Deco.desktop
share/control-center/.data/Deluxe.desktop
share/control-center/.data/Demon.desktop
share/control-center/.data/Discrete.desktop
share/control-center/.data/Distort.desktop
share/control-center/.data/Drift.desktop
share/control-center/.data/Epicycle.desktop
share/control-center/.data/Fadeplot.desktop
share/control-center/.data/Flag.desktop
share/control-center/.data/Flame.desktop
share/control-center/.data/Flow.desktop
share/control-center/.data/Forest.desktop
share/control-center/.data/GLPlanet.desktop
share/control-center/.data/Galaxy.desktop
share/control-center/.data/Gears.desktop
share/control-center/.data/Goop.desktop
share/control-center/.data/Grav.desktop
share/control-center/.data/Greynetic.desktop
share/control-center/.data/Halo.desktop
share/control-center/.data/Helix.desktop
share/control-center/.data/Hopalong.desktop
share/control-center/.data/Hypercube.desktop
share/control-center/.data/Ifs.desktop
share/control-center/.data/Imsmap.desktop
share/control-center/.data/Interference.desktop
share/control-center/.data/Jigsaw.desktop
share/control-center/.data/Julia.desktop
share/control-center/.data/Kaleidescope.desktop
share/control-center/.data/Kumppa.desktop
share/control-center/.data/Lament.desktop
share/control-center/.data/Laser.desktop
share/control-center/.data/Lightning.desktop
share/control-center/.data/Lisa.desktop
share/control-center/.data/Lissie.desktop
share/control-center/.data/Lmorph.desktop
share/control-center/.data/Loop.desktop
share/control-center/.data/Maze.desktop
share/control-center/.data/Moebius.desktop
share/control-center/.data/Moire.desktop
share/control-center/.data/Moire2.desktop
share/control-center/.data/Morph3d.desktop
share/control-center/.data/Mountain.desktop
share/control-center/.data/Munch.desktop
share/control-center/.data/Noseguy.desktop
share/control-center/.data/Pedal.desktop
share/control-center/.data/Penetrate.desktop
share/control-center/.data/Penrose.desktop
share/control-center/.data/Phosphor.desktop
share/control-center/.data/Pipes.desktop
share/control-center/.data/Pyro.desktop
share/control-center/.data/Qix.desktop
share/control-center/.data/Rd-bomb.desktop
share/control-center/.data/Ripples.desktop
share/control-center/.data/Rocks.desktop
share/control-center/.data/Rorschach.desktop
share/control-center/.data/Rotor.desktop
share/control-center/.data/Rubik.desktop
share/control-center/.data/Shadebobs.desktop
share/control-center/.data/Sierpinski.desktop
share/control-center/.data/Slidescreen.desktop
share/control-center/.data/Slip.desktop
share/control-center/.data/Sonar.desktop
share/control-center/.data/Sphere.desktop
share/control-center/.data/Spiral.desktop
share/control-center/.data/Spotlight.desktop
share/control-center/.data/Sproingies.desktop
share/control-center/.data/Squiral.desktop
share/control-center/.data/Stairs.desktop
share/control-center/.data/Starfish.desktop
share/control-center/.data/Strange.desktop
share/control-center/.data/Superquadrics.desktop
share/control-center/.data/Swirl.desktop
share/control-center/.data/Triangle.desktop
share/control-center/.data/Truchet.desktop
share/control-center/.data/Vines.desktop
share/control-center/.data/Worm.desktop
share/control-center/.data/Xflame.desktop
share/control-center/.data/Xjack.desktop
share/control-center/.data/Xlyap.desktop
share/control-center/.data/Xmatrix.desktop
share/control-center/.data/Xroger.desktop
share/control-center/.data/Xteevee.desktop
share/control-center/.data/ant.png
share/control-center/.data/attraction.png
share/control-center/.data/blitspin.png
share/control-center/.data/bouboule.png
share/control-center/.data/braid.png
share/control-center/.data/bsod.png
share/control-center/.data/bubbles.png
share/control-center/.data/coral.png
share/control-center/.data/crystal.png
share/control-center/.data/cynosure.png
share/control-center/.data/decayscreen.png
share/control-center/.data/deco.png
share/control-center/.data/discrete.png
share/control-center/.data/drift.png
share/control-center/.data/epicycle.png
share/control-center/.data/flag.png
share/control-center/.data/flame.png
share/control-center/.data/forest.png
share/control-center/.data/goop.png
share/control-center/.data/grav.png
share/control-center/.data/greynetic.png
share/control-center/.data/halo.png
share/control-center/.data/helix.png
share/control-center/.data/hopalong.png
share/control-center/.data/hypercube.png
share/control-center/.data/ifs.png
share/control-center/.data/julia.png
share/control-center/.data/kaleidescope.png
share/control-center/.data/laser.png
share/control-center/.data/lightning.png
share/control-center/.data/lisa.png
share/control-center/.data/lmorph.png
share/control-center/.data/maze.png
share/control-center/.data/moire.png
share/control-center/.data/munch.png
share/control-center/.data/pedal.png
share/control-center/.data/qix.png
share/control-center/.data/ripples.png
share/control-center/.data/sierpinski.png
share/control-center/.data/spiral.png
share/control-center/.data/starfish.png
share/control-center/.data/vines.png
share/control-center/.data/xroger.png
share/control-center/.data/xteevee.png
share/control-center/.directory
share/control-center/CORBA/servers/gnomecc.gnorba
share/control-center/Desktop/.directory
share/control-center/Desktop/background-properties.desktop
share/control-center/Desktop/screensaver-properties.desktop
share/control-center/Desktop/theme-selector.desktop
share/control-center/Desktop/wm-properties.desktop
share/control-center/Documents/.directory
share/control-center/Documents/file-types-capplet.desktop
share/control-center/Documents/gnome-edit-properties.desktop
share/control-center/Documents/url-properties.desktop
share/control-center/Multimedia/.directory
share/control-center/Multimedia/sound-properties.desktop
share/control-center/Peripherals/.directory
share/control-center/Peripherals/keyboard-properties.desktop
share/control-center/Peripherals/mouse-properties.desktop
share/control-center/Session/.directory
share/control-center/UIOptions/.directory
share/control-center/UIOptions/application.desktop
share/control-center/UIOptions/dialogs.desktop
share/control-center/UIOptions/mdi.desktop
share/gnome/apps/Settings/Desktop/.directory
share/gnome/apps/Settings/Desktop/background-properties.desktop
share/gnome/apps/Settings/Desktop/screensaver-properties.desktop
share/gnome/apps/Settings/Desktop/theme-selector.desktop
share/gnome/apps/Settings/Desktop/wm-properties.desktop
share/gnome/apps/Settings/Documents/.directory
share/gnome/apps/Settings/Documents/gnome-edit-properties.desktop
share/gnome/apps/Settings/Documents/url-properties.desktop
share/gnome/apps/Settings/Multimedia/.directory
share/gnome/apps/Settings/Multimedia/sound-properties.desktop
share/gnome/apps/Settings/Peripherals/.directory
share/gnome/apps/Settings/Peripherals/keyboard-properties.desktop
share/gnome/apps/Settings/Peripherals/mouse-properties.desktop
share/gnome/apps/Settings/Session/.directory
share/gnome/apps/Settings/UIOptions/.directory
share/gnome/apps/Settings/file-types-capplet.desktop
share/gnome/apps/Settings/gnomecc.desktop
share/gnome/help/control-center/C/alf.html
share/gnome/help/control-center/C/authors.html
share/gnome/help/control-center/C/control-center.sgml
share/gnome/help/control-center/C/desktop-intro.html
share/gnome/help/control-center/C/doc-handlers.html
share/gnome/help/control-center/C/docbook.css
share/gnome/help/control-center/C/figures/bg-capplet.png
share/gnome/help/control-center/C/figures/gccalf.png
share/gnome/help/control-center/C/figures/gccappdef.png
share/gnome/help/control-center/C/figures/gccdialog.png
share/gnome/help/control-center/C/figures/gccedit.png
share/gnome/help/control-center/C/figures/gcchints.png
share/gnome/help/control-center/C/figures/gccmdi.png
share/gnome/help/control-center/C/figures/gccmime.png
share/gnome/help/control-center/C/figures/gccsession-props.png
share/gnome/help/control-center/C/figures/gccsessopt.png
share/gnome/help/control-center/C/figures/gccsound1.png
share/gnome/help/control-center/C/figures/gccsound2.png
share/gnome/help/control-center/C/figures/gccstartup.png
share/gnome/help/control-center/C/figures/gccurl.png
share/gnome/help/control-center/C/figures/glob_pref_anim.png
share/gnome/help/control-center/C/figures/keyboard-capplet.png
share/gnome/help/control-center/C/figures/mouse-capplet.png
share/gnome/help/control-center/C/figures/screensave-capplet.png
share/gnome/help/control-center/C/figures/theme-select.png
share/gnome/help/control-center/C/figures/wm-add.png
share/gnome/help/control-center/C/figures/wm-main.png
share/gnome/help/control-center/C/filetypes.html
share/gnome/help/control-center/C/gccui.html
share/gnome/help/control-center/C/index.html
share/gnome/help/control-center/C/license.html
share/gnome/help/control-center/C/ln7.html
share/gnome/help/control-center/C/multimedia-intro.html
share/gnome/help/control-center/C/peripherals.html
share/gnome/help/control-center/C/session.html
share/gnome/help/control-center/C/stylesheet-images/caution.gif
share/gnome/help/control-center/C/stylesheet-images/home.gif
share/gnome/help/control-center/C/stylesheet-images/important.gif
share/gnome/help/control-center/C/stylesheet-images/next.gif
share/gnome/help/control-center/C/stylesheet-images/note.gif
share/gnome/help/control-center/C/stylesheet-images/prev.gif
share/gnome/help/control-center/C/stylesheet-images/tip.gif
share/gnome/help/control-center/C/stylesheet-images/toc-blank.gif
share/gnome/help/control-center/C/stylesheet-images/toc-minus.gif
share/gnome/help/control-center/C/stylesheet-images/toc-plus.gif
share/gnome/help/control-center/C/stylesheet-images/up.gif
share/gnome/help/control-center/C/stylesheet-images/warning.gif
share/gnome/help/control-center/C/topic.dat
share/gnome/help/control-center/C/usage.html
share/gnome/wm-properties/Enlightenment.desktop
share/gnome/wm-properties/IceWM.desktop
share/gnome/wm-properties/Scwm.desktop
share/gnome/wm-properties/WindowMaker.desktop
share/gnome/wm-properties/twm.desktop
share/idl/control-center.idl
share/omf/control-center/control-center-C.omf
share/pixmaps/ccsplash.png
share/pixmaps/control-center.png
%%SHARED%%
@dirrm share/omf/control-center
@dirrm share/gnome/wm-properties
@dirrm share/gnome/help/control-center/C/stylesheet-images
@dirrm share/gnome/help/control-center/C/figures
@dirrm share/gnome/help/control-center/C
@dirrm share/gnome/help/control-center
@dirrm share/gnome/apps/Settings/UIOptions
@dirrm share/gnome/apps/Settings/Session
@dirrm share/gnome/apps/Settings/Peripherals
@dirrm share/gnome/apps/Settings/Multimedia
@dirrm share/gnome/apps/Settings/Documents
@dirrm share/gnome/apps/Settings/Desktop
@dirrm share/gnome/apps/Settings
@dirrm share/control-center/UIOptions
@dirrm share/control-center/Session
@dirrm share/control-center/Peripherals
@dirrm share/control-center/Multimedia
@dirrm share/control-center/Documents
@dirrm share/control-center/Desktop
@dirrm share/control-center/.data
@dirrm share/control-center/CORBA/servers
@dirrm share/control-center/CORBA
@dirrm share/control-center