summaryrefslogtreecommitdiffstats
path: root/x11/gnomepanel
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2002-10-09 03:38:07 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2002-10-09 03:38:07 +0800
commit51d8329949f81115ae1de2911991acdc910effbd (patch)
tree1fdd1ef17f0b6b78097090b64468cae4ea890881 /x11/gnomepanel
parent632537d40bec29161c54c2010ae7f680c787e921 (diff)
downloadmarcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.tar
marcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.tar.gz
marcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.tar.bz2
marcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.tar.lz
marcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.tar.xz
marcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.tar.zst
marcuscom-ports-51d8329949f81115ae1de2911991acdc910effbd.zip
Add gnomepanel.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@22 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/gnomepanel')
-rw-r--r--x11/gnomepanel/Makefile41
-rw-r--r--x11/gnomepanel/distinfo1
-rw-r--r--x11/gnomepanel/files/patch-applets::gen_util::clock.c27
-rw-r--r--x11/gnomepanel/files/patch-config.h.in14
-rw-r--r--x11/gnomepanel/files/patch-configure22
-rw-r--r--x11/gnomepanel/files/patch-doc_reference_panel-applet_Makefile.in11
-rw-r--r--x11/gnomepanel/files/patch-gnome-panel::GNOME_Panel.server.in13
-rw-r--r--x11/gnomepanel/pkg-comment1
-rw-r--r--x11/gnomepanel/pkg-descr3
-rw-r--r--x11/gnomepanel/pkg-plist230
10 files changed, 363 insertions, 0 deletions
diff --git a/x11/gnomepanel/Makefile b/x11/gnomepanel/Makefile
new file mode 100644
index 000000000..f4e5b790d
--- /dev/null
+++ b/x11/gnomepanel/Makefile
@@ -0,0 +1,41 @@
+# New ports collection makefile for: gnomepanel
+# Date created: 27 April 2002
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD: ports/x11/gnomepanel/Makefile,v 1.19 2002/09/20 17:07:49 marcus Exp $
+#
+
+PORTNAME= gnomepanel
+PORTVERSION= 2.1.0
+CATEGORIES= x11 gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/gnome-panel/2.1
+DISTNAME= gnome-panel-${PORTVERSION}
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+
+LIB_DEPENDS= wnck-1.6:${PORTSDIR}/x11-toolkits/libwnck \
+ gnome-desktop-2.2:${PORTSDIR}/x11/gnomedesktop
+
+USE_BZIP2= yes
+INSTALLS_SHLIB= yes
+USE_X_PREFIX= yes
+USE_REINPLACE= yes
+USE_GNOMENG= yes
+USE_GNOME= gnomeprefix gnomehack gnomehier
+USE_GMAKE= yes
+USE_LIBTOOL= yes
+CONFIGURE_ARGS= --with-kde-datadir=${LOCALBASE}/share \
+ --with-kde-docdir=${LOCALBASE}/share/doc
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
+ LIBS="-L${LOCALBASE}/lib"
+CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
+
+MAN1= gnome-panel.1 gnome-panel-preferences.1
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \
+ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
+
+.include <bsd.port.mk>
diff --git a/x11/gnomepanel/distinfo b/x11/gnomepanel/distinfo
new file mode 100644
index 000000000..52ed2f303
--- /dev/null
+++ b/x11/gnomepanel/distinfo
@@ -0,0 +1 @@
+MD5 (gnome2/gnome-panel-2.1.0.tar.bz2) = 8ae319591ab699c3fadc810c6a710cc0
diff --git a/x11/gnomepanel/files/patch-applets::gen_util::clock.c b/x11/gnomepanel/files/patch-applets::gen_util::clock.c
new file mode 100644
index 000000000..1f5fc1ad8
--- /dev/null
+++ b/x11/gnomepanel/files/patch-applets::gen_util::clock.c
@@ -0,0 +1,27 @@
+
+$FreeBSD: ports/x11/gnomepanel/files/patch-applets::gen_util::clock.c,v 1.1 2002/05/14 14:32:33 sobomax Exp $
+
+--- applets/gen_util/clock.c 2002/05/14 14:08:16 1.1
++++ applets/gen_util/clock.c 2002/05/14 14:12:56
+@@ -14,7 +14,9 @@
+ #include <dirent.h>
+ #include <string.h>
+ #include <time.h>
++#ifdef HAVE_LANGINFO_H
+ #include <langinfo.h>
++#endif
+
+ #include <panel-applet.h>
+ #include <panel-applet-gconf.h>
+@@ -684,7 +686,11 @@
+ cd->hourformat = panel_applet_gconf_get_int (applet, KEY_HOUR_FORMAT, &error);
+ if (error || (cd->hourformat != 12 && cd->hourformat != 24)) {
+ /* if value is not valid, set it according to locale */
++#ifdef HAVE_LANGINFO_H
+ const char *am = nl_langinfo (AM_STR);
++#else
++ const char *am = "AM";
++#endif
+ cd->hourformat = (am[0] == '\0') ? 24 : 12;
+
+ if (error)
diff --git a/x11/gnomepanel/files/patch-config.h.in b/x11/gnomepanel/files/patch-config.h.in
new file mode 100644
index 000000000..9f8390dbe
--- /dev/null
+++ b/x11/gnomepanel/files/patch-config.h.in
@@ -0,0 +1,14 @@
+
+$FreeBSD: ports/x11/gnomepanel/files/patch-config.h.in,v 1.1 2002/05/14 14:32:33 sobomax Exp $
+
+--- config.h.in 2002/05/14 14:15:00 1.1
++++ config.h.in 2002/05/14 14:15:35
+@@ -148,6 +148,8 @@
+ /* Define if you have the `strdup' function. */
+ #undef HAVE_STRDUP
+
++#undef HAVE_LANGINFO_H
++
+ /* Define if you have the <strings.h> header file. */
+ #undef HAVE_STRINGS_H
+
diff --git a/x11/gnomepanel/files/patch-configure b/x11/gnomepanel/files/patch-configure
new file mode 100644
index 000000000..e1d0567b7
--- /dev/null
+++ b/x11/gnomepanel/files/patch-configure
@@ -0,0 +1,22 @@
+
+$FreeBSD: ports/x11/gnomepanel/files/patch-configure,v 1.2 2002/05/14 14:32:33 sobomax Exp $
+
+--- configure.orig Tue May 14 17:16:32 2002
++++ configure Tue May 14 17:17:03 2002
+@@ -7232,6 +7232,7 @@
+
+ # This can be used to rebuild libtool when needed
+ LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
++$ac_aux_dir/ltconfig $LIBTOOL_DEPS
+
+ # Always use our own libtool.
+ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
+@@ -9288,7 +9289,7 @@
+ # On IRIX 5.3, sys/types and inttypes.h are conflicting.
+
+ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
+- inttypes.h stdint.h unistd.h
++ inttypes.h stdint.h unistd.h langinfo.h
+ do
+ as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+ echo "$as_me:9294: checking for $ac_header" >&5
diff --git a/x11/gnomepanel/files/patch-doc_reference_panel-applet_Makefile.in b/x11/gnomepanel/files/patch-doc_reference_panel-applet_Makefile.in
new file mode 100644
index 000000000..0d70349ad
--- /dev/null
+++ b/x11/gnomepanel/files/patch-doc_reference_panel-applet_Makefile.in
@@ -0,0 +1,11 @@
+--- doc/reference/panel-applet/Makefile.in.orig Tue Apr 30 23:24:10 2002
++++ doc/reference/panel-applet/Makefile.in Tue Apr 30 23:28:36 2002
+@@ -149,7 +149,7 @@
+ DOC_MODULE = panel-applet
+
+ # Where the html is to be installed
+-HTML_DIR = $(datadir)/gtk-doc/html
++HTML_DIR = $(prefix)/share/doc
+
+ # The top-level SGML file. Change it if you want.
+ DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml
diff --git a/x11/gnomepanel/files/patch-gnome-panel::GNOME_Panel.server.in b/x11/gnomepanel/files/patch-gnome-panel::GNOME_Panel.server.in
new file mode 100644
index 000000000..0e2367629
--- /dev/null
+++ b/x11/gnomepanel/files/patch-gnome-panel::GNOME_Panel.server.in
@@ -0,0 +1,13 @@
+
+$FreeBSD: ports/x11/gnomepanel/files/patch-gnome-panel::GNOME_Panel.server.in,v 1.1 2002/05/09 21:37:19 sobomax Exp $
+
+--- gnome-panel/GNOME_Panel.server.in 2002/05/09 21:00:58 1.1
++++ gnome-panel/GNOME_Panel.server.in 2002/05/09 21:01:11
+@@ -1,6 +1,6 @@
+ <oaf_info>
+
+-<oaf_server iid="OAFIID:GNOME_PanelShell" type="exe" location="panel-2">
++<oaf_server iid="OAFIID:GNOME_PanelShell" type="exe" location="gnome-panel">
+ <oaf_attribute name="repo_ids" type="stringv">
+ <item value="IDL:GNOME/Vertigo/PanelShell:1.0"/>
+ <item value="IDL:Bonobo/Unknown:1.0"/>
diff --git a/x11/gnomepanel/pkg-comment b/x11/gnomepanel/pkg-comment
new file mode 100644
index 000000000..6cb423fbf
--- /dev/null
+++ b/x11/gnomepanel/pkg-comment
@@ -0,0 +1 @@
+Panel component for the GNOME 2.0 Desktop
diff --git a/x11/gnomepanel/pkg-descr b/x11/gnomepanel/pkg-descr
new file mode 100644
index 000000000..3abe6bcbf
--- /dev/null
+++ b/x11/gnomepanel/pkg-descr
@@ -0,0 +1,3 @@
+Panel component for the GNOME 2.0 Desktop.
+
+WWW: http://www.gnome.org/
diff --git a/x11/gnomepanel/pkg-plist b/x11/gnomepanel/pkg-plist
new file mode 100644
index 000000000..5eeb99df0
--- /dev/null
+++ b/x11/gnomepanel/pkg-plist
@@ -0,0 +1,230 @@
+bin/gnome-desktop-item-edit
+bin/gnome-panel
+bin/gnome-panel-preferences
+bin/gnome-panel-screenshot
+bin/panel-test-applets
+etc/gconf/gconf.xml.defaults/apps/panel/%gconf.xml
+etc/gconf/gconf.xml.defaults/apps/panel/global/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/clock_applet/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/clock_applet/prefs/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/fish_applet/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/fish_applet/prefs/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/mailcheck_applet/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/mailcheck_applet/prefs/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/pager_applet/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/pager_applet/prefs/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/large/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/large/general/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/large/panels/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/large/panels/00000001/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/large/panels/00000002/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/applets/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/applets/00000001/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/applets/00000002/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/applets/00000003/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/applets/00000004/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/general/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/objects/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/objects/00000001/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/objects/00000002/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/panels/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/panels/00000001/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/panels/00000002/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/small/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/small/general/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/small/panels/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/small/panels/00000001/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/panel/global/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/tasklist_applet/%gconf.xml
+etc/gconf/gconf.xml.defaults/schemas/apps/tasklist_applet/prefs/%gconf.xml
+etc/gconf/schemas/clock.schemas
+etc/gconf/schemas/fish.schemas
+etc/gconf/schemas/mailcheck.schemas
+etc/gconf/schemas/pager.schemas
+etc/gconf/schemas/panel-global-config.schemas
+etc/gconf/schemas/panel-per-panel-config.schemas
+etc/gconf/schemas/tasklist.schemas
+etc/sound/events/mailcheck.soundlist
+include/panel-2.0/GNOME_Panel.h
+include/panel-2.0/panel-applet-gconf.h
+include/panel-2.0/panel-applet.h
+lib/libgen_util_applet-2.so
+lib/libpanel-applet-2.a
+lib/libpanel-applet-2.so
+lib/libpanel-applet-2.so.0
+libdata/bonobo/servers/GNOME_FishApplet_Factory.server
+libdata/bonobo/servers/GNOME_GenUtilApplet_Factory.server
+libdata/bonobo/servers/GNOME_Panel.server
+libdata/pkgconfig/libpanelapplet-2.0.pc
+libexec/fish-applet-2
+share/gnome/control-center-2.0/capplets/gnome-panel-preferences.desktop
+share/gnome/gen_util/pager.glade
+share/gnome/gen_util/tasklist.glade
+share/gnome/gnome-2.0/ui/GNOME_ClockApplet.xml
+share/gnome/gnome-2.0/ui/GNOME_FishApplet.xml
+share/gnome/gnome-2.0/ui/GNOME_MailCheckApplet.xml
+share/gnome/gnome-2.0/ui/GNOME_PagerApplet.xml
+share/gnome/gnome-2.0/ui/GNOME_Panel_Popup.xml
+share/gnome/gnome-2.0/ui/GNOME_ShowDesktopApplet.xml
+share/gnome/gnome-2.0/ui/GNOME_TasklistApplet.xml
+share/gnome/gnome-panelrc
+share/doc/panel-applet/applet-popups.html
+share/doc/panel-applet/applet-porting.html
+share/doc/panel-applet/applet-writing.html
+share/doc/panel-applet/index.sgml
+share/doc/panel-applet/libpanel-applet.html
+share/doc/panel-applet/multi-applets.html
+share/doc/panel-applet/panel-applet.html
+share/doc/panel-applet/panel-signals.html
+share/doc/panel-applet/panelapplet.html
+share/doc/panel-applet/server-files.html
+share/doc/panel-applet/session-saving.html
+share/gnome/gnome-panel/glade/panel-test-applets.glade
+share/gnome/help/clock/C/clock.xml
+share/gnome/help/clock/C/figures/clock_applet.png
+share/gnome/help/clock/C/legal.xml
+share/gnome/help/fish-applet-2/C/figures/fish_applet.png
+share/gnome/help/fish-applet-2/C/figures/fish_settings.png
+share/gnome/help/fish-applet-2/C/fish-applet-2.xml
+share/gnome/help/fish-applet-2/C/legal.xml
+share/gnome/help/mailcheck/C/figures/mailcheck-applet.png
+share/gnome/help/mailcheck/C/figures/mailcheck-properties-mailbox.png
+share/gnome/help/mailcheck/C/figures/mailcheck-properties-mailcheck.png
+share/gnome/help/mailcheck/C/figures/mailcheck_applet.png
+share/gnome/help/mailcheck/C/legal.xml
+share/gnome/help/mailcheck/C/mailcheck.xml
+share/gnome/help/window-list/C/figures/window_list_applet.png
+share/gnome/help/window-list/C/figures/window_list_group.png
+share/gnome/help/window-list/C/figures/window_list_group_applet.png
+share/gnome/help/window-list/C/legal.xml
+share/gnome/help/window-list/C/window-list.xml
+share/gnome/help/workspace-switcher/C/figures/workspacelist_applet.png
+share/gnome/help/workspace-switcher/C/figures/workspace_switcher_applet.png
+share/gnome/help/workspace-switcher/C/legal.xml
+share/gnome/help/workspace-switcher/C/workspace-switcher.xml
+share/gnome/idl/gnome-panel-2.0/GNOME_Panel.idl
+share/gnome/omf/gnome-panel/clock-C.omf
+share/gnome/omf/gnome-panel/fish-applet-2-C.omf
+share/gnome/omf/gnome-panel/mailcheck-C.omf
+share/gnome/omf/gnome-panel/window-list-C.omf
+share/gnome/omf/gnome-panel/workspace-switcher-C.omf
+share/gnome/panel/gnome-panel-preferences.glade
+share/gnome/panel/gnome-panel-screenshot.glade
+share/gnome/pixmaps/fish/fishanim.png
+share/gnome/pixmaps/fish/footguy.png
+share/gnome/pixmaps/fish/monkey.png
+share/gnome/pixmaps/fish/oldwanda.png
+share/gnome/pixmaps/gnome-fish.png
+share/gnome/pixmaps/mailcheck/eclouds.png
+share/gnome/pixmaps/mailcheck/email-e.png
+share/gnome/pixmaps/mailcheck/email-eclouds.png
+share/gnome/pixmaps/mailcheck/email-tiny.png
+share/gnome/pixmaps/mailcheck/email.png
+share/gnome/pixmaps/mailcheck/tux-anim.png
+share/gnome/pixmaps/gnome-show-desktop.png
+share/locale/ar/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/az/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/bg/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/ca/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/cs/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/da/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/de/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/el/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/en_GB/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/es/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/et/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/eu/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/fi/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/fr/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/ga/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/gl/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/hu/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/it/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/ja/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/ko/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/lt/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/lv/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/mk/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/ms/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/nl/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/nn/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/no/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/pl/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/pt/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/pt_BR/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/ro/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/ru/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/sk/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/sl/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/sp/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/sr/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/sv/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/ta/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/tr/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/uk/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/vi/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/wa/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/zh_CN/LC_MESSAGES/gnome-panel-2.0.mo
+share/locale/zh_TW/LC_MESSAGES/gnome-panel-2.0.mo
+@dirrm share/gnome/omf/gnome-panel
+@dirrm share/gnome/idl/gnome-panel-2.0
+@dirrm share/gnome/help/workspace-switcher/C/figures
+@dirrm share/gnome/help/workspace-switcher/C
+@dirrm share/gnome/help/workspace-switcher
+@dirrm share/gnome/help/window-list/C/figures
+@dirrm share/gnome/help/window-list/C
+@dirrm share/gnome/help/window-list
+@dirrm share/gnome/help/mailcheck/C/figures
+@dirrm share/gnome/help/mailcheck/C
+@dirrm share/gnome/help/mailcheck
+@dirrm share/gnome/help/fish-applet-2/C/figures
+@dirrm share/gnome/help/fish-applet-2/C
+@dirrm share/gnome/help/fish-applet-2
+@dirrm share/gnome/help/clock/C/figures
+@dirrm share/gnome/help/clock/C
+@dirrm share/gnome/help/clock
+@dirrm share/gnome/gen_util
+@dirrm share/gnome/gnome-panel/glade
+@dirrm share/gnome/gnome-panel
+@dirrm share/doc/panel-applet
+@dirrm include/panel-2.0
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/tasklist_applet/prefs
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/tasklist_applet
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/global
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/small/panels/00000001
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/small/panels
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/small/general
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/small
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/panels/00000002
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/panels/00000001
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/panels
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/objects/00000002
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/objects/00000001
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/objects
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/general
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/applets/00000004
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/applets/00000003
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/applets/00000002
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/applets/00000001
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium/applets
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/medium
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/large/panels/00000002
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/large/panels/00000001
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/large/panels
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/large/general
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles/large
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel/default_profiles
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/panel
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/pager_applet/prefs
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/pager_applet
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/mailcheck_applet/prefs
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/mailcheck_applet
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/fish_applet/prefs
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/fish_applet
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/clock_applet/prefs
+@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/clock_applet
+@dirrm etc/gconf/gconf.xml.defaults/apps/panel/global
+@dirrm etc/gconf/gconf.xml.defaults/apps/panel