mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
48 lines
935 B
Bash
48 lines
935 B
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Enlightenment DR16 epplets"
|
|
HOMEPAGE="https://www.enlightenment.org https://sourceforge.net/projects/enlightenment/"
|
|
SRC_URI="https://downloads.sourceforge.net/enlightenment/${P}.tar.xz"
|
|
|
|
LICENSE="GPL-2+ BSD public-domain"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="cdaudio libgtop opengl"
|
|
|
|
RDEPEND="
|
|
media-libs/imlib2
|
|
x11-libs/libX11
|
|
x11-libs/libXext
|
|
x11-wm/e16
|
|
cdaudio? ( media-libs/libcdaudio )
|
|
libgtop? ( gnome-base/libgtop:= )
|
|
opengl? ( media-libs/libglvnd[X] )
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
x11-base/xorg-proto
|
|
"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_configure() {
|
|
local myconf=(
|
|
$(use_enable cdaudio)
|
|
$(use_enable opengl glx)
|
|
$(use_with libgtop)
|
|
--disable-esd
|
|
--disable-static
|
|
--disable-werror
|
|
)
|
|
econf "${myconf[@]}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${ED}"/usr -name '*.la' -delete || die
|
|
}
|