gnome-extra/cinnamon-desktop: New upstream version 4.0.1
authorKristian Fiskerstrand <k_f@gentoo.org>
Sat, 24 Nov 2018 18:29:18 +0000 (19:29 +0100)
committerKristian Fiskerstrand <k_f@gentoo.org>
Wed, 28 Nov 2018 19:55:46 +0000 (20:55 +0100)
Signed-off-by: Kristian Fiskerstrand <k_f@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

gnome-extra/cinnamon-desktop/Manifest
gnome-extra/cinnamon-desktop/cinnamon-desktop-4.0.1.ebuild [new file with mode: 0644]

index c52944fb87677576f1708b3bed05bd42465d99ba..d0b1f21ff4b48f2bb379553755853ea9fab453d8 100644 (file)
@@ -1,2 +1,3 @@
 DIST cinnamon-desktop-3.6.2.tar.gz 571728 BLAKE2B 17a3297b75a1ba9e34ff5ef8b7252748b4300fe40381b8d5942fcf5baaf7532a560cdbd918d2dc7ed34921e357c61f74d947a5e2174cd7b0310f91015a4bc4f4 SHA512 75af7ec916d43d02eebe9a83214cdb538067f6b674ca76e109f3bed909e61df11ec83350e97505ddaaed24f097e7b20512822e30b52d14a39d6a0e3d582d05fb
 DIST cinnamon-desktop-3.8.1.tar.gz 489295 BLAKE2B cc2216040387ff573d4cfc740e7e400862c8fc1361f38b2771ac94c490a8710e487ae1d33ab1a7ed98423c94e77bba32db6cbc563e9152c67b011459f91ad123 SHA512 d4b5e6d848a4cb01e811410da8b07d2a400f6632abba9cc0ed74e5321ba3fafd1ec9ac90307eb56ba7047dbfabbad9526e1348533c6207c9a7756c24751da933
+DIST cinnamon-desktop-4.0.1.tar.gz 489598 BLAKE2B 3d223faf0d9381bc5bcd4be131f9dbe1bea0f6ec57cc5413e24fac8a1855737ba55f55faff36436c8b8d6266be264d96ce51ec1bd8c1406f5737c9b3ee41c0a9 SHA512 68ce970736eac025c5cf73239dccd010d70197011e75258dc234bdbb52346466f51fc211c58d2ce730e63fb6250fa763ccbdf44cc08df7a028a0bea01826ddb4
diff --git a/gnome-extra/cinnamon-desktop/cinnamon-desktop-4.0.1.ebuild b/gnome-extra/cinnamon-desktop/cinnamon-desktop-4.0.1.ebuild
new file mode 100644 (file)
index 0000000..259596f
--- /dev/null
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{4,5,6} )
+
+inherit meson eutils gnome2 python-single-r1
+
+DESCRIPTION="A collection of libraries and utilites used by Cinnamon"
+HOMEPAGE="http://cinnamon.linuxmint.com/"
+SRC_URI="https://github.com/linuxmint/cinnamon-desktop/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+ FDL-1.1+ LGPL-2+"
+SLOT="0/4" # subslot = libcinnamon-desktop soname version
+KEYWORDS="~amd64 ~x86"
+IUSE="+introspection systemd"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPEND="${PYTHON_DEPS}
+       >=dev-libs/glib-2.37.3:2[dbus]
+       media-sound/pulseaudio[glib]
+       >=x11-libs/gdk-pixbuf-2.22:2[introspection?]
+       >=x11-libs/gtk+-3.3.16:3[introspection?]
+       >=x11-libs/libXext-1.1
+       >=x11-libs/libXrandr-1.3
+       x11-libs/cairo:=[X]
+       x11-libs/libX11
+       x11-libs/libxkbfile
+       x11-misc/xkeyboard-config
+       >=gnome-base/gsettings-desktop-schemas-3.5.91
+       introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
+       sys-apps/accountsservice
+"
+RDEPEND="${COMMON_DEPEND}
+       dev-python/pygobject:3[${PYTHON_USEDEP}]
+"
+DEPEND="${COMMON_DEPEND}
+       >=dev-util/gtk-doc-am-1.4
+       >=dev-util/intltool-0.40.6
+       gnome-base/gnome-common
+       x11-base/xorg-proto
+       virtual/pkgconfig
+"
+
+pkg_setup() {
+       python_setup
+}
+
+src_configure() {
+       meson_src_configure
+}
+
+src_install() {
+       meson_src_install
+
+       # set sane default gschema values for systemd users
+       if use systemd; then
+               insinto /usr/share/glib-2.0/schemas/
+               newins "${FILESDIR}"/${PN}-2.6.4.systemd.gschema.override ${PN}.systemd.gschema.override
+       fi
+}