diff options
author | Kristian Fiskerstrand <k_f@gentoo.org> | 2018-11-24 19:27:35 +0100 |
---|---|---|
committer | Kristian Fiskerstrand <k_f@gentoo.org> | 2018-11-28 20:55:31 +0100 |
commit | 325cbf4249ddcc16143d64b137a01a3185577c3b (patch) | |
tree | f66fd039d741fe249fd41632020d4607d7590d38 /gnome-extra | |
parent | gnome-extra/cinnamon-settings-daemon: New upstream version 4.0.2 (diff) | |
download | gentoo-325cbf4249ddcc16143d64b137a01a3185577c3b.tar.gz gentoo-325cbf4249ddcc16143d64b137a01a3185577c3b.tar.bz2 gentoo-325cbf4249ddcc16143d64b137a01a3185577c3b.zip |
gnome-extra/cinnamon-session: New upstream version 4.0.0
Signed-off-by: Kristian Fiskerstrand <k_f@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/cinnamon-session/Manifest | 1 | ||||
-rw-r--r-- | gnome-extra/cinnamon-session/cinnamon-session-4.0.0.ebuild | 67 |
2 files changed, 68 insertions, 0 deletions
diff --git a/gnome-extra/cinnamon-session/Manifest b/gnome-extra/cinnamon-session/Manifest index 2b47bba17ec3..e1f2ff789dd1 100644 --- a/gnome-extra/cinnamon-session/Manifest +++ b/gnome-extra/cinnamon-session/Manifest @@ -1,2 +1,3 @@ DIST cinnamon-session-3.6.1.tar.gz 205682 BLAKE2B 5e4bb931da715feebec6c980cd59d82b682d75234ab0e2c4135948fd83b81ea8c57536b6b2a0294162de82288af57a31977e77383e9c426357ecb4dacc4bd1e4 SHA512 a8ae2d332ba8e9f83ab9444c56611b28bd1c32ef9764fd5e883b7835940ec2b6c8b87f8af1735a3c2fe59ad4f15af5f5dab065cd368aaa09d4d25f6156ec6137 DIST cinnamon-session-3.8.0.tar.gz 197983 BLAKE2B e0a8b57637668586f941c64df6e610a5df385a6ea67a71e1e666344a73e0095861beb9d958344dfd18988960df1e4380e72257c5f490ab344a4e0de6a749c2d1 SHA512 c737ee77396d38e27d93a5d2cec76d9072038f6a096c6071f450a9a3eb71d83beb1da3ff3320820d7989731281e5a108c330eec333a7fcb66ca7a37f16501c76 +DIST cinnamon-session-4.0.0.tar.gz 198396 BLAKE2B 713573d445f09cfa4707c3ccaff04bdcc95ea7b60568fc136359258022af287df66992444da462f0488dc4049036deb190523695e519eb61329e922e05871c39 SHA512 7e91bef4e294175fa3333a96d0cb9d06db36c9b5a86d6e52734447ea62d411535760fc46713961a46299ebeb3767a0abd4768279e9f6c176ae882de9b7aedc5e diff --git a/gnome-extra/cinnamon-session/cinnamon-session-4.0.0.ebuild b/gnome-extra/cinnamon-session/cinnamon-session-4.0.0.ebuild new file mode 100644 index 000000000000..db74701d4f65 --- /dev/null +++ b/gnome-extra/cinnamon-session/cinnamon-session-4.0.0.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit meson eutils gnome2 + +DESCRIPTION="Cinnamon session manager" +HOMEPAGE="http://cinnamon.linuxmint.com/" +SRC_URI="https://github.com/linuxmint/cinnamon-session/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+ FDL-1.1+ LGPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc ipv6 systemd" + +COMMON_DEPEND=" + >=dev-libs/dbus-glib-0.88 + >=dev-libs/glib-2.37.3:2 + media-libs/libcanberra + x11-libs/gdk-pixbuf:2 + >=x11-libs/gtk+-3:3 + x11-libs/cairo + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXau + x11-libs/libXcomposite + x11-libs/libXext + x11-libs/libXrender + x11-libs/libXtst + x11-libs/pango[X] + virtual/opengl + systemd? ( >=sys-apps/systemd-183 + sys-auth/polkit ) + !systemd? ( sys-power/upower + sys-auth/polkit[elogind] ) +" + +RDEPEND="${COMMON_DEPEND} + >=gnome-extra/cinnamon-desktop-2.6[systemd=] + !systemd? ( sys-auth/elogind[policykit] ) +" +DEPEND="${COMMON_DEPEND} + dev-libs/libxslt + >=dev-util/intltool-0.40.6 + virtual/pkgconfig + doc? ( app-text/xmlto ) + + gnome-base/gnome-common +" + +src_prepare() { + eapply "${FILESDIR}/${PN}-3.8.0-elogind.patch" \ + "${FILESDIR}/${PN}-3.8.0-elogind2.patch" + gnome2_src_prepare +} + +src_configure() { + meson_src_configure \ + -Dwith-gconf=false \ + -Dwith-docbook=$(usex doc true false) \ + -Dwith-ipv6=$(usex ipv6 true false) +} + +src_install() { + meson_src_install +} |