pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/sysutils sysutils: Add gnome-control-center



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c8d7e200db0d
branches:  trunk
changeset: 441786:c8d7e200db0d
user:      nia <nia%pkgsrc.org@localhost>
date:      Tue Nov 10 18:22:23 2020 +0000

description:
sysutils: Add gnome-control-center

GNOME's main interface for configuration of various aspects of your desktop.

diffstat:

 sysutils/Makefile                                                                         |    3 +-
 sysutils/gnome-control-center/DESCR                                                       |    1 +
 sysutils/gnome-control-center/Makefile                                                    |   56 ++
 sysutils/gnome-control-center/PLIST                                                       |  265 ++++++++++
 sysutils/gnome-control-center/distinfo                                                    |   13 +
 sysutils/gnome-control-center/patches/patch-meson.build                                   |   22 +
 sysutils/gnome-control-center/patches/patch-panels_common_meson.build                     |   26 +
 sysutils/gnome-control-center/patches/patch-panels_datetime_date-endian.c                 |   29 +
 sysutils/gnome-control-center/patches/patch-panels_info-overview_cc-info-overview-panel.c |   32 +
 sysutils/gnome-control-center/patches/patch-panels_info-overview_meson.build              |   14 +
 sysutils/gnome-control-center/patches/patch-panels_meson.build                            |   30 +
 sysutils/gnome-control-center/patches/patch-shell_cc-panel-loader.c                       |   56 ++
 12 files changed, 546 insertions(+), 1 deletions(-)

diffs (truncated from 605 to 300 lines):

diff -r b3c69a2aa6f0 -r c8d7e200db0d sysutils/Makefile
--- a/sysutils/Makefile Tue Nov 10 17:46:20 2020 +0000
+++ b/sysutils/Makefile Tue Nov 10 18:22:23 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.914 2020/11/10 01:21:24 nia Exp $
+# $NetBSD: Makefile,v 1.915 2020/11/10 18:22:23 nia Exp $
 #
 
 COMMENT=       System utilities
@@ -235,6 +235,7 @@
 SUBDIR+=       gkrellm-server
 SUBDIR+=       gkrellm-share
 SUBDIR+=       gnome-characters
+SUBDIR+=       gnome-control-center
 SUBDIR+=       gnome-font-viewer
 SUBDIR+=       gnome-menus
 SUBDIR+=       gnome-nds-thumbnailer
