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, 08 Feb 2022 09:11:23
Message-Id: 1644311457.60fa788760f60e64fabbfba9459236085c369118.juippis@gentoo
1 commit: 60fa788760f60e64fabbfba9459236085c369118
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 8 08:52:12 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 8 09:10:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60fa7887
7
8 x11-wm/enlightenment: add 0.25.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.25.2.ebuild | 120 +++++++++++++++++++++++
14 2 files changed, 121 insertions(+)
15
16 diff --git a/x11-wm/enlightenment/Manifest b/x11-wm/enlightenment/Manifest
17 index 07d702c1bc9d..02404c574b2d 100644
18 --- a/x11-wm/enlightenment/Manifest
19 +++ b/x11-wm/enlightenment/Manifest
20 @@ -1,2 +1,3 @@
21 DIST enlightenment-0.24.2.tar.xz 28716060 BLAKE2B 432722693beaece97eeb318a1120b6101bf76e1536347b824b00ba4378326c093f3333eefa634d7266a59c09dc4337c8bd1f9a4d89e0a4c9a223fdcacd924fa0 SHA512 5d96b17d89e822271048a0a6a8356658fd02680f54da2f15dde7c632752bbf0a396eaf23986164402e61f631e68937b3ba7c29d9dd787ddd470cff4a390abace
22 DIST enlightenment-0.25.1.tar.xz 405708428 BLAKE2B 14d70880534992673ad3c0ff8adbbc3ae0ec4f3c8f9a935d6e07c6642a2874710270bbb2bb2fab741aaa615779465c4a609ec200098e402673a0ee1af733fbbc SHA512 b64521adb725bb04455d0512e884e77c79cabbf3ecf28765a02d002672aaf261a2a6c98c9d1d3dc85baac84d9637b8217500249ea74833b35d87c88194ee1da1
23 +DIST enlightenment-0.25.2.tar.xz 405711836 BLAKE2B 042a525ebe0109a0fa8f496efcdb2bc020264f38f3dd42f749f061e755b07ec29512c884a29db54500e23cd02f964787549c9382968f02949a040bdcf2bb61e6 SHA512 fdcb363d2fff4003e2d9902df14ed1f465084f9739e8d6cd7c7506b8df77fdaa1749f1db472e7fccb0e6e69545dc9925d4d15f73f1f4538309f282e19b6c0810
24
25 diff --git a/x11-wm/enlightenment/enlightenment-0.25.2.ebuild b/x11-wm/enlightenment/enlightenment-0.25.2.ebuild
26 new file mode 100644
27 index 000000000000..3d01153a518e
28 --- /dev/null
29 +++ b/x11-wm/enlightenment/enlightenment-0.25.2.ebuild
30 @@ -0,0 +1,120 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +inherit meson optfeature xdg
37 +
38 +DESCRIPTION="Enlightenment window manager"
39 +HOMEPAGE="https://www.enlightenment.org"
40 +SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz"
41 +
42 +LICENSE="BSD-2"
43 +
44 +# Historically enlightenment was slotted to separate e16 from e17. e16 is now
45 +# packaged as x11-wm/e16, but the slot is kept because it's more complicated to
46 +# reset it rather than just to keep it.
47 +SLOT="0.17/${PV%%_*}"
48 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
49 +IUSE="acpi bluetooth connman doc exif geolocation nls pam policykit systemd udisks wayland xwayland"
50 +
51 +REQUIRED_USE="xwayland? ( wayland )"
52 +
53 +RDEPEND=">=dev-libs/efl-1.26.1[eet,fontconfig,X]
54 + virtual/udev
55 + x11-libs/libXext
56 + x11-libs/libxcb
57 + x11-libs/xcb-util-keysyms
58 + x11-misc/xkeyboard-config
59 + acpi? ( sys-power/acpid )
60 + bluetooth? ( net-wireless/bluez )
61 + connman? ( dev-libs/efl[connman] )
62 + exif? ( media-libs/libexif )
63 + geolocation? ( app-misc/geoclue:2.0 )
64 + pam? ( sys-libs/pam )
65 + policykit? ( sys-auth/polkit )
66 + systemd? ( sys-apps/systemd )
67 + udisks? ( sys-fs/udisks:2 )
68 + wayland? (
69 + || (
70 + dev-libs/efl[systemd]
71 + dev-libs/efl[elogind]
72 + )
73 + dev-libs/efl[drm,wayland]
74 + dev-libs/wayland
75 + x11-libs/libxkbcommon
76 + x11-libs/pixman
77 + )
78 + xwayland? (
79 + dev-libs/efl[X,wayland]
80 + x11-base/xwayland
81 + )"
82 +BDEPEND="virtual/pkgconfig
83 + nls? ( sys-devel/gettext )"
84 +DEPEND="${RDEPEND}"
85 +
86 +src_configure() {
87 + local emesonargs=(
88 + -D device-udev=true
89 + -D elput=true
90 + -D install-enlightenment-menu=true
91 +
92 + -D install-sysactions=true
93 + -D install-system=true
94 + -D mount-eeze=false
95 +
96 + -D packagekit=false
97 +
98 + $(meson_use udisks mount-udisks)
99 + $(meson_use bluetooth bluez5)
100 + $(meson_use connman)
101 + $(meson_use exif libexif)
102 + $(meson_use geolocation)
103 + $(meson_use nls)
104 + $(meson_use pam)
105 + $(meson_use policykit polkit)
106 + $(meson_use systemd)
107 + $(meson_use wayland wl)
108 + $(meson_use xwayland)
109 + )
110 +
111 + if ! use wayland; then
112 + emesonargs+=(
113 + -D wl-buffer=false
114 + -D wl-desktop-shell=false
115 + -D wl-drm=false
116 + -D wl-text-input=false
117 + -D wl-weekeyboard=false
118 + -D wl-wl=false
119 + -D wl-x11=false
120 + )
121 + fi
122 +
123 + meson_src_configure
124 +}
125 +
126 +src_install() {
127 + use doc && local HTML_DOCS=( doc/. )
128 + meson_src_install
129 +}
130 +
131 +pkg_postinst() {
132 + xdg_desktop_database_update
133 + xdg_icon_cache_update
134 + xdg_mimeinfo_database_update
135 +
136 + optfeature_header "Additional programs to complement the full EFL suite:"
137 + optfeature "efl-based pinentry interface" app-crypt/pinentry[efl]
138 + optfeature "an efl-based text editor" app-editors/ecrire
139 + optfeature "better monitor backlight and brightness controls" app-misc/ddcutil
140 + optfeature "office file thumbnails" app-office/libreoffice app-office/libreoffice-bin
141 + optfeature "an EFL-based IDE" dev-util/edi
142 + optfeature "image viewer" media-gfx/entice
143 + optfeature "image viewer" media-gfx/ephoto
144 + optfeature "a media player" media-video/rage
145 + optfeature "ConnMan user interface for Enlightenment" net-misc/econnman
146 + optfeature "system and process monitor" sys-process/evisum
147 + optfeature "feature rich terminal emulator" x11-terms/terminology
148 + optfeature "a modern flat enlightenment WM theme" x11-themes/e-flat-theme
149 + optfeature "a matching GTK theme" x11-themes/e-gtk-theme
150 +}