Upgrade the Cinnamon desktop environment to version 4.8

This version uses Python 3 instead of the expired Python 2.7

From the main PR (249856):

" There are a couple known issues:
  * x11-fm/nemo crashes upon closing a window or tab.
  * x11/cinnamon-screensaver unlocking doesn't work, most likely due to a missing PAM (Linux-PAM?) integration.
  Both of these issues are being worked on.

  I've been dogfooding since Cinnamon 4.0, and apart from those issues, everything works."

PR:		249771
PR:		249851
PR:		249855
PR:		249856
PR:		249857
PR:		249858
Submitted by:	Charlie Li
This commit is contained in:
Rene Ladan 2021-01-02 11:21:30 +00:00
parent 9729352622
commit 474895cdb6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=559925
61 changed files with 2076 additions and 2398 deletions

View File

@ -2,30 +2,36 @@
# $FreeBSD$
PORTNAME= cjs
PORTVERSION= 2.4.1
PORTREVISION= 6
PORTVERSION= 4.8.1
CATEGORIES= lang gnome
DIST_SUBDIR= gnome3
DIST_SUBDIR= gnome
MAINTAINER= gnome@FreeBSD.org
COMMENT= JavaScript bindings based on gobject-introspection
BUILD_DEPENDS= gnome-autogen.sh:devel/gnome-common
LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib \
libmozjs-24.so:lang/spidermonkey24
LICENSE= MIT LGPL20+
LICENSE_COMB= dual
LICENSE_FILE_MIT= ${WRKSRC}/COPYING
LICENSE_FILE_LGPL20+ = ${WRKSRC}/COPYING.LGPL
USES= autoreconf compiler:c11 gettext gmake gnome libtool pathfix \
pkgconfig python:build shebangfix
USE_GNOME= cairo glib20 gnomeprefix introspection:build
USE_GITHUB= yes
GH_ACCOUNT= linuxmint
LIB_DEPENDS= libffi.so:devel/libffi \
libmozjs-78.so:lang/spidermonkey78
USES= compiler:c++14-lang gettext gnome localbase meson pkgconfig \
python:3.5+,build readline shebangfix xorg
USE_GNOME= cairo gdkpixbuf2 gtk30 introspection
USE_XORG= x11 xext
MESON_ARGS= -Dinstalled_tests=false \
-Dcairo=enabled \
-Dreadline=enabled \
-Dprofiler=disabled
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CFLAGS+= -I${LOCALBASE}/include
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
INSTALL_TARGET= install-strip
CONFIGURE_ARGS+=--enable-compile-warnings=no
USE_GITHUB= yes
GH_ACCOUNT= linuxmint
SHEBANG_GLOB= *.py
PORTSCOUT= limit:^[0-9.]+$$ # ignore master.mint* tags
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (gnome3/linuxmint-cjs-2.4.1_GH0.tar.gz) = e1def70d518e2a333c5bb2d480d2a5539efcbb6781d81ade08c2982818e2c47b
SIZE (gnome3/linuxmint-cjs-2.4.1_GH0.tar.gz) = 323514
TIMESTAMP = 1608876977
SHA256 (gnome/linuxmint-cjs-4.8.1_GH0.tar.gz) = 20a117f77917896088273f3ee670d43bee1c115a351c2f688840494b15a8613d
SIZE (gnome/linuxmint-cjs-4.8.1_GH0.tar.gz) = 599988

View File

