blob: cda9762eee2078539b737e0ae42653c64a47cf9e (
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
# Copyright 1999-2023 Gentoo Authors
# Copyright 2025 Redcore Linux Project
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake xdg udev
MY_PV=$(ver_cut 1-2)
DESCRIPTION="Advanced Digital DJ tool based on Qt"
HOMEPAGE="https://mixxx.org/"
SRC_URI="https://github.com/mixxxdj/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
LICENSE="GPL-2"
SLOT="0"
IUSE="aac ffmpeg hid keyfinder lv2 modplug mp3 mp4 opus qtkeychain shout wavpack"
RDEPEND="
dev-cpp/benchmark
dev-cpp/ms-gsl
dev-db/sqlite
dev-libs/glib:2
dev-libs/protobuf:=
dev-qt/qt5compat:6
dev-qt/qtbase:6[dbus,gui,network,opengl,sql,widgets,xml]
dev-qt/qtdeclarative:6
dev-qt/qtshadertools:6
dev-qt/qtsvg:6
dev-qt/qttools:6
media-libs/chromaprint
media-libs/flac:=
media-libs/libebur128
media-libs/libid3tag:=
media-libs/libogg
media-libs/libsndfile
media-libs/libsoundtouch
media-libs/libvorbis
media-libs/portaudio[alsa]
media-libs/portmidi
media-libs/rubberband
media-libs/taglib
media-libs/vamp-plugin-sdk
media-sound/lame
sci-libs/fftw:3.0=
sys-power/upower
virtual/glu
virtual/libusb:1
virtual/opengl
virtual/udev
x11-libs/libX11
aac? (
media-libs/faad2
media-libs/libmp4v2
)
ffmpeg? ( media-video/ffmpeg:= )
hid? ( dev-libs/hidapi )
keyfinder? ( media-libs/libkeyfinder )
lv2? ( media-libs/lilv )
modplug? ( media-libs/libmodplug )
mp3? ( media-libs/libmad )
mp4? ( media-libs/libmp4v2:= )
opus? ( media-libs/opusfile )
qtkeychain? ( dev-libs/qtkeychain:=[qt6(+)] )
wavpack? ( media-sound/wavpack )
"
# libshout-idjc-2.4.6 is required. Please check and re-add once it's
# available in ::gentoo
# Meanwhile we're using the bundled libshout-idjc. See bug #775443
#shout? ( >=media-libs/libshout-idjc-2.4.6 )
DEPEND="${RDEPEND}
dev-qt/qtbase:6[concurrent]
"
BDEPEND="
dev-qt/qtbase:6[test]
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/${PN}-2.3.0-docs.patch
"${FILESDIR}"/${PN}-2.3.0-cmake.patch
)
src_configure() {
local mycmakeargs=(
# Not available on Linux yet and requires additional deps
-DBATTERY="off"
-DBROADCAST="$(usex shout on off)"
-DCCACHE_SUPPORT="off"
-DFAAD="$(usex aac on off)"
-DFFMPEG="$(usex ffmpeg on off)"
-DHID="$(usex hid on off)"
-DINSTALL_USER_UDEV_RULES=OFF
-DKEYFINDER="$(usex keyfinder on off)"
-DLILV="$(usex lv2 on off)"
-DMAD="$(usex mp3 on off)"
-DMODPLUG="$(usex modplug on off)"
-DOPTIMIZE="off"
-DOPUS="$(usex opus on off)"
-DQTKEYCHAIN="$(usex qtkeychain on off)"
-DVINYLCONTROL="on"
-DWAVPACK="$(usex wavpack on off)"
)
cmake_src_configure
}
src_install() {
cmake_src_install
udev_newrules "${S}"/res/linux/mixxx-usb-uaccess.rules 69-mixxx-usb-uaccess.rules
dodoc README.md CHANGELOG.md
}
pkg_postinst() {
xdg_pkg_postinst
udev_reload
}
pkg_postrm() {
xdg_pkg_postrm
udev_reload
}
|