blob: 96d89a0965ea8ef07ca47e8a5eceb84e9fe75d84 (
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
# Tests require lots of disk space
CHECKREQS_DISK_BUILD=10G
inherit check-reqs cmake eutils virtualx xdg-utils
DESCRIPTION="Extracts audio tracks from an audio CD image to separate tracks"
HOMEPAGE="https://flacon.github.io/"
SRC_URI="https://github.com/flacon/flacon/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="test"
BDEPEND="
virtual/pkgconfig
dev-qt/linguist-tools:5
"
RDEPEND="
app-i18n/uchardet
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
"
DEPEND="${RDEPEND}
dev-qt/qtconcurrent:5
test? (
dev-qt/qttest:5
media-libs/flac
media-sound/mac
media-sound/shntool
media-sound/ttaenc
media-sound/wavpack
)
"
RESTRICT="!test? ( test )"
PATCHES=(
"${FILESDIR}/${P}-no-man-compress.patch"
"${FILESDIR}/${P}-ninja-warning.patch" # git master
)
pkg_pretend() {
use test && check-reqs_pkg_pretend
}
pkg_setup() {
use test && check-reqs_pkg_setup
}
src_configure() {
local mycmakeargs=(
-DBUILD_TESTS="$(usex test)"
)
cmake_src_configure
}
src_test() {
virtx "${BUILD_DIR}/tests/${PN}_test"
}
pkg_postinst() {
elog "${PN} optionally supports formats listed below."
elog "(List will be empty if all extra packages are installed.)"
elog "Please install the required packages and restart ${PN}."
optfeature 'FLAC input and output support' media-libs/flac
optfeature 'WavPack input and output support' media-sound/wavpack
optfeature 'APE input support' media-sound/mac
optfeature 'TTA input support' media-sound/ttaenc
optfeature 'AAC output support' media-libs/faac
optfeature 'MP3 output support' media-sound/lame
optfeature 'Vorbis output support' media-sound/vorbis-tools
optfeature 'MP3 Replay Gain support' media-sound/mp3gain
optfeature 'Vorbis Replay Gain support' media-sound/vorbisgain
xdg_icon_cache_update
xdg_desktop_database_update
}
pkg_postrm() {
xdg_icon_cache_update
xdg_desktop_database_update
}
|