commit:     72ff64a51be8a5f1c6d8d02b20caeb5cb618ce18
Author:     Joonas Niilola <juippis <AT> gmail <DOT> com>
AuthorDate: Sat May 18 13:29:32 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue May 21 08:38:26 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72ff64a5

x11-wm/enlightenment: remove old 0.22.3

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Joonas Niilola <juippis <AT> gmail.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 x11-wm/enlightenment/Manifest                    |   1 -
 x11-wm/enlightenment/enlightenment-0.22.3.ebuild | 130 -----------------------
 2 files changed, 131 deletions(-)

diff --git a/x11-wm/enlightenment/Manifest b/x11-wm/enlightenment/Manifest
index fe91a567097..46b3d3c8e60 100644
--- a/x11-wm/enlightenment/Manifest
+++ b/x11-wm/enlightenment/Manifest
@@ -1,2 +1 @@
-DIST enlightenment-0.22.3.tar.xz 25648576 BLAKE2B 
1abb1fab18c5932b65f1183875bbe0955ce1d608758af0855c550f5581c774bd19dd0b6c8dd8c724b668ff843e1ed4928531f30b60436d9182a07a65fa2af9e3
 SHA512 
01a9386ee009c76c46cee7176cdeb7f4e97977bdd5014caa51cceeff228ad72f97a362d1eff7e0240e3e2df8b24a6c9d1516c8ab05bd82d288abcfde0d171abd
 DIST enlightenment-0.22.4.tar.xz 25656972 BLAKE2B 
5e24e226e5f9295d27658656aefaf39cc80ad3634ba1937ef1a3c8e1adeba8cf3cbab2c43cb9e80ac298107a7a64e248ff252084b19c26a974ffff9eb9e6c3fa
 SHA512 
9f4366bfed4d65e7baaeffd4f5b8ba6febf6f9888e6156dd3e100c9fca42c377f76f156f3dd1f6ab97745ffcb69e1e8d320937e41333797580624a9b74d298ba

diff --git a/x11-wm/enlightenment/enlightenment-0.22.3.ebuild 
b/x11-wm/enlightenment/enlightenment-0.22.3.ebuild
deleted file mode 100644
index 9e7dbed74f6..00000000000
--- a/x11-wm/enlightenment/enlightenment-0.22.3.ebuild
+++ /dev/null
@@ -1,130 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit 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 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86"
-
-E_CONF_MODS=(
-       applications bindings dialogs display
-       interaction intl menus paths
-       performance randr shelves theme
-       window-manipulation window-remembers
-)
-
-E_NORM_MODS=(
-       appmenu backlight battery bluez4
-       clock conf cpufreq everything
-       fileman fileman-opinfo gadman geolocation
-       ibar ibox lokker luncher
-       mixer msgbus music-control notification
-       packagekit pager pager-plain quickaccess
-       shot start syscon sysinfo
-       systray tasks teamwork temperature
-       tiling time vkbd winlist
-       wireless wizard wl-buffer wl-desktop-shell
-       wl-drm wl-text-input wl-weekeyboard wl-wl
-       wl-x11 xkbswitch xwayland
-)
-
-IUSE_E_MODULES=(
-       ${E_CONF_MODS[@]/#/enlightenment_modules_conf-}
-       ${E_NORM_MODS[@]/#/enlightenment_modules_}
-)
-
-IUSE="acpi connman doc nls pam systemd udisks wayland ${IUSE_E_MODULES[@]/#/+}"
-
-RDEPEND="
-       >=dev-libs/efl-1.20.5[eet,X]
-       virtual/udev
-       x11-libs/libXext
-       x11-libs/libxcb
-       x11-libs/xcb-util-keysyms
-       x11-misc/xkeyboard-config
-       acpi? ( sys-power/acpid )
-       connman? ( net-misc/connman )
-       pam? ( sys-libs/pam )
-       systemd? ( sys-apps/systemd )
-       udisks? ( sys-fs/udisks:2 )
-       wayland? (
-               =dev-libs/efl-1.20*[drm,wayland]
-               >=dev-libs/wayland-1.12.0
-               x11-libs/libxkbcommon
-               x11-libs/pixman
-       )
-"
-DEPEND="
-       ${RDEPEND}
-       virtual/pkgconfig
-       nls? ( sys-devel/gettext )
-"
-
-src_prepare() {
-       default
-
-       xdg_environment_reset
-
-       sed -i 's/Categories=Audio/Categories=AudioVideo/g' 
src/modules/mixer/emixer.desktop || die
-}
-
-src_configure() {
-       local emesonargs=(
-               -D device-udev=true
-               -D install-sysactions=false
-               -D mount-udisks=$(usex udisks true false)
-               -D connman=$(usex connman true false)
-               -D nls=$(usex nls true false)
-               -D pam=$(usex pam true false)
-               -D systemd=$(usex systemd true false)
-               -D wayland=$(usex wayland true false)
-       )
-
-       local u c
-       for u in ${IUSE_E_MODULES[@]} ; do
-               c=${u#enlightenment_modules_}
-
-               case ${c} in
-               wl-*|xwayland)
-                       if ! use wayland ; then
-                               emesonargs+=( -D ${c}=false )
-                               continue
-                       fi
-
-               ;;
-               esac
-
-               emesonargs+=( -D ${c}=$(usex ${u} true false) )
-
-       done
-
-       meson_src_configure
-}
-
-src_install() {
-       insinto /etc/enlightenment
-       newins "${FILESDIR}"/gentoo-sysactions.conf sysactions.conf
-
-       if use doc ; then
-               local HTML_DOCS=( doc/. )
-       fi
-
-       meson_src_install
-}
-
-pkg_postinst() {
-       xdg_desktop_database_update
-       xdg_mimeinfo_database_update
-}
-
-pkg_postrm() {
-       xdg_desktop_database_update
-       xdg_mimeinfo_database_update
-}

Reply via email to