diff options
20 files changed, 592 insertions, 0 deletions
diff --git a/sysutils/gnome-control-center/Makefile b/sysutils/gnome-control-center/Makefile new file mode 100644 index 000000000..285f72ad6 --- /dev/null +++ b/sysutils/gnome-control-center/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: gnomecontrolcenter2 +# Date created: 04 May 2002 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD: ports/sysutils/gnomecontrolcenter2/Makefile,v 1.54 2002/10/05 16:29:32 marcus Exp $ +# + +PORTNAME= gnomecontrolcenter2 +PORTVERSION= 2.1.0.1 +CATEGORIES= sysutils gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/control-center/2.1 +DISTNAME= control-center-${PORTVERSION} +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org + +LIB_DEPENDS= gnome-desktop-2.2:${PORTSDIR}/x11/gnomedesktop + +USE_BZIP2= yes +USE_X_PREFIX= yes +USE_REINPLACE= yes +USE_GMAKE= yes +USE_GNOMENG= yes +USE_GNOME= gnomeprefix gnomehack gnomehier +USE_LIBTOOL= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" +CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} + +post-patch: + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|Xft\.h|Xft2.h|g' \ + ${WRKSRC}/capplets/font/main.c + +.include <bsd.port.mk> diff --git a/sysutils/gnome-control-center/distinfo b/sysutils/gnome-control-center/distinfo new file mode 100644 index 000000000..aa1d9d6d0 --- /dev/null +++ b/sysutils/gnome-control-center/distinfo @@ -0,0 +1 @@ +MD5 (gnome2/control-center-2.1.0.1.tar.bz2) = 7ded56ecc2e391ee34f6adf6e8e39c14 diff --git a/sysutils/gnome-control-center/files/patch-capplets_mouse_gnome-mouse-properties.c b/sysutils/gnome-control-center/files/patch-capplets_mouse_gnome-mouse-properties.c new file mode 100644 index 000000000..0969a7707 --- /dev/null +++ b/sysutils/gnome-control-center/files/patch-capplets_mouse_gnome-mouse-properties.c @@ -0,0 +1,29 @@ +--- capplets/mouse/gnome-mouse-properties.c.orig Wed May 29 00:14:19 2002 ++++ capplets/mouse/gnome-mouse-properties.c Tue Jun 25 21:51:30 2002 +@@ -570,7 +570,7 @@ + filename = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_APP_PIXMAP, "mouse-cursor-white.png", TRUE, NULL); + pixbuf = gdk_pixbuf_new_from_file (filename, NULL); + g_free (filename); +- font_path = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_DATADIR, "gnome/cursor-fonts/cursor-white.pcf", FALSE, NULL); ++ font_path = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_DATADIR, "cursor-fonts/cursor-white.pcf", FALSE, NULL); + + gtk_list_store_append (GTK_LIST_STORE (model), &iter); + if (cursor_font && ! strcmp (cursor_font, font_path)) { +@@ -591,7 +591,7 @@ + filename = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_APP_PIXMAP, "mouse-cursor-normal-large.png", TRUE, NULL); + pixbuf = gdk_pixbuf_new_from_file (filename, NULL); + g_free (filename); +- font_path = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_DATADIR, "gnome/cursor-fonts/cursor-large.pcf", FALSE, NULL); ++ font_path = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_DATADIR, "cursor-fonts/cursor-large.pcf", FALSE, NULL); + + gtk_list_store_append (GTK_LIST_STORE (model), &iter); + if (cursor_font && ! strcmp (cursor_font, font_path)) { +@@ -612,7 +612,7 @@ + filename = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_APP_PIXMAP, "mouse-cursor-white-large.png", TRUE, NULL); + pixbuf = gdk_pixbuf_new_from_file (filename, NULL); + g_free (filename); +- font_path = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_DATADIR, "gnome/cursor-fonts/cursor-large-white.pcf", FALSE, NULL); ++ font_path = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_DATADIR, "cursor-fonts/cursor-large-white.pcf", FALSE, NULL); + + gtk_list_store_append (GTK_LIST_STORE (model), &iter); + if (cursor_font && ! strcmp (cursor_font, font_path)) { diff --git a/sysutils/gnome-control-center/files/patch-capplets_windows_Makefile.in b/sysutils/gnome-control-center/files/patch-capplets_windows_Makefile.in new file mode 100644 index 000000000..1b9727167 --- /dev/null +++ b/sysutils/gnome-control-center/files/patch-capplets_windows_Makefile.in @@ -0,0 +1,11 @@ +--- capplets/windows/Makefile.in.orig Tue Oct 8 17:37:55 2002 ++++ capplets/windows/Makefile.in Tue Oct 8 17:38:51 2002 +@@ -145,7 +145,7 @@ + + bin_PROGRAMS = gnome-window-properties + +-gnome_window_properties_LDADD = $(GNOMECC_CAPPLETS_LIBS) -L$(top_builddir)/libwindow-settings/ -lgnome-window-settings ++gnome_window_properties_LDADD = $(GNOMECC_CAPPLETS_LIBS) -L$(top_builddir)/libwindow-settings/.libs -lgnome-window-settings + + + gnome_window_properties_SOURCES = gnome-window-properties.c diff --git a/sysutils/gnome-control-center/files/patch-configure b/sysutils/gnome-control-center/files/patch-configure new file mode 100644 index 000000000..f43c53c1e --- /dev/null +++ b/sysutils/gnome-control-center/files/patch-configure @@ -0,0 +1,19 @@ +--- configure.orig Tue Aug 6 01:33:52 2002 ++++ configure Wed Aug 7 01:22:14 2002 +@@ -5768,6 +5768,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' +@@ -9090,7 +9091,7 @@ + fi + + cat >> confdefs.h <<EOF +-#define GNOMECC_DATA_DIR "${real_prefix}/share/${GETTEXT_PACKAGE}" ++#define GNOMECC_DATA_DIR "${datadir}/${GETTEXT_PACKAGE}" + EOF + + GNOMECC_ICONS_DIR='$(datadir)/'${GETTEXT_PACKAGE}'/icons' diff --git a/sysutils/gnome-control-center/files/patch-gnome-settings-daemon_Makefile.in b/sysutils/gnome-control-center/files/patch-gnome-settings-daemon_Makefile.in new file mode 100644 index 000000000..2f97e5702 --- /dev/null +++ b/sysutils/gnome-control-center/files/patch-gnome-settings-daemon_Makefile.in @@ -0,0 +1,11 @@ +--- gnome-settings-daemon/Makefile.in.orig Tue Oct 8 17:32:58 2002 ++++ gnome-settings-daemon/Makefile.in Tue Oct 8 17:34:05 2002 +@@ -152,7 +152,7 @@ + + # $(AccessX_files) + +-gnome_settings_daemon_LDADD = $(GNOME_SETTINGS_DAEMON_LIBS) $(top_builddir)/libbackground/libbackground.la $(top_builddir)/libsounds/libsounds.a -L$(top_builddir)/libwindow-settings/ -lgnome-window-settings $(XF86MISC_LIBS) ++gnome_settings_daemon_LDADD = $(GNOME_SETTINGS_DAEMON_LIBS) $(top_builddir)/libbackground/libbackground.la $(top_builddir)/libsounds/libsounds.a -L$(top_builddir)/libwindow-settings/.libs -lgnome-window-settings $(XF86MISC_LIBS) + + + #AccessX_files = \ diff --git a/sysutils/gnome-control-center/files/patch-libwindow-settings_wm-list.c b/sysutils/gnome-control-center/files/patch-libwindow-settings_wm-list.c new file mode 100644 index 000000000..149d59a9b --- /dev/null +++ b/sysutils/gnome-control-center/files/patch-libwindow-settings_wm-list.c @@ -0,0 +1,11 @@ +--- libwindow-settings/wm-list.c.orig Tue Oct 8 17:43:12 2002 ++++ libwindow-settings/wm-list.c Tue Oct 8 17:43:25 2002 +@@ -251,7 +251,7 @@ + gchar *name; + GConfClient *client; + +- tempdir = gnome_unconditional_datadir_file ("gnome/wm-properties/"); ++ tempdir = gnome_unconditional_datadir_file ("wm-properties/"); + wm_list_read_dir (tempdir, FALSE); + g_free (tempdir); + diff --git a/sysutils/gnome-control-center/pkg-comment b/sysutils/gnome-control-center/pkg-comment new file mode 100644 index 000000000..7d382af36 --- /dev/null +++ b/sysutils/gnome-control-center/pkg-comment @@ -0,0 +1 @@ +Control center for GNOME 2.0 project diff --git a/sysutils/gnome-control-center/pkg-descr b/sysutils/gnome-control-center/pkg-descr new file mode 100644 index 000000000..017e3d76e --- /dev/null +++ b/sysutils/gnome-control-center/pkg-descr @@ -0,0 +1 @@ +control center for GNOME 2.0 project. diff --git a/sysutils/gnome-control-center/pkg-plist b/sysutils/gnome-control-center/pkg-plist new file mode 100644 index 000000000..f69ac9cbf --- /dev/null +++ b/sysutils/gnome-control-center/pkg-plist @@ -0,0 +1,175 @@ +bin/gnome-accessibility-keyboard-properties +bin/gnome-background-properties +bin/gnome-control-center +bin/gnome-default-applications-properties +bin/gnome-file-types-properties +bin/gnome-font-properties +bin/gnome-keybinding-properties +bin/gnome-keyboard-properties +bin/gnome-mouse-properties +bin/gnome-network-preferences +bin/gnome-settings-daemon +bin/gnome-sound-properties +bin/gnome-theme-properties +bin/gnome-ui-properties +bin/gnome-window-properties +etc/gconf/gconf.xml.defaults/apps/gnome_settings_daemon/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnome_settings_daemon/editor/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnome_settings_daemon/screensaver/%gconf.xml +etc/gconf/gconf.xml.defaults/desktop/gnome/font_rendering/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnome_settings_daemon/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnome_settings_daemon/editor/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnome_settings_daemon/screensaver/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/desktop/gnome/font_rendering/%gconf.xml +etc/gconf/schemas/apps_gnome_settings_daemon_default_editor.schemas +etc/gconf/schemas/apps_gnome_settings_daemon_screensaver.schemas +etc/gconf/schemas/desktop_gnome_font_rendering.schemas +include/gnome-window-settings-2.0/gnome-window-manager.h +include/gnome-window-settings-2.0/gnome-wm-manager.h +lib/libgnome-window-settings.a +lib/libgnome-window-settings.so +lib/libgnome-window-settings.so.1 +lib/window-manager-settings/libmetacity.so +libdata/bonobo/servers/GNOME_SettingsDaemon.server +libdata/pkgconfig/gnome-window-settings-2.0.pc +share/gnome/applications/gnomecc.desktop +share/gnome/control-center-2.0/capplets/accessibility-keyboard.desktop +share/gnome/control-center-2.0/capplets/background.desktop +share/gnome/control-center-2.0/capplets/behavior.desktop +share/gnome/control-center-2.0/capplets/default-applications.desktop +share/gnome/control-center-2.0/capplets/file-types.desktop +share/gnome/control-center-2.0/capplets/font-properties.desktop +share/gnome/control-center-2.0/capplets/gnome-network-preferences.desktop +share/gnome/control-center-2.0/capplets/gtk-theme-selector.desktop +share/gnome/control-center-2.0/capplets/keybinding.desktop +share/gnome/control-center-2.0/capplets/keyboard.desktop +share/gnome/control-center-2.0/capplets/mouse.desktop +share/gnome/control-center-2.0/capplets/sound.desktop +share/gnome/control-center-2.0/capplets/window-properties.desktop +share/gnome/control-center-2.0/icons/accessibility-directory.png +share/gnome/control-center-2.0/icons/accessibility-keyboard-capplet.png +share/gnome/control-center-2.0/icons/advanced-directory.png +share/gnome/control-center-2.0/icons/background-capplet.png +share/gnome/control-center-2.0/icons/behavior-capplet.png +share/gnome/control-center-2.0/icons/control-center.png +share/gnome/control-center-2.0/icons/default-applications-capplet.png +share/gnome/control-center-2.0/icons/font-capplet.png +share/gnome/control-center-2.0/icons/mouse-capplet.png +share/gnome/control-center-2.0/icons/sound-capplet.png +share/gnome/control-center-2.0/icons/window-capplet.png +share/gnome/control-center-2.0/interfaces/background-properties.glade +share/gnome/control-center-2.0/interfaces/file-types-properties.glade +share/gnome/control-center-2.0/interfaces/font-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-accessibility-keyboard-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-default-applications-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-keybinding-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-keyboard-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-mouse-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-network-preferences.glade +share/gnome/control-center-2.0/interfaces/gnome-ui-properties.glade +share/gnome/control-center-2.0/interfaces/sound-properties.glade +share/gnome/control-center-2.0/interfaces/theme-install.glade +share/gnome/control-center-2.0/interfaces/theme-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-window-properties.glade +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-bouncekey.png +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-mousekey.png +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-slowkey.png +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-stickykey.png +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-togglekey.png +share/gnome/control-center-2.0/pixmaps/double-click-maybe.png +share/gnome/control-center-2.0/pixmaps/double-click-off.png +share/gnome/control-center-2.0/pixmaps/double-click-on.png +share/gnome/control-center-2.0/pixmaps/keyboard-bell.png +share/gnome/control-center-2.0/pixmaps/keyboard-capplet.png +share/gnome/control-center-2.0/pixmaps/keyboard-cursor.png +share/gnome/control-center-2.0/pixmaps/keyboard-repeat.png +share/gnome/control-center-2.0/pixmaps/keyboard-volume.png +share/gnome/control-center-2.0/pixmaps/mouse-cursor-normal-large.png +share/gnome/control-center-2.0/pixmaps/mouse-cursor-normal.png +share/gnome/control-center-2.0/pixmaps/mouse-cursor-white-large.png +share/gnome/control-center-2.0/pixmaps/mouse-cursor-white.png +share/gnome/control-center-2.0/pixmaps/mouse-left.png +share/gnome/control-center-2.0/pixmaps/mouse-right.png +share/gnome/control-center-2.0/pixmaps/subpixel-bgr.png +share/gnome/control-center-2.0/pixmaps/subpixel-rgb.png +share/gnome/control-center-2.0/pixmaps/subpixel-vbgr.png +share/gnome/control-center-2.0/pixmaps/subpixel-vrgb.png +share/gnome/cursor-fonts/cursor-large-white.pcf +share/gnome/cursor-fonts/cursor-large.pcf +share/gnome/cursor-fonts/cursor-white.pcf +share/gnome/gnome-2.0/ui/gnomecc-ui.xml +share/gnome/idl/ConfigArchiver.idl +share/gnome/idl/GNOME_SettingsDaemon.idl +share/gnome/pixmaps/accessibility-keyboard-capplet.png +share/gnome/pixmaps/background-capplet.png +share/gnome/pixmaps/behavior-capplet.png +share/gnome/pixmaps/control-center2.png +share/gnome/pixmaps/default-applications-capplet.png +share/gnome/pixmaps/font-capplet.png +share/gnome/pixmaps/gnomecc-2/active.png +share/gnome/pixmaps/gnomecc-2/bcg_top.png +share/gnome/pixmaps/gnomecc-2/blank.png +share/gnome/pixmaps/gnomecc-2/title.png +share/gnome/pixmaps/keyboard-capplet.png +share/gnome/pixmaps/keyboard-shortcut.png +share/gnome/pixmaps/mouse-capplet.png +share/gnome/pixmaps/sound-capplet.png +share/gnome/pixmaps/window-capplet.png +share/gnome/vfolders/Accessibility.directory +share/gnome/vfolders/Advanced.directory +share/locale/ar/LC_MESSAGES/control-center-2.0.mo +share/locale/az/LC_MESSAGES/control-center-2.0.mo +share/locale/bg/LC_MESSAGES/control-center-2.0.mo +share/locale/ca/LC_MESSAGES/control-center-2.0.mo +share/locale/cs/LC_MESSAGES/control-center-2.0.mo +share/locale/da/LC_MESSAGES/control-center-2.0.mo +share/locale/de/LC_MESSAGES/control-center-2.0.mo +share/locale/el/LC_MESSAGES/control-center-2.0.mo +share/locale/en_GB/LC_MESSAGES/control-center-2.0.mo +share/locale/es/LC_MESSAGES/control-center-2.0.mo +share/locale/et/LC_MESSAGES/control-center-2.0.mo +share/locale/fi/LC_MESSAGES/control-center-2.0.mo +share/locale/fr/LC_MESSAGES/control-center-2.0.mo +share/locale/ga/LC_MESSAGES/control-center-2.0.mo +share/locale/gl/LC_MESSAGES/control-center-2.0.mo +share/locale/hr/LC_MESSAGES/control-center-2.0.mo +share/locale/hu/LC_MESSAGES/control-center-2.0.mo +share/locale/it/LC_MESSAGES/control-center-2.0.mo +share/locale/ja/LC_MESSAGES/control-center-2.0.mo +share/locale/ko/LC_MESSAGES/control-center-2.0.mo +share/locale/lt/LC_MESSAGES/control-center-2.0.mo +share/locale/lv/LC_MESSAGES/control-center-2.0.mo +share/locale/ms/LC_MESSAGES/control-center-2.0.mo +share/locale/nl/LC_MESSAGES/control-center-2.0.mo +share/locale/nn/LC_MESSAGES/control-center-2.0.mo +share/locale/no/LC_MESSAGES/control-center-2.0.mo +share/locale/pl/LC_MESSAGES/control-center-2.0.mo +share/locale/pt/LC_MESSAGES/control-center-2.0.mo +share/locale/pt_BR/LC_MESSAGES/control-center-2.0.mo +share/locale/ro/LC_MESSAGES/control-center-2.0.mo +share/locale/ru/LC_MESSAGES/control-center-2.0.mo +share/locale/sk/LC_MESSAGES/control-center-2.0.mo +share/locale/sl/LC_MESSAGES/control-center-2.0.mo +share/locale/sv/LC_MESSAGES/control-center-2.0.mo +share/locale/tr/LC_MESSAGES/control-center-2.0.mo +share/locale/uk/LC_MESSAGES/control-center-2.0.mo +share/locale/vi/LC_MESSAGES/control-center-2.0.mo +share/locale/wa/LC_MESSAGES/control-center-2.0.mo +share/locale/zh_CN/LC_MESSAGES/control-center-2.0.mo +share/locale/zh_TW/LC_MESSAGES/control-center-2.0.mo +@dirrm share/gnome/pixmaps/gnomecc-2 +@dirrm share/gnome/cursor-fonts +@dirrm share/gnome/control-center-2.0/pixmaps +@dirrm share/gnome/control-center-2.0/interfaces +@dirrm share/gnome/control-center-2.0/icons +@dirrm share/gnome/applications +@dirrm lib/window-manager-settings +@dirrm include/gnome-window-settings-2.0 +@dirrm etc/gconf/gconf.xml.defaults/schemas/desktop/gnome/font_rendering +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome_settings_daemon/screensaver +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome_settings_daemon/editor +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome_settings_daemon +@dirrm etc/gconf/gconf.xml.defaults/desktop/gnome/font_rendering +@dirrm etc/gconf/gconf.xml.defaults/apps/gnome_settings_daemon/screensaver +@dirrm etc/gconf/gconf.xml.defaults/apps/gnome_settings_daemon/editor +@dirrm etc/gconf/gconf.xml.defaults/apps/gnome_settings_daemon diff --git a/sysutils/gnomecontrolcenter2/Makefile b/sysutils/gnomecontrolcenter2/Makefile new file mode 100644 index 000000000..285f72ad6 --- /dev/null +++ b/sysutils/gnomecontrolcenter2/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: gnomecontrolcenter2 +# Date created: 04 May 2002 +# Whom: Joe Marcus Clarke <marcus@FreeBSD.org> +# +# $FreeBSD: ports/sysutils/gnomecontrolcenter2/Makefile,v 1.54 2002/10/05 16:29:32 marcus Exp $ +# + +PORTNAME= gnomecontrolcenter2 +PORTVERSION= 2.1.0.1 +CATEGORIES= sysutils gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/control-center/2.1 +DISTNAME= control-center-${PORTVERSION} +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org + +LIB_DEPENDS= gnome-desktop-2.2:${PORTSDIR}/x11/gnomedesktop + +USE_BZIP2= yes +USE_X_PREFIX= yes +USE_REINPLACE= yes +USE_GMAKE= yes +USE_GNOMENG= yes +USE_GNOME= gnomeprefix gnomehack gnomehier +USE_LIBTOOL= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" +CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} + +post-patch: + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|Xft\.h|Xft2.h|g' \ + ${WRKSRC}/capplets/font/main.c + +.include <bsd.port.mk> diff --git a/sysutils/gnomecontrolcenter2/distinfo b/sysutils/gnomecontrolcenter2/distinfo new file mode 100644 index 000000000..aa1d9d6d0 --- /dev/null +++ b/sysutils/gnomecontrolcenter2/distinfo @@ -0,0 +1 @@ +MD5 (gnome2/control-center-2.1.0.1.tar.bz2) = 7ded56ecc2e391ee34f6adf6e8e39c14 diff --git a/sysutils/gnomecontrolcenter2/files/patch-capplets_mouse_gnome-mouse-properties.c b/sysutils/gnomecontrolcenter2/files/patch-capplets_mouse_gnome-mouse-properties.c new file mode 100644 index 000000000..0969a7707 --- /dev/null +++ b/sysutils/gnomecontrolcenter2/files/patch-capplets_mouse_gnome-mouse-properties.c @@ -0,0 +1,29 @@ +--- capplets/mouse/gnome-mouse-properties.c.orig Wed May 29 00:14:19 2002 ++++ capplets/mouse/gnome-mouse-properties.c Tue Jun 25 21:51:30 2002 +@@ -570,7 +570,7 @@ + filename = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_APP_PIXMAP, "mouse-cursor-white.png", TRUE, NULL); + pixbuf = gdk_pixbuf_new_from_file (filename, NULL); + g_free (filename); +- font_path = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_DATADIR, "gnome/cursor-fonts/cursor-white.pcf", FALSE, NULL); ++ font_path = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_DATADIR, "cursor-fonts/cursor-white.pcf", FALSE, NULL); + + gtk_list_store_append (GTK_LIST_STORE (model), &iter); + if (cursor_font && ! strcmp (cursor_font, font_path)) { +@@ -591,7 +591,7 @@ + filename = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_APP_PIXMAP, "mouse-cursor-normal-large.png", TRUE, NULL); + pixbuf = gdk_pixbuf_new_from_file (filename, NULL); + g_free (filename); +- font_path = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_DATADIR, "gnome/cursor-fonts/cursor-large.pcf", FALSE, NULL); ++ font_path = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_DATADIR, "cursor-fonts/cursor-large.pcf", FALSE, NULL); + + gtk_list_store_append (GTK_LIST_STORE (model), &iter); + if (cursor_font && ! strcmp (cursor_font, font_path)) { +@@ -612,7 +612,7 @@ + filename = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_APP_PIXMAP, "mouse-cursor-white-large.png", TRUE, NULL); + pixbuf = gdk_pixbuf_new_from_file (filename, NULL); + g_free (filename); +- font_path = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_DATADIR, "gnome/cursor-fonts/cursor-large-white.pcf", FALSE, NULL); ++ font_path = gnome_program_locate_file (program, GNOME_FILE_DOMAIN_DATADIR, "cursor-fonts/cursor-large-white.pcf", FALSE, NULL); + + gtk_list_store_append (GTK_LIST_STORE (model), &iter); + if (cursor_font && ! strcmp (cursor_font, font_path)) { diff --git a/sysutils/gnomecontrolcenter2/files/patch-capplets_windows_Makefile.in b/sysutils/gnomecontrolcenter2/files/patch-capplets_windows_Makefile.in new file mode 100644 index 000000000..1b9727167 --- /dev/null +++ b/sysutils/gnomecontrolcenter2/files/patch-capplets_windows_Makefile.in @@ -0,0 +1,11 @@ +--- capplets/windows/Makefile.in.orig Tue Oct 8 17:37:55 2002 ++++ capplets/windows/Makefile.in Tue Oct 8 17:38:51 2002 +@@ -145,7 +145,7 @@ + + bin_PROGRAMS = gnome-window-properties + +-gnome_window_properties_LDADD = $(GNOMECC_CAPPLETS_LIBS) -L$(top_builddir)/libwindow-settings/ -lgnome-window-settings ++gnome_window_properties_LDADD = $(GNOMECC_CAPPLETS_LIBS) -L$(top_builddir)/libwindow-settings/.libs -lgnome-window-settings + + + gnome_window_properties_SOURCES = gnome-window-properties.c diff --git a/sysutils/gnomecontrolcenter2/files/patch-configure b/sysutils/gnomecontrolcenter2/files/patch-configure new file mode 100644 index 000000000..f43c53c1e --- /dev/null +++ b/sysutils/gnomecontrolcenter2/files/patch-configure @@ -0,0 +1,19 @@ +--- configure.orig Tue Aug 6 01:33:52 2002 ++++ configure Wed Aug 7 01:22:14 2002 +@@ -5768,6 +5768,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' +@@ -9090,7 +9091,7 @@ + fi + + cat >> confdefs.h <<EOF +-#define GNOMECC_DATA_DIR "${real_prefix}/share/${GETTEXT_PACKAGE}" ++#define GNOMECC_DATA_DIR "${datadir}/${GETTEXT_PACKAGE}" + EOF + + GNOMECC_ICONS_DIR='$(datadir)/'${GETTEXT_PACKAGE}'/icons' diff --git a/sysutils/gnomecontrolcenter2/files/patch-gnome-settings-daemon_Makefile.in b/sysutils/gnomecontrolcenter2/files/patch-gnome-settings-daemon_Makefile.in new file mode 100644 index 000000000..2f97e5702 --- /dev/null +++ b/sysutils/gnomecontrolcenter2/files/patch-gnome-settings-daemon_Makefile.in @@ -0,0 +1,11 @@ +--- gnome-settings-daemon/Makefile.in.orig Tue Oct 8 17:32:58 2002 ++++ gnome-settings-daemon/Makefile.in Tue Oct 8 17:34:05 2002 +@@ -152,7 +152,7 @@ + + # $(AccessX_files) + +-gnome_settings_daemon_LDADD = $(GNOME_SETTINGS_DAEMON_LIBS) $(top_builddir)/libbackground/libbackground.la $(top_builddir)/libsounds/libsounds.a -L$(top_builddir)/libwindow-settings/ -lgnome-window-settings $(XF86MISC_LIBS) ++gnome_settings_daemon_LDADD = $(GNOME_SETTINGS_DAEMON_LIBS) $(top_builddir)/libbackground/libbackground.la $(top_builddir)/libsounds/libsounds.a -L$(top_builddir)/libwindow-settings/.libs -lgnome-window-settings $(XF86MISC_LIBS) + + + #AccessX_files = \ diff --git a/sysutils/gnomecontrolcenter2/files/patch-libwindow-settings_wm-list.c b/sysutils/gnomecontrolcenter2/files/patch-libwindow-settings_wm-list.c new file mode 100644 index 000000000..149d59a9b --- /dev/null +++ b/sysutils/gnomecontrolcenter2/files/patch-libwindow-settings_wm-list.c @@ -0,0 +1,11 @@ +--- libwindow-settings/wm-list.c.orig Tue Oct 8 17:43:12 2002 ++++ libwindow-settings/wm-list.c Tue Oct 8 17:43:25 2002 +@@ -251,7 +251,7 @@ + gchar *name; + GConfClient *client; + +- tempdir = gnome_unconditional_datadir_file ("gnome/wm-properties/"); ++ tempdir = gnome_unconditional_datadir_file ("wm-properties/"); + wm_list_read_dir (tempdir, FALSE); + g_free (tempdir); + diff --git a/sysutils/gnomecontrolcenter2/pkg-comment b/sysutils/gnomecontrolcenter2/pkg-comment new file mode 100644 index 000000000..7d382af36 --- /dev/null +++ b/sysutils/gnomecontrolcenter2/pkg-comment @@ -0,0 +1 @@ +Control center for GNOME 2.0 project diff --git a/sysutils/gnomecontrolcenter2/pkg-descr b/sysutils/gnomecontrolcenter2/pkg-descr new file mode 100644 index 000000000..017e3d76e --- /dev/null +++ b/sysutils/gnomecontrolcenter2/pkg-descr @@ -0,0 +1 @@ +control center for GNOME 2.0 project. diff --git a/sysutils/gnomecontrolcenter2/pkg-plist b/sysutils/gnomecontrolcenter2/pkg-plist new file mode 100644 index 000000000..f69ac9cbf --- /dev/null +++ b/sysutils/gnomecontrolcenter2/pkg-plist @@ -0,0 +1,175 @@ +bin/gnome-accessibility-keyboard-properties +bin/gnome-background-properties +bin/gnome-control-center +bin/gnome-default-applications-properties +bin/gnome-file-types-properties +bin/gnome-font-properties +bin/gnome-keybinding-properties +bin/gnome-keyboard-properties +bin/gnome-mouse-properties +bin/gnome-network-preferences +bin/gnome-settings-daemon +bin/gnome-sound-properties +bin/gnome-theme-properties +bin/gnome-ui-properties +bin/gnome-window-properties +etc/gconf/gconf.xml.defaults/apps/gnome_settings_daemon/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnome_settings_daemon/editor/%gconf.xml +etc/gconf/gconf.xml.defaults/apps/gnome_settings_daemon/screensaver/%gconf.xml +etc/gconf/gconf.xml.defaults/desktop/gnome/font_rendering/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnome_settings_daemon/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnome_settings_daemon/editor/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/apps/gnome_settings_daemon/screensaver/%gconf.xml +etc/gconf/gconf.xml.defaults/schemas/desktop/gnome/font_rendering/%gconf.xml +etc/gconf/schemas/apps_gnome_settings_daemon_default_editor.schemas +etc/gconf/schemas/apps_gnome_settings_daemon_screensaver.schemas +etc/gconf/schemas/desktop_gnome_font_rendering.schemas +include/gnome-window-settings-2.0/gnome-window-manager.h +include/gnome-window-settings-2.0/gnome-wm-manager.h +lib/libgnome-window-settings.a +lib/libgnome-window-settings.so +lib/libgnome-window-settings.so.1 +lib/window-manager-settings/libmetacity.so +libdata/bonobo/servers/GNOME_SettingsDaemon.server +libdata/pkgconfig/gnome-window-settings-2.0.pc +share/gnome/applications/gnomecc.desktop +share/gnome/control-center-2.0/capplets/accessibility-keyboard.desktop +share/gnome/control-center-2.0/capplets/background.desktop +share/gnome/control-center-2.0/capplets/behavior.desktop +share/gnome/control-center-2.0/capplets/default-applications.desktop +share/gnome/control-center-2.0/capplets/file-types.desktop +share/gnome/control-center-2.0/capplets/font-properties.desktop +share/gnome/control-center-2.0/capplets/gnome-network-preferences.desktop +share/gnome/control-center-2.0/capplets/gtk-theme-selector.desktop +share/gnome/control-center-2.0/capplets/keybinding.desktop +share/gnome/control-center-2.0/capplets/keyboard.desktop +share/gnome/control-center-2.0/capplets/mouse.desktop +share/gnome/control-center-2.0/capplets/sound.desktop +share/gnome/control-center-2.0/capplets/window-properties.desktop +share/gnome/control-center-2.0/icons/accessibility-directory.png +share/gnome/control-center-2.0/icons/accessibility-keyboard-capplet.png +share/gnome/control-center-2.0/icons/advanced-directory.png +share/gnome/control-center-2.0/icons/background-capplet.png +share/gnome/control-center-2.0/icons/behavior-capplet.png +share/gnome/control-center-2.0/icons/control-center.png +share/gnome/control-center-2.0/icons/default-applications-capplet.png +share/gnome/control-center-2.0/icons/font-capplet.png +share/gnome/control-center-2.0/icons/mouse-capplet.png +share/gnome/control-center-2.0/icons/sound-capplet.png +share/gnome/control-center-2.0/icons/window-capplet.png +share/gnome/control-center-2.0/interfaces/background-properties.glade +share/gnome/control-center-2.0/interfaces/file-types-properties.glade +share/gnome/control-center-2.0/interfaces/font-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-accessibility-keyboard-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-default-applications-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-keybinding-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-keyboard-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-mouse-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-network-preferences.glade +share/gnome/control-center-2.0/interfaces/gnome-ui-properties.glade +share/gnome/control-center-2.0/interfaces/sound-properties.glade +share/gnome/control-center-2.0/interfaces/theme-install.glade +share/gnome/control-center-2.0/interfaces/theme-properties.glade +share/gnome/control-center-2.0/interfaces/gnome-window-properties.glade +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-bouncekey.png +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-mousekey.png +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-slowkey.png +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-stickykey.png +share/gnome/control-center-2.0/pixmaps/accessibility-keyboard-togglekey.png +share/gnome/control-center-2.0/pixmaps/double-click-maybe.png +share/gnome/control-center-2.0/pixmaps/double-click-off.png +share/gnome/control-center-2.0/pixmaps/double-click-on.png +share/gnome/control-center-2.0/pixmaps/keyboard-bell.png +share/gnome/control-center-2.0/pixmaps/keyboard-capplet.png +share/gnome/control-center-2.0/pixmaps/keyboard-cursor.png +share/gnome/control-center-2.0/pixmaps/keyboard-repeat.png +share/gnome/control-center-2.0/pixmaps/keyboard-volume.png +share/gnome/control-center-2.0/pixmaps/mouse-cursor-normal-large.png +share/gnome/control-center-2.0/pixmaps/mouse-cursor-normal.png +share/gnome/control-center-2.0/pixmaps/mouse-cursor-white-large.png +share/gnome/control-center-2.0/pixmaps/mouse-cursor-white.png +share/gnome/control-center-2.0/pixmaps/mouse-left.png +share/gnome/control-center-2.0/pixmaps/mouse-right.png +share/gnome/control-center-2.0/pixmaps/subpixel-bgr.png +share/gnome/control-center-2.0/pixmaps/subpixel-rgb.png +share/gnome/control-center-2.0/pixmaps/subpixel-vbgr.png +share/gnome/control-center-2.0/pixmaps/subpixel-vrgb.png +share/gnome/cursor-fonts/cursor-large-white.pcf +share/gnome/cursor-fonts/cursor-large.pcf +share/gnome/cursor-fonts/cursor-white.pcf +share/gnome/gnome-2.0/ui/gnomecc-ui.xml +share/gnome/idl/ConfigArchiver.idl +share/gnome/idl/GNOME_SettingsDaemon.idl +share/gnome/pixmaps/accessibility-keyboard-capplet.png +share/gnome/pixmaps/background-capplet.png +share/gnome/pixmaps/behavior-capplet.png +share/gnome/pixmaps/control-center2.png +share/gnome/pixmaps/default-applications-capplet.png +share/gnome/pixmaps/font-capplet.png +share/gnome/pixmaps/gnomecc-2/active.png +share/gnome/pixmaps/gnomecc-2/bcg_top.png +share/gnome/pixmaps/gnomecc-2/blank.png +share/gnome/pixmaps/gnomecc-2/title.png +share/gnome/pixmaps/keyboard-capplet.png +share/gnome/pixmaps/keyboard-shortcut.png +share/gnome/pixmaps/mouse-capplet.png +share/gnome/pixmaps/sound-capplet.png +share/gnome/pixmaps/window-capplet.png +share/gnome/vfolders/Accessibility.directory +share/gnome/vfolders/Advanced.directory +share/locale/ar/LC_MESSAGES/control-center-2.0.mo +share/locale/az/LC_MESSAGES/control-center-2.0.mo +share/locale/bg/LC_MESSAGES/control-center-2.0.mo +share/locale/ca/LC_MESSAGES/control-center-2.0.mo +share/locale/cs/LC_MESSAGES/control-center-2.0.mo +share/locale/da/LC_MESSAGES/control-center-2.0.mo +share/locale/de/LC_MESSAGES/control-center-2.0.mo +share/locale/el/LC_MESSAGES/control-center-2.0.mo +share/locale/en_GB/LC_MESSAGES/control-center-2.0.mo +share/locale/es/LC_MESSAGES/control-center-2.0.mo +share/locale/et/LC_MESSAGES/control-center-2.0.mo +share/locale/fi/LC_MESSAGES/control-center-2.0.mo +share/locale/fr/LC_MESSAGES/control-center-2.0.mo +share/locale/ga/LC_MESSAGES/control-center-2.0.mo +share/locale/gl/LC_MESSAGES/control-center-2.0.mo +share/locale/hr/LC_MESSAGES/control-center-2.0.mo +share/locale/hu/LC_MESSAGES/control-center-2.0.mo +share/locale/it/LC_MESSAGES/control-center-2.0.mo +share/locale/ja/LC_MESSAGES/control-center-2.0.mo +share/locale/ko/LC_MESSAGES/control-center-2.0.mo +share/locale/lt/LC_MESSAGES/control-center-2.0.mo +share/locale/lv/LC_MESSAGES/control-center-2.0.mo +share/locale/ms/LC_MESSAGES/control-center-2.0.mo +share/locale/nl/LC_MESSAGES/control-center-2.0.mo +share/locale/nn/LC_MESSAGES/control-center-2.0.mo +share/locale/no/LC_MESSAGES/control-center-2.0.mo +share/locale/pl/LC_MESSAGES/control-center-2.0.mo +share/locale/pt/LC_MESSAGES/control-center-2.0.mo +share/locale/pt_BR/LC_MESSAGES/control-center-2.0.mo +share/locale/ro/LC_MESSAGES/control-center-2.0.mo +share/locale/ru/LC_MESSAGES/control-center-2.0.mo +share/locale/sk/LC_MESSAGES/control-center-2.0.mo +share/locale/sl/LC_MESSAGES/control-center-2.0.mo +share/locale/sv/LC_MESSAGES/control-center-2.0.mo +share/locale/tr/LC_MESSAGES/control-center-2.0.mo +share/locale/uk/LC_MESSAGES/control-center-2.0.mo +share/locale/vi/LC_MESSAGES/control-center-2.0.mo +share/locale/wa/LC_MESSAGES/control-center-2.0.mo +share/locale/zh_CN/LC_MESSAGES/control-center-2.0.mo +share/locale/zh_TW/LC_MESSAGES/control-center-2.0.mo +@dirrm share/gnome/pixmaps/gnomecc-2 +@dirrm share/gnome/cursor-fonts +@dirrm share/gnome/control-center-2.0/pixmaps +@dirrm share/gnome/control-center-2.0/interfaces +@dirrm share/gnome/control-center-2.0/icons +@dirrm share/gnome/applications +@dirrm lib/window-manager-settings +@dirrm include/gnome-window-settings-2.0 +@dirrm etc/gconf/gconf.xml.defaults/schemas/desktop/gnome/font_rendering +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome_settings_daemon/screensaver +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome_settings_daemon/editor +@dirrm etc/gconf/gconf.xml.defaults/schemas/apps/gnome_settings_daemon +@dirrm etc/gconf/gconf.xml.defaults/desktop/gnome/font_rendering +@dirrm etc/gconf/gconf.xml.defaults/apps/gnome_settings_daemon/screensaver +@dirrm etc/gconf/gconf.xml.defaults/apps/gnome_settings_daemon/editor +@dirrm etc/gconf/gconf.xml.defaults/apps/gnome_settings_daemon |