blob: 901e96cdfd19c8f398218637b040d5707c4eca40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2024 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"
BDEPEND="
virtual/pkgconfig
"
CDEPEND="
cdaudio? ( media-libs/libcdaudio )
libgtop? ( gnome-base/libgtop )
opengl? ( media-libs/glu media-libs/mesa[X(+)] )
>=media-libs/imlib2-1.2.0
x11-libs/libX11
x11-libs/libXext
x11-wm/e16
"
RDEPEND="${CDEPEND}
!x11-plugins/epplets
"
DEPEND="${CDEPEND}
x11-base/xorg-proto
"
PATCHES=( "${FILESDIR}/${PN}-0.17-musl.patch" )
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
}
|