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: Sat, 24 Aug 2019 05:45:58
Message-Id: 1566625548.66d98fbc5dad37a53f8c84c53afa8d8ba04ca36c.juippis@gentoo
1 commit: 66d98fbc5dad37a53f8c84c53afa8d8ba04ca36c
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 24 05:43:01 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 24 05:45:48 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66d98fbc
7
8 x11-wm/enlightenment: clean old
9
10 Package-Manager: Portage-2.3.72, Repoman-2.3.17
11 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
12
13 x11-wm/enlightenment/enlightenment-0.22.4.ebuild | 101 -----------------------
14 1 file changed, 101 deletions(-)
15
16 diff --git a/x11-wm/enlightenment/enlightenment-0.22.4.ebuild b/x11-wm/enlightenment/enlightenment-0.22.4.ebuild
17 deleted file mode 100644
18 index 61ce2239169..00000000000
19 --- a/x11-wm/enlightenment/enlightenment-0.22.4.ebuild
20 +++ /dev/null
21 @@ -1,101 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit meson xdg-utils
28 -
29 -DESCRIPTION="Enlightenment window manager"
30 -HOMEPAGE="https://www.enlightenment.org"
31 -SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz"
32 -
33 -LICENSE="BSD-2"
34 -SLOT="0.17/${PV%%_*}"
35 -KEYWORDS="amd64 ~ppc x86"
36 -IUSE="acpi bluetooth connman doc geolocation nls packagekit pam systemd udisks wayland wifi"
37 -
38 -RDEPEND="
39 - >=dev-libs/efl-1.20.5[eet,X]
40 - virtual/udev
41 - x11-libs/libXext
42 - x11-libs/libxcb
43 - x11-libs/xcb-util-keysyms
44 - x11-misc/xkeyboard-config
45 - acpi? ( sys-power/acpid )
46 - bluetooth? ( net-wireless/bluez )
47 - connman? ( dev-libs/efl[connman] )
48 - geolocation? ( app-misc/geoclue:2.0 )
49 - packagekit? ( app-admin/packagekit-base )
50 - pam? ( sys-libs/pam )
51 - systemd? ( sys-apps/systemd )
52 - udisks? ( sys-fs/udisks:2 )
53 - wayland? (
54 - >=dev-libs/efl-1.21.0[drm,wayland]
55 - dev-libs/wayland
56 - x11-libs/libxkbcommon
57 - x11-libs/pixman
58 - )
59 -"
60 -BDEPEND="
61 - virtual/pkgconfig
62 - nls? ( sys-devel/gettext )
63 -"
64 -DEPEND="${RDEPEND}"
65 -
66 -src_prepare() {
67 - default
68 - xdg_environment_reset
69 -}
70 -
71 -src_configure() {
72 - local emesonargs=(
73 - -D device-udev=true
74 - -D install-sysactions=false
75 - -D mount-udisks=$(usex udisks true false)
76 - -D bluez4=$(usex bluetooth true false)
77 - -D connman=$(usex connman true false)
78 - -D geolocation=$(usex geolocation true false)
79 - -D nls=$(usex nls true false)
80 - -D packagekit=$(usex packagekit true false)
81 - -D pam=$(usex pam true false)
82 - -D systemd=$(usex systemd true false)
83 - -D wayland=$(usex wayland true false)
84 - -D wireless=$(usex wifi true false)
85 - )
86 -
87 - if ! use wayland; then
88 - emesonargs+=(
89 - -D wl-buffer=false
90 - -D wl-desktop-shell=false
91 - -D wl-drm=false
92 - -D wl-text-input=false
93 - -D wl-weekeyboard=false
94 - -D wl-wl=false
95 - -D wl-x11=false
96 - -D xwayland=false
97 - )
98 - fi
99 -
100 - meson_src_configure
101 -}
102 -
103 -src_install() {
104 - insinto /etc/enlightenment
105 - newins "${FILESDIR}"/gentoo-sysactions.conf sysactions.conf
106 -
107 - if use doc; then
108 - local HTML_DOCS=( doc/. )
109 - fi
110 -
111 - meson_src_install
112 -}
113 -
114 -pkg_postinst() {
115 - xdg_desktop_database_update
116 - xdg_mimeinfo_database_update
117 -}
118 -
119 -pkg_postrm() {
120 - xdg_desktop_database_update
121 - xdg_mimeinfo_database_update
122 -}