diff -r b3c69a2aa6f0 -r c8d7e200db0d sysutils/gnome-control-center/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/gnome-control-center/DESCR       Tue Nov 10 18:22:23 2020 +0000
@@ -0,0 +1,1 @@
+GNOME's main interface for configuration of various aspects of your desktop.
diff -r b3c69a2aa6f0 -r c8d7e200db0d sysutils/gnome-control-center/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/gnome-control-center/Makefile    Tue Nov 10 18:22:23 2020 +0000
@@ -0,0 +1,56 @@
+# $NetBSD: Makefile,v 1.1 2020/11/10 18:22:23 nia Exp $
+
+DISTNAME=      gnome-control-center-3.38.1
+MASTER_SITES=  ${MASTER_SITE_GNOME:=sources/${PKGBASE}/${PKGVERSION_NOREV:R}/}
+CATEGORIES=    sysutils gnome
+EXTRACT_SUFX=  .tar.xz
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://gitlab.gnome.org/GNOME/gnome-control-center
+COMMENT=       Interface to configure various aspects of the GNOME desktop
+LICENSE=       gnu-gpl-v2
+
+TOOL_DEPENDS+= gdbus-codegen-[0-9]*:../../devel/gdbus-codegen
+
+USE_TOOLS+=    pkg-config msgfmt xgettext
+
+MESON_ARGS+=   -Dcheese=false
+MESON_ARGS+=   -Dtests=false
+MESON_ARGS+=   -Dwayland=false
+
+.include "../../mk/bsd.prefs.mk"
+
+# msgfmt: unknown option -- desktop
+.if ${OPSYS} == "NetBSD"
+TOOLS_PLATFORM.msgfmt=
+.endif
+
+PYTHON_FOR_BUILD_ONLY= tool
+
+PKGCONFIG_OVERRIDE_STAGE=      pre-install
+PKGCONFIG_OVERRIDE+=           output/panels/keyboard/gnome-keybindings.pc
+
+.include "../../devel/meson/build.mk"
+.include "../../devel/glib2/schemas.mk"
+.include "../../audio/gsound/buildlink3.mk"
+.include "../../audio/pulseaudio/buildlink3.mk"
+.include "../../devel/libhandy1/buildlink3.mk"
+.include "../../graphics/colord/buildlink3.mk"
+.include "../../graphics/colord-gtk/buildlink3.mk"
+.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
+.include "../../inputmethod/ibus/buildlink3.mk"
+.include "../../lang/python/tool.mk"
+.include "../../net/gnome-online-accounts/buildlink3.mk"
+.include "../../net/grilo/buildlink3.mk"
+.include "../../net/samba4/buildlink3.mk"
+.include "../../print/libcups/buildlink3.mk"
+.include "../../security/libsecret/buildlink3.mk"
+.include "../../security/polkit/buildlink3.mk"
+.include "../../sysutils/gnome-settings-daemon/buildlink3.mk"
+.include "../../sysutils/desktop-file-utils/desktopdb.mk"
+.include "../../sysutils/libgtop/buildlink3.mk"
+.include "../../sysutils/upower/buildlink3.mk"
+.include "../../textproc/libxml2/buildlink3.mk"
+.include "../../x11/gnome-desktop3/buildlink3.mk"
+.include "../../x11/gtk3/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r b3c69a2aa6f0 -r c8d7e200db0d sysutils/gnome-control-center/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/gnome-control-center/PLIST       Tue Nov 10 18:22:23 2020 +0000
@@ -0,0 +1,265 @@
+@comment $NetBSD: PLIST,v 1.1 2020/11/10 18:22:23 nia Exp $
+bin/gnome-control-center
+libexec/cc-remote-login-helper
+libexec/gnome-control-center-print-renderer
+libexec/gnome-control-center-search-provider
+share/applications/gnome-applications-panel.desktop
+share/applications/gnome-background-panel.desktop
+share/applications/gnome-camera-panel.desktop
+share/applications/gnome-color-panel.desktop
+share/applications/gnome-control-center.desktop
+share/applications/gnome-datetime-panel.desktop
+share/applications/gnome-default-apps-panel.desktop
+share/applications/gnome-diagnostics-panel.desktop
+share/applications/gnome-display-panel.desktop
+share/applications/gnome-info-overview-panel.desktop
+share/applications/gnome-keyboard-panel.desktop
+share/applications/gnome-location-panel.desktop
+share/applications/gnome-lock-panel.desktop
+share/applications/gnome-microphone-panel.desktop
+share/applications/gnome-notifications-panel.desktop
+share/applications/gnome-online-accounts-panel.desktop
+share/applications/gnome-power-panel.desktop
+share/applications/gnome-printers-panel.desktop
+share/applications/gnome-removable-media-panel.desktop
+share/applications/gnome-search-panel.desktop
+share/applications/gnome-sharing-panel.desktop
+share/applications/gnome-sound-panel.desktop
+share/applications/gnome-universal-access-panel.desktop
+share/applications/gnome-usage-panel.desktop
+share/bash-completion/completions/gnome-control-center
+share/dbus-1/services/org.gnome.ControlCenter.SearchProvider.service
+share/dbus-1/services/org.gnome.ControlCenter.service
+share/gettext/its/gnome-keybindings.its
+share/gettext/its/gnome-keybindings.loc
+share/gettext/its/sounds.its
+share/gettext/its/sounds.loc
+share/glib-2.0/schemas/org.gnome.ControlCenter.gschema.xml
+share/gnome-control-center/keybindings/00-multimedia.xml
+share/gnome-control-center/keybindings/01-input-sources.xml
+share/gnome-control-center/keybindings/01-launchers.xml
+share/gnome-control-center/keybindings/01-screenshot.xml
+share/gnome-control-center/keybindings/01-system.xml
+share/gnome-control-center/keybindings/50-accessibility.xml
+share/gnome-control-center/pixmaps/noise-texture-light.png
+share/gnome-shell/search-providers/gnome-control-center-search-provider.ini
+share/icons/hicolor/16x16/apps/gnome-power-manager.png
+share/icons/hicolor/16x16/apps/goa-panel.png
+share/icons/hicolor/16x16/apps/preferences-color.png
+share/icons/hicolor/16x16/apps/preferences-desktop-display.png
+share/icons/hicolor/16x16/apps/preferences-system-time.png
+share/icons/hicolor/22x22/apps/gnome-power-manager.png
+share/icons/hicolor/22x22/apps/goa-panel.png
+share/icons/hicolor/22x22/apps/preferences-color.png
+share/icons/hicolor/22x22/apps/preferences-desktop-display.png
+share/icons/hicolor/22x22/apps/preferences-system-time.png
+share/icons/hicolor/24x24/apps/gnome-power-manager.png
+share/icons/hicolor/24x24/apps/goa-panel.png
+share/icons/hicolor/24x24/apps/preferences-color.png
+share/icons/hicolor/24x24/apps/preferences-desktop-display.png
+share/icons/hicolor/256x256/apps/gnome-power-manager.png
+share/icons/hicolor/256x256/apps/goa-panel.png
+share/icons/hicolor/256x256/apps/preferences-color.png
+share/icons/hicolor/256x256/apps/preferences-system-time.png
+share/icons/hicolor/32x32/apps/gnome-power-manager.png
+share/icons/hicolor/32x32/apps/goa-panel.png
+share/icons/hicolor/32x32/apps/preferences-color.png
+share/icons/hicolor/32x32/apps/preferences-desktop-display.png
+share/icons/hicolor/32x32/apps/preferences-system-time.png
+share/icons/hicolor/48x48/apps/gnome-power-manager.png
+share/icons/hicolor/48x48/apps/goa-panel.png
+share/icons/hicolor/48x48/apps/preferences-color.png
+share/icons/hicolor/48x48/apps/preferences-system-time.png
+share/icons/hicolor/64x64/apps/preferences-color.png
+share/icons/hicolor/scalable/apps/org.gnome.Settings.Devel.svg
+share/icons/hicolor/scalable/apps/org.gnome.Settings.svg
+share/icons/hicolor/scalable/apps/preferences-color.svg
+share/icons/hicolor/scalable/apps/preferences-desktop-display.svg
+share/icons/hicolor/scalable/apps/preferences-system-time.svg
+share/icons/hicolor/scalable/categories/slideshow-symbolic.svg
+share/icons/hicolor/scalable/emblems/slideshow-emblem.svg
+share/icons/hicolor/symbolic/apps/org.gnome.Settings-symbolic.svg
+share/locale/af/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/am/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/am/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/an/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ar/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/ar/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/as/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/as/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ast/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/ast/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/az/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/be/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/be@latin/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/bg/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/bg/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/bn/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/bn/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/bn_IN/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/bn_IN/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/br/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/bs/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/bs/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ca/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/ca/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ca@valencia/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ckb/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/crh/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/cs/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/cs/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/cy/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/cy/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/da/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/da/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/de/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/de/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/dz/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/el/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/el/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/en/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/en@shaw/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/en_CA/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/en_GB/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/en_GB/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/eo/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/es/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/es/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/et/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/et/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/eu/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/fa/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/fa/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/fi/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/fi/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/fr/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/fr/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/fur/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ga/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/gd/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/gl/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/gl/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/gu/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/gu/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/he/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/he/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/hi/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/hi/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/hr/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/hr/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/hu/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/hu/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/hy/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/id/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/id/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ilo/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/is/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/is/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/it/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/it/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ja/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/ja/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ka/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/ka/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/kab/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/kk/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/km/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/kn/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/kn/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ko/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/ko/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ku/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/ku/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ky/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/lo/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/lt/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/lt/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/lv/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/lv/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/mai/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/mai/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/mg/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/mjw/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/mk/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/mk/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ml/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/ml/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/mn/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/mr/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/mr/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ms/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/ms/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/my/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/nb/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/nb/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/nds/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/nds/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ne/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/nl/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/nl/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/nn/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/nn/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/nso/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/oc/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/or/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/or/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/pa/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/pa/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/pl/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/pl/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/pt/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/pt/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/pt_BR/LC_MESSAGES/gnome-control-center-2.0-timezones.mo
+share/locale/pt_BR/LC_MESSAGES/gnome-control-center-2.0.mo
+share/locale/ro/LC_MESSAGES/gnome-control-center-2.0-timezones.mo



Home | Main Index | Thread Index | Old Index