diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-06-10 23:45:38 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-06-11 00:56:09 +0200 |
commit | 5984f55f7313c66d94698c6b1f4b3491dab675ca (patch) | |
tree | 246e50b97c366222ef348326c1283044d8a7cf6e /x11-wm/e16 | |
parent | x11-wm/e16: Switch IUSE=pulseaudio to media-libs/libpulse (diff) | |
download | gentoo-5984f55f7313c66d94698c6b1f4b3491dab675ca.tar.gz gentoo-5984f55f7313c66d94698c6b1f4b3491dab675ca.tar.bz2 gentoo-5984f55f7313c66d94698c6b1f4b3491dab675ca.zip |
x11-wm/e16: drop 1.0.25
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-wm/e16')
-rw-r--r-- | x11-wm/e16/e16-1.0.25.ebuild | 146 |
1 files changed, 0 insertions, 146 deletions
diff --git a/x11-wm/e16/e16-1.0.25.ebuild b/x11-wm/e16/e16-1.0.25.ebuild deleted file mode 100644 index a7804aab9c99..000000000000 --- a/x11-wm/e16/e16-1.0.25.ebuild +++ /dev/null @@ -1,146 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Enlightenment Window Manager (E16)" -HOMEPAGE="https://www.enlightenment.org https://sourceforge.net/projects/enlightenment/" -SRC_URI="mirror://sourceforge/enlightenment/${P}.tar.xz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+alsa audiofile dbus debug +dialogs doc examples gnome -libhack modules nls no-container opengl +pango +poll player -pulseaudio select +sndfile sound +themes xcomposite +xft xi2 -xinerama xpresent +xrandr +xrender +xsm +xsync zoom" - -REQUIRED_USE=" - ^^ ( poll select ) - opengl? ( xcomposite ) - pango? ( xft ) - sound? ( - ^^ ( alsa player pulseaudio ) - alsa? ( ^^ ( sndfile audiofile ) ) - pulseaudio? ( ^^ ( sndfile audiofile ) ) - ) -" - -BDEPEND=" - nls? ( sys-devel/gettext ) - virtual/pkgconfig -" -COMMON_DEPEND=" - media-libs/freetype:2 - media-libs/imlib2[X] - virtual/libiconv - x11-libs/libX11 - x11-libs/libXext - x11-misc/xbitmaps - dbus? ( sys-apps/dbus ) - opengl? ( - media-libs/glu - media-libs/mesa - ) - pango? ( - dev-libs/glib:2 - x11-libs/pango[X] - ) - sound? ( - alsa? ( media-libs/alsa-lib ) - player? ( media-sound/alsa-utils ) - pulseaudio? ( || ( - media-sound/apulse[sdk] - media-sound/pulseaudio - ) ) - audiofile? ( media-libs/audiofile:= ) - sndfile? ( media-libs/libsndfile ) - ) - xcomposite? ( - x11-libs/libXcomposite - x11-libs/libXdamage - x11-libs/libXfixes - ) - xft? ( x11-libs/libXft ) - xinerama? ( x11-libs/libXinerama ) - xpresent? ( x11-libs/libXpresent ) - xrandr? ( x11-libs/libXrandr ) - xrender? ( x11-libs/libXrender ) - xsm? ( - x11-libs/libICE - x11-libs/libSM - ) - zoom? ( x11-libs/libXxf86vm ) -" -RDEPEND="${COMMON_DEPEND} - doc? ( app-doc/e16-docs ) - nls? ( virtual/libintl ) - themes? ( x11-themes/e16-themes ) - !x11-wm/enlightenment:0 -" -DEPEND="${COMMON_DEPEND} - x11-base/xorg-proto -" - -src_configure() { - local myconf=( - $(use_enable dbus) - $(use_enable debug libtrip) - $(use_enable dialogs) - $(use_enable doc docs) - $(use_enable libhack) - $(use_enable modules) - $(use_enable nls) - $(use_enable no-container) - $(use_enable opengl glx) - $(use_enable pango) - $(use_enable xcomposite composite) - $(use_enable xft) - $(use_enable xi2) - $(use_enable xinerama) - $(use_enable xpresent) - $(use_enable xrandr) - $(use_enable xrender) - $(use_enable xsm sm) - $(use_enable xsync) - $(use_enable zoom) - $(use_with gnome gnome gnome3) - --enable-mans - --disable-docs - --disable-esdtest - --disable-gcc-cpp - --disable-werror - --disable-xscrnsaver - ) - if use sound; then - use alsa && myconf+=( --enable-sound=alsa ) - use pulseaudio && myconf+=( --enable-sound=pulseaudio ) - use player && myconf+=( --enable-sound=player ) - - if use alsa || use pulseaudio; then - use sndfile && myconf+=( --with-sndldr=sndfile ) - use audiofile && myconf+=( --with-sndldr=audiofile ) - else - myconf+=( --without-sndldr ) - fi - else - myconf+=( --disable-sound --without-sndldr ) - fi - use poll && myconf+=( --with-evhan=poll ) - use select && myconf+=( --with-evhan=select ) - - econf "${myconf[@]}" -} - -src_install() { - default - docompress -x /usr/share/doc/${PF}/e16.html - dodoc COMPLIANCE docs/e16.html - use examples && dodoc -r sample-scripts -} - -pkg_postinst() { - einfo "In order to use custom fonts, put them into ~/.e16/fonts/ and use" - einfo "appropriate names in ~/.e16/fonts.cfg. \"Use theme font configuration\"" - einfo "in the Theme setting should be disabled for this to work." -} |