@ -1,46 +0,0 @@
gi/boxed.cpp:552:16: error: cannot initialize return object of type 'GIFieldInfo *' (aka '_GIBaseInfoStub *') with an rvalue of type 'int'
return JS_FALSE;
^~~~~~~~
gi/ns.cpp:188:16: error: cannot initialize return object of type 'JSObject *' with an rvalue of type 'int'
return JS_FALSE;
^~~~~~~~
gi/repo.cpp:312:16: error: cannot initialize return object of type 'JSObject *' with an rvalue of type 'int'
return JS_FALSE;
^~~~~~~~
/usr/local/include/mozjs-24/jstypes.h:194:18: note: expanded from macro 'JS_FALSE'
#define JS_FALSE (int)0
^~~~~~
--- gi/boxed.cpp.orig 2014-11-23 11:02:30 UTC
+++ gi/boxed.cpp
@@ -549,7 +549,7 @@ get_field_info (JSContext *context,
jsval id_val;
if (!JS_IdToValue(context, id, &id_val))
- return JS_FALSE;
+ return NULL;
if (!JSVAL_IS_INT (id_val)) {
gjs_throw(context, "Field index for %s is not an integer",
--- gi/ns.cpp.orig 2014-11-23 11:02:30 UTC
+++ gi/ns.cpp
@@ -185,7 +185,7 @@ ns_new(JSContext *context,
global = gjs_get_import_global(context);
if (!JS_HasProperty(context, global, gjs_ns_class.name, &found))
- return JS_FALSE;
+ return NULL;
if (!found) {
JSObject *prototype;
prototype = JS_InitClass(context, global,
--- gi/repo.cpp.orig 2014-11-23 11:02:30 UTC
+++ gi/repo.cpp
@@ -309,7 +309,7 @@ repo_new(JSContext *context)
repo = JS_NewObject(context, &gjs_repo_class, NULL, global);
if (repo == NULL) {
gjs_throw(context, "No memory to create repo object");
- return JS_FALSE;
+ return NULL;
}
priv = g_slice_new0(Repo);

View File

@ -1,38 +1,16 @@
bin/cjs
bin/cjs-console
include/cjs-1.0/cjs/byteArray.h
include/cjs-1.0/cjs/compat.h
include/cjs-1.0/cjs/context.h
include/cjs-1.0/cjs/coverage.h
include/cjs-1.0/cjs/gjs-module.h
include/cjs-1.0/cjs/error-types.h
include/cjs-1.0/cjs/gjs.h
include/cjs-1.0/cjs/importer.h
include/cjs-1.0/cjs/jsapi-util.h
include/cjs-1.0/cjs/macros.h
include/cjs-1.0/cjs/mem.h
include/cjs-1.0/cjs/native.h
include/cjs-1.0/cjs/runtime.h
include/cjs-1.0/cjs/type-module.h
include/cjs-1.0/gi/arg.h
include/cjs-1.0/gi/boxed.h
include/cjs-1.0/gi/closure.h
include/cjs-1.0/gi/enumeration.h
include/cjs-1.0/gi/foreign.h
include/cjs-1.0/gi/function.h
include/cjs-1.0/gi/fundamental.h
include/cjs-1.0/gi/gerror.h
include/cjs-1.0/gi/gtype.h
include/cjs-1.0/gi/interface.h
include/cjs-1.0/gi/keep-alive.h
include/cjs-1.0/gi/ns.h
include/cjs-1.0/gi/object.h
include/cjs-1.0/gi/param.h
include/cjs-1.0/gi/repo.h
include/cjs-1.0/gi/union.h
include/cjs-1.0/gi/value.h
include/cjs-1.0/cjs/profiler.h
lib/cjs/girepository-1.0/CjsPrivate-1.0.typelib
lib/libcjs.so
lib/libcjs.so.0
lib/libcjs.so.0.0.0
libdata/pkgconfig/cjs-1.0.pc
libdata/pkgconfig/cjs-internals-1.0.pc
@dir libexec/cjs/installed-tests/js
%%DATADIR%%-1.0/lsan/lsan.supp
%%DATADIR%%-1.0/valgrind/gjs.supp

View File

@ -1,19 +1,23 @@
# Created by: Gustau Perez i Querol <gustau.perez@gmail.com>
# $FreeBSD$
# $MCom: ports/trunk/misc/cinnamon-translations/Makefile 19857 2014-09-13 09:46:37Z gusi $
PORTNAME= cinnamon-translations
PORTVERSION= 2.4.2
PORTVERSION= 4.8.2
CATEGORIES= misc x11 gnome
DIST_SUBDIR= gnome3
DIST_SUBDIR= gnome
MAINTAINER= gnome@FreeBSD.org
COMMENT= Translations for the cinnamon desktop
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
USES= gettext-tools
USE_GITHUB= yes
GH_ACCOUNT= linuxmint
USES= gettext-tools
NO_BUILD= yes
INSTALL_TARGET= all
NO_ARCH= yes

View File

@ -1,2 +1,3 @@
SHA256 (gnome3/linuxmint-cinnamon-translations-2.4.2_GH0.tar.gz) = e03b6ed7ab6cb08d1cb2959057fd939d9cd7a36d3089f8b17ea245cb25fb8f67
SIZE (gnome3/linuxmint-cinnamon-translations-2.4.2_GH0.tar.gz) = 6692218
TIMESTAMP = 1608877266
SHA256 (gnome/linuxmint-cinnamon-translations-4.8.2_GH0.tar.gz) = 483bc894dbebb01a4cde1609f77a673068244393370febd66540a0fe65545c2e
SIZE (gnome/linuxmint-cinnamon-translations-4.8.2_GH0.tar.gz) = 11992858

View File

@ -1 +1 @@
Translations for cinnamon desktop
Translations for cinnamon desktop.

View File

@ -1,516 +1,743 @@
share/locale/af/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/af/LC_MESSAGES/cinnamon-control-center.mo
share/locale/af/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/af/LC_MESSAGES/cinnamon-session.mo
share/locale/af/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/af/LC_MESSAGES/cinnamon.mo
share/locale/af/LC_MESSAGES/nemo.mo
share/locale/am/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/am/LC_MESSAGES/cinnamon-control-center.mo
share/locale/am/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/am/LC_MESSAGES/cinnamon-session.mo
share/locale/am/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/am/LC_MESSAGES/cinnamon.mo
share/locale/am/LC_MESSAGES/nemo-extensions.mo
share/locale/am/LC_MESSAGES/nemo.mo
share/locale/an/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ar/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ar/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ar/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ar/LC_MESSAGES/cinnamon-session.mo
share/locale/ar/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ar/LC_MESSAGES/cinnamon.mo
share/locale/ar/LC_MESSAGES/nemo-extensions.mo
share/locale/ar/LC_MESSAGES/nemo.mo
share/locale/as/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/as/LC_MESSAGES/cinnamon-control-center.mo
share/locale/as/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/as/LC_MESSAGES/cinnamon-session.mo
share/locale/as/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/as/LC_MESSAGES/nemo.mo
share/locale/ast/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ast/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ast/LC_MESSAGES/cinnamon-session.mo
share/locale/ast/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ast/LC_MESSAGES/cinnamon.mo
share/locale/ast/LC_MESSAGES/nemo.mo
share/locale/az/LC_MESSAGES/cinnamon-control-center.mo
share/locale/az/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/az/LC_MESSAGES/cinnamon-session.mo
share/locale/az/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/az/LC_MESSAGES/cinnamon.mo
share/locale/be/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/az/LC_MESSAGES/nemo.mo
share/locale/be/LC_MESSAGES/cinnamon-control-center.mo
share/locale/be/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/be/LC_MESSAGES/cinnamon-session.mo
share/locale/be/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/be/LC_MESSAGES/cinnamon.mo
share/locale/be/LC_MESSAGES/nemo-extensions.mo
share/locale/be/LC_MESSAGES/nemo.mo
share/locale/be@latin/LC_MESSAGES/cinnamon-control-center.mo
share/locale/be@latin/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/bg/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/be@latin/LC_MESSAGES/cinnamon-session.mo
share/locale/be@latin/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ber/LC_MESSAGES/cinnamon.mo
share/locale/bg/LC_MESSAGES/cinnamon-control-center.mo
share/locale/bg/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/bg/LC_MESSAGES/cinnamon-session.mo
share/locale/bg/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/bg/LC_MESSAGES/cinnamon.mo
share/locale/bg/LC_MESSAGES/nemo-extensions.mo
share/locale/bg/LC_MESSAGES/nemo.mo
share/locale/bn/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/bn/LC_MESSAGES/cinnamon-control-center.mo
share/locale/bn/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/bn/LC_MESSAGES/cinnamon-session.mo
share/locale/bn/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/bn/LC_MESSAGES/cinnamon.mo
share/locale/bn/LC_MESSAGES/nemo.mo
share/locale/bn_IN/LC_MESSAGES/cinnamon-control-center.mo
share/locale/bn_IN/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/bn_IN/LC_MESSAGES/cinnamon-session.mo
share/locale/bn_IN/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/br/LC_MESSAGES/cinnamon-control-center.mo
share/locale/br/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/bs/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/br/LC_MESSAGES/cinnamon-session.mo
share/locale/br/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/bs/LC_MESSAGES/cinnamon-control-center.mo
share/locale/bs/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/bs/LC_MESSAGES/cinnamon-session.mo
share/locale/bs/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/bs/LC_MESSAGES/cinnamon.mo
share/locale/bs/LC_MESSAGES/nemo.mo
share/locale/ca/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ca/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ca/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ca/LC_MESSAGES/cinnamon-session.mo
share/locale/ca/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ca/LC_MESSAGES/cinnamon.mo
share/locale/ca/LC_MESSAGES/nemo-extensions.mo
share/locale/ca/LC_MESSAGES/nemo.mo
share/locale/ca@valencia/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ca@valencia/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ca@valencia/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ca@valencia/LC_MESSAGES/cinnamon-session.mo
share/locale/ca@valencia/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ca@valencia/LC_MESSAGES/cinnamon.mo
share/locale/ca@valencia/LC_MESSAGES/nemo-extensions.mo
share/locale/ca@valencia/LC_MESSAGES/nemo.mo
share/locale/crh/LC_MESSAGES/cinnamon-control-center.mo
share/locale/crh/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/cs/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/crh/LC_MESSAGES/cinnamon-session.mo
share/locale/crh/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/crh/LC_MESSAGES/cinnamon.mo
share/locale/cs/LC_MESSAGES/cinnamon-control-center.mo
share/locale/cs/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/cs/LC_MESSAGES/cinnamon-session.mo
share/locale/cs/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/cs/LC_MESSAGES/cinnamon.mo
share/locale/cs/LC_MESSAGES/nemo-extensions.mo
share/locale/cs/LC_MESSAGES/nemo.mo
share/locale/csb/LC_MESSAGES/cinnamon-session.mo
share/locale/csb/LC_MESSAGES/cinnamon.mo
share/locale/cy/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/cy/LC_MESSAGES/cinnamon-control-center.mo
share/locale/cy/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/cy/LC_MESSAGES/cinnamon-session.mo
share/locale/cy/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/cy/LC_MESSAGES/cinnamon.mo
share/locale/cy/LC_MESSAGES/nemo-extensions.mo
share/locale/cy/LC_MESSAGES/nemo.mo
share/locale/da/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/da/LC_MESSAGES/cinnamon-control-center.mo
share/locale/da/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/da/LC_MESSAGES/cinnamon-session.mo
share/locale/da/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/da/LC_MESSAGES/cinnamon.mo
share/locale/da/LC_MESSAGES/nemo-extensions.mo
share/locale/da/LC_MESSAGES/nemo.mo
share/locale/de/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/de/LC_MESSAGES/cinnamon-control-center.mo
share/locale/de/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/de/LC_MESSAGES/cinnamon-session.mo
share/locale/de/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/de/LC_MESSAGES/cinnamon.mo
share/locale/de/LC_MESSAGES/nemo-extensions.mo
share/locale/de/LC_MESSAGES/nemo.mo
share/locale/dz/LC_MESSAGES/cinnamon-control-center.mo
share/locale/dz/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/el/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/dz/LC_MESSAGES/cinnamon-session.mo
share/locale/dz/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/el/LC_MESSAGES/cinnamon-control-center.mo
share/locale/el/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/el/LC_MESSAGES/cinnamon-session.mo
share/locale/el/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/el/LC_MESSAGES/cinnamon.mo
share/locale/el/LC_MESSAGES/nemo-extensions.mo
share/locale/el/LC_MESSAGES/nemo.mo
share/locale/en@shaw/LC_MESSAGES/cinnamon-control-center.mo
share/locale/en@shaw/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/en@shaw/LC_MESSAGES/cinnamon-session.mo
share/locale/en@shaw/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/en_AU/LC_MESSAGES/cinnamon-control-center.mo
share/locale/en_AU/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/en_AU/LC_MESSAGES/cinnamon-session.mo
share/locale/en_AU/LC_MESSAGES/cinnamon.mo
share/locale/en_AU/LC_MESSAGES/nemo.mo
share/locale/en_CA/LC_MESSAGES/cinnamon-control-center.mo
share/locale/en_CA/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/en_CA/LC_MESSAGES/cinnamon-session.mo
share/locale/en_CA/LC_MESSAGES/cinnamon.mo
share/locale/en_GB/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/en_CA/LC_MESSAGES/nemo.mo
share/locale/en_GB/LC_MESSAGES/cinnamon-control-center.mo
share/locale/en_GB/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/en_GB/LC_MESSAGES/cinnamon-session.mo
share/locale/en_GB/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/en_GB/LC_MESSAGES/cinnamon.mo
share/locale/en_GB/LC_MESSAGES/nemo-extensions.mo
share/locale/en_GB/LC_MESSAGES/nemo.mo
share/locale/eo/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/en_IE/LC_MESSAGES/cinnamon.mo
share/locale/en_NZ/LC_MESSAGES/cinnamon.mo
share/locale/en_ZA/LC_MESSAGES/cinnamon.mo
share/locale/eo/LC_MESSAGES/cinnamon-control-center.mo
share/locale/eo/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/eo/LC_MESSAGES/cinnamon-session.mo
share/locale/eo/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/eo/LC_MESSAGES/cinnamon.mo
share/locale/eo/LC_MESSAGES/nemo-extensions.mo
share/locale/eo/LC_MESSAGES/nemo.mo
share/locale/es/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/es/LC_MESSAGES/cinnamon-control-center.mo
share/locale/es/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/es/LC_MESSAGES/cinnamon-session.mo
share/locale/es/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/es/LC_MESSAGES/cinnamon.mo
share/locale/es/LC_MESSAGES/nemo-extensions.mo
share/locale/es/LC_MESSAGES/nemo.mo
share/locale/es_AR/LC_MESSAGES/cinnamon.mo
share/locale/et/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/et/LC_MESSAGES/cinnamon-control-center.mo
share/locale/et/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/et/LC_MESSAGES/cinnamon-session.mo
share/locale/et/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/et/LC_MESSAGES/cinnamon.mo
share/locale/et/LC_MESSAGES/nemo-extensions.mo
share/locale/et/LC_MESSAGES/nemo.mo
share/locale/eu/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/eu/LC_MESSAGES/cinnamon-control-center.mo
share/locale/eu/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/eu/LC_MESSAGES/cinnamon-session.mo
share/locale/eu/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/eu/LC_MESSAGES/cinnamon.mo
share/locale/eu/LC_MESSAGES/nemo-extensions.mo
share/locale/eu/LC_MESSAGES/nemo.mo
share/locale/fa/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/fa/LC_MESSAGES/cinnamon-control-center.mo
share/locale/fa/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/fa/LC_MESSAGES/cinnamon-session.mo
share/locale/fa/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/fa/LC_MESSAGES/cinnamon.mo
share/locale/fa/LC_MESSAGES/nemo.mo
share/locale/fi/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/fi/LC_MESSAGES/cinnamon-control-center.mo
share/locale/fi/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/fi/LC_MESSAGES/cinnamon-session.mo
share/locale/fi/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/fi/LC_MESSAGES/cinnamon.mo
share/locale/fi/LC_MESSAGES/nemo-extensions.mo
share/locale/fi/LC_MESSAGES/nemo.mo
share/locale/fil/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/fil/LC_MESSAGES/cinnamon-session.mo
share/locale/fil/LC_MESSAGES/cinnamon.mo
share/locale/fil/LC_MESSAGES/nemo.mo
share/locale/fo/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/fo/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/fo/LC_MESSAGES/cinnamon.mo
share/locale/fr/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/fr/LC_MESSAGES/cinnamon-control-center.mo
share/locale/fr/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/fr/LC_MESSAGES/cinnamon-session.mo
share/locale/fr/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/fr/LC_MESSAGES/cinnamon.mo
share/locale/fr/LC_MESSAGES/nemo-extensions.mo
share/locale/fr/LC_MESSAGES/nemo.mo
share/locale/fr_CA/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/fr_CA/LC_MESSAGES/cinnamon-control-center.mo
share/locale/fr_CA/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/fr_CA/LC_MESSAGES/cinnamon-session.mo
share/locale/fr_CA/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/fr_CA/LC_MESSAGES/cinnamon.mo
share/locale/fr_CA/LC_MESSAGES/nemo-extensions.mo
share/locale/fr_CA/LC_MESSAGES/nemo.mo
share/locale/frp/LC_MESSAGES/cinnamon-control-center.mo
share/locale/frp/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/frp/LC_MESSAGES/cinnamon-session.mo
share/locale/frp/LC_MESSAGES/cinnamon.mo
share/locale/frp/LC_MESSAGES/nemo.mo
share/locale/fur/LC_MESSAGES/cinnamon-session.mo
share/locale/fur/LC_MESSAGES/cinnamon.mo
share/locale/fy/LC_MESSAGES/cinnamon-control-center.mo
share/locale/fy/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/fy/LC_MESSAGES/cinnamon-session.mo
share/locale/fy/LC_MESSAGES/cinnamon.mo
share/locale/fy/LC_MESSAGES/nemo.mo
share/locale/ga/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ga/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ga/LC_MESSAGES/cinnamon-session.mo
share/locale/ga/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ga/LC_MESSAGES/cinnamon.mo
share/locale/ga/LC_MESSAGES/nemo.mo
share/locale/gd/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/gd/LC_MESSAGES/cinnamon-control-center.mo
share/locale/gd/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/gd/LC_MESSAGES/cinnamon-session.mo
share/locale/gd/LC_MESSAGES/cinnamon.mo
share/locale/gd/LC_MESSAGES/nemo.mo
share/locale/gl/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/gl/LC_MESSAGES/cinnamon-control-center.mo
share/locale/gl/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/gl/LC_MESSAGES/cinnamon-session.mo
share/locale/gl/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/gl/LC_MESSAGES/cinnamon.mo
share/locale/gl/LC_MESSAGES/nemo.mo
share/locale/gu/LC_MESSAGES/cinnamon-control-center.mo
share/locale/gu/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/gu/LC_MESSAGES/cinnamon-session.mo
share/locale/gu/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/gu/LC_MESSAGES/cinnamon.mo
share/locale/he/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ha/LC_MESSAGES/cinnamon-session.mo
share/locale/he/LC_MESSAGES/cinnamon-control-center.mo
share/locale/he/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/he/LC_MESSAGES/cinnamon-session.mo
share/locale/he/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/he/LC_MESSAGES/cinnamon.mo
share/locale/he/LC_MESSAGES/nemo-extensions.mo
share/locale/he/LC_MESSAGES/nemo.mo
share/locale/hi/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/hi/LC_MESSAGES/cinnamon-control-center.mo
share/locale/hi/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/hi/LC_MESSAGES/cinnamon-session.mo
share/locale/hi/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/hi/LC_MESSAGES/cinnamon.mo
share/locale/hr/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/hi/LC_MESSAGES/nemo-extensions.mo
share/locale/hi/LC_MESSAGES/nemo.mo
share/locale/hr/LC_MESSAGES/cinnamon-control-center.mo
share/locale/hr/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/hr/LC_MESSAGES/cinnamon-session.mo
share/locale/hr/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/hr/LC_MESSAGES/cinnamon.mo
share/locale/hr/LC_MESSAGES/nemo-extensions.mo
share/locale/hr/LC_MESSAGES/nemo.mo
share/locale/hu/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/hu/LC_MESSAGES/cinnamon-control-center.mo
share/locale/hu/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/hu/LC_MESSAGES/cinnamon-session.mo
share/locale/hu/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/hu/LC_MESSAGES/cinnamon.mo
share/locale/hu/LC_MESSAGES/nemo-extensions.mo
share/locale/hu/LC_MESSAGES/nemo.mo
share/locale/hy/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/hy/LC_MESSAGES/cinnamon-control-center.mo
share/locale/hy/LC_MESSAGES/cinnamon-session.mo
share/locale/hy/LC_MESSAGES/cinnamon.mo
share/locale/ia/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ia/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ia/LC_MESSAGES/cinnamon-session.mo
share/locale/ia/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ia/LC_MESSAGES/cinnamon.mo
share/locale/id/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ia/LC_MESSAGES/nemo-extensions.mo
share/locale/ia/LC_MESSAGES/nemo.mo
share/locale/id/LC_MESSAGES/cinnamon-control-center.mo
share/locale/id/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/id/LC_MESSAGES/cinnamon-session.mo
share/locale/id/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/id/LC_MESSAGES/cinnamon.mo
share/locale/id/LC_MESSAGES/nemo-extensions.mo
share/locale/id/LC_MESSAGES/nemo.mo
share/locale/is/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ie/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ie/LC_MESSAGES/cinnamon-session.mo
share/locale/ie/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ie/LC_MESSAGES/cinnamon.mo
share/locale/ie/LC_MESSAGES/nemo-extensions.mo
share/locale/ie/LC_MESSAGES/nemo.mo
share/locale/ig/LC_MESSAGES/cinnamon-session.mo
share/locale/is/LC_MESSAGES/cinnamon-control-center.mo
share/locale/is/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/is/LC_MESSAGES/cinnamon-session.mo
share/locale/is/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/is/LC_MESSAGES/cinnamon.mo
share/locale/is/LC_MESSAGES/nemo-extensions.mo
share/locale/is/LC_MESSAGES/nemo.mo
share/locale/it/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/it/LC_MESSAGES/cinnamon-control-center.mo
share/locale/it/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/it/LC_MESSAGES/cinnamon-session.mo
share/locale/it/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/it/LC_MESSAGES/cinnamon.mo
share/locale/it/LC_MESSAGES/nemo-extensions.mo
share/locale/it/LC_MESSAGES/nemo.mo
share/locale/ja/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ja/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ja/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ja/LC_MESSAGES/cinnamon-session.mo
share/locale/ja/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ja/LC_MESSAGES/cinnamon.mo
share/locale/ja/LC_MESSAGES/nemo-extensions.mo
share/locale/ja/LC_MESSAGES/nemo.mo
share/locale/jv/LC_MESSAGES/cinnamon.mo
share/locale/jv/LC_MESSAGES/nemo.mo
share/locale/ka/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ka/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ka/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ka/LC_MESSAGES/cinnamon-session.mo
share/locale/ka/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ka/LC_MESSAGES/cinnamon.mo
share/locale/ka/LC_MESSAGES/nemo.mo
share/locale/kab/LC_MESSAGES/cinnamon-control-center.mo
share/locale/kab/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/kab/LC_MESSAGES/cinnamon-session.mo
share/locale/kab/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/kab/LC_MESSAGES/cinnamon.mo
share/locale/kab/LC_MESSAGES/nemo-extensions.mo
share/locale/kab/LC_MESSAGES/nemo.mo
share/locale/kk/LC_MESSAGES/cinnamon-control-center.mo
share/locale/km/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/kk/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/kk/LC_MESSAGES/cinnamon-session.mo
share/locale/kk/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/kk/LC_MESSAGES/cinnamon.mo
share/locale/kk/LC_MESSAGES/nemo-extensions.mo
share/locale/kk/LC_MESSAGES/nemo.mo
share/locale/km/LC_MESSAGES/cinnamon-control-center.mo
share/locale/km/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/km/LC_MESSAGES/cinnamon-session.mo
share/locale/km/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/km/LC_MESSAGES/cinnamon.mo
share/locale/km/LC_MESSAGES/nemo.mo
share/locale/kn/LC_MESSAGES/cinnamon-control-center.mo
share/locale/kn/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/kn/LC_MESSAGES/cinnamon-session.mo
share/locale/kn/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/kn/LC_MESSAGES/cinnamon.mo
share/locale/kn/LC_MESSAGES/nemo.mo
share/locale/ko/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ko/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ko/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ko/LC_MESSAGES/cinnamon-session.mo
share/locale/ko/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ko/LC_MESSAGES/cinnamon.mo
share/locale/ko/LC_MESSAGES/nemo-extensions.mo
share/locale/ko/LC_MESSAGES/nemo.mo
share/locale/ksw/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ksw/LC_MESSAGES/cinnamon.mo
share/locale/ksw/LC_MESSAGES/nemo.mo
share/locale/ku/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ku/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ku/LC_MESSAGES/cinnamon-session.mo
share/locale/ku/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ku/LC_MESSAGES/cinnamon.mo
share/locale/ku/LC_MESSAGES/nemo.mo
share/locale/ky/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ky/LC_MESSAGES/cinnamon.mo
share/locale/ky/LC_MESSAGES/nemo.mo
share/locale/la/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/la/LC_MESSAGES/cinnamon.mo
share/locale/la/LC_MESSAGES/nemo-extensions.mo
share/locale/la/LC_MESSAGES/nemo.mo
share/locale/li/LC_MESSAGES/cinnamon.mo
share/locale/lo/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/lo/LC_MESSAGES/cinnamon-control-center.mo
share/locale/lo/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/lo/LC_MESSAGES/cinnamon-session.mo
share/locale/lo/LC_MESSAGES/cinnamon.mo
share/locale/lt/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/lo/LC_MESSAGES/nemo.mo
share/locale/lt/LC_MESSAGES/cinnamon-control-center.mo
share/locale/lt/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/lt/LC_MESSAGES/cinnamon-session.mo
share/locale/lt/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/lt/LC_MESSAGES/cinnamon.mo
share/locale/lt/LC_MESSAGES/nemo-extensions.mo
share/locale/lt/LC_MESSAGES/nemo.mo
share/locale/lv/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/lv/LC_MESSAGES/cinnamon-control-center.mo
share/locale/lv/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/lv/LC_MESSAGES/cinnamon-session.mo
share/locale/lv/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/lv/LC_MESSAGES/cinnamon.mo
share/locale/lv/LC_MESSAGES/nemo.mo
share/locale/mai/LC_MESSAGES/cinnamon-control-center.mo
share/locale/mai/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/mai/LC_MESSAGES/cinnamon-session.mo
share/locale/mai/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/mai/LC_MESSAGES/cinnamon.mo
share/locale/mg/LC_MESSAGES/cinnamon-control-center.mo
share/locale/mg/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/mg/LC_MESSAGES/cinnamon-session.mo
share/locale/mg/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/mg/LC_MESSAGES/nemo.mo
share/locale/mi/LC_MESSAGES/cinnamon-session.mo
share/locale/mk/LC_MESSAGES/cinnamon-control-center.mo
share/locale/mk/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/mk/LC_MESSAGES/cinnamon-session.mo
share/locale/mk/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/mk/LC_MESSAGES/cinnamon.mo
share/locale/ml/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ml/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ml/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ml/LC_MESSAGES/cinnamon-session.mo
share/locale/ml/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ml/LC_MESSAGES/cinnamon.mo
share/locale/ml/LC_MESSAGES/nemo.mo
share/locale/mn/LC_MESSAGES/cinnamon-control-center.mo
share/locale/mn/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/mr/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/mn/LC_MESSAGES/cinnamon-session.mo
share/locale/mn/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/mr/LC_MESSAGES/cinnamon-control-center.mo
share/locale/mr/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/mr/LC_MESSAGES/cinnamon-session.mo
share/locale/mr/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/mr/LC_MESSAGES/cinnamon.mo
share/locale/mr/LC_MESSAGES/nemo.mo
share/locale/ms/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ms/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ms/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ms/LC_MESSAGES/cinnamon-session.mo
share/locale/ms/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ms/LC_MESSAGES/cinnamon.mo
share/locale/ms/LC_MESSAGES/nemo.mo
share/locale/my/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/my/LC_MESSAGES/cinnamon-control-center.mo
share/locale/my/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/my/LC_MESSAGES/cinnamon-session.mo
share/locale/my/LC_MESSAGES/cinnamon.mo
share/locale/nb/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/my/LC_MESSAGES/nemo.mo
share/locale/nap/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/nap/LC_MESSAGES/cinnamon.mo
share/locale/nb/LC_MESSAGES/cinnamon-control-center.mo
share/locale/nb/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/nb/LC_MESSAGES/cinnamon-session.mo
share/locale/nb/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/nb/LC_MESSAGES/cinnamon.mo
share/locale/nb/LC_MESSAGES/nemo.mo
share/locale/nds/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/nds/LC_MESSAGES/cinnamon-control-center.mo
share/locale/nds/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/nds/LC_MESSAGES/cinnamon-session.mo
share/locale/nds/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/nds/LC_MESSAGES/cinnamon.mo
share/locale/nds/LC_MESSAGES/nemo.mo
share/locale/ne/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ne/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ne/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ne/LC_MESSAGES/cinnamon-session.mo
share/locale/ne/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ne/LC_MESSAGES/cinnamon.mo
share/locale/ne/LC_MESSAGES/nemo-extensions.mo
share/locale/ne/LC_MESSAGES/nemo.mo
share/locale/nl/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/nl/LC_MESSAGES/cinnamon-control-center.mo
share/locale/nl/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/nl/LC_MESSAGES/cinnamon-session.mo
share/locale/nl/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/nl/LC_MESSAGES/cinnamon.mo
share/locale/nl/LC_MESSAGES/nemo-extensions.mo
share/locale/nl/LC_MESSAGES/nemo.mo
share/locale/nn/LC_MESSAGES/cinnamon-control-center.mo
share/locale/nn/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/nn/LC_MESSAGES/cinnamon-session.mo
share/locale/nn/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/nn/LC_MESSAGES/cinnamon.mo
share/locale/nn/LC_MESSAGES/nemo.mo
share/locale/no/LC_MESSAGES/cinnamon.mo
share/locale/nso/LC_MESSAGES/cinnamon-control-center.mo
share/locale/oc/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/nso/LC_MESSAGES/cinnamon-session.mo
share/locale/nso/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/oc/LC_MESSAGES/cinnamon-control-center.mo
share/locale/oc/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/oc/LC_MESSAGES/cinnamon-session.mo
share/locale/oc/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/oc/LC_MESSAGES/cinnamon.mo
share/locale/oc/LC_MESSAGES/nemo.mo
share/locale/om/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/om/LC_MESSAGES/cinnamon-control-center.mo
share/locale/om/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/om/LC_MESSAGES/cinnamon.mo
share/locale/om/LC_MESSAGES/nemo.mo
share/locale/or/LC_MESSAGES/cinnamon-control-center.mo
share/locale/or/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/pa/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/or/LC_MESSAGES/cinnamon-session.mo
share/locale/or/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/or/LC_MESSAGES/cinnamon.mo
share/locale/pa/LC_MESSAGES/cinnamon-control-center.mo
share/locale/pa/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/pa/LC_MESSAGES/cinnamon-session.mo
share/locale/pa/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/pa/LC_MESSAGES/cinnamon.mo
share/locale/pa/LC_MESSAGES/nemo.mo
share/locale/pl/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/pap/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/pap/LC_MESSAGES/cinnamon.mo
share/locale/pl/LC_MESSAGES/cinnamon-control-center.mo
share/locale/pl/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/pl/LC_MESSAGES/cinnamon-session.mo
share/locale/pl/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/pl/LC_MESSAGES/cinnamon.mo
share/locale/pl/LC_MESSAGES/nemo-extensions.mo
share/locale/pl/LC_MESSAGES/nemo.mo
share/locale/ps/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/pt/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ps/LC_MESSAGES/cinnamon-session.mo
share/locale/pt/LC_MESSAGES/cinnamon-control-center.mo
share/locale/pt/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/pt/LC_MESSAGES/cinnamon-session.mo
share/locale/pt/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/pt/LC_MESSAGES/cinnamon.mo
share/locale/pt/LC_MESSAGES/nemo-extensions.mo
share/locale/pt/LC_MESSAGES/nemo.mo
share/locale/pt_BR/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/pt_BR/LC_MESSAGES/cinnamon-control-center.mo
share/locale/pt_BR/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/pt_BR/LC_MESSAGES/cinnamon-session.mo
share/locale/pt_BR/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/pt_BR/LC_MESSAGES/cinnamon.mo
share/locale/pt_BR/LC_MESSAGES/nemo-extensions.mo
share/locale/pt_BR/LC_MESSAGES/nemo.mo
share/locale/ro/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ro/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ro/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ro/LC_MESSAGES/cinnamon-session.mo
share/locale/ro/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ro/LC_MESSAGES/cinnamon.mo
share/locale/ro/LC_MESSAGES/nemo-extensions.mo
share/locale/ro/LC_MESSAGES/nemo.mo
share/locale/ru/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ru/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ru/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ru/LC_MESSAGES/cinnamon-session.mo
share/locale/ru/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ru/LC_MESSAGES/cinnamon.mo
share/locale/ru/LC_MESSAGES/nemo-extensions.mo
share/locale/ru/LC_MESSAGES/nemo.mo
share/locale/rue/LC_MESSAGES/cinnamon.mo
share/locale/rw/LC_MESSAGES/cinnamon-control-center.mo
share/locale/shn/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/rw/LC_MESSAGES/cinnamon-session.mo
share/locale/rw/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sa/LC_MESSAGES/cinnamon.mo
share/locale/sc/LC_MESSAGES/cinnamon-control-center.mo
share/locale/sc/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/sc/LC_MESSAGES/cinnamon-session.mo
share/locale/sc/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sc/LC_MESSAGES/cinnamon.mo
share/locale/sc/LC_MESSAGES/nemo.mo
share/locale/sco/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/sco/LC_MESSAGES/cinnamon-session.mo
share/locale/sco/LC_MESSAGES/cinnamon.mo
share/locale/shn/LC_MESSAGES/cinnamon-control-center.mo
share/locale/shn/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/shn/LC_MESSAGES/cinnamon.mo
share/locale/si/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/shn/LC_MESSAGES/nemo.mo
share/locale/si/LC_MESSAGES/cinnamon-control-center.mo
share/locale/si/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/si/LC_MESSAGES/cinnamon-session.mo
share/locale/si/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/si/LC_MESSAGES/cinnamon.mo
share/locale/si/LC_MESSAGES/nemo.mo
share/locale/sk/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/sk/LC_MESSAGES/cinnamon-control-center.mo
share/locale/sk/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/sk/LC_MESSAGES/cinnamon-session.mo
share/locale/sk/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sk/LC_MESSAGES/cinnamon.mo
share/locale/sk/LC_MESSAGES/nemo-extensions.mo
share/locale/sk/LC_MESSAGES/nemo.mo
share/locale/sl/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/sl/LC_MESSAGES/cinnamon-control-center.mo
share/locale/sl/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/sl/LC_MESSAGES/cinnamon-session.mo
share/locale/sl/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sl/LC_MESSAGES/cinnamon.mo
share/locale/sl/LC_MESSAGES/nemo-extensions.mo
share/locale/sl/LC_MESSAGES/nemo.mo
share/locale/so/LC_MESSAGES/cinnamon.mo
share/locale/sq/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/so/LC_MESSAGES/nemo.mo
share/locale/sq/LC_MESSAGES/cinnamon-control-center.mo
share/locale/sq/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/sq/LC_MESSAGES/cinnamon-session.mo
share/locale/sq/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sq/LC_MESSAGES/cinnamon.mo
share/locale/sq/LC_MESSAGES/nemo.mo
share/locale/sr/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/sr/LC_MESSAGES/cinnamon-control-center.mo
share/locale/sr/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/sr/LC_MESSAGES/cinnamon-session.mo
share/locale/sr/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sr/LC_MESSAGES/cinnamon.mo
share/locale/sr/LC_MESSAGES/nemo-extensions.mo
share/locale/sr/LC_MESSAGES/nemo.mo
share/locale/sr@ijekavianlatin/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/sr@ijekavianlatin/LC_MESSAGES/cinnamon.mo
share/locale/sr@latin/LC_MESSAGES/cinnamon-control-center.mo
share/locale/sr@latin/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/sr@latin/LC_MESSAGES/cinnamon-session.mo
share/locale/sr@latin/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sr@latin/LC_MESSAGES/cinnamon.mo
share/locale/sr@latin/LC_MESSAGES/nemo-extensions.mo
share/locale/sr@latin/LC_MESSAGES/nemo.mo
share/locale/sv/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/sv/LC_MESSAGES/cinnamon-control-center.mo
share/locale/sv/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/sv/LC_MESSAGES/cinnamon-session.mo
share/locale/sv/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sv/LC_MESSAGES/cinnamon.mo
share/locale/sv/LC_MESSAGES/nemo-extensions.mo
share/locale/sv/LC_MESSAGES/nemo.mo
share/locale/ta/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/sw/LC_MESSAGES/cinnamon.mo
share/locale/sw/LC_MESSAGES/nemo.mo
share/locale/szl/LC_MESSAGES/cinnamon.mo
share/locale/szl/LC_MESSAGES/nemo.mo
share/locale/ta/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ta/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ta/LC_MESSAGES/cinnamon-session.mo
share/locale/ta/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ta/LC_MESSAGES/cinnamon.mo
share/locale/ta/LC_MESSAGES/nemo-extensions.mo
share/locale/ta/LC_MESSAGES/nemo.mo
share/locale/te/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/te/LC_MESSAGES/cinnamon-control-center.mo
share/locale/te/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/te/LC_MESSAGES/cinnamon-session.mo
share/locale/te/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/te/LC_MESSAGES/cinnamon.mo
share/locale/tg/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/tg/LC_MESSAGES/cinnamon-control-center.mo
share/locale/tg/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/tg/LC_MESSAGES/cinnamon-session.mo
share/locale/tg/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/tg/LC_MESSAGES/cinnamon.mo
share/locale/tg/LC_MESSAGES/nemo-extensions.mo
share/locale/tg/LC_MESSAGES/nemo.mo
share/locale/th/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/th/LC_MESSAGES/cinnamon-control-center.mo
share/locale/th/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/th/LC_MESSAGES/cinnamon-session.mo
share/locale/th/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/th/LC_MESSAGES/cinnamon.mo
share/locale/th/LC_MESSAGES/nemo-extensions.mo
share/locale/th/LC_MESSAGES/nemo.mo
share/locale/tl/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/tk/LC_MESSAGES/cinnamon-session.mo
share/locale/tl/LC_MESSAGES/cinnamon-control-center.mo
share/locale/tl/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/tl/LC_MESSAGES/cinnamon-session.mo
share/locale/tl/LC_MESSAGES/cinnamon.mo
share/locale/tl/LC_MESSAGES/nemo.mo
share/locale/tlh/LC_MESSAGES/cinnamon.mo
share/locale/tlh/LC_MESSAGES/nemo.mo
share/locale/tpi/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/tpi/LC_MESSAGES/cinnamon.mo
share/locale/tr/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/tr/LC_MESSAGES/cinnamon-control-center.mo
share/locale/tr/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/tr/LC_MESSAGES/cinnamon-session.mo
share/locale/tr/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/tr/LC_MESSAGES/cinnamon.mo
share/locale/tr/LC_MESSAGES/nemo-extensions.mo
share/locale/tr/LC_MESSAGES/nemo.mo
share/locale/ts/LC_MESSAGES/cinnamon.mo
share/locale/tt/LC_MESSAGES/cinnamon-control-center.mo
share/locale/tt/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/tt/LC_MESSAGES/cinnamon-session.mo
share/locale/tt/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/tt/LC_MESSAGES/cinnamon.mo
share/locale/ug/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ug/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ug/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ug/LC_MESSAGES/cinnamon-session.mo
share/locale/ug/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ug/LC_MESSAGES/cinnamon.mo
share/locale/uk/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/uk/LC_MESSAGES/cinnamon-control-center.mo
share/locale/uk/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/uk/LC_MESSAGES/cinnamon-session.mo
share/locale/uk/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/uk/LC_MESSAGES/cinnamon.mo
share/locale/uk/LC_MESSAGES/nemo-extensions.mo
share/locale/uk/LC_MESSAGES/nemo.mo
share/locale/ur/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/ur/LC_MESSAGES/cinnamon-control-center.mo
share/locale/ur/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/ur/LC_MESSAGES/cinnamon-session.mo
share/locale/ur/LC_MESSAGES/cinnamon.mo
share/locale/ur/LC_MESSAGES/nemo.mo
share/locale/uz/LC_MESSAGES/cinnamon-control-center.mo
share/locale/uz/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/uz/LC_MESSAGES/cinnamon-session.mo
share/locale/uz/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/uz/LC_MESSAGES/cinnamon.mo
share/locale/uz/LC_MESSAGES/nemo.mo
share/locale/uz@cyrillic/LC_MESSAGES/cinnamon-control-center.mo
share/locale/vi/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/uz@cyrillic/LC_MESSAGES/cinnamon-session.mo
share/locale/vi/LC_MESSAGES/cinnamon-control-center.mo
share/locale/vi/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/vi/LC_MESSAGES/cinnamon-session.mo
share/locale/vi/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/vi/LC_MESSAGES/cinnamon.mo
share/locale/vi/LC_MESSAGES/nemo-extensions.mo
share/locale/vi/LC_MESSAGES/nemo.mo
share/locale/wa/LC_MESSAGES/cinnamon-control-center.mo
share/locale/wa/LC_MESSAGES/cinnamon-session.mo
share/locale/wa/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/wa/LC_MESSAGES/cinnamon.mo
share/locale/xh/LC_MESSAGES/cinnamon-control-center.mo
share/locale/xh/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/xh/LC_MESSAGES/cinnamon-session.mo
share/locale/xh/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/xh/LC_MESSAGES/cinnamon.mo
share/locale/yi/LC_MESSAGES/cinnamon.mo
share/locale/zh_CN/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/yo/LC_MESSAGES/cinnamon-session.mo
share/locale/zgh/LC_MESSAGES/cinnamon-control-center.mo
share/locale/zgh/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/zgh/LC_MESSAGES/cinnamon-session.mo
share/locale/zgh/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/zgh/LC_MESSAGES/cinnamon.mo
share/locale/zgh/LC_MESSAGES/nemo-extensions.mo
share/locale/zgh/LC_MESSAGES/nemo.mo
share/locale/zh_CN/LC_MESSAGES/cinnamon-control-center.mo
share/locale/zh_CN/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/zh_CN/LC_MESSAGES/cinnamon-session.mo
share/locale/zh_CN/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/zh_CN/LC_MESSAGES/cinnamon.mo
share/locale/zh_CN/LC_MESSAGES/nemo-extensions.mo
share/locale/zh_CN/LC_MESSAGES/nemo.mo
share/locale/zh_HK/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/zh_HK/LC_MESSAGES/cinnamon-control-center.mo
share/locale/zh_HK/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/zh_HK/LC_MESSAGES/cinnamon-session.mo
share/locale/zh_HK/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/zh_HK/LC_MESSAGES/cinnamon.mo
share/locale/zh_HK/LC_MESSAGES/nemo-extensions.mo
share/locale/zh_HK/LC_MESSAGES/nemo.mo
share/locale/zh_TW/LC_MESSAGES/cinnamon-bluetooth.mo
share/locale/zh_TW/LC_MESSAGES/cinnamon-control-center.mo
share/locale/zh_TW/LC_MESSAGES/cinnamon-screensaver.mo
share/locale/zh_TW/LC_MESSAGES/cinnamon-session.mo
share/locale/zh_TW/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/zh_TW/LC_MESSAGES/cinnamon.mo
share/locale/zh_TW/LC_MESSAGES/nemo-extensions.mo
share/locale/zh_TW/LC_MESSAGES/nemo.mo
share/locale/zu/LC_MESSAGES/cinnamon-control-center.mo
share/locale/zu/LC_MESSAGES/cinnamon-session.mo
share/locale/zu/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/zu/LC_MESSAGES/cinnamon.mo

View File

@ -2,80 +2,60 @@
# $FreeBSD$
PORTNAME= cinnamon-control-center
PORTVERSION= 2.4.2
PORTREVISION= 10
PORTVERSION= 4.8.1
CATEGORIES= sysutils gnome
MASTER_SITES= https://raw.githubusercontent.com/${GH_ACCOUNT}/${GH_PROJECT}/9363a4a1e121344ae98f22b55fb28623cf0f6038/panels/datetime/data/:tzpng
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
DIST_SUBDIR= gnome3
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
DIST_SUBDIR= gnome
MAINTAINER= gnome@FreeBSD.org
COMMENT= Control center for Cinnamon
BUILD_DEPENDS= ca_root_nss>=0:security/ca_root_nss \
cinnamon-settings-daemon>=0:sysutils/cinnamon-settings-daemon \
gnome-autogen.sh:devel/gnome-common \
gsed:textproc/gsed
LIB_DEPENDS= libstartup-notification-1.so:x11/startup-notification \
libupower-glib.so:sysutils/upower \
libcheese.so:multimedia/cheese \
libcaribou.so:accessibility/caribou \
libgtop-2.0.so:devel/libgtop \
libmuffin.so:x11-wm/muffin \
libtelepathy-glib.so:net-im/telepathy-glib \
libtelepathy-logger.so:net-im/telepathy-logger \
libgnomekbdui.so:x11/libgnomekbd \
libfolks.so:net-im/folks \
libpulse.so:audio/pulseaudio \
libcroco-0.6.so:textproc/libcroco \
libdbus-glib-1.so:devel/dbus-glib \
libclutter-glx-1.0.so:graphics/clutter \
libclutter-gst-2.0.so:multimedia/clutter-gst \
libcinnamon-menu-3.so:x11/cinnamon-menus \
libgjs.so:lang/gjs
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0:devel/py-dbus@${PY_FLAVOR} \
cinnamon-settings-daemon>=0:sysutils/cinnamon-settings-daemon \
ca_root_nss>=0:security/ca_root_nss \
${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml@${PY_FLAVOR}
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= cinnamon-settings-daemon>=1.0.0:sysutils/cinnamon-settings-daemon \
iso-codes>0:misc/iso-codes
LIB_DEPENDS= libcinnamon-desktop.so:x11/cinnamon-desktop \
libcinnamon-menu-3.so:x11/cinnamon-menus \
libdbus-1.so:devel/dbus \
libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
libnotify.so:devel/libnotify \
libpolkit-gobject-1.so:sysutils/polkit \
libxklavier.so:x11/libxklavier \
libharfbuzz.so:print/harfbuzz
RUN_DEPENDS= iso-codes>0:misc/iso-codes \
cinnamon-settings-daemon>=1.0.0:sysutils/cinnamon-settings-daemon
USES= gettext gnome meson pkgconfig python:3.5+,build shebangfix xorg
USE_GNOME= cairo gdkpixbuf2 gtk30 intltool libgnomekbd libxml2
USE_XORG= x11 xfixes sm
USES= autoreconf gettext gmake gnome libtool pathfix \
python:2.7 pkgconfig xorg
USE_GNOME= evolutiondataserver3 gconf2 gnomeprefix \
gtk30 intlhack libgnomekbd
USE_GITHUB= yes
GH_ACCOUNT= linuxmint
USE_XORG= x11 xfixes sm
INSTALLS_ICONS= yes
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--enable-compile-warnings=no
CONFIGURE_ENV+=ac_cv_path_SED=${LOCALBASE}/bin/gsed
CFLAGS+= -I${LOCALBASE}/include
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
INSTALL_TARGET= install-strip
MESON_ARGS= -Dnetworkmanager=false \
-Dmodemmanager=false
SHEBANG_GLOB= *.py
OPTIONS_DEFINE= COLORD ONLINEACCOUNTS WACOM
OPTIONS_DEFAULT=COLORD ONLINEACCOUNTS WACOM
OPTIONS_SUB= yes
OPTIONS_DEFINE= CUPS
OPTIONS_DEFAULT=CUPS
CUPS_CONFIGURE_ENABLE= cups
CUPS_LIB_DEPENDS= libcups.so:print/cups
MISSING_PNG=timezone_8.5.png timezone_8.5_dim.png
.for i in ${MISSING_PNG}
DISTFILES+=${i}:tzpng
.endfor
ONLINEACCOUNTS_DESC= GNOME Online Accounts panel support
WACOM_DESC= Wacom management panel support
post-extract:
.for i in ${MISSING_PNG}
${CP} ${DISTDIR}/${DIST_SUBDIR}/${i} ${WRKSRC}/panels/datetime/data/.
.endfor
COLORD_LIB_DEPENDS= libcolord.so:graphics/colord
COLORD_MESON_TRUE= color
post-patch:
@${REINPLACE_CMD} -e 's|find|find ${WRKSRC}/files|g' \
${WRKSRC}/files/Makefile.in
@${REINPLACE_CMD} -e 's|/usr/share/|${PREFIX}/share/|g' \
${WRKSRC}/panels/common/cc-common-language.c
ONLINEACCOUNTS_LIB_DEPENDS= libgoa-1.0.so:net/gnome-online-accounts
ONLINEACCOUNTS_MESON_TRUE= onlineaccounts
WACOM_LIB_DEPENDS= libwacom.so:x11/libwacom
WACOM_USE= xorg=xi
WACOM_MESON_TRUE= wacom
.include <bsd.port.mk>

View File

@ -1,6 +1,3 @@
SHA256 (gnome3/linuxmint-cinnamon-control-center-2.4.2_GH0.tar.gz) = 7d25193a3cc13c12f22864f3c9a907acfaa616392cb2b7ab4e0624f0d200f188
SIZE (gnome3/linuxmint-cinnamon-control-center-2.4.2_GH0.tar.gz) = 4305006
SHA256 (gnome3/timezone_8.5.png) = 36ad1fd33d77271fe686e71054b80ca77eabb0ed1b45f895c7658c7a4b14f8e9
SIZE (gnome3/timezone_8.5.png) = 16050
SHA256 (gnome3/timezone_8.5_dim.png) = c46f8fc9d5851ebf32c7f99d3ee245d3201ff3143cbca87f6b3919dc8e2f9ca0
SIZE (gnome3/timezone_8.5_dim.png) = 9378
TIMESTAMP = 1608878686
SHA256 (gnome/linuxmint-cinnamon-control-center-4.8.1_GH0.tar.gz) = ef908035b2d09ecf67dc18770e242035c6ff1e7f7ea1fa3e8b4843fa12d3ebd1
SIZE (gnome/linuxmint-cinnamon-control-center-4.8.1_GH0.tar.gz) = 3864967

View File

@ -1,24 +0,0 @@
--- configure.ac.orig 2014-11-26 22:11:51.000000000 +0100
+++ configure.ac 2015-08-09 16:26:26.690975000 +0200
@@ -35,7 +35,6 @@
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext package])
-GNOME_DEBUG_CHECK
GNOME_COMPILE_WARNINGS([maximum])
AC_PATH_XTRA
@@ -138,13 +137,6 @@
#----------------------------------------------
# Network Manager Stuff
-PKG_CHECK_MODULES(NETWORK_MANAGER, NetworkManager >= $NETWORK_MANAGER_REQUIRED_VERSION
- libnm-glib >= $NETWORK_MANAGER_REQUIRED_VERSION
- libnm-glib-vpn >= $NETWORK_MANAGER_REQUIRED_VERSION
- libnm-util >= $NETWORK_MANAGER_REQUIRED_VERSION
- libnm-gtk >= $NETWORK_MANAGER_APPLET_REQUIRED_VERSION
- mm-glib >= $MODEM_MANAGER_REQUIRED_VERSION,
- [have_networkmanager=yes], have_networkmanager=no)
if test "x$have_networkmanager" = xno ; then
AC_MSG_WARN(*** Network panel will not be built (NetworkManager or ModemManager not found) ***)
else

View File

@ -1,11 +0,0 @@
--- m4/intltool.old.m4 2013-03-01 16:42:44.610216396 +0100
+++ m4/intltool.m4 2013-03-01 16:43:03.089215905 +0100
@@ -174,7 +174,7 @@
[DATADIRNAME=share], [DATADIRNAME=lib])
;;
*)
- [DATADIRNAME=lib]
+ [DATADIRNAME=share]
;;
esac])
fi

View File

@ -1,11 +0,0 @@
--- panels/datetime/Makefile.am.orig 2014-11-26 21:11:51 UTC
+++ panels/datetime/Makefile.am
@@ -93,6 +93,8 @@ dist_ui_DATA = \
data/timezone_-8_dim.png \
data/timezone_8.png \
data/timezone_8_dim.png \
+ data/timezone_8.5.png \
+ data/timezone_8.5_dim.png \
data/timezone_8.75.png \
data/timezone_8.75_dim.png \
data/timezone_-9.png \

View File

@ -1,281 +1,45 @@
bin/cinnamon-control-center
bin/cinnamon-sound-applet
etc/xdg/autostart/cinnamon-sound-applet.desktop
etc/xdg/menus/cinnamoncc.menu
include/cinnamon-control-center-1/libcinnamon-control-center/cc-editable-entry.h
include/cinnamon-control-center-1/libcinnamon-control-center/cc-panel.h
include/cinnamon-control-center-1/libcinnamon-control-center/cc-shell.h
lib/cinnamon-control-center-1/panels/libcolor.a
lib/cinnamon-control-center-1/panels/libcolor.so
lib/cinnamon-control-center-1/panels/libdate_time.a
lib/cinnamon-control-center-1/panels/libdate_time.so
lib/cinnamon-control-center-1/panels/libdisplay.a
%%COLORD%%lib/cinnamon-control-center-1/panels/libcolor.so
lib/cinnamon-control-center-1/panels/libdisplay.so
lib/cinnamon-control-center-1/panels/libpower.a
lib/cinnamon-control-center-1/panels/libpower.so
lib/cinnamon-control-center-1/panels/libregion.a
%%ONLINEACCOUNTS%%lib/cinnamon-control-center-1/panels/libonline-accounts.so
lib/cinnamon-control-center-1/panels/libregion.so
lib/cinnamon-control-center-1/panels/libscreen.a
lib/cinnamon-control-center-1/panels/libscreen.so
lib/cinnamon-control-center-1/panels/libsoundnua.a
lib/cinnamon-control-center-1/panels/libsoundnua.so
lib/cinnamon-control-center-1/panels/libuniversal-access.a
lib/cinnamon-control-center-1/panels/libuniversal-access.so
%%WACOM%%lib/cinnamon-control-center-1/panels/libwacom-properties.so
lib/libcinnamon-control-center.so
lib/libcinnamon-control-center.so.1
lib/libcinnamon-control-center.so.1.0.0
libdata/pkgconfig/libcinnamon-control-center.pc
share/applications/cinnamon-color-panel.desktop
share/applications/cinnamon-control-center.desktop
share/applications/cinnamon-datetime-panel.desktop
%%COLORD%%share/applications/cinnamon-color-panel.desktop
share/applications/cinnamon-display-panel.desktop
share/applications/cinnamon-region-panel.desktop
share/applications/cinnamon-sound-nua-panel.desktop
share/applications/cinnamon-sound-panel.desktop
share/applications/cinnamon-universal-access-panel.desktop
share/cinnamon-control-center/datetime/backward
share/cinnamon-control-center/icons/hicolor/16x16/devices/cin-audio-headset.svg
share/cinnamon-control-center/icons/hicolor/16x16/status/cin-audio-input-microphone-high.png
share/cinnamon-control-center/icons/hicolor/16x16/status/cin-audio-input-microphone-low.png
share/cinnamon-control-center/icons/hicolor/16x16/status/cin-audio-input-microphone-medium.png
share/cinnamon-control-center/icons/hicolor/16x16/status/cin-audio-input-microphone-muted.png
share/cinnamon-control-center/icons/hicolor/22x22/status/cin-audio-input-microphone-high.png
share/cinnamon-control-center/icons/hicolor/22x22/status/cin-audio-input-microphone-low.png
share/cinnamon-control-center/icons/hicolor/22x22/status/cin-audio-input-microphone-medium.png
share/cinnamon-control-center/icons/hicolor/22x22/status/cin-audio-input-microphone-muted.png
share/cinnamon-control-center/icons/hicolor/24x24/devices/cin-audio-headset.svg
share/cinnamon-control-center/icons/hicolor/24x24/status/cin-audio-input-microphone-high.png
share/cinnamon-control-center/icons/hicolor/24x24/status/cin-audio-input-microphone-low.png
share/cinnamon-control-center/icons/hicolor/24x24/status/cin-audio-input-microphone-medium.png
share/cinnamon-control-center/icons/hicolor/24x24/status/cin-audio-input-microphone-muted.png
share/cinnamon-control-center/icons/hicolor/32x32/devices/cin-audio-headset.svg
share/cinnamon-control-center/icons/hicolor/32x32/status/cin-audio-input-microphone-high.png
share/cinnamon-control-center/icons/hicolor/32x32/status/cin-audio-input-microphone-low.png
share/cinnamon-control-center/icons/hicolor/32x32/status/cin-audio-input-microphone-medium.png
share/cinnamon-control-center/icons/hicolor/32x32/status/cin-audio-input-microphone-muted.png
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-center-back-testing.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-center-back.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-center-testing.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-center.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-left-back-testing.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-left-back.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-left-testing.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-left-side-testing.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-left-side.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-left.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-right-back-testing.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-right-back.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-right-side-testing.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-right-side.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-right-testing.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-speaker-right.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-subwoofer-testing.svg
share/cinnamon-control-center/icons/hicolor/48x48/devices/audio-subwoofer.svg
share/cinnamon-control-center/ui/cinnamon-region-panel-layout-chooser.ui
share/cinnamon-control-center/ui/cinnamon-region-panel-options-dialog.ui
share/cinnamon-control-center/ui/cinnamon-region-panel.ui
share/cinnamon-control-center/ui/color.ui
share/cinnamon-control-center/ui/datetime/bg.png
share/cinnamon-control-center/ui/datetime/bg_dim.png
share/cinnamon-control-center/ui/datetime/cc.png
share/cinnamon-control-center/ui/datetime/datetime.ui
share/cinnamon-control-center/ui/datetime/pin.png
share/cinnamon-control-center/ui/datetime/timezone_-1.png
share/cinnamon-control-center/ui/datetime/timezone_-10.png
share/cinnamon-control-center/ui/datetime/timezone_-10_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-11.png
share/cinnamon-control-center/ui/datetime/timezone_-11_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-1_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-2.png
share/cinnamon-control-center/ui/datetime/timezone_-2_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-3.5.png
share/cinnamon-control-center/ui/datetime/timezone_-3.5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-3.png
share/cinnamon-control-center/ui/datetime/timezone_-3_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-4.5.png
share/cinnamon-control-center/ui/datetime/timezone_-4.5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-4.png
share/cinnamon-control-center/ui/datetime/timezone_-4_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-5.5.png
share/cinnamon-control-center/ui/datetime/timezone_-5.5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-5.png
share/cinnamon-control-center/ui/datetime/timezone_-5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-6.png
share/cinnamon-control-center/ui/datetime/timezone_-6_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-7.png
share/cinnamon-control-center/ui/datetime/timezone_-7_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-8.png
share/cinnamon-control-center/ui/datetime/timezone_-8_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-9.5.png
share/cinnamon-control-center/ui/datetime/timezone_-9.5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_-9.png
share/cinnamon-control-center/ui/datetime/timezone_-9_dim.png
share/cinnamon-control-center/ui/datetime/timezone_0.png
share/cinnamon-control-center/ui/datetime/timezone_0_dim.png
share/cinnamon-control-center/ui/datetime/timezone_1.png
share/cinnamon-control-center/ui/datetime/timezone_10.5.png
share/cinnamon-control-center/ui/datetime/timezone_10.5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_10.png
share/cinnamon-control-center/ui/datetime/timezone_10_dim.png
share/cinnamon-control-center/ui/datetime/timezone_11.5.png
share/cinnamon-control-center/ui/datetime/timezone_11.5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_11.png
share/cinnamon-control-center/ui/datetime/timezone_11_dim.png
share/cinnamon-control-center/ui/datetime/timezone_12.75.png
share/cinnamon-control-center/ui/datetime/timezone_12.75_dim.png
share/cinnamon-control-center/ui/datetime/timezone_12.png
share/cinnamon-control-center/ui/datetime/timezone_12_dim.png
share/cinnamon-control-center/ui/datetime/timezone_13.png
share/cinnamon-control-center/ui/datetime/timezone_13_dim.png
share/cinnamon-control-center/ui/datetime/timezone_14.png
share/cinnamon-control-center/ui/datetime/timezone_14_dim.png
share/cinnamon-control-center/ui/datetime/timezone_1_dim.png
share/cinnamon-control-center/ui/datetime/timezone_2.png
share/cinnamon-control-center/ui/datetime/timezone_2_dim.png
share/cinnamon-control-center/ui/datetime/timezone_3.5.png
share/cinnamon-control-center/ui/datetime/timezone_3.5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_3.png
share/cinnamon-control-center/ui/datetime/timezone_3_dim.png
share/cinnamon-control-center/ui/datetime/timezone_4.5.png
share/cinnamon-control-center/ui/datetime/timezone_4.5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_4.png
share/cinnamon-control-center/ui/datetime/timezone_4_dim.png
share/cinnamon-control-center/ui/datetime/timezone_5.5.png
share/cinnamon-control-center/ui/datetime/timezone_5.5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_5.75.png
share/cinnamon-control-center/ui/datetime/timezone_5.75_dim.png
share/cinnamon-control-center/ui/datetime/timezone_5.png
share/cinnamon-control-center/ui/datetime/timezone_5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_6.5.png
share/cinnamon-control-center/ui/datetime/timezone_6.5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_6.png
share/cinnamon-control-center/ui/datetime/timezone_6_dim.png
share/cinnamon-control-center/ui/datetime/timezone_7.png
share/cinnamon-control-center/ui/datetime/timezone_7_dim.png
share/cinnamon-control-center/ui/datetime/timezone_8.5.png
share/cinnamon-control-center/ui/datetime/timezone_8.5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_8.75.png
share/cinnamon-control-center/ui/datetime/timezone_8.75_dim.png
share/cinnamon-control-center/ui/datetime/timezone_8.png
share/cinnamon-control-center/ui/datetime/timezone_8_dim.png
share/cinnamon-control-center/ui/datetime/timezone_9.5.png
share/cinnamon-control-center/ui/datetime/timezone_9.5_dim.png
share/cinnamon-control-center/ui/datetime/timezone_9.png
share/cinnamon-control-center/ui/datetime/timezone_9_dim.png
share/cinnamon-control-center/ui/display-capplet.ui
share/cinnamon-control-center/ui/language-chooser.ui
share/cinnamon-control-center/ui/power.ui
share/cinnamon-control-center/ui/screen.ui
share/cinnamon-control-center/ui/shell.ui
share/cinnamon-control-center/ui/uap.ui
share/cinnamon-control-center/ui/zoom-options.ui
share/desktop-directories/cinnamoncc.directory
share/icons/hicolor/16x16/apps/cin-multimedia-volume-control.png
share/icons/hicolor/16x16/apps/cin-multimedia-volume-control.svg
share/icons/hicolor/16x16/apps/cinnamon-power-manager.png
share/icons/hicolor/16x16/apps/cinnamon-preferences-color.png
%%WACOM%%share/applications/cinnamon-wacom-panel.desktop
%%DATADIR%%/ui/cinnamon-region-panel-layout-chooser.ui
%%DATADIR%%/ui/cinnamon-region-panel-options-dialog.ui
%%DATADIR%%/ui/cinnamon-region-panel.ui
%%COLORD%%%%DATADIR%%/ui/color.ui
%%DATADIR%%/ui/display-capplet.ui
%%DATADIR%%/ui/language-chooser.ui
%%ONLINEACCOUNTS%%%%DATADIR%%/ui/online-accounts.ui
%%DATADIR%%/ui/shell.ui
%%COLORD%%share/icons/hicolor/16x16/apps/cinnamon-preferences-color.png
share/icons/hicolor/16x16/apps/cinnamon-preferences-desktop-display.png
share/icons/hicolor/16x16/apps/cinnamon-preferences-system-time.png
share/icons/hicolor/22x22/apps/cin-multimedia-volume-control.png
share/icons/hicolor/22x22/apps/cin-multimedia-volume-control.svg
share/icons/hicolor/22x22/apps/cinnamon-power-manager.png
share/icons/hicolor/22x22/apps/cinnamon-preferences-color.png
%%ONLINEACCOUNTS%%share/icons/hicolor/16x16/apps/cs-online-accounts.png
%%COLORD%%share/icons/hicolor/22x22/apps/cinnamon-preferences-color.png
share/icons/hicolor/22x22/apps/cinnamon-preferences-desktop-display.png
share/icons/hicolor/22x22/apps/cinnamon-preferences-system-time.png
share/icons/hicolor/24x24/apps/cin-multimedia-volume-control.png
share/icons/hicolor/24x24/apps/cinnamon-power-manager.png
share/icons/hicolor/24x24/apps/cinnamon-preferences-color.png
%%ONLINEACCOUNTS%%share/icons/hicolor/22x22/apps/cs-online-accounts.png
%%COLORD%%share/icons/hicolor/24x24/apps/cinnamon-preferences-color.png
share/icons/hicolor/24x24/apps/cinnamon-preferences-desktop-display.png
share/icons/hicolor/256x256/apps/cinnamon-power-manager.png
share/icons/hicolor/256x256/apps/cinnamon-preferences-color.png
share/icons/hicolor/256x256/apps/cinnamon-preferences-system-time.png
share/icons/hicolor/32x32/apps/cin-multimedia-volume-control.png
share/icons/hicolor/32x32/apps/cin-multimedia-volume-control.svg
share/icons/hicolor/32x32/apps/cinnamon-power-manager.png
share/icons/hicolor/32x32/apps/cinnamon-preferences-color.png
%%ONLINEACCOUNTS%%share/icons/hicolor/24x24/apps/cs-online-accounts.png
%%COLORD%%share/icons/hicolor/256x256/apps/cinnamon-preferences-color.png
%%ONLINEACCOUNTS%%share/icons/hicolor/256x256/apps/cs-online-accounts.png
%%COLORD%%share/icons/hicolor/32x32/apps/cinnamon-preferences-color.png
share/icons/hicolor/32x32/apps/cinnamon-preferences-desktop-display.png
share/icons/hicolor/32x32/apps/cinnamon-preferences-system-time.png
share/icons/hicolor/48x48/apps/cin-multimedia-volume-control.png
share/icons/hicolor/48x48/apps/cinnamon-power-manager.png
share/icons/hicolor/48x48/apps/cinnamon-preferences-color.png
share/icons/hicolor/48x48/apps/cinnamon-preferences-system-time.png
share/icons/hicolor/48x48/devices/cin-audio-headset.svg
share/icons/hicolor/64x64/apps/cinnamon-preferences-color.png
share/icons/hicolor/scalable/apps/cin-multimedia-volume-control.svg
share/icons/hicolor/scalable/apps/cinnamon-preferences-color.svg
%%ONLINEACCOUNTS%%share/icons/hicolor/32x32/apps/cs-online-accounts.png
%%COLORD%%share/icons/hicolor/48x48/apps/cinnamon-preferences-color.png
%%ONLINEACCOUNTS%%share/icons/hicolor/48x48/apps/cs-online-accounts.png
%%ONLINEACCOUNTS%%@dir share/icons/hicolor/64x64/apps
%%COLORD%%share/icons/hicolor/64x64/apps/cinnamon-preferences-color.png
%%COLORD%%share/icons/hicolor/scalable/apps/cinnamon-preferences-color.svg
share/icons/hicolor/scalable/apps/cinnamon-preferences-desktop-display.svg
share/icons/hicolor/scalable/apps/cinnamon-preferences-system-time.svg
share/icons/hicolor/scalable/status/cin-audio-input-microphone-high-symbolic.svg
share/icons/hicolor/scalable/status/cin-audio-input-microphone-low-symbolic.svg
share/icons/hicolor/scalable/status/cin-audio-input-microphone-medium-symbolic.svg
share/icons/hicolor/scalable/status/cin-audio-input-microphone-muted-symbolic.svg
share/locale/am/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ar/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/as/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ast/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/bg/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/bn/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/bn_IN/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/bs/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ca/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/cs/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/cy/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/da/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/de/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/el/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/en_GB/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/es/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/et/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/fa/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/fi/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/fr/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/gl/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/gu/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/he/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/hi/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/hr/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/hu/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/id/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ilo/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/is/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/it/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ja/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ka/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/kn/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ko/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ku/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/lo/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/lt/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/lv/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/mai/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/mk/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ml/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/mr/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ms/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/nb/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/nds/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/nl/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/nn/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/or/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/pa/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/pl/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/pt/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/pt_BR/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ro/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ru/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/si/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/sk/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/sl/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/sq/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/sr/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/sr@latin/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/sv/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ta/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/te/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/tr/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/uk/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/ur/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/vi/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/zh_CN/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/locale/zh_TW/LC_MESSAGES/cinnamon-control-center-timezones.mo
share/polkit-1/rules.d/cinnamon-control-center.rules

View File

@ -2,76 +2,83 @@
# $FreeBSD$
PORTNAME= cinnamon-settings-daemon
PORTVERSION= 2.4.3
PORTREVISION= 7
PORTVERSION= 4.8.2
CATEGORIES= sysutils gnome
DIST_SUBDIR= gnome3
DIST_SUBDIR= gnome
MAINTAINER= gnome@FreeBSD.org
COMMENT= GNOME 3 settings daemon
COMMENT= Cinnamon desktop settings daemon
LICENSE= GPLv2 LGPL21
LICENSE_COMB= multi
LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING
LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB
BUILD_DEPENDS= cinnamon-session:x11/cinnamon-session \
gnome-autogen.sh:devel/gnome-common \
gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas \
docbook-xsl>=0:textproc/docbook-xsl \
gsed:textproc/gsed
LIB_DEPENDS= libcanberra-gtk3.so:audio/libcanberra-gtk3 \
xf86-input-wacom>0:x11-drivers/xf86-input-wacom
LIB_DEPENDS= libcanberra.so:audio/libcanberra \
libcanberra-gtk3.so:audio/libcanberra-gtk3 \
libpolkit-gobject-1.so:sysutils/polkit \
libibus-1.0.so:textproc/ibus \
libgudev-1.0.so:devel/libgudev \
libdbus-1.so:devel/dbus \
libdbus-glib-1.so:devel/dbus-glib \
libcolord.so:graphics/colord \
liblcms2.so:graphics/lcms2 \
libcinnamon-desktop.so:x11/cinnamon-desktop \
libxklavier.so:x11/libxklavier \
libnspr4.so:devel/nspr \
libfreetype.so:print/freetype2 \
libfontconfig.so:x11-fonts/fontconfig \
libupower-glib.so:sysutils/upower \
libpulse.so:audio/pulseaudio \
libgdbm.so:databases/gdbm \
libnotify.so:devel/libnotify
RUN_DEPENDS= cinnamon-session:x11/cinnamon-session \
gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas
libnotify.so:devel/libnotify \
libharfbuzz.so:print/harfbuzz
RUN_DEPENDS= cinnamon-session:x11/cinnamon-session
USES= gettext-tools gnome localbase meson pkgconfig python:3.5+,build \
shebangfix xorg
USE_GNOME= cairo gdkpixbuf2 gtk30 intltool libgnomekbd librsvg2
USE_XORG= x11 xext xfixes xi xtst
USES= autoreconf gettext gmake gnome libtool pathfix pkgconfig tar:xz
USE_GNOME= gnomeprefix intlhack libgnomekbd \
libxslt:build
USE_GITHUB= yes
GH_ACCOUNT= linuxmint
GNU_CONFIGURE= yes
CONFIGURE_ENV+= ac_cv_path_SED=${LOCALBASE}/bin/gsed
MESON_ARGS= -Duse_logind=disabled
SHEBANG_GLOB= *.py
INSTALLS_ICONS= yes
USE_LDCONFIG= yes
CONFIGURE_ARGS= --disable-gudev \
--disable-systemd \
--disable-packagekit \
--with-gnome-distributor="FreeBSD GNOME Project"
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
INSTALL_TARGET= install-strip
GLIB_SCHEMAS= org.cinnamon.settings-daemon.enums.xml \
org.cinnamon.settings-daemon.peripherals.gschema.xml \
org.cinnamon.settings-daemon.plugins.background.gschema.xml \
org.cinnamon.settings-daemon.peripherals.wacom.gschema.xml \
org.cinnamon.settings-daemon.plugins.color.gschema.xml \
org.cinnamon.settings-daemon.plugins.gschema.xml \
org.cinnamon.settings-daemon.plugins.housekeeping.gschema.xml \
org.cinnamon.settings-daemon.plugins.keyboard.gschema.xml \
org.cinnamon.settings-daemon.plugins.media-keys.gschema.xml \
org.cinnamon.settings-daemon.plugins.orientation.gschema.xml \
org.cinnamon.settings-daemon.plugins.power.gschema.xml \
org.cinnamon.settings-daemon.plugins.print-notifications.gschema.xml \
org.cinnamon.settings-daemon.plugins.xrandr.gschema.xml \
org.cinnamon.settings-daemon.plugins.xsettings.gschema.xml \
org.cinnamon.settings-daemon.plugins.xsettings.gschema.xml
OPTIONS_SUB= yes
OPTIONS_DEFINE= CUPS SMARTCARD
OPTIONS_DEFAULT=CUPS SMARTCARD
SMARTCARD_DESC= Smartcard support
CUPS_CONFIGURE_ENABLE= cups
OPTIONS_DEFINE= CUPS SMARTCARD WACOM
OPTIONS_DEFAULT=CUPS SMARTCARD WACOM
OPTIONS_SUB= yes
CUPS_MESON_ENABLED= use_cups
CUPS_LIB_DEPENDS= libcups.so:print/cups
SMARTCARD_CONFIGURE_ENABLE= smartcard-support
SMARTCARD_DESC= Smartcard support
SMARTCARD_MESON_ENABLED= enable_smartcard
SMARTCARD_LIB_DEPENDS= libnss3.so:security/nss
WACOM_DESC= Tablet support with libwacom
WACOM_LIB_DEPENDS= libwacom.so:x11/libwacom
post-patch:
@${REINPLACE_CMD} -e 's|/etc/gnome|${PREFIX}/etc/gnome|g' \
${WRKSRC}/data/org.cinnamon.settings-daemon.plugins.xrandr.gschema.xml.in.in
@${REINPLACE_CMD} -e '/wacom/d' \
${WRKSRC}/data/Makefile.am
# Adhere to our hier(7).
@${MKDIR} ${WRKSRC}/files${PREFIX}
@${MV} ${WRKSRC}/files/usr/share ${WRKSRC}/files${PREFIX}
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (gnome3/linuxmint-cinnamon-settings-daemon-2.4.3_GH0.tar.gz) = 1d3c47aad65f9c5064686352012cf1783e51440fa45f4ee030bb33ac66304fd2
SIZE (gnome3/linuxmint-cinnamon-settings-daemon-2.4.3_GH0.tar.gz) = 2998895
TIMESTAMP = 1608878110
SHA256 (gnome/linuxmint-cinnamon-settings-daemon-4.8.2_GH0.tar.gz) = e8d6aaf2c5be5b1e12f12b5ca069e682c65f2057ae9133c7dfe271aebebca259
SIZE (gnome/linuxmint-cinnamon-settings-daemon-4.8.2_GH0.tar.gz) = 661180

View File

@ -1,10 +0,0 @@
--- data/org.cinnamon.settings-daemon.plugins.gschema.xml.in.in.orig 2013-11-24 10:35:18.768433206 +0000
+++ data/org.cinnamon.settings-daemon.plugins.gschema.xml.in.in 2013-11-24 10:35:27.389435282 +0000
@@ -10,7 +10,6 @@
<child name="keyboard" schema="org.cinnamon.settings-daemon.plugins.keyboard"/>
<child name="media-keys" schema="org.cinnamon.settings-daemon.plugins.media-keys"/>
<child name="mouse" schema="org.cinnamon.settings-daemon.plugins.mouse"/>
- <child name="orientation" schema="org.cinnamon.settings-daemon.plugins.orientation"/>
<child name="power" schema="org.cinnamon.settings-daemon.plugins.power"/>
<child name="print-notifications" schema="org.cinnamon.settings-daemon.plugins.print-notifications"/>
<child name="screensaver-proxy" schema="org.cinnamon.settings-daemon.plugins.screensaver-proxy"/>

View File

@ -1,56 +0,0 @@
--- data/org.cinnamon.settings-daemon.plugins.power.gschema.xml.in.in.orig 2013-11-24 10:15:52.998513483 +0000
+++ data/org.cinnamon.settings-daemon.plugins.power.gschema.xml.in.in 2013-11-24 10:17:59.232590608 +0000
@@ -46,7 +46,7 @@
<description>The amount of time in seconds the computer on AC power needs to be inactive before it goes to sleep. A value of 0 means never.</description>
</key>
<key name="sleep-inactive-ac-type" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
- <default>'suspend'</default>
+ <default>'nothing'</default>
<summary>Whether to hibernate, suspend or do nothing when inactive</summary>
<description>The type of sleeping that should be performed when the computer is inactive.</description>
</key>
@@ -56,12 +56,12 @@
<description>The amount of time in seconds the computer on battery power needs to be inactive before it goes to sleep. A value of 0 means never.</description>
</key>
<key name="sleep-inactive-battery-type" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
- <default>'suspend'</default>
+ <default>'nothing'</default>
<summary>Whether to hibernate, suspend or do nothing when inactive</summary>
<description>The type of sleeping that should be performed when the computer is inactive.</description>
</key>
<key name="button-suspend" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
- <default>'suspend'</default>
+ <default>'nothing'</default>
<summary>Suspend button action</summary>
<description>The action to take when the system suspend button is pressed.</description>
</key>
@@ -76,17 +76,17 @@
<description>The action to take when the system sleep (non-specific type) button is pressed.</description>
</key>
<key name="button-power" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
- <default>'suspend'</default>
+ <default>'shutdown'</default>
<summary>Power button action</summary>
<description>The action to take when the system power button is pressed.</description>
</key>
<key name="lid-close-battery-action" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
- <default>'suspend'</default>
+ <default>'nothing'</default>
<summary>Laptop lid close action on battery</summary>
<description>The action to take when the laptop lid is closed and the laptop is on battery power.</description>
</key>
<key name="lid-close-ac-action" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
- <default>'suspend'</default>
+ <default>'nothing'</default>
<summary>Laptop lid close action when on AC</summary>
<description>The action to take when the laptop lid is closed and the laptop is on AC power.</description>
</key>
@@ -102,7 +102,7 @@
lid is closed and regardless of external monitors.</description>
</key>
<key name="critical-battery-action" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
- <default>'hibernate'</default>
+ <default>'shutdown'</default>
<summary>Battery critical low action</summary>
<description>The action to take when the battery is critically low.</description>
</key>

View File

@ -0,0 +1,11 @@
--- plugins/xrandr/csd-xrandr-manager.c.orig 2018-12-29 18:51:26.289097000 +0100
+++ plugins/xrandr/csd-xrandr-manager.c 2018-12-29 18:54:43.819478000 +0100
@@ -149,6 +149,8 @@
static void handle_rotate_windows (CsdXrandrManager *mgr, GnomeRRRotation rotation, guint32 timestamp);
static void rotate_touchscreens (CsdXrandrManager *mgr, GnomeRRRotation rotation);
+void register_manager_dbus (CsdXrandrManager *manager);
+
G_DEFINE_TYPE (CsdXrandrManager, csd_xrandr_manager, G_TYPE_OBJECT)
static gpointer manager_object = NULL;

View File

@ -1,83 +1,56 @@
etc/dbus-1/system.d/org.cinnamon.SettingsDaemon.DateTimeMechanism.conf
include/cinnamon-settings-daemon-3.0/cinnamon-settings-daemon/cinnamon-settings-plugin.h
etc/xdg/autostart/cinnamon-settings-daemon-a11y-keyboard.desktop
etc/xdg/autostart/cinnamon-settings-daemon-a11y-settings.desktop
etc/xdg/autostart/cinnamon-settings-daemon-automount.desktop
etc/xdg/autostart/cinnamon-settings-daemon-background.desktop
etc/xdg/autostart/cinnamon-settings-daemon-clipboard.desktop
etc/xdg/autostart/cinnamon-settings-daemon-color.desktop
etc/xdg/autostart/cinnamon-settings-daemon-cursor.desktop
etc/xdg/autostart/cinnamon-settings-daemon-housekeeping.desktop
etc/xdg/autostart/cinnamon-settings-daemon-keyboard.desktop
etc/xdg/autostart/cinnamon-settings-daemon-media-keys.desktop
etc/xdg/autostart/cinnamon-settings-daemon-mouse.desktop
etc/xdg/autostart/cinnamon-settings-daemon-orientation.desktop
etc/xdg/autostart/cinnamon-settings-daemon-power.desktop
%%CUPS%%etc/xdg/autostart/cinnamon-settings-daemon-print-notifications.desktop
etc/xdg/autostart/cinnamon-settings-daemon-screensaver-proxy.desktop
%%SMARTCARD%%etc/xdg/autostart/cinnamon-settings-daemon-smartcard.desktop
etc/xdg/autostart/cinnamon-settings-daemon-sound.desktop
%%WACOM%%etc/xdg/autostart/cinnamon-settings-daemon-wacom.desktop
etc/xdg/autostart/cinnamon-settings-daemon-xrandr.desktop
etc/xdg/autostart/cinnamon-settings-daemon-xsettings.desktop
include/cinnamon-settings-daemon-3.0/cinnamon-settings-daemon/csd-enums.h
lib/cinnamon-settings-daemon-3.0/a11y-keyboard.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/a11y-settings.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/automount.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/background.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/clipboard.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/color.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/cursor.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/housekeeping.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/keyboard.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/liba11y-keyboard.a
lib/cinnamon-settings-daemon-3.0/liba11y-keyboard.so
lib/cinnamon-settings-daemon-3.0/liba11y-settings.a
lib/cinnamon-settings-daemon-3.0/liba11y-settings.so
lib/cinnamon-settings-daemon-3.0/libautomount.a
lib/cinnamon-settings-daemon-3.0/libautomount.so
lib/cinnamon-settings-daemon-3.0/libbackground.a
lib/cinnamon-settings-daemon-3.0/libbackground.so
lib/cinnamon-settings-daemon-3.0/libclipboard.a
lib/cinnamon-settings-daemon-3.0/libclipboard.so
lib/cinnamon-settings-daemon-3.0/libcolor.a
lib/cinnamon-settings-daemon-3.0/libcolor.so
lib/cinnamon-settings-daemon-3.0/libcsd.a
lib/cinnamon-settings-daemon-3.0/libcsd.so
lib/cinnamon-settings-daemon-3.0/libcursor.a
lib/cinnamon-settings-daemon-3.0/libcursor.so
lib/cinnamon-settings-daemon-3.0/libhousekeeping.a
lib/cinnamon-settings-daemon-3.0/libhousekeeping.so
lib/cinnamon-settings-daemon-3.0/libkeyboard.a
lib/cinnamon-settings-daemon-3.0/libkeyboard.so
lib/cinnamon-settings-daemon-3.0/libmedia-keys.a
lib/cinnamon-settings-daemon-3.0/libmedia-keys.so
lib/cinnamon-settings-daemon-3.0/libmouse.a
lib/cinnamon-settings-daemon-3.0/libmouse.so
lib/cinnamon-settings-daemon-3.0/libpower.a
lib/cinnamon-settings-daemon-3.0/libpower.so
%%CUPS%%lib/cinnamon-settings-daemon-3.0/libprint-notifications.a
%%CUPS%%lib/cinnamon-settings-daemon-3.0/libprint-notifications.so
lib/cinnamon-settings-daemon-3.0/libscreensaver-proxy.a
lib/cinnamon-settings-daemon-3.0/libscreensaver-proxy.so
%%SMARTCARD%%lib/cinnamon-settings-daemon-3.0/libsmartcard.a
%%SMARTCARD%%lib/cinnamon-settings-daemon-3.0/libsmartcard.so
lib/cinnamon-settings-daemon-3.0/libsound.a
lib/cinnamon-settings-daemon-3.0/libsound.so
lib/cinnamon-settings-daemon-3.0/libxrandr.a
lib/cinnamon-settings-daemon-3.0/libxrandr.so
lib/cinnamon-settings-daemon-3.0/libxsettings.a
lib/cinnamon-settings-daemon-3.0/libxsettings.so
lib/cinnamon-settings-daemon-3.0/media-keys.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/mouse.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/power.cinnamon-settings-plugin
%%CUPS%%lib/cinnamon-settings-daemon-3.0/print-notifications.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/screensaver-proxy.cinnamon-settings-plugin
%%SMARTCARD%%lib/cinnamon-settings-daemon-3.0/smartcard.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/sound.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/xrandr.cinnamon-settings-plugin
lib/cinnamon-settings-daemon-3.0/xsettings.cinnamon-settings-plugin
libdata/pkgconfig/cinnamon-settings-daemon.pc
libexec/csd-test-automount
libexec/cinnamon-settings-daemon
libexec/csd-a11y-keyboard
libexec/csd-a11y-settings
libexec/csd-automount
libexec/csd-background
libexec/csd-backlight-helper
libexec/csd-clipboard
libexec/csd-color
libexec/csd-cursor
libexec/csd-datetime-mechanism
libexec/csd-housekeeping
libexec/csd-input-helper
libexec/csd-keyboard
%%WACOM%%libexec/csd-list-wacom
libexec/csd-locate-pointer
libexec/csd-media-keys
libexec/csd-mouse
libexec/csd-orientation
libexec/csd-power
%%CUPS%%libexec/csd-print-notifications
%%CUPS%%libexec/csd-printer
libexec/csd-test-a11y-keyboard
libexec/csd-test-a11y-settings
libexec/csd-test-background
libexec/csd-test-input-helper
libexec/csd-test-media-keys
libexec/csd-test-mouse
libexec/csd-test-power
%%CUPS%%libexec/csd-test-print-notifications
libexec/csd-test-screensaver-proxy
%%SMARTCARD%%libexec/csd-test-smartcard
libexec/csd-test-sound
libexec/csd-test-xsettings
man/man1/cinnamon-settings-daemon.1.gz
share/applications/cinnamon-settings-daemon.desktop
share/cinnamon-settings-daemon-3.0/input-device-example.sh
libexec/csd-screensaver-proxy
%%SMARTCARD%%libexec/csd-smartcard
libexec/csd-sound
%%WACOM%%libexec/csd-wacom
%%WACOM%%libexec/csd-wacom-led-helper
%%WACOM%%libexec/csd-wacom-osd
libexec/csd-xrandr
libexec/csd-xsettings
share/applications/csd-automount.desktop
%%DATADIR%%-3.0/input-device-example.sh
%%DATADIR%%/csd-a11y-preferences-dialog.ui
%%DATADIR%%/icons/hicolor/64x64/devices/kbd-capslock-off.png
%%DATADIR%%/icons/hicolor/64x64/devices/kbd-capslock-on.png
@ -86,103 +59,112 @@ share/cinnamon-settings-daemon-3.0/input-device-example.sh
%%DATADIR%%/icons/hicolor/64x64/devices/kbd-scrolllock-off.png
%%DATADIR%%/icons/hicolor/64x64/devices/kbd-scrolllock-on.png
share/dbus-1/system-services/org.cinnamon.SettingsDaemon.DateTimeMechanism.service
share/icons/hicolor/16x16/apps/csd-xrandr.png
share/icons/hicolor/22x22/apps/csd-xrandr.png
share/icons/hicolor/24x24/apps/csd-xrandr.png
share/icons/hicolor/32x32/apps/csd-xrandr.png
share/icons/hicolor/scalable/apps/csd-xrandr.svg
share/locale/af/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/am/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ar/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/as/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ast/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/az/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/be/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/be@latin/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/bg/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/bn/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/bn_IN/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/br/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/bs/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ca/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ca@valencia/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/crh/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/cs/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/cy/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/da/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/de/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/dz/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/el/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/en@shaw/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/en_CA/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/en_GB/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/eo/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/es/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/et/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/eu/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/fa/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/fi/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/fr/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ga/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/gl/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/gu/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/he/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/hi/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/hr/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/hu/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/id/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/is/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/it/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ja/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ka/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/km/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/kn/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ko/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ku/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/lt/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/lv/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/mai/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/mg/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/mk/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ml/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/mn/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/mr/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ms/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/nb/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/nds/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ne/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/nl/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/nn/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/nso/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/oc/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/or/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/pa/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/pl/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/pt/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/pt_BR/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ro/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ru/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/rw/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/si/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sk/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sl/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sq/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sr/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sr@latin/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/sv/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ta/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/te/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/th/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/tr/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/ug/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/uk/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/vi/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/wa/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/xh/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/zh_CN/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/zh_HK/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/zh_TW/LC_MESSAGES/cinnamon-settings-daemon.mo
share/locale/zu/LC_MESSAGES/cinnamon-settings-daemon.mo
share/dbus-1/system.d/org.cinnamon.SettingsDaemon.DateTimeMechanism.conf
share/polkit-1/actions/org.cinnamon.settings-daemon.plugins.power.policy
%%WACOM%%share/polkit-1/actions/org.cinnamon.settings-daemon.plugins.wacom.policy
share/polkit-1/actions/org.cinnamon.settingsdaemon.datetimemechanism.policy
@dir %%ETCDIR%%/xrandr
share/icons/hicolor/16x16/apps/csd-a11y-keyboard.png
share/icons/hicolor/16x16/apps/csd-a11y-settings.png
share/icons/hicolor/16x16/apps/csd-automount.png
share/icons/hicolor/16x16/apps/csd-background.png
share/icons/hicolor/16x16/apps/csd-clipboard.png
share/icons/hicolor/16x16/apps/csd-color.png
share/icons/hicolor/16x16/apps/csd-cursor.png
share/icons/hicolor/16x16/apps/csd-datetime.png
share/icons/hicolor/16x16/apps/csd-housekeeping.png
share/icons/hicolor/16x16/apps/csd-keyboard.png
share/icons/hicolor/16x16/apps/csd-media-keys.png
share/icons/hicolor/16x16/apps/csd-mouse.png
share/icons/hicolor/16x16/apps/csd-orientation.png
share/icons/hicolor/16x16/apps/csd-power.png
share/icons/hicolor/16x16/apps/csd-print-notifications.png
share/icons/hicolor/16x16/apps/csd-printer.png
share/icons/hicolor/16x16/apps/csd-screensaver-proxy.png
share/icons/hicolor/16x16/apps/csd-sound.png
share/icons/hicolor/16x16/apps/csd-wacom.png
share/icons/hicolor/16x16/apps/csd-xrandr.png
share/icons/hicolor/16x16/apps/csd-xsettings.png
share/icons/hicolor/22x22/apps/csd-a11y-keyboard.png
share/icons/hicolor/22x22/apps/csd-a11y-settings.png
share/icons/hicolor/22x22/apps/csd-automount.png
share/icons/hicolor/22x22/apps/csd-background.png
share/icons/hicolor/22x22/apps/csd-clipboard.png
share/icons/hicolor/22x22/apps/csd-color.png
share/icons/hicolor/22x22/apps/csd-cursor.png
share/icons/hicolor/22x22/apps/csd-datetime.png
share/icons/hicolor/22x22/apps/csd-housekeeping.png
share/icons/hicolor/22x22/apps/csd-keyboard.png
share/icons/hicolor/22x22/apps/csd-media-keys.png
share/icons/hicolor/22x22/apps/csd-mouse.png
share/icons/hicolor/22x22/apps/csd-orientation.png
share/icons/hicolor/22x22/apps/csd-power.png
share/icons/hicolor/22x22/apps/csd-print-notifications.png
share/icons/hicolor/22x22/apps/csd-printer.png
share/icons/hicolor/22x22/apps/csd-screensaver-proxy.png
share/icons/hicolor/22x22/apps/csd-sound.png
share/icons/hicolor/22x22/apps/csd-wacom.png
share/icons/hicolor/22x22/apps/csd-xrandr.png
share/icons/hicolor/22x22/apps/csd-xsettings.png
share/icons/hicolor/24x24/apps/csd-a11y-keyboard.png
share/icons/hicolor/24x24/apps/csd-a11y-settings.png
share/icons/hicolor/24x24/apps/csd-automount.png
share/icons/hicolor/24x24/apps/csd-background.png
share/icons/hicolor/24x24/apps/csd-clipboard.png
share/icons/hicolor/24x24/apps/csd-color.png
share/icons/hicolor/24x24/apps/csd-cursor.png
share/icons/hicolor/24x24/apps/csd-datetime.png
share/icons/hicolor/24x24/apps/csd-housekeeping.png
share/icons/hicolor/24x24/apps/csd-keyboard.png
share/icons/hicolor/24x24/apps/csd-media-keys.png
share/icons/hicolor/24x24/apps/csd-mouse.png
share/icons/hicolor/24x24/apps/csd-orientation.png
share/icons/hicolor/24x24/apps/csd-power.png
share/icons/hicolor/24x24/apps/csd-print-notifications.png
share/icons/hicolor/24x24/apps/csd-printer.png
share/icons/hicolor/24x24/apps/csd-screensaver-proxy.png
share/icons/hicolor/24x24/apps/csd-sound.png
share/icons/hicolor/24x24/apps/csd-wacom.png
share/icons/hicolor/24x24/apps/csd-xrandr.png
share/icons/hicolor/24x24/apps/csd-xsettings.png
share/icons/hicolor/32x32/apps/csd-a11y-keyboard.png
share/icons/hicolor/32x32/apps/csd-a11y-settings.png
share/icons/hicolor/32x32/apps/csd-automount.png
share/icons/hicolor/32x32/apps/csd-background.png
share/icons/hicolor/32x32/apps/csd-clipboard.png
share/icons/hicolor/32x32/apps/csd-color.png
share/icons/hicolor/32x32/apps/csd-cursor.png
share/icons/hicolor/32x32/apps/csd-datetime.png
share/icons/hicolor/32x32/apps/csd-housekeeping.png
share/icons/hicolor/32x32/apps/csd-keyboard.png
share/icons/hicolor/32x32/apps/csd-media-keys.png
share/icons/hicolor/32x32/apps/csd-mouse.png
share/icons/hicolor/32x32/apps/csd-orientation.png
share/icons/hicolor/32x32/apps/csd-power.png
share/icons/hicolor/32x32/apps/csd-print-notifications.png
share/icons/hicolor/32x32/apps/csd-printer.png
share/icons/hicolor/32x32/apps/csd-screensaver-proxy.png
share/icons/hicolor/32x32/apps/csd-sound.png
share/icons/hicolor/32x32/apps/csd-wacom.png
share/icons/hicolor/32x32/apps/csd-xrandr.png
share/icons/hicolor/32x32/apps/csd-xsettings.png
share/icons/hicolor/scalable/apps/csd-a11y-keyboard.svg
share/icons/hicolor/scalable/apps/csd-a11y-settings.svg
share/icons/hicolor/scalable/apps/csd-automount.svg
share/icons/hicolor/scalable/apps/csd-background.svg
share/icons/hicolor/scalable/apps/csd-clipboard.svg
share/icons/hicolor/scalable/apps/csd-color.svg
share/icons/hicolor/scalable/apps/csd-cursor.svg
share/icons/hicolor/scalable/apps/csd-datetime.svg
share/icons/hicolor/scalable/apps/csd-housekeeping.svg
share/icons/hicolor/scalable/apps/csd-keyboard.svg
share/icons/hicolor/scalable/apps/csd-media-keys.svg
share/icons/hicolor/scalable/apps/csd-mouse.svg
share/icons/hicolor/scalable/apps/csd-orientation.svg
share/icons/hicolor/scalable/apps/csd-power.svg
share/icons/hicolor/scalable/apps/csd-print-notifications.svg
share/icons/hicolor/scalable/apps/csd-printer.svg
share/icons/hicolor/scalable/apps/csd-screensaver-proxy.svg
share/icons/hicolor/scalable/apps/csd-sound.svg
share/icons/hicolor/scalable/apps/csd-wacom.svg
share/icons/hicolor/scalable/apps/csd-xrandr.svg
share/icons/hicolor/scalable/apps/csd-xsettings.svg

View File

@ -2,90 +2,68 @@
# $FreeBSD$
PORTNAME= nemo
PORTVERSION= 2.4.5
PORTREVISION= 5
PORTVERSION= 4.8.2
CATEGORIES= x11-fm gnome
DIST_SUBDIR= gnome3
DIST_SUBDIR= gnome
MAINTAINER= gnome@FreeBSD.org
COMMENT= File manager for the Cinnamon desktop
BUILD_DEPENDS= gnome-icon-theme>=0:misc/gnome-icon-theme \
gtkdocize:textproc/gtk-doc \
${PYTHON_PKGNAMEPREFIX}polib>=0:devel/py-polib@${PY_FLAVOR} \
gnome-autogen.sh:devel/gnome-common \
gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas
LIB_DEPENDS= libexif.so:graphics/libexif \
libcinnamon-desktop.so:x11/cinnamon-desktop \
libnotify.so:devel/libnotify \
libexempi.so:textproc/exempi
RUN_DEPENDS= gnome-icon-theme>=0:misc/gnome-icon-theme \
gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas
LICENSE= GPLv2 LGPL20
LICENSE_COMB= multi
LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING
LICENSE_FILE_LGPL20= ${WRKSRC}/COPYING.LIB
BUILD_DEPENDS= gnome-icon-theme>=0:misc/gnome-icon-theme \
gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas
LIB_DEPENDS= libcinnamon-desktop.so:x11/cinnamon-desktop \
libnotify.so:devel/libnotify \
libxapp.so:x11/xapp
RUN_DEPENDS= gnome-icon-theme>=0:misc/gnome-icon-theme \
gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas \
gvfs>0:devel/gvfs
USES= desktop-file-utils gettext gnome meson pkgconfig python:3.5+ \
shared-mime-info shebangfix xorg
SHEBANG_FILES= generate_additional_file makepot
SHEBANG_GLOB= *.py
USES= autoreconf:build compiler:c++11-lang desktop-file-utils gettext \
gmake gnome libtool pathfix pkgconfig python:2.7 \
shared-mime-info
USE_GNOME= gnomedesktop3 gnomeprefix intlhack introspection:build \
libxml2 pygobject3
USE_GITHUB= yes
GH_ACCOUNT= linuxmint
GNU_CONFIGURE= yes
INSTALLS_ICONS= yes
USE_LDCONFIG= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib -lpthread
INSTALL_TARGET= install-strip
CONFIGURE_ARGS= --enable-static --disable-packagekit
USE_GNOME= cairo gdkpixbuf2 gtk30 intlhack introspection libxml2 pango pygobject3
USE_XORG= x11
GLIB_SCHEMAS= org.nemo.gschema.xml
OPTIONS_SUB= yes
OPTIONS_DEFINE= TRACKER
OPTIONS_DEFAULT= TRACKER
TRACKER_CONFIGURE_ENABLE= tracker
TRACKER_LIB_DEPENDS= libtracker-sparql-2.0.so:sysutils/tracker
TRACKER_DESC= Integration with tracker
INSTALLS_ICONS= yes
USE_LDCONFIG= yes
OPTIONS_DEFINE= DOCS EXEMPI EXIF TRACKER
OPTIONS_DEFAULT= DOCS EXEMPI EXIF
OPTIONS_SUB= yes
EXEMPI_DESC= XMP support
EXIF_DESC= Digital camera file meta-data support
TRACKER_DESC= Integration with tracker
DOCS_BUILD_DEPENDS= gtkdocize:textproc/gtk-doc
DOCS_MESON_TRUE= gtk_doc
EXEMPI_LIB_DEPENDS= libexempi.so:textproc/exempi
EXEMPI_MESON_TRUE= xmp
EXIF_LIB_DEPENDS= libexif.so:graphics/libexif
EXIF_MESON_TRUE= exif
TRACKER_LIB_DEPENDS= libtracker-sparql-2.0.so:sysutils/tracker
TRACKER_MESON_TRUE= tracker
post-patch:
@${MKDIR} ${WRKSRC}/files${PREFIX}
@${MV} ${WRKSRC}/files/usr/share ${WRKSRC}/files${PREFIX}
@${REINPLACE_CMD} -e 's|0.16|1.0|g' \
${WRKSRC}/configure.in
@${REINPLACE_CMD} -e 's|find|find ${WRKSRC}/files|g' \
${WRKSRC}/files/Makefile.in
@${REINPLACE_CMD} -e 's|-DGTK_DISABLE_DEPRECATED||g' \
-e 's|tracker-sparql-1.0|tracker-sparql-2.0|g' \
${WRKSRC}/configure.in
@${REINPLACE_CMD} -e 's|/usr/share|${PREFIX}/share|g' \
${WRKSRC}/src/nemo-properties-window.c
@${REINPLACE_CMD} -e 's|"-DG_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED"|""|g' \
${WRKSRC}/configure.in
@${REINPLACE_CMD} -e 's|/usr/share|${PREFIX}/share|g ;\
s|@INTROSPECTION_TYPELIBDIR@|$$(libdir)/girepository-1.0|g ;\
s|@INTROSPECTION_GIRDIR@|$$(datadir)/gir-1.0|g' \
${WRKSRC}/libnemo-extension/Makefile.am
@${REINPLACE_CMD} -e 's|x-gnome-saved-search|x-nemo-saved-search|g' \
${WRKSRC}/data/nemo.xml.in \
${WRKSRC}/libnemo-private/nemo-file-utilities.h
@${FIND} ${WRKSRC} -name \* | ${XARGS} ${EGREP} -l "#!.*\/usr\/bin\/python" | \
${XARGS} ${REINPLACE_CMD} -I "" -e "s|#!.*python.*|#!${PYTHON_CMD}|g"
@${REINPLACE_CMD} 's|\"/usr|\"${PREFIX}|g' \
${WRKSRC}/data/merge_action_strings
@${REINPLACE_CMD} 's|"files", "usr"|"files", "${PREFIX}".strip("/")|g' \
${WRKSRC}/data/merge_action_strings
pre-configure:
cd ${WRKSRC} && ${SETENV} NOCONFIGURE=yes ${SH} ./autogen.sh
# malloc.h is deprecated
@${REINPLACE_CMD} -e "/malloc.h/d" ${WRKSRC}/meson.build
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (gnome3/linuxmint-nemo-2.4.5_GH0.tar.gz) = a4eae743f25d1a66cbb5b28675d78aee1d57224c825d6baebdf88068dc1d8d04
SIZE (gnome3/linuxmint-nemo-2.4.5_GH0.tar.gz) = 1356445
TIMESTAMP = 1608879573
SHA256 (gnome/linuxmint-nemo-4.8.2_GH0.tar.gz) = e4225b7c4736abe49e106595c770f2c2ea137b15f0b09c9f9ae05c1556fb42a4
SIZE (gnome/linuxmint-nemo-4.8.2_GH0.tar.gz) = 1463134

View File

@ -1,10 +0,0 @@
--- autogen.sh.orig 2013-07-20 21:14:17.454775429 +0000
+++ autogen.sh 2013-07-20 21:14:26.096159846 +0000
@@ -4,6 +4,7 @@
test -z "$srcdir" && srcdir=.
PKG_NAME="nemo"
+REQUIRED_AUTOMAKE_VERSION=1.14
which gnome-autogen.sh || {
echo "You need to install gnome-common from GNOME Git (or from"

View File

@ -1,14 +0,0 @@
--- eel/eel-editable-label.c.orig 2014-04-03 11:36:31.849369101 +0000
+++ eel/eel-editable-label.c 2014-04-03 11:37:01.819371871 +0000
@@ -36,6 +36,11 @@
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
+/* g_memmove is removed in glib 2.40 */
+#if GLIB_CHECK_VERSION (2, 39, 0)
+#define g_memmove memmove
+#endif
+
enum {
MOVE_CURSOR,
POPULATE_POPUP,

View File

@ -1,22 +0,0 @@
--- libnemo-private/nemo-global-preferences.c.orig 2020-08-30 07:04:30 UTC
+++ libnemo-private/nemo-global-preferences.c
@@ -36,6 +36,19 @@
static gboolean ignore_view_metadata = FALSE;
+GSettings *nemo_preferences;
+GSettings *nemo_icon_view_preferences;
+GSettings *nemo_list_view_preferences;
+GSettings *nemo_compact_view_preferences;
+GSettings *nemo_desktop_preferences;
+GSettings *nemo_tree_sidebar_preferences;
+GSettings *nemo_window_state;
+GSettings *gnome_lockdown_preferences;
+GSettings *gnome_background_preferences;
+GSettings *gnome_media_handling_preferences;
+GSettings *gnome_terminal_preferences;
+GSettings *cinnamon_privacy_preferences;
+
/*
* Public functions
*/

View File

@ -1,33 +0,0 @@
--- libnemo-private/nemo-global-preferences.h.orig 2020-08-30 07:04:30 UTC
+++ libnemo-private/nemo-global-preferences.h
@@ -239,18 +239,18 @@ char *nemo_global_preferences_get_default_folder_viewe
gboolean nemo_global_preferences_get_ignore_view_metadata (void);
gint nemo_global_preferences_get_tooltip_flags (void);
-GSettings *nemo_preferences;
-GSettings *nemo_icon_view_preferences;
-GSettings *nemo_list_view_preferences;
-GSettings *nemo_compact_view_preferences;
-GSettings *nemo_desktop_preferences;
-GSettings *nemo_tree_sidebar_preferences;
-GSettings *nemo_window_state;
-GSettings *gnome_lockdown_preferences;
-GSettings *gnome_background_preferences;
-GSettings *gnome_media_handling_preferences;
-GSettings *gnome_terminal_preferences;
-GSettings *cinnamon_privacy_preferences;
+extern GSettings *nemo_preferences;
+extern GSettings *nemo_icon_view_preferences;
+extern GSettings *nemo_list_view_preferences;
+extern GSettings *nemo_compact_view_preferences;
+extern GSettings *nemo_desktop_preferences;
+extern GSettings *nemo_tree_sidebar_preferences;
+extern GSettings *nemo_window_state;
+extern GSettings *gnome_lockdown_preferences;
+extern GSettings *gnome_background_preferences;
+extern GSettings *gnome_media_handling_preferences;
+extern GSettings *gnome_terminal_preferences;
+extern GSettings *cinnamon_privacy_preferences;
G_END_DECLS

View File

@ -0,0 +1,102 @@
--- libnemo-private/nemo-statx.c.orig 2018-12-15 14:00:45 UTC
+++ libnemo-private/nemo-statx.c
@@ -21,16 +21,17 @@
#define _ATFILE_SOURCE
#include <config.h>
#include <time.h>
-#include <linux/fcntl.h> // for AT_FDCWD, AT_NO_AUTOMOUNT
-#include <linux/stat.h> // for statx, STATX_BTIME, statx_timestamp
#include <string.h> // for memset
-#include <syscall.h> // for __NR_statx
#include <unistd.h> // for syscall, ssize_t
#include <stdio.h>
#include <errno.h>
#if NATIVE_STATX
/* native statx call */
+#include <linux/fcntl.h> // for AT_FDCWD, AT_NO_AUTOMOUNT
+#include <linux/stat.h> // for statx, STATX_BTIME, statx_timestamp
+#include <syscall.h> // for __NR_statx
+
static __attribute__((unused))
ssize_t statx (int dfd, const char *filename, unsigned flags,
unsigned int mask, struct statx *buffer)
@@ -41,6 +42,11 @@ ssize_t statx (int dfd, const char *filename, unsigned
#else
/* statx wrapper/compatibility */
+#define AT_FDCWD -100 /* Special value used to indicate
+ openat should use the current
+ working directory. */
+#define AT_NO_AUTOMOUNT 0x800 /* Suppress terminal automount traversal */
+
/* this code works ony with x86 and x86_64 */
#if __x86_64__
#define __NR_statx 332
@@ -51,39 +57,39 @@ ssize_t statx (int dfd, const char *filename, unsigned
#define STATX_BTIME 0x00000800U /* Want/got stx_btime */
struct statx_timestamp {
- __s64 tv_sec;
- __u32 tv_nsec;
- __s32 __reserved;
+ int64_t tv_sec;
+ uint32_t tv_nsec;
+ int32_t __reserved;
};
struct statx {
/* 0x00 */
- __u32 stx_mask; /* What results were written [uncond] */
- __u32 stx_blksize; /* Preferred general I/O size [uncond] */
- __u64 stx_attributes; /* Flags conveying information about the file [uncond] */
+ uint32_t stx_mask; /* What results were written [uncond] */
+ uint32_t stx_blksize; /* Preferred general I/O size [uncond] */
+ uint64_t stx_attributes; /* Flags conveying information about the file [uncond] */
/* 0x10 */
- __u32 stx_nlink; /* Number of hard links */
- __u32 stx_uid; /* User ID of owner */
- __u32 stx_gid; /* Group ID of owner */
- __u16 stx_mode; /* File mode */
- __u16 __spare0[1];
+ uint32_t stx_nlink; /* Number of hard links */
+ uint32_t stx_uid; /* User ID of owner */
+ uint32_t stx_gid; /* Group ID of owner */
+ uint16_t stx_mode; /* File mode */
+ uint16_t __spare0[1];
/* 0x20 */
- __u64 stx_ino; /* Inode number */
- __u64 stx_size; /* File size */
- __u64 stx_blocks; /* Number of 512-byte blocks allocated */
- __u64 stx_attributes_mask; /* Mask to show what's supported in stx_attributes */
+ uint64_t stx_ino; /* Inode number */
+ uint64_t stx_size; /* File size */
+ uint64_t stx_blocks; /* Number of 512-byte blocks allocated */
+ uint64_t stx_attributes_mask; /* Mask to show what's supported in stx_attributes */
/* 0x40 */
struct statx_timestamp stx_atime; /* Last access time */
struct statx_timestamp stx_btime; /* File creation time */
struct statx_timestamp stx_ctime; /* Last attribute change time */
struct statx_timestamp stx_mtime; /* Last data modification time */
/* 0x80 */
- __u32 stx_rdev_major; /* Device ID of special file [if bdev/cdev] */
- __u32 stx_rdev_minor;
- __u32 stx_dev_major; /* ID of device containing file [uncond] */
- __u32 stx_dev_minor;
+ uint32_t stx_rdev_major; /* Device ID of special file [if bdev/cdev] */
+ uint32_t stx_rdev_minor;
+ uint32_t stx_dev_major; /* ID of device containing file [uncond] */
+ uint32_t stx_dev_minor;
/* 0x90 */
- __u64 __spare2[14]; /* Spare space for future expansion */
+ uint64_t __spare2[14]; /* Spare space for future expansion */
/* 0x100 */
};
@@ -129,4 +135,4 @@ get_file_btime (const char *path)
btime = (&stxbuf)->stx_btime.tv_sec;
return btime;
-}
\ No newline at end of file
+}

View File

@ -1,11 +0,0 @@
--- src/nemo-bookmark-list.c.orig 2014-11-25 08:21:31.872596499 +0100
+++ src/nemo-bookmark-list.c 2014-11-25 08:22:26.313236268 +0100
@@ -448,7 +448,7 @@
nemo_bookmark_list_get_for_uri (NemoBookmarkList *bookmarks,
const char *uri)
{
- g_return_if_fail (NEMO_IS_BOOKMARK_LIST (bookmarks));
+ g_return_val_if_fail (NEMO_IS_BOOKMARK_LIST (bookmarks), NULL);
GList *iter;
GList *results = NULL;

View File

@ -1,15 +0,0 @@
--- src/nemo-notebook.c.orig 2014-11-25 08:15:15.798622291 +0100
+++ src/nemo-notebook.c 2014-11-25 08:15:25.754624581 +0100
@@ -51,12 +51,6 @@
static void nemo_notebook_remove (GtkContainer *container,
GtkWidget *tab_widget);
-static const GtkTargetEntry url_drag_types[] =
-{
- { NEMO_ICON_DND_GNOME_ICON_LIST_TYPE, 0, NEMO_ICON_DND_GNOME_ICON_LIST },
- { NEMO_ICON_DND_URI_LIST_TYPE, 0, NEMO_ICON_DND_URI_LIST },
-};
-
enum
{
TAB_CLOSE_REQUEST,

View File

@ -1,11 +0,0 @@
--- src/nemo-view.orig.c 2013-03-02 09:17:03.405569034 +0100
+++ src/nemo-view.c 2013-03-02 09:17:16.902582392 +0100
@@ -680,7 +680,7 @@
NemoZoomLevel
nemo_view_get_default_zoom_level (NemoView *view)
{
- g_return_if_fail (NEMO_IS_VIEW (view));
+ g_return_val_if_fail (NEMO_IS_VIEW (view), NEMO_ZOOM_LEVEL_STANDARD);
if (!nemo_view_supports_zooming (view)) {
return -1;

View File

@ -1,5 +1,3 @@
Nautilus is a file manager tightly integrated into the GNOME destkop.
It is also responsible for desktop and icon management, and provides
an intuitive interface for accessing files and webpages.
Nemo, forked from Nautilus, is the file manager of Cinnamon.
WWW: http://www.gnome.org/projects/nautilus/
WWW: http://cinnamon.linuxmint.com/

View File

@ -1,9 +1,11 @@
bin/nemo
bin/nemo-autorun-software
bin/nemo-connect-server
bin/nemo-desktop
bin/nemo-open-with
include/nemo/libnemo-extension/nemo-column-provider.h
include/nemo/libnemo-extension/nemo-column.h
include/nemo/libnemo-extension/nemo-desktop-preferences.h
include/nemo/libnemo-extension/nemo-extension-types.h
include/nemo/libnemo-extension/nemo-file-info.h
include/nemo/libnemo-extension/nemo-info-provider.h
@ -11,66 +13,108 @@ include/nemo/libnemo-extension/nemo-location-widget-provider.h
include/nemo/libnemo-extension/nemo-menu-item.h
include/nemo/libnemo-extension/nemo-menu-provider.h
include/nemo/libnemo-extension/nemo-menu.h
include/nemo/libnemo-extension/nemo-name-and-desc-provider.h
include/nemo/libnemo-extension/nemo-property-page-provider.h
include/nemo/libnemo-extension/nemo-property-page.h
include/nemo/libnemo-extension/nemo-simple-button.h
lib/girepository-1.0/Nemo-3.0.typelib
lib/libnemo-extension.a
lib/libnemo-extension.so
lib/libnemo-extension.so.1
lib/libnemo-extension.so.1.4.0
libdata/pkgconfig/libnemo-extension.pc
libexec/nemo-convert-metadata
libexec/nemo-extensions-list
man/man1/nemo-connect-server.1.gz
man/man1/nemo.1.gz
share/applications/nemo-autorun-software.desktop
share/applications/nemo-autostart.desktop
share/applications/nemo.desktop
share/dbus-1/services/org.Nemo.service
share/dbus-1/services/org.freedesktop.NemoFileManager1.service
share/dbus-1/services/nemo.service
share/dbus-1/services/nemo.FileManager1.service
share/gir-1.0/Nemo-3.0.gir
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/NemoColumn.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/NemoColumnProvider.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/NemoFileInfo.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/NemoInfoProvider.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/NemoLocationWidgetProvider.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/NemoMenu.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/NemoMenuProvider.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/NemoPropertyPage.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/NemoPropertyPageProvider.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/NemoSimpleButton.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/ch01.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/ch02.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/home.png
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/index.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/ix01.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/left-insensitive.png
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/left.png
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/libnemo-extension-Types-and-Enums.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/libnemo-extension.devhelp2
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/pt01.html
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/right-insensitive.png
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/right.png
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/style.css
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/up-insensitive.png
%%PORTDOCS%%share/gtk-doc/html/libnemo-extension/up.png
share/gtksourceview-2.0/language-specs/nemo_action.lang
share/gtksourceview-3.0/language-specs/nemo_action.lang
share/icons/hicolor/16x16/actions/menu-bullet.png
share/icons/hicolor/16x16/actions/menu-none.png
share/icons/hicolor/16x16/actions/menu-sort-down-free.png
share/icons/hicolor/16x16/actions/menu-sort-down.png
share/icons/hicolor/16x16/actions/menu-sort-left-free.png
share/icons/hicolor/16x16/actions/menu-sort-left.png
share/icons/hicolor/16x16/actions/menu-sort-right-free.png
share/icons/hicolor/16x16/actions/menu-sort-right.png
share/icons/hicolor/16x16/actions/menu-sort-up-free.png
share/icons/hicolor/16x16/actions/menu-sort-up.png
share/icons/hicolor/16x16/actions/nemo-eject.png
share/icons/hicolor/16x16/apps/nemo.png
share/icons/hicolor/22x22/apps/nemo.png
share/icons/hicolor/24x24/apps/nemo.png
share/icons/hicolor/32x32/actions/nemo-eject.png
share/icons/hicolor/32x32/apps/nemo.png
share/icons/hicolor/48x48/status/progress-0.png
share/icons/hicolor/48x48/status/progress-10.png
share/icons/hicolor/48x48/status/progress-100.png
share/icons/hicolor/48x48/status/progress-20.png
share/icons/hicolor/48x48/status/progress-30.png
share/icons/hicolor/48x48/status/progress-40.png
share/icons/hicolor/48x48/status/progress-50.png
share/icons/hicolor/48x48/status/progress-60.png
share/icons/hicolor/48x48/status/progress-70.png
share/icons/hicolor/48x48/status/progress-80.png
share/icons/hicolor/48x48/status/progress-90.png
share/icons/hicolor/scalable/actions/location-symbolic.svg
share/icons/hicolor/scalable/actions/mount-archive-symbolic.svg
share/icons/hicolor/scalable/actions/nemo-auto-arrange-symbolic.svg
share/icons/hicolor/scalable/actions/nemo-desktop-scale-symbolic.svg
share/icons/hicolor/scalable/actions/nemo-horizontal-layout-symbolic.svg
share/icons/hicolor/scalable/actions/nemo-horizontal-layout-wide-symbolic.svg
share/icons/hicolor/scalable/actions/nemo-vertical-layout-symbolic.svg
share/icons/hicolor/scalable/actions/nemo-vertical-layout-wide-symbolic.svg
share/icons/hicolor/scalable/actions/sidebar-hide-symbolic.svg
share/icons/hicolor/scalable/actions/sidebar-places-symbolic.svg
share/icons/hicolor/scalable/actions/sidebar-show-symbolic.svg
share/icons/hicolor/scalable/actions/sidebar-tree-symbolic.svg
share/icons/hicolor/scalable/actions/view-compact-symbolic.svg
share/icons/hicolor/scalable/status/progress-0-symbolic.svg
share/icons/hicolor/scalable/status/progress-10-symbolic.svg
share/icons/hicolor/scalable/status/progress-100-symbolic.svg
share/icons/hicolor/scalable/status/progress-20-symbolic.svg
share/icons/hicolor/scalable/status/progress-30-symbolic.svg
share/icons/hicolor/scalable/status/progress-40-symbolic.svg
share/icons/hicolor/scalable/status/progress-50-symbolic.svg
share/icons/hicolor/scalable/status/progress-60-symbolic.svg
share/icons/hicolor/scalable/status/progress-70-symbolic.svg
share/icons/hicolor/scalable/status/progress-80-symbolic.svg
share/icons/hicolor/scalable/status/progress-90-symbolic.svg
share/icons/hicolor/scalable/apps/nemo.svg
share/mime/application/nemo-action.xml
share/mime/application/x-nemo-saved-search.xml
share/icons/hicolor/scalable/devices/drive-removable-media-usb-symbolic.svg
share/icons/hicolor/scalable/status/nemo-bookmark-not-found-symbolic.svg
share/mime/packages/nemo.xml
share/nemo/actions/90_new-workspace.nemo_action
share/nemo/actions/91_delete-workspace.nemo_action
share/nemo/actions/92_show-expo.nemo_action
share/nemo/actions/add-desklets.nemo_action
share/nemo/actions/change-background.nemo_action
share/nemo/actions/mount-archive.nemo_action
share/nemo/actions/myaction.py
share/nemo/actions/new-launcher.nemo_action
share/nemo/actions/sample.nemo_action
share/nemo/actions/set-as-background.nemo_action
share/nemo/icons/hicolor/16x16/emblems/emblem-note.png
share/nemo/icons/hicolor/24x24/emblems/emblem-note.png
share/nemo/icons/hicolor/48x48/emblems/emblem-note.png
share/nemo/nemo-extras.placeholder
share/nemo/nemo-suggested.placeholder
%%DATADIR%%/actions/90_new-workspace.nemo_action
%%DATADIR%%/actions/91_delete-workspace.nemo_action
%%DATADIR%%/actions/92_show-expo.nemo_action
%%DATADIR%%/actions/add-desklets.nemo_action
%%DATADIR%%/actions/change-background.nemo_action
%%DATADIR%%/actions/mount-archive.nemo_action
%%DATADIR%%/actions/myaction.py
%%DATADIR%%/actions/new-launcher.nemo_action
%%DATADIR%%/actions/sample.nemo_action
%%DATADIR%%/actions/set-as-background.nemo_action
%%DATADIR%%/icons/hicolor/16x16/emblems/emblem-note.png
%%DATADIR%%/icons/hicolor/24x24/emblems/emblem-note.png
%%DATADIR%%/icons/hicolor/48x48/emblems/emblem-note.png
%%DATADIR%%/script-info.md
share/polkit-1/actions/org.nemo.root.policy

View File

@ -2,48 +2,73 @@
# $FreeBSD$
PORTNAME= muffin
PORTVERSION= 2.4.4
PORTREVISION= 2
PORTVERSION= 4.8.0
CATEGORIES= x11-wm gnome
DIST_SUBDIR= gnome3
DIST_SUBDIR= gnome
MAINTAINER= gnome@FreeBSD.org
COMMENT= Compositing window manager forked from Mutter for use with Cinnamon
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= zenity>=3.0.0:x11/zenity \
gnome-autogen.sh:devel/gnome-common \
gsettings-desktop-schemas>=3.4.0:devel/gsettings-desktop-schemas
LIB_DEPENDS= libstartup-notification-1.so:x11/startup-notification \
libclutter-glx-1.0.so:graphics/clutter \
gsettings-desktop-schemas>=3.4.0:devel/gsettings-desktop-schemas \
gtkdocize:textproc/gtk-doc \
xkeyboard-config>0:x11/xkeyboard-config
LIB_DEPENDS= libcanberra.so:audio/libcanberra \
libcanberra-gtk3.so:audio/libcanberra-gtk3 \
libcinnamon-desktop.so:x11/cinnamon-desktop
RUN_DEPENDS= zenity>=3.0.0:x11/zenity
libcinnamon-desktop.so:x11/cinnamon-desktop \
libdrm.so:graphics/libdrm \
libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
libjson-glib-1.0.so:devel/json-glib \
libstartup-notification-1.so:x11/startup-notification \
libwacom.so:x11/libwacom \
libxkbcommon.so:x11/libxkbcommon \
libharfbuzz.so:print/harfbuzz
RUN_DEPENDS= zenity>=3.0.0:x11/zenity \
xkeyboard-config>0:x11/xkeyboard-config
USES= autoreconf:build gettext-tools gl gmake gnome libtool pathfix pkgconfig \
xorg
USES= autoreconf:build gettext gmake gnome libtool pathfix pkgconfig \
python:2.7 xorg
USE_GITHUB= yes
GH_ACCOUNT= linuxmint
USE_GNOME= gconf2 gnomeprefix gtk30 \
intlhack introspection:build
USE_XORG= x11 xext xrandr xcomposite xcursor xinerama ice sm
USE_GNOME= cairo dconf gdkpixbuf2 gnomeprefix glib20 gtk30 intltool \
introspection
USE_XORG= ice sm x11 xcb xcomposite xcursor xdamage xext xfixes xi xinerama \
xkbfile xrandr xrender xtst
USE_GL= egl gl
USE_LDCONFIG= yes
USE_CSTD= gnu89
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include -Wno-error=unused-function
CFLAGS+= -I${LOCALBASE}/include -Wno-error=unused-function
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ENV= LIBS="-lexecinfo"
CONFIGURE_ARGS= --enable-compile-warnings=maximum
MAKE_ARGS= V=1
GLIB_SCHEMAS= org.cinnamon.muffin.gschema.xml
CONFIGURE_ARGS= --enable-maintainer-flags=no
CFLAGS+= -I${LOCALBASE}/include
CPPFLAGS+= -I${LOCALBASE}/include
INSTALL_TARGET= install-strip
pre-configure:
@cd ${WRKSRC} && ${SETENV} NOCONFIGURE=yes ${SH} autogen.sh
GLIB_SCHEMAS= org.cinnamon.muffin.gschema.xml
OPTIONS_DEFINE= WAYLAND
OPTIONS_DEFAULT= WAYLAND
OPTIONS_SUB= yes
WAYLAND_BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto
WAYLAND_LIB_DEPENDS= libinput.so:x11/libinput \
libudev.so:devel/libudev-devd \
libwayland-server.so:graphics/wayland
WAYLAND_CONFIGURE_ENABLE= wayland-egl-server
post-patch:
@${REINPLACE_CMD} -e 's|REQUIRED_AUTOMAKE_VERSION=1.10|REQUIRED_AUTOMAKE_VERSION=1.14|g' \
${WRKSRC}/autogen.sh
@${REINPLACE_CMD} -e 's|--warn-error||g' ${WRKSRC}/src/Makefile.am
@${REINPLACE_CMD} 's/--warn-error//' ${WRKSRC}/src/Makefile.am
pre-configure:
@cd ${WRKSRC} && ${SETENV} NOCONFIGURE=yes ${SH} autogen.sh
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (gnome3/linuxmint-muffin-2.4.4_GH0.tar.gz) = 027641f3bc12a5770f063ffbf9ff0a4797768d256449941ae0be779700b90805
SIZE (gnome3/linuxmint-muffin-2.4.4_GH0.tar.gz) = 2706446
TIMESTAMP = 1606817463
SHA256 (gnome/linuxmint-muffin-4.8.0_GH0.tar.gz) = a4f1cb9ed80b7ea1e51d30b97ea3ae2f196b06fc9fd56c0283e64c9ee1322c18
SIZE (gnome/linuxmint-muffin-4.8.0_GH0.tar.gz) = 5196236

View File

@ -1,12 +0,0 @@
--- configure.ac.orig 2015-02-02 16:02:44 UTC
+++ configure.ac
@@ -412,9 +412,6 @@ fi
# For fix-meta-rectangle.py
AM_PATH_PYTHON([2.5])
-# Use gnome-doc-utils:
-GNOME_DOC_INIT([0.8.0])
-
#### Warnings (last since -Werror can disturb other tests)
# Stay command-line compatible with the gnome-common configure option. Here

View File

@ -1,14 +0,0 @@
--- src/core/main.c.orig 2015-02-02 16:02:44 UTC
+++ src/core/main.c
@@ -61,7 +61,11 @@
#include <stdlib.h>
#include <sys/types.h>
+#ifdef __linux__
#include <wait.h>
+#else
+#include <sys/wait.h>
+#endif
#include <stdio.h>
#include <string.h>
#include <signal.h>

View File

@ -2,6 +2,237 @@ bin/muffin
bin/muffin-message
bin/muffin-theme-viewer
bin/muffin-window-demo
include/muffin/clutter-0/cally/cally-actor.h
include/muffin/clutter-0/cally/cally-clone.h
include/muffin/clutter-0/cally/cally-factory.h
include/muffin/clutter-0/cally/cally-group.h
include/muffin/clutter-0/cally/cally-main.h
include/muffin/clutter-0/cally/cally-rectangle.h
include/muffin/clutter-0/cally/cally-root.h
include/muffin/clutter-0/cally/cally-stage.h
include/muffin/clutter-0/cally/cally-text.h
include/muffin/clutter-0/cally/cally-texture.h
include/muffin/clutter-0/cally/cally-util.h
include/muffin/clutter-0/cally/cally.h
include/muffin/clutter-0/clutter/clutter-action.h
include/muffin/clutter-0/clutter/clutter-actor-meta.h
include/muffin/clutter-0/clutter/clutter-actor.h
include/muffin/clutter-0/clutter/clutter-align-constraint.h
include/muffin/clutter-0/clutter/clutter-animatable.h
include/muffin/clutter-0/clutter/clutter-autocleanups.h
include/muffin/clutter-0/clutter/clutter-backend.h
include/muffin/clutter-0/clutter/clutter-bin-layout.h
include/muffin/clutter-0/clutter/clutter-bind-constraint.h
include/muffin/clutter-0/clutter/clutter-binding-pool.h
include/muffin/clutter-0/clutter/clutter-blur-effect.h
include/muffin/clutter-0/clutter/clutter-box-layout.h
include/muffin/clutter-0/clutter/clutter-brightness-contrast-effect.h
include/muffin/clutter-0/clutter/clutter-cairo.h
include/muffin/clutter-0/clutter/clutter-canvas.h
include/muffin/clutter-0/clutter/clutter-child-meta.h
include/muffin/clutter-0/clutter/clutter-click-action.h
include/muffin/clutter-0/clutter/clutter-clone.h
include/muffin/clutter-0/clutter/clutter-color-static.h
include/muffin/clutter-0/clutter/clutter-color.h
include/muffin/clutter-0/clutter/clutter-colorize-effect.h
include/muffin/clutter-0/clutter/clutter-config.h
include/muffin/clutter-0/clutter/clutter-constraint.h
include/muffin/clutter-0/clutter/clutter-container.h
include/muffin/clutter-0/clutter/clutter-content.h
include/muffin/clutter-0/clutter/clutter-deform-effect.h
include/muffin/clutter-0/clutter/clutter-deprecated.h
include/muffin/clutter-0/clutter/clutter-desaturate-effect.h
include/muffin/clutter-0/clutter/clutter-device-manager.h
include/muffin/clutter-0/clutter/clutter-drag-action.h
include/muffin/clutter-0/clutter/clutter-drop-action.h
include/muffin/clutter-0/clutter/clutter-effect.h
include/muffin/clutter-0/clutter/clutter-enum-types.h
include/muffin/clutter-0/clutter/clutter-enums.h
include/muffin/clutter-0/clutter/clutter-event.h
include/muffin/clutter-0/clutter/clutter-feature.h
include/muffin/clutter-0/clutter/clutter-fixed-layout.h
include/muffin/clutter-0/clutter/clutter-flow-layout.h
include/muffin/clutter-0/clutter/clutter-gesture-action.h
include/muffin/clutter-0/clutter/clutter-grid-layout.h
include/muffin/clutter-0/clutter/clutter-group.h
include/muffin/clutter-0/clutter/clutter-image.h
include/muffin/clutter-0/clutter/clutter-input-device-tool.h
include/muffin/clutter-0/clutter/clutter-input-device.h
include/muffin/clutter-0/clutter/clutter-input-focus.h
include/muffin/clutter-0/clutter/clutter-input-method.h
include/muffin/clutter-0/clutter/clutter-interval.h
include/muffin/clutter-0/clutter/clutter-keyframe-transition.h
include/muffin/clutter-0/clutter/clutter-keysyms.h
include/muffin/clutter-0/clutter/clutter-layout-manager.h
include/muffin/clutter-0/clutter/clutter-layout-meta.h
include/muffin/clutter-0/clutter/clutter-macros.h
include/muffin/clutter-0/clutter/clutter-main.h
include/muffin/clutter-0/clutter/clutter-marshal.h
include/muffin/clutter-0/clutter/clutter-muffin.h
include/muffin/clutter-0/clutter/clutter-offscreen-effect.h
include/muffin/clutter-0/clutter/clutter-page-turn-effect.h
include/muffin/clutter-0/clutter/clutter-paint-node.h
include/muffin/clutter-0/clutter/clutter-paint-nodes.h
include/muffin/clutter-0/clutter/clutter-pan-action.h
include/muffin/clutter-0/clutter/clutter-path-constraint.h
include/muffin/clutter-0/clutter/clutter-path.h
include/muffin/clutter-0/clutter/clutter-property-transition.h
include/muffin/clutter-0/clutter/clutter-rotate-action.h
include/muffin/clutter-0/clutter/clutter-script.h
include/muffin/clutter-0/clutter/clutter-scriptable.h
include/muffin/clutter-0/clutter/clutter-scroll-actor.h
include/muffin/clutter-0/clutter/clutter-settings.h
include/muffin/clutter-0/clutter/clutter-shader-effect.h
include/muffin/clutter-0/clutter/clutter-shader-types.h
include/muffin/clutter-0/clutter/clutter-snap-constraint.h
include/muffin/clutter-0/clutter/clutter-stage-manager.h
include/muffin/clutter-0/clutter/clutter-stage.h
include/muffin/clutter-0/clutter/clutter-swipe-action.h
include/muffin/clutter-0/clutter/clutter-tap-action.h
include/muffin/clutter-0/clutter/clutter-test-utils.h
include/muffin/clutter-0/clutter/clutter-text-buffer.h
include/muffin/clutter-0/clutter/clutter-text.h
include/muffin/clutter-0/clutter/clutter-texture.h
include/muffin/clutter-0/clutter/clutter-timeline.h
include/muffin/clutter-0/clutter/clutter-transition-group.h
include/muffin/clutter-0/clutter/clutter-transition.h
include/muffin/clutter-0/clutter/clutter-types.h
include/muffin/clutter-0/clutter/clutter-units.h
include/muffin/clutter-0/clutter/clutter-version.h
include/muffin/clutter-0/clutter/clutter-virtual-input-device.h
include/muffin/clutter-0/clutter/clutter-zoom-action.h
include/muffin/clutter-0/clutter/clutter.h
include/muffin/clutter-0/clutter/deprecated/clutter-actor.h
include/muffin/clutter-0/clutter/deprecated/clutter-alpha.h
include/muffin/clutter-0/clutter/deprecated/clutter-animatable.h
include/muffin/clutter-0/clutter/deprecated/clutter-animation.h
include/muffin/clutter-0/clutter/deprecated/clutter-animator.h
include/muffin/clutter-0/clutter/deprecated/clutter-backend.h
include/muffin/clutter-0/clutter/deprecated/clutter-behaviour-depth.h
include/muffin/clutter-0/clutter/deprecated/clutter-behaviour-ellipse.h
include/muffin/clutter-0/clutter/deprecated/clutter-behaviour-opacity.h
include/muffin/clutter-0/clutter/deprecated/clutter-behaviour-path.h
include/muffin/clutter-0/clutter/deprecated/clutter-behaviour-rotate.h
include/muffin/clutter-0/clutter/deprecated/clutter-behaviour-scale.h
include/muffin/clutter-0/clutter/deprecated/clutter-behaviour.h
include/muffin/clutter-0/clutter/deprecated/clutter-bin-layout.h
include/muffin/clutter-0/clutter/deprecated/clutter-box.h
include/muffin/clutter-0/clutter/deprecated/clutter-cairo-texture.h
include/muffin/clutter-0/clutter/deprecated/clutter-container.h
include/muffin/clutter-0/clutter/deprecated/clutter-frame-source.h
include/muffin/clutter-0/clutter/deprecated/clutter-group.h
include/muffin/clutter-0/clutter/deprecated/clutter-input-device.h
include/muffin/clutter-0/clutter/deprecated/clutter-keysyms.h
include/muffin/clutter-0/clutter/deprecated/clutter-list-model.h
include/muffin/clutter-0/clutter/deprecated/clutter-main.h
include/muffin/clutter-0/clutter/deprecated/clutter-media.h
include/muffin/clutter-0/clutter/deprecated/clutter-model.h
include/muffin/clutter-0/clutter/deprecated/clutter-rectangle.h
include/muffin/clutter-0/clutter/deprecated/clutter-score.h
include/muffin/clutter-0/clutter/deprecated/clutter-shader.h
include/muffin/clutter-0/clutter/deprecated/clutter-stage-manager.h
include/muffin/clutter-0/clutter/deprecated/clutter-stage.h
include/muffin/clutter-0/clutter/deprecated/clutter-state.h
include/muffin/clutter-0/clutter/deprecated/clutter-table-layout.h
include/muffin/clutter-0/clutter/deprecated/clutter-texture.h
include/muffin/clutter-0/clutter/deprecated/clutter-timeline.h
include/muffin/clutter-0/clutter/deprecated/clutter-timeout-pool.h
include/muffin/clutter-0/clutter/deprecated/clutter-util.h
%%WAYLAND%%include/muffin/clutter-0/clutter/egl/clutter-egl-headers.h
%%WAYLAND%%include/muffin/clutter-0/clutter/egl/clutter-egl.h
%%WAYLAND%%include/muffin/clutter-0/clutter/evdev/clutter-evdev.h
%%WAYLAND%%include/muffin/clutter-0/clutter/wayland/clutter-wayland-compositor.h
%%WAYLAND%%include/muffin/clutter-0/clutter/wayland/clutter-wayland-surface.h
include/muffin/clutter-0/clutter/x11/clutter-x11-texture-pixmap.h
include/muffin/clutter-0/clutter/x11/clutter-x11.h
include/muffin/cogl/cogl-pango/cogl-pango.h
include/muffin/cogl/cogl-path/cogl-path-enum-types.h
include/muffin/cogl/cogl-path/cogl-path-functions.h
include/muffin/cogl/cogl-path/cogl-path-types.h
include/muffin/cogl/cogl-path/cogl-path.h
include/muffin/cogl/cogl/cogl-atlas-texture.h
include/muffin/cogl/cogl/cogl-attribute-buffer.h
include/muffin/cogl/cogl/cogl-attribute.h
include/muffin/cogl/cogl/cogl-auto-texture.h
include/muffin/cogl/cogl/cogl-bitmap.h
include/muffin/cogl/cogl/cogl-buffer.h
include/muffin/cogl/cogl/cogl-clutter.h
include/muffin/cogl/cogl/cogl-color.h
include/muffin/cogl/cogl/cogl-context.h
include/muffin/cogl/cogl/cogl-defines.h
include/muffin/cogl/cogl/cogl-deprecated.h
include/muffin/cogl/cogl/cogl-depth-state.h
include/muffin/cogl/cogl/cogl-display.h
include/muffin/cogl/cogl/cogl-egl-defines.h
include/muffin/cogl/cogl/cogl-egl.h
include/muffin/cogl/cogl/cogl-error.h
include/muffin/cogl/cogl/cogl-euler.h
include/muffin/cogl/cogl/cogl-fence.h
include/muffin/cogl/cogl/cogl-frame-info.h
include/muffin/cogl/cogl/cogl-framebuffer.h
include/muffin/cogl/cogl/cogl-gles2-types.h
include/muffin/cogl/cogl/cogl-gles2.h
include/muffin/cogl/cogl/cogl-glib-source.h
include/muffin/cogl/cogl/cogl-glx.h
include/muffin/cogl/cogl/cogl-gtype-private.h
include/muffin/cogl/cogl/cogl-index-buffer.h
include/muffin/cogl/cogl/cogl-indices.h
include/muffin/cogl/cogl/cogl-macros.h
include/muffin/cogl/cogl/cogl-material-compat.h
include/muffin/cogl/cogl/cogl-matrix-stack.h
include/muffin/cogl/cogl/cogl-matrix.h
include/muffin/cogl/cogl/cogl-meta-texture.h
include/muffin/cogl/cogl/cogl-muffin.h
include/muffin/cogl/cogl/cogl-object.h
include/muffin/cogl/cogl/cogl-offscreen.h
include/muffin/cogl/cogl/cogl-onscreen-template.h
include/muffin/cogl/cogl/cogl-onscreen.h
include/muffin/cogl/cogl/cogl-output.h
include/muffin/cogl/cogl/cogl-pango.h
include/muffin/cogl/cogl/cogl-pipeline-layer-state.h
include/muffin/cogl/cogl/cogl-pipeline-state.h
include/muffin/cogl/cogl/cogl-pipeline.h
include/muffin/cogl/cogl/cogl-pixel-buffer.h
include/muffin/cogl/cogl/cogl-poll.h
include/muffin/cogl/cogl/cogl-primitive-texture.h
include/muffin/cogl/cogl/cogl-primitive.h
include/muffin/cogl/cogl/cogl-primitives.h
include/muffin/cogl/cogl/cogl-quaternion.h
include/muffin/cogl/cogl/cogl-renderer.h
include/muffin/cogl/cogl/cogl-shader.h
include/muffin/cogl/cogl/cogl-snippet.h
include/muffin/cogl/cogl/cogl-sub-texture.h
include/muffin/cogl/cogl/cogl-swap-chain.h
include/muffin/cogl/cogl/cogl-texture-2d-gl.h
include/muffin/cogl/cogl/cogl-texture-2d-sliced.h
include/muffin/cogl/cogl/cogl-texture-2d.h
include/muffin/cogl/cogl/cogl-texture-3d.h
include/muffin/cogl/cogl/cogl-texture-pixmap-x11.h
include/muffin/cogl/cogl/cogl-texture-rectangle.h
include/muffin/cogl/cogl/cogl-texture.h
include/muffin/cogl/cogl/cogl-type-casts.h
include/muffin/cogl/cogl/cogl-types.h
include/muffin/cogl/cogl/cogl-vector.h
include/muffin/cogl/cogl/cogl-version.h
include/muffin/cogl/cogl/cogl-vertex-buffer.h
%%WAYLAND%%include/muffin/cogl/cogl/cogl-wayland-server.h
include/muffin/cogl/cogl/cogl-xlib-renderer.h
include/muffin/cogl/cogl/cogl-xlib.h
include/muffin/cogl/cogl/cogl.h
include/muffin/cogl/cogl/cogl1-context.h
include/muffin/cogl/cogl/deprecated/cogl-auto-texture.h
include/muffin/cogl/cogl/deprecated/cogl-clutter-xlib.h
include/muffin/cogl/cogl/deprecated/cogl-clutter.h
include/muffin/cogl/cogl/deprecated/cogl-framebuffer-deprecated.h
include/muffin/cogl/cogl/deprecated/cogl-material-compat.h
include/muffin/cogl/cogl/deprecated/cogl-shader.h
include/muffin/cogl/cogl/deprecated/cogl-type-casts.h
include/muffin/cogl/cogl/deprecated/cogl-vertex-buffer.h
include/muffin/cogl/cogl/gl-prototypes/cogl-core-functions.h
include/muffin/cogl/cogl/gl-prototypes/cogl-gles2-functions.h
include/muffin/cogl/cogl/gl-prototypes/cogl-glsl-functions.h
include/muffin/cogl/cogl/gl-prototypes/cogl-in-gles-core-functions.h
include/muffin/cogl/cogl/gl-prototypes/cogl-in-gles2-core-functions.h
include/muffin/meta/atomnames.h
include/muffin/meta/boxes.h
include/muffin/meta/common.h
@ -26,15 +257,38 @@ include/muffin/meta/types.h
include/muffin/meta/util.h
include/muffin/meta/window.h
include/muffin/meta/workspace.h
lib/libmuffin.a
lib/libmuffin.so
lib/libmuffin.so.0
lib/libmuffin.so.0.0.0
lib/libmuffin-clutter-0.so
lib/libmuffin-cogl-0.so
lib/libmuffin-cogl-pango-0.so
lib/libmuffin-cogl-path-0.so
lib/muffin/Cally-0.gir
lib/muffin/Cally-0.typelib
lib/muffin/Clutter-0.gir
lib/muffin/Clutter-0.typelib
lib/muffin/ClutterX11-0.gir
lib/muffin/ClutterX11-0.typelib
lib/muffin/Cogl-0.gir
lib/muffin/Cogl-0.typelib
lib/muffin/CoglPango-0.gir
lib/muffin/CoglPango-0.typelib
lib/muffin/Meta-Muffin.0.gir
lib/muffin/Meta-Muffin.0.typelib
lib/muffin/libmuffin-clutter-0.so
lib/muffin/libmuffin-cogl-0.so
lib/muffin/libmuffin-cogl-pango-0.so
lib/muffin/libmuffin-cogl-path-0.so
lib/muffin/plugins/default.so
libdata/pkgconfig/muffin-clutter-0.pc
libdata/pkgconfig/muffin-clutter-x11-0.pc
libdata/pkgconfig/muffin-cogl-0.pc
libdata/pkgconfig/muffin-cogl-pango-0.pc
libdata/pkgconfig/muffin-cogl-path-0.pc
libdata/pkgconfig/libmuffin.pc
libdata/pkgconfig/muffin-plugins.pc
libexec/muffin-restart-helper
man/man1/muffin-message.1.gz
man/man1/muffin-theme-viewer.1.gz
man/man1/muffin-window-demo.1.gz
@ -133,3 +387,4 @@ share/locale/zh_CN/LC_MESSAGES/muffin.mo
share/locale/zh_HK/LC_MESSAGES/muffin.mo
share/locale/zh_TW/LC_MESSAGES/muffin.mo
%%DATADIR%%/icons/muffin-window-demo.png
%%DATADIR%%/theme/metacity-theme-3.xml

View File

@ -2,31 +2,34 @@
# $FreeBSD$
PORTNAME= cinnamon-desktop
PORTVERSION= 2.4.2
PORTREVISION= 3
PORTVERSION= 4.8.1
CATEGORIES= x11 gnome
DIST_SUBDIR= gnome3
DIST_SUBDIR= gnome
MAINTAINER= gnome@FreeBSD.org
COMMENT= Additional UI API for cinnamon
BUILD_DEPENDS= gnome-autogen.sh:devel/gnome-common \
xkeyboard-config>=0:x11/xkeyboard-config \
LICENSE= GPLv2 LGPL20
LICENSE_COMB= multi
LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING
LICENSE_FILE_LGPL20= ${WRKSRC}/COPYING.LIB
BUILD_DEPENDS= xkeyboard-config>=0:x11/xkeyboard-config \
libxkbfile>=0:x11/libxkbfile
LIB_DEPENDS= libpulse.so:audio/pulseaudio
RUN_DEPENDS= xkeyboard-config>=0:x11/xkeyboard-config \
libxkbfile>=0:x11/libxkbfile
USES= autoreconf gettext gmake gnome libtool localbase:ldflags \
pathfix pkgconfig python:2.7,run shebangfix tar:xz xorg
USE_XORG= x11 xrandr xext
USES= gettext gnome localbase meson pkgconfig python:3.5+,build shebangfix xorg
USE_GNOME= cairo gdkpixbuf2 gtk30 intltool introspection
USE_XORG= x11 xext xrandr
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= linuxmint
USE_GNOME= gnomeprefix gtk30 intlhack introspection:build
SHEBANG_FILES= files/usr/bin/cinnamon-desktop-migrate-mediakeys
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-gnome-distributor="FreeBSD GNOME Project"
INSTALL_TARGET= install-strip
SHEBANG_FILES= install-scripts/meson_install_schemas.py installer-test
GLIB_SCHEMAS= org.cinnamon.desktop.a11y.applications.gschema.xml \
org.cinnamon.desktop.a11y.keyboard.gschema.xml \
org.cinnamon.desktop.a11y.magnifier.gschema.xml \
@ -50,13 +53,9 @@ GLIB_SCHEMAS= org.cinnamon.desktop.a11y.applications.gschema.xml \
org.cinnamon.desktop.thumbnailers.gschema.xml \
org.cinnamon.desktop.wm.preferences.gschema.xml
post-patch:
@${MKDIR} ${WRKSRC}/files${PREFIX}
.for d in bin
@${MV} ${WRKSRC}/files/usr/${d} ${WRKSRC}/files${PREFIX}
.endfor
OPTIONS_DEFINE= ALSA
@${REINPLACE_CMD} -e 's|find -min|find . -|g' \
${WRKSRC}/files/Makefile.am
ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib
ALSA_MESON_TRUE= alsa
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (gnome3/linuxmint-cinnamon-desktop-2.4.2_GH0.tar.gz) = 62e2ff4fad405f8d4e7259dbeb2daf65c6f8b9995f2bb1e595a7cc0c2a7f9e0a
SIZE (gnome3/linuxmint-cinnamon-desktop-2.4.2_GH0.tar.gz) = 524074
TIMESTAMP = 1608877630
SHA256 (gnome/linuxmint-cinnamon-desktop-4.8.1_GH0.tar.gz) = cb9aeff385764ba33cf4f7ee2bb5cb7308960670e8fa9f3be38a1d431b20436d
SIZE (gnome/linuxmint-cinnamon-desktop-4.8.1_GH0.tar.gz) = 495417

View File

@ -1,24 +1,37 @@
bin/cinnamon-desktop-migrate-mediakeys
include/cinnamon-desktop/libcinnamon-desktop/cdesktop-enums.h
include/cinnamon-desktop/libcinnamon-desktop/gnome-bg-crossfade.h
include/cinnamon-desktop/libcinnamon-desktop/gnome-bg.h
include/cinnamon-desktop/libcinnamon-desktop/gnome-desktop-thumbnail.h
include/cinnamon-desktop/libcinnamon-desktop/gnome-desktop-utils.h
include/cinnamon-desktop/libcinnamon-desktop/gnome-installer.h
include/cinnamon-desktop/libcinnamon-desktop/gnome-pnp-ids.h
include/cinnamon-desktop/libcinnamon-desktop/gnome-rr-config.h
include/cinnamon-desktop/libcinnamon-desktop/gnome-rr-labeler.h
include/cinnamon-desktop/libcinnamon-desktop/gnome-rr.h
include/cinnamon-desktop/libcinnamon-desktop/gnome-wall-clock.h
include/cinnamon-desktop/libcinnamon-desktop/gnome-xkb-info.h
include/cinnamon-desktop/libcvc/gvc-channel-map.h
include/cinnamon-desktop/libcvc/gvc-mixer-card.h
include/cinnamon-desktop/libcvc/gvc-mixer-control.h
include/cinnamon-desktop/libcvc/gvc-mixer-sink-input.h
include/cinnamon-desktop/libcvc/gvc-mixer-source-output.h
include/cinnamon-desktop/libcvc/gvc-mixer-source.h
include/cinnamon-desktop/libcvc/gvc-mixer-stream.h
include/cinnamon-desktop/libcvc/gvc-mixer-ui-device.h
lib/girepository-1.0/CDesktopEnums-3.0.typelib
lib/girepository-1.0/CinnamonDesktop-3.0.typelib
lib/girepository-1.0/Cvc-1.0.typelib
lib/libcinnamon-desktop.so
lib/libcinnamon-desktop.so.4
lib/libcinnamon-desktop.so.4.0.0
lib/girepository-1.0/CDesktopEnums-3.0.typelib
lib/girepository-1.0/CinnamonDesktop-3.0.typelib
lib/libcvc.so
lib/libcvc.so.0
lib/libcvc.so.0.0.0
libdata/pkgconfig/cinnamon-desktop.pc
libexec/cinnamon-rr-debug
libdata/pkgconfig/cvc.pc
share/gir-1.0/CDesktopEnums-3.0.gir
share/gir-1.0/CinnamonDesktop-3.0.gir
share/gir-1.0/Cvc-1.0.gir
share/libcinnamon-desktop/pnp.ids
share/locale/af/LC_MESSAGES/cinnamon-desktop.mo
share/locale/am/LC_MESSAGES/cinnamon-desktop.mo

View File

@ -2,29 +2,25 @@
# $FreeBSD$
PORTNAME= cinnamon-menus
PORTVERSION= 2.4.1
PORTREVISION= 1
PORTVERSION= 4.8.2
CATEGORIES= x11 gnome
DIST_SUBDIR= gnome3
DIST_SUBDIR= gnome
MAINTAINER= gnome@FreeBSD.org
COMMENT= Additional UI API for cinnamon
BUILD_DEPENDS= gnome-autogen.sh:devel/gnome-common \
xkeyboard-config>=0:x11/xkeyboard-config \
libxkbfile>=0:x11/libxkbfile
RUN_DEPENDS= xkeyboard-config>=0:x11/xkeyboard-config \
libxkbfile>=0:x11/libxkbfile
LICENSE= GPLv2 LGPL21
LICENSE_COMB= multi
LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING
LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB
USES= gnome meson pkgconfig
USE_GNOME= glib20 introspection:build
USES= autoreconf gettext gmake gnome libtool pathfix pkgconfig \
python:2.7 tar:xz
USE_GNOME= gnomemenus3 gnomeprefix gtk30 introspection:build
USE_GITHUB= yes
GH_ACCOUNT= linuxmint
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
INSTALL_TARGET= install-strip
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (gnome3/linuxmint-cinnamon-menus-2.4.1_GH0.tar.gz) = 7ab04bb668c80c3a1acccaa07f1b5d22023f397841735f4c4243c10cda717e5c
SIZE (gnome3/linuxmint-cinnamon-menus-2.4.1_GH0.tar.gz) = 518008
TIMESTAMP = 1608877915
SHA256 (gnome/linuxmint-cinnamon-menus-4.8.2_GH0.tar.gz) = 6c19ebcea0d35a7a65cd70f1cdca2c5c739467ac6d2c2a1c38a5d580296707bd
SIZE (gnome/linuxmint-cinnamon-menus-4.8.2_GH0.tar.gz) = 101831

View File

@ -1,5 +1,5 @@
include/cinnamon-menus-3.0/gmenu-desktopappinfo.h
include/cinnamon-menus-3.0/gmenu-tree.h
lib/libcinnamon-menu-3.a
lib/libcinnamon-menu-3.so
lib/libcinnamon-menu-3.so.0
lib/libcinnamon-menu-3.so.0.0.1

View File

@ -2,56 +2,56 @@
# $FreeBSD$
PORTNAME= cinnamon-screensaver
PORTVERSION= 2.4.1
PORTREVISION= 2
PORTVERSION= 4.8.1
CATEGORIES= x11 gnome
DIST_SUBDIR= gnome3
DIST_SUBDIR= gnome
MAINTAINER= gnome@FreeBSD.org
COMMENT= GNOME screen saver and locker
COMMENT= Cinnamon screen saver and locker
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
LICENSE= GPLv2+ LGPL21
LICENSE_COMB= multi
LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING
LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB
BUILD_DEPENDS= gsettings-desktop-schemas>=3.2.0:devel/gsettings-desktop-schemas \
gnome-autogen.sh:devel/gnome-common
LIB_DEPENDS= libnotify.so:devel/libnotify \
BUILD_DEPENDS= gsettings-desktop-schemas>=3.2.0:devel/gsettings-desktop-schemas
LIB_DEPENDS= libaccountsservice.so:sysutils/accountsservice \
libcinnamon-desktop.so:x11/cinnamon-desktop \
libdbus-glib-1.so:devel/dbus-glib
RUN_DEPENDS= pam_helper:security/pam_helper \
gsettings-desktop-schemas>=3.2.0:devel/gsettings-desktop-schemas \
gnome-keyring>=0:security/gnome-keyring
RUN_DEPENDS= ${LOCALBASE}/lib/pam_gnome_keyring.so:security/gnome-keyring \
${PYTHON_PKGNAMEPREFIX}cairo>0:graphics/py-cairo@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}setproctitle>0:devel/py-setproctitle@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}python-xapp>0:x11/py-python-xapp@${PY_FLAVOR}
USES= gettext-tools gnome meson pkgconfig python:3.5+ shebangfix xorg
USES= autoreconf:build gettext gmake gnome libtool pathfix pkgconfig \
xorg
USE_GITHUB= yes
GH_ACCOUNT= linuxmint
USE_XORG= x11 xext xxf86vm xscrnsaver
USE_GNOME= gnomedesktop3 gnomeprefix intlhack intlhack libgnomekbd libxml2
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
CFLAGS= -I${LOCALBASE}/include -Wno-error=format-nonliteral
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS= --with-pam-prefix=${PREFIX}/etc/pam.d \
--without-systemd
INSTALL_TARGET= install-strip
USE_XORG= x11 xext xinerama xrandr xscrnsaver
USE_GNOME= cairo gdkpixbuf2 intltool introspection:build libgnomekbd pygobject3
INSTALLS_ICONS= yes
SHEBANG_GLOB= *.py
BINARY_ALIAS= python3=${PYTHON_CMD}
USE_LDCONFIG= yes
SUB_FILES+= cinnamon-screensaver.pam
post-patch:
@${REINPLACE_CMD} -e 's|/etc/pam.d|${PREFIX}/etc/pam.d|g' \
${WRKSRC}/src/gs-auth-pam.c
@${REINPLACE_CMD} -e 's|find -m|find . -m|g' \
${WRKSRC}/files/Makefile.in
@${ECHO} "#define PASSWD_HELPER_PROGRAM \"/usr/local/bin/pam_helper\"" \
>> ${WRKSRC}/config.h.in
@${FIND} ${WRKSRC} -name \*.py | ${XARGS} ${REINPLACE_CMD} \
-e 's|/usr/bin|${PREFIX}/bin|g' \
-e 's|/usr/lib|${PREFIX}/lib|g' \
-e 's|/usr/share|${PREFIX}/share|g'
@${REINPLACE_CMD} -e 's|/usr/share|${PREFIX}/share|' \
${WRKSRC}/src/pamhelper/cinnamon-screensaver-pam-helper.c \
${WRKSRC}/libcscreensaver/test-passwd.c
post-install:
${INSTALL_DATA} ${WRKDIR}/cinnamon-screensaver.pam \
${STAGEDIR}${PREFIX}/etc/pam.d/cinnamon-screensaver
${RM} -r ${STAGEDIR}${PREFIX}/etc/pam.d/pam.d/
pre-configure:
cd ${WRKSRC} && NOCONFIGURE=yes ${SH} ./autogen.sh
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (gnome3/linuxmint-cinnamon-screensaver-2.4.1_GH0.tar.gz) = e73c5d483cd4faeb8d7a4fec9bb1ab73df5cef5d05a3ab268f7a29947d2a483e
SIZE (gnome3/linuxmint-cinnamon-screensaver-2.4.1_GH0.tar.gz) = 142276
TIMESTAMP = 1608879152
SHA256 (gnome/linuxmint-cinnamon-screensaver-4.8.1_GH0.tar.gz) = e06a9f28cba55c38d1464d02917eb374de941fd09007608c239a348e7653b675
SIZE (gnome/linuxmint-cinnamon-screensaver-4.8.1_GH0.tar.gz) = 141996

View File

@ -1,3 +1,5 @@
auth include system
auth optional %%LOCALBASE%%/lib/pam_gnome_keyring.so
account include system
password include system
session include system

View File

@ -1,201 +0,0 @@
--- src/gs-auth-helper.c.orig 2011-03-16 17:24:06.000000000 -0500
+++ src/gs-auth-helper.c 2011-03-16 17:23:55.000000000 -0500
@@ -0,0 +1,198 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
+ *
+ * written by Olaf Kirch <okir@suse.de>
+ * xscreensaver, Copyright (c) 1993-2004 Jamie Zawinski <jwz@jwz.org>
+ *
+ * Permission to use, copy, modify, distribute, and sell this software and its
+ * documentation for any purpose is hereby granted without fee, provided that
+ * the above copyright notice appear in all copies and that both that
+ * copyright notice and this permission notice appear in supporting
+ * documentation. No representations are made about the suitability of this
+ * software for any purpose. It is provided "as is" without express or
+ * implied warranty.
+ */
+
+/* The idea here is to be able to run gnome-screensaver-dialog without any setuid bits.
+ * Password verification happens through an external program that you feed
+ * your password to on stdin. The external command is invoked with a user
+ * name argument.
+ *
+ * The external helper does whatever authentication is necessary. Currently,
+ * SuSE uses "unix2_chkpwd", which is a variation of "unix_chkpwd" from the
+ * PAM distribution.
+ *
+ * Normally, the password helper should just authenticate the calling user
+ * (i.e. based on the caller's real uid). This is in order to prevent
+ * brute-forcing passwords in a shadow environment. A less restrictive
+ * approach would be to allow verifying other passwords as well, but always
+ * with a 2 second delay or so. (Not sure what SuSE's "unix2_chkpwd"
+ * currently does.)
+ * -- Olaf Kirch <okir@suse.de>, 16-Dec-2003
+ */
+
+#include "config.h"
+
+#include <stdlib.h>
+#ifdef HAVE_UNISTD_H
+# include <unistd.h>
+#endif
+
+#include <stdio.h>
+#include <string.h>
+#include <sys/types.h>
+#include <pwd.h>
+#include <errno.h>
+#include <sys/wait.h>
+
+#include <glib.h>
+#include <glib/gstdio.h>
+
+#include "gs-auth.h"
+#include "subprocs.h"
+
+static gboolean verbose_enabled = FALSE;
+
+GQuark
+gs_auth_error_quark (void)
+{
+ static GQuark quark = 0;
+ if (! quark) {
+ quark = g_quark_from_static_string ("gs_auth_error");
+ }
+
+ return quark;
+}
+
+void
+gs_auth_set_verbose (gboolean enabled)
+{
+ verbose_enabled = enabled;
+}
+
+gboolean
+gs_auth_get_verbose (void)
+{
+ return verbose_enabled;
+}
+
+static gboolean
+ext_run (const char *user,
+ const char *typed_passwd,
+ gboolean verbose)
+{
+ int pfd[2], status;
+ pid_t pid;
+
+ if (pipe (pfd) < 0) {
+ return 0;
+ }
+
+ if (verbose) {
+ g_message ("ext_run (%s, %s)",
+ PASSWD_HELPER_PROGRAM, user);
+ }
+
+ block_sigchld ();
+
+ if ((pid = fork ()) < 0) {
+ close (pfd [0]);
+ close (pfd [1]);
+ return FALSE;
+ }
+
+ if (pid == 0) {
+ close (pfd [1]);
+ if (pfd [0] != 0) {
+ dup2 (pfd [0], 0);
+ }
+
+ /* Helper is invoked as helper service-name [user] */
+ execlp (PASSWD_HELPER_PROGRAM, PASSWD_HELPER_PROGRAM, "gnome-screensaver", user, NULL);
+ if (verbose) {
+ g_message ("%s: %s", PASSWD_HELPER_PROGRAM, g_strerror (errno));
+ }
+
+ exit (1);
+ }
+
+ close (pfd [0]);
+
+ /* Write out password to helper process */
+ if (!typed_passwd) {
+ typed_passwd = "";
+ }
+ write (pfd [1], typed_passwd, strlen (typed_passwd));
+ close (pfd [1]);
+
+ while (waitpid (pid, &status, 0) < 0) {
+ if (errno == EINTR) {
+ continue;
+ }
+
+ if (verbose) {
+ g_message ("ext_run: waitpid failed: %s\n",
+ g_strerror (errno));
+ }
+
+ unblock_sigchld ();
+ return FALSE;
+ }
+
+ unblock_sigchld ();
+
+ if (! WIFEXITED (status) || WEXITSTATUS (status) != 0) {
+ return FALSE;
+ }
+
+ return TRUE;
+}
+
+gboolean
+gs_auth_verify_user (const char *username,
+ const char *display,
+ GSAuthMessageFunc func,
+ gpointer data,
+ GError **error)
+{
+ gboolean res = FALSE;
+ char *password;
+
+ password = NULL;
+
+ /* ask for the password for user */
+ if (func != NULL) {
+ func (GS_AUTH_MESSAGE_PROMPT_ECHO_OFF,
+ "Password: ",
+ &password,
+ data);
+ }
+
+ if (password == NULL) {
+ return FALSE;
+ }
+
+ res = ext_run (username, password, gs_auth_get_verbose ());
+
+ return res;
+}
+
+gboolean
+gs_auth_init (void)
+{
+ return TRUE;
+}
+
+gboolean
+gs_auth_priv_init (void)
+{
+ /* Make sure the passwd helper exists */
+ if (g_access (PASSWD_HELPER_PROGRAM, X_OK) < 0) {
+ g_warning ("%s does not exist. "
+ "password authentication via "
+ "external helper will not work.",
+ PASSWD_HELPER_PROGRAM);
+ return FALSE;
+ }
+
+ return TRUE;
+}

View File

@ -1,8 +1,71 @@
bin/cinnamon-screensaver
bin/cinnamon-screensaver-command
etc/pam.d/cinnamon-screensaver
libexec/cinnamon-screensaver-dialog
man/man1/cinnamon-screensaver-command.1.gz
man/man1/cinnamon-screensaver.1.gz
include/cinnamon-screensaver/libcscreensaver/cs-auth.h
include/cinnamon-screensaver/libcscreensaver/setuid.h
lib/girepository-1.0/CScreensaver-1.0.typelib
lib/libcscreensaver.so
lib/libcscreensaver.so.0
lib/libcscreensaver.so.0.0.0
libdata/pkgconfig/cscreensaver.pc
libexec/cinnamon-screensaver-pam-helper
%%DATADIR%%/__init__.py
%%DATADIR%%/albumArt.py
%%DATADIR%%/audioPanel.py
%%DATADIR%%/baseWindow.py
%%DATADIR%%/cinnamon-screensaver-command.py
%%DATADIR%%/cinnamon-screensaver-main.py
%%DATADIR%%/cinnamon-screensaver.css
%%DATADIR%%/clock.py
%%DATADIR%%/config.py
%%DATADIR%%/constants.py
%%DATADIR%%/dbusdepot/__init__.py
%%DATADIR%%/dbusdepot/accountsServiceClient.py
%%DATADIR%%/dbusdepot/baseClient.py
%%DATADIR%%/dbusdepot/cinnamonClient.py
%%DATADIR%%/dbusdepot/consoleKitClient.py
%%DATADIR%%/dbusdepot/keybindingHandlerClient.py
%%DATADIR%%/dbusdepot/loginInterface.py
%%DATADIR%%/dbusdepot/logindClient.py
%%DATADIR%%/dbusdepot/mediaPlayerWatcher.py
%%DATADIR%%/dbusdepot/nameBlocker.py
%%DATADIR%%/dbusdepot/screensaverClient.py
%%DATADIR%%/dbusdepot/sessionClient.py
%%DATADIR%%/dbusdepot/uPowerClient.py
%%DATADIR%%/floating.py
%%DATADIR%%/infoPanel.py
%%DATADIR%%/manager.py
%%DATADIR%%/monitorView.py
%%DATADIR%%/osk.py
%%DATADIR%%/pamhelper/authClient.py
%%DATADIR%%/passwordEntry.py
%%DATADIR%%/playerControl.py
%%DATADIR%%/service.py
%%DATADIR%%/singletons.py
%%DATADIR%%/stage.py
%%DATADIR%%/status.py
%%DATADIR%%/unlock.py
%%DATADIR%%/util/__init__.py
%%DATADIR%%/util/eventHandler.py
%%DATADIR%%/util/fader.py
%%DATADIR%%/util/focusNavigator.py
%%DATADIR%%/util/grabHelper.py
%%DATADIR%%/util/keybindings.py
%%DATADIR%%/util/settings.py
%%DATADIR%%/util/trackers.py
%%DATADIR%%/util/utils.py
%%DATADIR%%/volumeControl.py
%%DATADIR%%/widgets/__init__.py
%%DATADIR%%/widgets/framedImage.py
%%DATADIR%%/widgets/marqueeLabel.py
%%DATADIR%%/widgets/notificationWidget.py
%%DATADIR%%/widgets/powerWidget.py
%%DATADIR%%/widgets/transparentButton.py
%%DATADIR%%/widgets/volumeSlider.py
share/applications/cinnamon-screensaver.desktop
share/dbus-1/services/org.cinnamon.ScreenSaver.service
share/gir-1.0/CScreensaver-1.0.gir
share/icons/hicolor/scalable/actions/screensaver-switch-users-symbolic.svg
share/icons/hicolor/scalable/actions/screensaver-unlock-symbolic.svg
share/icons/hicolor/scalable/status/screensaver-blank.svg
share/icons/hicolor/scalable/status/screensaver-notification-symbolic.svg

View File

@ -2,40 +2,44 @@
# $FreeBSD$
PORTNAME= cinnamon-session
PORTVERSION= 2.4.3
PORTREVISION= 3
PORTVERSION= 4.8.0
CATEGORIES= x11 gnome
DIST_SUBDIR= gnome3
DIST_SUBDIR= gnome
MAINTAINER= gnome@FreeBSD.org
COMMENT= Session component for the cinnamon desktop
BUILD_DEPENDS= gnome-autogen.sh:devel/gnome-common
LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib \
libjson-glib-1.0.so:devel/json-glib \
libupower-glib.so:sysutils/upower \
libcanberra.so:audio/libcanberra
RUN_DEPENDS= console-kit-daemon:sysutils/consolekit2 \
xdpyinfo:x11/xdpyinfo
LICENSE= GPLv2
LIB_DEPENDS= libdbus-1.so:devel/dbus \
libdbus-glib-1.so:devel/dbus-glib \
libxapp.so:x11/xapp \
libcanberra.so:audio/libcanberra
RUN_DEPENDS= console-kit-daemon:sysutils/consolekit2
USES= gl gnome meson pkgconfig python:3.5+,build shebangfix xorg
USES= autoreconf:build gettext gl gmake gnome libtool \
pathfix pkgconfig tar:xz xorg
USE_GITHUB= yes
GH_ACCOUNT= linuxmint
USE_GNOME= gnomeprefix gtk30 intlhack
USE_XORG= ice sm xau xext xtst xrender xtrans xcomposite
SHEBANG_FILES= data/meson_install_schemas.py
USE_GNOME= cairo gdkpixbuf2 gtk30
USE_XORG= ice sm x11 xau xcomposite xext xrender xtrans xtst
USE_GL= gl
INSTALLS_ICONS= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-docbook-docs
CPPFLAGS+= -I${LOCALBASE}/include -Wno-error=format-nonliteral -Wno-error=implicit-function-declaration
CFLAGS+= -I${LOCALBASE}/include -Wno-error=format-nonliteral -Wno-error=implicit-function-declaration
LDFLAGS+= -L${LOCALBASE}/lib
INSTALL_TARGET= install-strip
GLIB_SCHEMAS= org.cinnamon.SessionManager.gschema.xml
pre-configure:
cd ${WRKSRC} && ${SETENV} NOCONFIGURE=yes ${SH} ./autogen.sh
OPTIONS_DEFINE= DOCS GCONF IPV6
OPTIONS_DEFAULT= IPV6
DOCS_BUILD_DEPENDS= xmlto:textproc/xmlto
DOCS_MESON_TRUE= docbook
GCONF_USE= gnome=gconf2
GCONF_MESON_TRUE= gconf
IPV6_MESON_TRUE= ipv6
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (gnome3/linuxmint-cinnamon-session-2.4.3_GH0.tar.gz) = 07afa992ae1c513b3a1e83a2fd29f83305f697dd45ba04121521ba8a7c005733
SIZE (gnome3/linuxmint-cinnamon-session-2.4.3_GH0.tar.gz) = 903363
TIMESTAMP = 1606806314
SHA256 (gnome/linuxmint-cinnamon-session-4.8.0_GH0.tar.gz) = 66301a1eb748f646c419ced76f3388d8d6af0436716c737842cd85f359bd38d4
SIZE (gnome/linuxmint-cinnamon-session-4.8.0_GH0.tar.gz) = 199684

View File

@ -1,20 +0,0 @@
--- cinnamon-session/csm-logout-dialog.c.orig 2014-04-12 10:25:22.000000000 +0000
+++ cinnamon-session/csm-logout-dialog.c 2014-04-24 08:07:46.179191996 +0000
@@ -188,6 +188,8 @@
return csm_system_can_suspend (logout_dialog->priv->system);
#elif defined(HAVE_OLD_UPOWER)
return up_client_get_can_suspend (logout_dialog->priv->up_client);
+#else
+ return FALSE;
#endif
}
@@ -198,6 +200,8 @@
return csm_system_can_hibernate (logout_dialog->priv->system);
#elif defined(HAVE_OLD_UPOWER)
return up_client_get_can_hibernate (logout_dialog->priv->up_client);
+#else
+ return FALSE;
#endif
}

View File

@ -1,122 +1,15 @@
bin/cinnamon-session
bin/cinnamon-session-properties
bin/cinnamon-session-quit
libexec/cinnamon-session-check-accelerated
libexec/cinnamon-session-check-accelerated-helper
man/man1/cinnamon-session-properties.1.gz
man/man1/cinnamon-session-quit.1.gz
man/man1/cinnamon-session.1.gz
share/applications/cinnamon-session-properties.desktop
%%DATADIR%%/cinnamon-session-properties.glade
%%DATADIR%%/csm-inhibit-dialog.glade
%%DATADIR%%/hardware-compatibility
%%PORTDOCS%%%%DOCSDIR%%/dbus/cinnamon-session.html
share/icons/hicolor/16x16/apps/cinnamon-session-properties.png
share/icons/hicolor/22x22/apps/cinnamon-session-properties.png
share/icons/hicolor/24x24/apps/cinnamon-session-properties.png
share/icons/hicolor/32x32/apps/cinnamon-session-properties.png
share/icons/hicolor/48x48/apps/cinnamon-session-properties.png
share/icons/hicolor/scalable/apps/cinnamon-session-properties.svg
share/locale/af/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/am/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ar/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/as/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ast/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/az/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/be/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/be@latin/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/bg/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/bn/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/bn_IN/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/br/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/bs/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ca/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ca@valencia/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/crh/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/cs/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/csb/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/cy/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/da/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/de/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/dz/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/el/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/en@shaw/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/en_CA/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/en_GB/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/eo/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/es/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/et/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/eu/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/fa/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/fi/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/fr/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/fur/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/fy/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ga/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/gl/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/gu/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ha/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/he/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/hi/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/hr/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/hu/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/hy/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/id/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ig/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/is/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/it/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ja/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ka/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/km/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/kn/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ko/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ku/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/lt/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/lv/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/mai/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/mg/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/mi/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/mk/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ml/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/mn/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/mr/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ms/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/nb/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/nds/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ne/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/nl/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/nn/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/nso/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/oc/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/or/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/pa/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/pl/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ps/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/pt/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/pt_BR/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ro/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ru/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/rw/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/si/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/sk/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/sl/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/sq/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/sr/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/sr@latin/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/sv/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ta/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/te/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/th/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/tk/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/tr/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/ug/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/uk/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/uz/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/uz@cyrillic/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/vi/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/wa/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/xh/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/yo/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/zh_CN/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/zh_HK/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/zh_TW/LC_MESSAGES/cinnamon-session-3.0.mo
share/locale/zu/LC_MESSAGES/cinnamon-session-3.0.mo

View File

@ -2,10 +2,9 @@
# $FreeBSD$
PORTNAME= cinnamon
PORTVERSION= 2.4.6
PORTREVISION= 15
PORTVERSION= 4.8.4
CATEGORIES= x11 gnome
DIST_SUBDIR= gnome3
DIST_SUBDIR= gnome
MAINTAINER= gnome@FreeBSD.org
COMMENT= Fork of GNOME Shell with layout similar to GNOME 2
@ -13,148 +12,107 @@ COMMENT= Fork of GNOME Shell with layout similar to GNOME 2
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
DEPRECATED= Uses deprecated version of python
EXPIRATION_DATE= 2020-12-31
BUILD_DEPENDS= ca_root_nss>=0:security/ca_root_nss \
gnome-autogen.sh:devel/gnome-common
LIB_DEPENDS= libstartup-notification-1.so:x11/startup-notification \
libcaribou.so:accessibility/caribou \
libgnome-keyring.so:security/libgnome-keyring \
BUILD_DEPENDS= ca_root_nss>0:security/ca_root_nss
LIB_DEPENDS= libcjs.so:lang/cjs \
libmuffin.so:x11-wm/muffin \
libtelepathy-glib.so:net-im/telepathy-glib \
libtelepathy-logger.so:net-im/telepathy-logger \
libfolks.so:net-im/folks \
libpulse.so:audio/pulseaudio \
libcroco-0.6.so:textproc/libcroco \
libsoup-2.4.so:devel/libsoup \
libdbus-1.so:devel/dbus \
libdbus-glib-1.so:devel/dbus-glib \
libcogl.so:graphics/cogl \
libpolkit-agent-1.so:sysutils/polkit \
libclutter-glx-1.0.so:graphics/clutter \
libmozjs-24.so:lang/spidermonkey24 \
libcjs.so:lang/cjs \
libjson-glib-1.0.so:devel/json-glib \
libcinnamon-menu-3.so:x11/cinnamon-menus \
libcinnamon-desktop.so:x11/cinnamon-desktop \
libaccountsservice.so:sysutils/accountsservice
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0:devel/py-dbus@${PY_FLAVOR} \
ca_root_nss>=0:security/ca_root_nss \
gnome-themes-extra>=3.0.0:x11-themes/gnome-themes-extra \
libdbus-1.so:devel/dbus \
libpolkit-agent-1.so:sysutils/polkit \
libatk-bridge-2.0.so:accessibility/at-spi2-atk \
libstartup-notification-1.so:x11/startup-notification \
libsoup-2.4.so:devel/libsoup
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>0:devel/py-dbus@${PY_FLAVOR} \
ca_root_nss>0:security/ca_root_nss \
gnome-themes-extra>3.0.0:x11-themes/gnome-themes-extra \
caribou>0:accessibility/caribou \
cinnamon-control-center:sysutils/cinnamon-control-center \
cinnamon-translations>=0:misc/cinnamon-translations \
cinnamon-screensaver:x11/cinnamon-screensaver \
nemo:x11-fm/nemo \
${PY_PILLOW} \
${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml@${PY_FLAVOR}
${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lxml@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pyinotify>0:devel/py-pyinotify@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pexpect>0:misc/py-pexpect@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}python-pam>0:security/py-python-pam@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}tinycss>0:textproc/py-tinycss@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}distro>0:sysutils/py-distro@${PY_FLAVOR} \
timezonemap>0:misc/timezonemap \
gnome-backgrounds>0:x11-themes/gnome-backgrounds \
metacity:x11-wm/metacity \
tint2:x11/tint
USES= autoreconf compiler:c11 gettext gmake gnome gl libtool \
localbase:ldflags pathfix pkgconfig python:2.7 shebangfix xorg
USE_GITHUB= yes
USE_GL= gl egl
USE_GNOME= cairo evolutiondataserver3 gconf2 gnomedesktop3 \
gnomeprefix gtk30 intlhack introspection
USES= compiler:c11 gettext gl gnome meson pkgconfig python:3.5+ shebangfix xorg
USE_GNOME= cairo gdkpixbuf2 glib20 gtk30 intltool introspection libxml2 pygobject3
USE_XORG= x11 xfixes
USE_GL= gl
USE_GSTREAMER1= yes
USE_LDCONFIG= yes
USE_XORG= x11 xfixes sm xrandr xext xdamage xcomposite xi
USE_GITHUB= yes
GH_ACCOUNT= linuxmint
# this happens before moving the file to ${PREFIX} (which then will be copied to ${STAGEDIR}${PREFIX})
SHEBANG_FILES= files/* *.py
SHEBANG_GLOB= *.py
SHEBANG_FILES= files/*
INSTALLS_ICONS= yes
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--enable-compile-warnings=no \
--with-ca-certificates=${LOCALBASE}/share/certs/ca-root-nss.crt
INSTALL_TARGET= install-strip
BINARY_ALIAS= python3=${PYTHON_CMD}
MESON_ARGS= -Ddisable_networkmanager=true
GLIB_SCHEMAS= org.cinnamon.gschema.xml
OPTIONS_DEFINE= NLS
OPTIONS_DEFINE= DOCS NLS
OPTIONS_DEFAULT= DOCS NLS
OPTIONS_SUB= yes
NLS_RUN_DEPENDS= cinnamon-translations>=0:misc/cinnamon-translations
DOCS_BUILD_DEPENDS= gtkdocize:textproc/gtk-doc
DOCS_MESON_TRUE= docs
NLS_RUN_DEPENDS= cinnamon-translations>0:misc/cinnamon-translations
post-patch:
# we need this for intltoolize otherwise it can't copy the m4 file ...
@${MKDIR} ${WRKSRC}/m4
@${MKDIR} ${WRKSRC}/files${PREFIX}
.for d in bin lib share
@${MV} ${WRKSRC}/files/usr/${d} ${WRKSRC}/files${PREFIX}
.endfor
@${REINPLACE_CMD} -e '/prefix/s|/usr|${PREFIX}|g ;\
/datadir/s|/usr|${PREFIX}|g ;\
/libdir/s|/usr|${PREFIX}|g ;\
/libexecdir/s|/usr|${PREFIX}|g' \
${WRKSRC}/files/usr/share/cinnamon/cinnamon-menu-editor/cme/config.py
@${REINPLACE_CMD} -e 's|--warn-error||g' ${WRKSRC}/src/Makefile.am
@${REINPLACE_CMD} -e 's|/usr/share/cinnamon|${STAGEDIR}${PREFIX}/share/|g ;\
s|/usr/lib|${STAGEDIR}${PREFIX}/share/|g' \
${WRKSRC}/files/generate_desktop_files
@${REINPLACE_CMD} -e 's|"usr/lib|"${STAGEDIR}${PREFIX}/share/|g ;\
s|"usr/share|"${STAGEDIR}${PREFIX}/share/|g' \
${WRKSRC}/files/generate_desktop_files
@${MV} ${WRKSRC}/files/etc ${WRKSRC}/files${PREFIX}
@${RM} ${WRKSRC}/files/${PREFIX}/lib/cinnamon-settings/modules/cs_user.py
# Remove a broken link (is applications-merge used anywhere?)
@${RM} ${WRKSRC}/files/${PREFIX}/etc/xdg/menus/cinnamon-applications-merged
@${REINPLACE_CMD} -e 's|AM_GNU_GETTEXT_VERSION(\[0.17\])||g ;\
s|AM_GNU_GETTEXT(\[external\])||g' \
${WRKSRC}/configure.ac
@${REINPLACE_CMD} -e 's|find|find ${WRKSRC}/files|g' \
${WRKSRC}/files/Makefile.in
# is this really needed?
@${REINPLACE_CMD} -e 's|const NetworkManager = imports.gi.NetworkManager;||g ;\
s|const NMClient = imports.gi.NMClient;||g' \
${WRKSRC}/files${PREFIX}/share/cinnamon/applets/network\@cinnamon.org/applet.js
@${REINPLACE_CMD} -e 's|nm-applet;||g' \
${WRKSRC}/files${PREFIX}/share/cinnamon-session/sessions/cinnamon.session \
${WRKSRC}/files${PREFIX}/share/cinnamon-session/sessions/cinnamon2d.session
@${REINPLACE_CMD} -e '/prefix/s|/usr|${PREFIX}|g ; \
/datadir/s|/usr|${PREFIX}|g' \
${WRKSRC}/files${PREFIX}/lib/cinnamon-menu-editor/cme/config.py
@${FIND} ${WRKSRC} -name \* | ${XARGS} ${EGREP} -l "/usr/share/cinnamon/locale" | \
@${FIND} ${WRKSRC} -name \* -type f | ${XARGS} ${EGREP} -l "/usr/share/cinnamon/locale" | \
${XARGS} ${REINPLACE_CMD} -e "s|/usr/share/cinnamon/locale|${PREFIX}/share/locale|g"
@${FIND} ${WRKSRC} -name \* | ${XARGS} ${EGREP} -l "/usr/share" | \
@${FIND} ${WRKSRC} -name \* -type f | ${XARGS} ${EGREP} -l "/usr/share" | \
${XARGS} ${REINPLACE_CMD} -e "s|/usr/share|${PREFIX}/share|g"
@${FIND} ${WRKSRC} -name \* | ${XARGS} ${EGREP} -l "/usr/lib" | \
@${FIND} ${WRKSRC} -name \* -type f | ${XARGS} ${EGREP} -l "/usr/lib" | \
${XARGS} ${REINPLACE_CMD} -e "s|/usr/lib|${PREFIX}/lib|g"
# The cs_user.py is not patched until we have the python-pam module
@${REINPLACE_CMD} -e 's|"/usr/bin|"${PREFIX}/bin|g' \
${WRKSRC}/files${PREFIX}/share/cinnamon/applets/menu@cinnamon.org/applet.js \
${WRKSRC}/files${PREFIX}/share/cinnamon/applets/user@cinnamon.org/applet.js \
${WRKSRC}/files${PREFIX}/lib/cinnamon-settings/bin/Spices.py \
# ${WRKSRC}/files${PREFIX}/lib/cinnamon-settings/modules/cs_user.py \
${WRKSRC}/files${PREFIX}/lib/cinnamon-settings/modules/cs_screensaver.py \
${WRKSRC}/files${PREFIX}/bin/cinnamon-settings \
${WRKSRC}/files${PREFIX}/bin/cinnamon-launcher
@${FIND} ${WRKSRC} -name \* -type f | ${XARGS} ${EGREP} -l "/usr/bin" | \
${XARGS} ${REINPLACE_CMD} -e "s|/usr/bin|${PREFIX}/bin|g"
@${REINPLACE_CMD} -e '/cs-tablet/d; /cs-bluetooth/d; /cs-network/d' \
${WRKSRC}/files${PREFIX}/lib/cinnamon-settings/cinnamon-settings.py
@${REINPLACE_CMD} -e '/cs-bluetooth/d; /cs-network/d' \
${WRKSRC}/files/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py
@${REINPLACE_CMD} -e '/increase-opacity/d; /decrease-opacity/d' \
${WRKSRC}/files${PREFIX}/lib/cinnamon-settings/modules/cs_keyboard.py
# Some python files use #! /usr/bin/python (note the space between the bang and the python interpreter
@${FIND} ${WRKSRC} -name \* -type f | ${XARGS} ${EGREP} -l "#!.*\/usr\/bin\/python" | \
${XARGS} ${REINPLACE_CMD} -e "s|#!.*python.*|#!/usr/bin/env python|g"
#@${REINPLACE_CMD} -e 's/SIZE\/$$$$CONTEXT/CONTEXT\/$$$$SIZE/g' \
# ${WRKSRC}/data/icons/Makefile.am
# gtk-doc builds erroneous documentation files otherwise
@${FIND} ${WRKSRC} -name '*.orig' -type f -delete
@${FIND} ${WRKSRC} -name '*.bak' -type f -delete
@${REINPLACE_CMD} -e 's|=/usr/bin/|=${PREFIX}/bin/|g' \
${WRKSRC}/files${PREFIX}/share/xsessions/cinnamon2d.desktop \
${WRKSRC}/files${PREFIX}/share/xsessions/cinnamon.desktop \
${WRKSRC}/files${PREFIX}/share/applications/cinnamon2d.desktop
# Adhere to our hier(7)
@${MKDIR} ${WRKSRC}/files${PREFIX}
@${MV} ${WRKSRC}/files/etc ${WRKSRC}/files${PREFIX}
. for i in bin share
@${MV} ${WRKSRC}/files/usr/${i} ${WRKSRC}/files${PREFIX}
. endfor
post-install:
@${PYTHON_CMD} ${WRKSRC}/files/generate_desktop_files
# Ship the GNOME Backgrounds set
@${MKDIR} ${STAGEDIR}${PREFIX}/share/cinnamon-background-properties
@${LN} -s ${PREFIX}/share/gnome-background-properties/adwaita.xml \
${STAGEDIR}${PREFIX}/share/cinnamon-background-properties/adwaita.xml
@${LN} -s ${PREFIX}/share/gnome-background-properties/gnome-backgrounds.xml \
${STAGEDIR}${PREFIX}/share/cinnamon-background-properties/gnome-backgrounds.xml
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1559109478
SHA256 (gnome3/linuxmint-cinnamon-2.4.6_GH0.tar.gz) = f265afa5546f16ba27a6715a5eca90336c0c7339f049eeeaf81238af03a5b338
SIZE (gnome3/linuxmint-cinnamon-2.4.6_GH0.tar.gz) = 2813103
TIMESTAMP = 1608880462
SHA256 (gnome/linuxmint-cinnamon-4.8.4_GH0.tar.gz) = 2147218039fe125d9771a09b3c373cba9e0b05ee6d12c09101989e12df9cfec9
SIZE (gnome/linuxmint-cinnamon-4.8.4_GH0.tar.gz) = 2377064

View File

@ -1,11 +0,0 @@
--- configure.orig.ac 2013-02-24 19:16:00.316517145 +0100
+++ configure.ac 2013-02-24 19:16:08.735516143 +0100
@@ -82,7 +82,7 @@
gobject-introspection-1.0 >= $GOBJECT_INTROSPECTION_MIN_VERSION
libcanberra
polkit-agent-1 >= $POLKIT_MIN_VERSION xfixes
- libnm-glib libnm-util gnome-keyring-1)
+ gnome-keyring-1)
PKG_CHECK_MODULES(CINNAMON_PERF_HELPER, gtk+-3.0 gio-2.0)

View File

@ -1,12 +0,0 @@
--- files/usr/lib/cinnamon-settings/cinnamon-settings.orig.py 2013-02-26 17:20:22.252933982 +0100
+++ files/usr/lib/cinnamon-settings/cinnamon-settings.py 2013-02-26 17:21:19.081928251 +0100
@@ -17,7 +17,8 @@
if len(mod_files) is 0:
raise Exception("No settings modules found!!")
for i in range(len(mod_files)):
- mod_files[i] = mod_files[i].split('/')[5]
+ mod_files[i] = mod_files[i].split('/')
+ mod_files[i] = mod_files[i][len(mod_files[i])-1]
mod_files[i] = mod_files[i].split('.')[0]
if mod_files[i][0:3] != "cs_":
raise Exception("Settings modules must have a prefix of 'cs_' !!")

View File

@ -1,12 +0,0 @@
--- files/Makefile.orig.in 2013-02-24 22:40:45.200518946 +0100
+++ files/Makefile.in 2013-02-24 22:40:55.794515056 +0100
@@ -5,7 +5,7 @@
distclean:
install:
- find -mindepth 1 -maxdepth 1 -type d -exec cp -R {} $(DESTDIR)/ \;
+ find . -mindepth 1 -maxdepth 1 -type d -exec cp -R {} $(DESTDIR)/ \;
uninstall:
- find -mindepth 1 -type f -exec rm $(DESTDIR)/{} \;
+ find . -mindepth 1 -type f -exec rm $(DESTDIR)/{} \;

View File

@ -1,60 +0,0 @@
From c843f3664064742e2672e0fea528571a882d84ad Mon Sep 17 00:00:00 2001
From: Eli Schwartz <eschwartz93@gmail.com>
Date: Fri, 5 Apr 2019 11:28:45 -0400
Subject: [PATCH] PIL: remove unnnecessary version check and code fork (#8496)
The Image.VERSION variable was deprecated some time ago and is now gone
entirely. But its only use was to determine whether we were using at
least the latest version of PIL, or any version of its fork, Pillow. And
PIL was last developed in 2009 and does not support python3 at all, so
we are guaranteed to be using Pillow.
Moreover, the check does not really matter, as Pillow is guaranteed to
load any image it opens, without the user doing so manually.
Fixes #8495
--- files/usr/lib/cinnamon-settings/bin/imtools.py.orig 2019-05-23 10:40:29 UTC
+++ files/usr/lib/cinnamon-settings/bin/imtools.py
@@ -618,32 +618,6 @@ def has_transparency(image):
return (image.mode == 'P' and 'transparency' in image.info) or\
has_alpha(image)
-
-if Image.VERSION == '1.1.7':
-
- def split(image):
- """Work around for bug in Pil 1.1.7
-
- :param image: input image
- :type image: PIL image object
- :returns: the different color bands of the image (eg R, G, B)
- :rtype: tuple
- """
- image.load()
- return image.split()
-else:
-
- def split(image):
- """Work around for bug in Pil 1.1.7
-
- :param image: input image
- :type image: PIL image object
- :returns: the different color bands of the image (eg R, G, B)
- :rtype: tuple
- """
- return image.split()
-
-
def get_alpha(image):
"""Gets the image alpha band. Can handles P mode images with transpareny.
Returns a band with all values set to 255 if no alpha band exists.
@@ -654,7 +628,7 @@ def get_alpha(image):
:rtype: single band image object
"""
if has_alpha(image):
- return split(image)[-1]
+ return image.split()[-1]
if image.mode == 'P' and 'transparency' in image.info:
return image.convert('RGBA').split()[-1]
# No alpha layer, create one.

View File

@ -1,19 +0,0 @@
--- src/Makefile.am.orig 2015-01-19 15:45:53 UTC
+++ src/Makefile.am
@@ -165,7 +165,6 @@ cinnamon_real_SOURCES = \
main.c
cinnamon_real_CPPFLAGS = $(cinnamon_cflags)
cinnamon_real_LDADD = libcinnamon.la libcinnamon-js.la $(libcinnamon_la_LIBADD)
-cinnamon_real_DEPENDENCIES = libcinnamon.la
########################################
@@ -286,7 +285,7 @@ libcinnamon_la_LIBADD = \
libcinnamon_la_CPPFLAGS = $(cinnamon_cflags)
Cinnamon-0.1.gir: libcinnamon.la St-1.0.gir
-Cinnamon_0_1_gir_INCLUDES = Clutter-1.0 ClutterX11-1.0 Meta-Muffin.0 Soup-2.4 CMenu-3.0 NetworkManager-1.0 NMClient-1.0
+Cinnamon_0_1_gir_INCLUDES = Clutter-1.0 ClutterX11-1.0 Meta-Muffin.0 Soup-2.4 CMenu-3.0
Cinnamon_0_1_gir_CFLAGS = $(libcinnamon_la_CPPFLAGS) -I $(srcdir)
Cinnamon_0_1_gir_LIBS = libcinnamon.la
Cinnamon_0_1_gir_FILES = $(libcinnamon_la_gir_sources)

View File

@ -1,11 +0,0 @@
--- src/st/st-background-effect.orig.c 2013-02-24 19:18:24.592514376 +0100
+++ src/st/st-background-effect.c 2013-02-24 19:18:36.891516814 +0100
@@ -225,7 +225,7 @@
|| ( posy != self->posy_old)
|| ( width != self->width_old)
|| ( height != self->height_old)
- || (time_used > 50.0d))
+ || (time_used > 50.0))
{
self->posx_old = posx;

File diff suppressed because it is too large Load Diff