blob: f7320da421be50cd0897e0444b38e2136ce509b0 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Copyright 2019-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake git-r3
DESCRIPTION="Scans your music files and tags them with loudness information"
HOMEPAGE="https://github.com/jiixyj/loudness-scanner/"
EGIT_REPO_URI="https://github.com/jiixyj/loudness-scanner.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE="+ffmpeg gtk mpg123 musepack qt5 sndfile"
REQUIRED_USE="|| ( sndfile ffmpeg mpg123 musepack )"
DEPEND="
dev-libs/glib
media-libs/libebur128
media-libs/taglib
ffmpeg? ( media-video/ffmpeg )
mpg123? ( media-sound/mpg123 )
musepack? ( media-sound/musepack-tools )
sndfile? ( media-libs/libsndfile )
gtk? (
gnome-base/librsvg:2
x11-libs/cairo
x11-libs/gtk+:2
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtsvg:5
dev-qt/qtwidgets:5
)
"
RDEPEND="${DEPEND}"
src_prepare() {
cmake_src_prepare
sed -i -e 's|".",|"'${EROOT}'/usr/'$(get_libdir)'/loudness-scanner",|g' \
"${S}"/scanner/inputaudio/input.c
}
src_configure() {
local -a mycmakeargs=(
-DCMAKE_SKIP_RPATH=ON
-DBUILD_SHARED_LIBS:BOOL=OFF # use static internal libraries
-DDISABLE_FFMPEG:BOOL=$(usex ffmpeg no yes)
-DDISABLE_GSTREAMER:BOOL=ON # depends on obsolete gstreamer-0.10
-DDISABLE_GTK2:BOOL=$(usex gtk no yes)
-DDISABLE_MPCDEC:BOOL=$(usex musepack no yes)
-DDISABLE_MPG123:BOOL=$(usex mpg123 no yes)
-DDISABLE_QT4:BOOL=ON
-DDISABLE_QT5:BOOL=$(usex qt5 no yes)
-DDISABLE_RSVG2:BOOL=$(usex gtk no yes)
-DDISABLE_SNDFILE:BOOL=$(usex sndfile no yes)
)
cmake_src_configure
}
src_install() {
dobin "${BUILD_DIR}"/loudness
use gtk && dobin "${BUILD_DIR}"/loudness-drop-gtk
use qt5 && dobin "${BUILD_DIR}"/loudness-drop-qt5
insinto /usr/$(get_libdir)/loudness-scanner
doins "${BUILD_DIR}"/libinput_*.so
einstalldocs
}
|