From f8e003ac6b2c37e3104b06c6b2533fe604f09ba4 Mon Sep 17 00:00:00 2001 From: Joonas Niilola Date: Mon, 4 May 2020 19:23:25 +0300 Subject: x11-wm/enlightenment: remove packagekit USE Signed-off-by: Joonas Niilola --- .../enlightenment/enlightenment-0.23.1-r1.ebuild | 116 +++++++++++++++++++++ x11-wm/enlightenment/enlightenment-0.23.1.ebuild | 116 --------------------- x11-wm/enlightenment/metadata.xml | 1 - 3 files changed, 116 insertions(+), 117 deletions(-) create mode 100644 x11-wm/enlightenment/enlightenment-0.23.1-r1.ebuild delete mode 100644 x11-wm/enlightenment/enlightenment-0.23.1.ebuild (limited to 'x11-wm') diff --git a/x11-wm/enlightenment/enlightenment-0.23.1-r1.ebuild b/x11-wm/enlightenment/enlightenment-0.23.1-r1.ebuild new file mode 100644 index 000000000000..e499a09c51e8 --- /dev/null +++ b/x11-wm/enlightenment/enlightenment-0.23.1-r1.ebuild @@ -0,0 +1,116 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit eutils flag-o-matic meson xdg-utils + +DESCRIPTION="Enlightenment window manager" +HOMEPAGE="https://www.enlightenment.org" +SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz" + +LICENSE="BSD-2" +SLOT="0.17/${PV%%_*}" +KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86" +IUSE="acpi bluetooth connman doc geolocation nls pam systemd udisks wayland wifi xwayland" + +REQUIRED_USE="xwayland? ( wayland )" + +RDEPEND=" + >=dev-libs/efl-1.22.3[eet,X] + virtual/udev + x11-libs/libXext + x11-libs/libxcb + x11-libs/xcb-util-keysyms + x11-misc/xkeyboard-config + acpi? ( sys-power/acpid ) + bluetooth? ( net-wireless/bluez ) + connman? ( dev-libs/efl[connman] ) + geolocation? ( app-misc/geoclue:2.0 ) + pam? ( sys-libs/pam ) + systemd? ( sys-apps/systemd ) + udisks? ( sys-fs/udisks:2 ) + wayland? ( + >=dev-libs/efl-1.22.0[drm,wayland] + dev-libs/wayland + x11-libs/libxkbcommon + x11-libs/pixman + ) + xwayland? ( + dev-libs/efl[X,wayland] + x11-base/xorg-server[wayland] + ) +" +BDEPEND=" + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" +DEPEND="${RDEPEND}" + +src_configure() { + local emesonargs=( + -D device-udev=true + -D install-enlightenment-menu=true + + -D bluez4=false + -D install-sysactions=false + -D mount-eeze=false + + -D packagekit=false + + $(meson_use udisks mount-udisks) + $(meson_use bluetooth bluez5) + $(meson_use connman) + $(meson_use geolocation) + $(meson_use nls) + $(meson_use pam) + $(meson_use systemd) + $(meson_use wayland wl) + $(meson_use wifi wireless) + $(meson_use xwayland) + ) + + if ! use wayland; then + emesonargs+=( + -D wl-buffer=false + -D wl-desktop-shell=false + -D wl-drm=false + -D wl-text-input=false + -D wl-weekeyboard=false + -D wl-wl=false + -D wl-x11=false + ) + fi + + append-cflags -fcommon + + meson_src_configure +} + +src_install() { + insinto /etc/enlightenment + newins "${FILESDIR}"/gentoo-sysactions.conf sysactions.conf + + use doc && local HTML_DOCS=( doc/. ) + meson_src_install +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_mimeinfo_database_update + + einfo "Additional programs to complete full EFL suite: " + optfeature "office file thumbnails" app-office/libreoffice app-office/libreoffice-bin + optfeature "an EFL-based IDE" dev-util/edi + optfeature "image viewer" media-gfx/ephoto + optfeature "ConnMan user interface for Enlightenment" net-misc/econnman + optfeature "system and process monitor" sys-process/evisum + optfeature "feature rich terminal emulator" x11-terms/terminology + optfeature "a modern flat enlightenment WM theme" x11-themes/e-flat-theme + optfeature "a matching GTK theme" x11-themes/e-gtk-theme +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_mimeinfo_database_update +} diff --git a/x11-wm/enlightenment/enlightenment-0.23.1.ebuild b/x11-wm/enlightenment/enlightenment-0.23.1.ebuild deleted file mode 100644 index 4d5cc6c09d12..000000000000 --- a/x11-wm/enlightenment/enlightenment-0.23.1.ebuild +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit eutils flag-o-matic meson xdg-utils - -DESCRIPTION="Enlightenment window manager" -HOMEPAGE="https://www.enlightenment.org" -SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz" - -LICENSE="BSD-2" -SLOT="0.17/${PV%%_*}" -KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86" -IUSE="acpi bluetooth connman doc geolocation nls packagekit pam systemd udisks wayland wifi xwayland" - -REQUIRED_USE="xwayland? ( wayland )" - -RDEPEND=" - >=dev-libs/efl-1.22.3[eet,X] - virtual/udev - x11-libs/libXext - x11-libs/libxcb - x11-libs/xcb-util-keysyms - x11-misc/xkeyboard-config - acpi? ( sys-power/acpid ) - bluetooth? ( net-wireless/bluez ) - connman? ( dev-libs/efl[connman] ) - geolocation? ( app-misc/geoclue:2.0 ) - packagekit? ( app-admin/packagekit-base ) - pam? ( sys-libs/pam ) - systemd? ( sys-apps/systemd ) - udisks? ( sys-fs/udisks:2 ) - wayland? ( - >=dev-libs/efl-1.22.0[drm,wayland] - dev-libs/wayland - x11-libs/libxkbcommon - x11-libs/pixman - ) - xwayland? ( - dev-libs/efl[X,wayland] - x11-base/xorg-server[wayland] - ) -" -BDEPEND=" - virtual/pkgconfig - nls? ( sys-devel/gettext ) -" -DEPEND="${RDEPEND}" - -src_configure() { - local emesonargs=( - -D device-udev=true - -D install-enlightenment-menu=true - - -D bluez4=false - -D install-sysactions=false - -D mount-eeze=false - - $(meson_use udisks mount-udisks) - $(meson_use bluetooth bluez5) - $(meson_use connman) - $(meson_use geolocation) - $(meson_use nls) - $(meson_use packagekit) - $(meson_use pam) - $(meson_use systemd) - $(meson_use wayland wl) - $(meson_use wifi wireless) - $(meson_use xwayland) - ) - - if ! use wayland; then - emesonargs+=( - -D wl-buffer=false - -D wl-desktop-shell=false - -D wl-drm=false - -D wl-text-input=false - -D wl-weekeyboard=false - -D wl-wl=false - -D wl-x11=false - ) - fi - - append-cflags -fcommon - - meson_src_configure -} - -src_install() { - insinto /etc/enlightenment - newins "${FILESDIR}"/gentoo-sysactions.conf sysactions.conf - - use doc && local HTML_DOCS=( doc/. ) - meson_src_install -} - -pkg_postinst() { - xdg_desktop_database_update - xdg_mimeinfo_database_update - - einfo "Additional programs to complete full EFL suite: " - optfeature "office file thumbnails" app-office/libreoffice app-office/libreoffice-bin - optfeature "an EFL-based IDE" dev-util/edi - optfeature "image viewer" media-gfx/ephoto - optfeature "ConnMan user interface for Enlightenment" net-misc/econnman - optfeature "system and process monitor" sys-process/evisum - optfeature "feature rich terminal emulator" x11-terms/terminology - optfeature "a modern flat enlightenment WM theme" x11-themes/e-flat-theme - optfeature "a matching GTK theme" x11-themes/e-gtk-theme -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_mimeinfo_database_update -} diff --git a/x11-wm/enlightenment/metadata.xml b/x11-wm/enlightenment/metadata.xml index d5f28f5d919c..d377aee6304b 100644 --- a/x11-wm/enlightenment/metadata.xml +++ b/x11-wm/enlightenment/metadata.xml @@ -6,7 +6,6 @@ Joonas Niilola - Enable module for package manager integration Enable XWayland application support -- cgit v1.2.3-65-gdbad