Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/enlightenment/
Date: Tue, 04 Aug 2020 16:50:56
Message-Id: 1596559838.7eaeed52dd60be97e82383649bb0a835753148db.juippis@gentoo
1 commit: 7eaeed52dd60be97e82383649bb0a835753148db
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 4 16:38:02 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 4 16:50:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eaeed52
7
8 x11-wm/enlightenment: bump to 0.24.2
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 x11-wm/enlightenment/Manifest | 1 +
13 x11-wm/enlightenment/enlightenment-0.24.2.ebuild | 111 +++++++++++++++++++++++
14 2 files changed, 112 insertions(+)
15
16 diff --git a/x11-wm/enlightenment/Manifest b/x11-wm/enlightenment/Manifest
17 index 3cc2ff5e50a..d332eb64802 100644
18 --- a/x11-wm/enlightenment/Manifest
19 +++ b/x11-wm/enlightenment/Manifest
20 @@ -1 +1,2 @@
21 DIST enlightenment-0.24.1.tar.xz 28713452 BLAKE2B 1d4713a4887a687a5425888e65b358cd01fe12e42865799265f5092dc6784eb29c25b5563805d1c7be9856037b0570027c2f01a8eb848299e7729d905e291470 SHA512 3835d898f1fdb96ab6539543e9af910b4a9078372af5cfd90abb33c0d5ecb41496499629c54613e3fec4c230233b69bf1abde68f3ffba4996c69979a526da418
22 +DIST enlightenment-0.24.2.tar.xz 28716060 BLAKE2B 432722693beaece97eeb318a1120b6101bf76e1536347b824b00ba4378326c093f3333eefa634d7266a59c09dc4337c8bd1f9a4d89e0a4c9a223fdcacd924fa0 SHA512 5d96b17d89e822271048a0a6a8356658fd02680f54da2f15dde7c632752bbf0a396eaf23986164402e61f631e68937b3ba7c29d9dd787ddd470cff4a390abace
23
24 diff --git a/x11-wm/enlightenment/enlightenment-0.24.2.ebuild b/x11-wm/enlightenment/enlightenment-0.24.2.ebuild
25 new file mode 100644
26 index 00000000000..bf2169b4ee5
27 --- /dev/null
28 +++ b/x11-wm/enlightenment/enlightenment-0.24.2.ebuild
29 @@ -0,0 +1,111 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit eutils meson xdg-utils
36 +
37 +DESCRIPTION="Enlightenment window manager"
38 +HOMEPAGE="https://www.enlightenment.org"
39 +SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz"
40 +
41 +LICENSE="BSD-2"
42 +SLOT="0.17/${PV%%_*}"
43 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
44 +IUSE="acpi bluetooth connman doc geolocation nls pam policykit systemd udisks wayland wifi xwayland"
45 +
46 +REQUIRED_USE="xwayland? ( wayland )"
47 +
48 +RDEPEND=">=dev-libs/efl-1.24.1[eet,fontconfig,X]
49 + virtual/udev
50 + x11-libs/libXext
51 + x11-libs/libxcb
52 + x11-libs/xcb-util-keysyms
53 + x11-misc/xkeyboard-config
54 + acpi? ( sys-power/acpid )
55 + bluetooth? ( net-wireless/bluez )
56 + connman? ( dev-libs/efl[connman] )
57 + geolocation? ( app-misc/geoclue:2.0 )
58 + pam? ( sys-libs/pam )
59 + policykit? ( sys-auth/polkit )
60 + systemd? ( sys-apps/systemd )
61 + udisks? ( sys-fs/udisks:2 )
62 + wayland? (
63 + >=dev-libs/efl-1.22.0[drm,wayland]
64 + dev-libs/wayland
65 + x11-libs/libxkbcommon
66 + x11-libs/pixman
67 + )
68 + xwayland? (
69 + dev-libs/efl[X,wayland]
70 + x11-base/xorg-server[wayland]
71 + )"
72 +BDEPEND="virtual/pkgconfig
73 + nls? ( sys-devel/gettext )"
74 +DEPEND="${RDEPEND}"
75 +
76 +src_configure() {
77 + local emesonargs=(
78 + -D device-udev=true
79 + -D install-enlightenment-menu=true
80 +
81 + -D install-sysactions=true
82 + -D install-system=true
83 + -D mount-eeze=false
84 +
85 + -D packagekit=false
86 +
87 + $(meson_use udisks mount-udisks)
88 + $(meson_use bluetooth bluez5)
89 + $(meson_use connman)
90 + $(meson_use geolocation)
91 + $(meson_use nls)
92 + $(meson_use pam)
93 + $(meson_use policykit polkit)
94 + $(meson_use systemd)
95 + $(meson_use wayland wl)
96 + $(meson_use wifi wireless)
97 + $(meson_use xwayland)
98 + )
99 +
100 + if ! use wayland; then
101 + emesonargs+=(
102 + -D wl-buffer=false
103 + -D wl-desktop-shell=false
104 + -D wl-drm=false
105 + -D wl-text-input=false
106 + -D wl-weekeyboard=false
107 + -D wl-wl=false
108 + -D wl-x11=false
109 + )
110 + fi
111 +
112 + meson_src_configure
113 +}
114 +
115 +src_install() {
116 + use doc && local HTML_DOCS=( doc/. )
117 + meson_src_install
118 +}
119 +
120 +pkg_postinst() {
121 + xdg_desktop_database_update
122 + xdg_icon_cache_update
123 + xdg_mimeinfo_database_update
124 +
125 + elog "Additional programs to complete full EFL suite: "
126 + optfeature "office file thumbnails" app-office/libreoffice app-office/libreoffice-bin
127 + optfeature "an EFL-based IDE" dev-util/edi
128 + optfeature "image viewer" media-gfx/ephoto
129 + optfeature "ConnMan user interface for Enlightenment" net-misc/econnman
130 + optfeature "system and process monitor" sys-process/evisum
131 + optfeature "feature rich terminal emulator" x11-terms/terminology
132 + optfeature "a modern flat enlightenment WM theme" x11-themes/e-flat-theme
133 + optfeature "a matching GTK theme" x11-themes/e-gtk-theme
134 +}
135 +
136 +pkg_postrm() {
137 + xdg_desktop_database_update
138 + xdg_icon_cache_update
139 + xdg_mimeinfo_database_update
140 +}