blob: a7082b3d01f7d77859f48c9f292e80fafc675e2f (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake xdg
DESCRIPTION="Fast and light music player"
HOMEPAGE="https://gogglesmm.github.io"
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="+dbus +flac +mad +vorbis +ogg +opus +aac +pulseaudio +opengl nls"
RDEPEND="x11-libs/fox:1.7
x11-libs/libSM
x11-libs/libICE
dev-db/sqlite
media-libs/taglib
dev-libs/expat
dev-libs/libgcrypt:=
dbus? ( sys-apps/dbus )
flac? ( media-libs/flac:= )
mad? ( media-libs/libmad )
vorbis? ( media-libs/libvorbis )
ogg? ( media-libs/libogg )
opus? ( media-libs/opus )
aac? ( media-libs/faad2 )
pulseaudio? ( media-sound/pulseaudio )
opengl? ( media-libs/libepoxy virtual/glu )"
DEPEND="dev-build/cmake ${RDEPEND}"
PATCHES=( "${FILESDIR}"/"${P}"-use-fox-1.7.67.patch )
src_prepare() {
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DWITH_DBUS="$(usex dbus)"
-DWITH_OPENGL="$(usex opengl)"
-DWITH_NLS="$(usex nls)"
-DWITH_CFOX=OFF
)
cmake_src_configure
}
|