131 lines
2.9 KiB
Bash
131 lines
2.9 KiB
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit flag-o-matic scons-utils toolchain-funcs
|
|
|
|
DESCRIPTION="Advanced Digital DJ tool based on Qt"
|
|
HOMEPAGE="https://www.mixxx.org/"
|
|
if [[ "${PV}" == 9999 ]] ; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/mixxxdj/${PN}.git"
|
|
else
|
|
#SRC_URI="https://downloads.mixxx.org/${P}/${P}-src.tar.gz"
|
|
SRC_URI="https://github.com/mixxxdj/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/${PN}-release-${PV}"
|
|
KEYWORDS="~amd64 ~x86"
|
|
fi
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
IUSE="aac doc ffmpeg hid mp3 mp4 opus shout wavpack"
|
|
|
|
# fails to compile system-fidlib. Add ">media-libs/fidlib-0.9.10-r1" once this
|
|
# got fixed
|
|
RDEPEND="
|
|
dev-db/sqlite
|
|
dev-libs/glib:2
|
|
dev-libs/protobuf:0=
|
|
dev-qt/qtconcurrent:5
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtnetwork:5
|
|
dev-qt/qtopengl:5
|
|
dev-qt/qtscript:5[scripttools]
|
|
dev-qt/qtsql:5
|
|
dev-qt/qtsvg:5
|
|
dev-qt/qtwidgets:5
|
|
dev-qt/qtxml:5
|
|
media-libs/chromaprint
|
|
media-libs/flac
|
|
media-libs/libid3tag
|
|
media-libs/libogg
|
|
media-libs/libsndfile
|
|
>=media-libs/libsoundtouch-1.5
|
|
media-libs/libvorbis
|
|
>=media-libs/portaudio-19_pre
|
|
media-libs/portmidi
|
|
media-libs/rubberband
|
|
media-libs/taglib
|
|
media-libs/vamp-plugin-sdk
|
|
sci-libs/fftw:3.0=
|
|
virtual/libusb:1
|
|
virtual/opengl
|
|
x11-libs/libX11
|
|
aac? (
|
|
media-libs/faad2
|
|
media-libs/libmp4v2:0
|
|
)
|
|
hid? ( dev-libs/hidapi )
|
|
mp3? ( media-libs/libmad )
|
|
mp4? ( media-libs/libmp4v2:= )
|
|
opus? ( media-libs/opusfile )
|
|
shout? ( media-libs/libshout )
|
|
wavpack? ( media-sound/wavpack )
|
|
ffmpeg? ( media-video/ffmpeg:0= )
|
|
"
|
|
# media-libs/rubberband RDEPENDs on sci-libs/fftw:3.0
|
|
DEPEND="
|
|
${RDEPEND}
|
|
virtual/pkgconfig
|
|
dev-qt/qttest:5
|
|
dev-qt/qtxmlpatterns:5
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-2.0.0-docs.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
# use multilib compatible directory for plugins
|
|
sed -i -e "/unix_lib_path =/s/'lib'/'$(get_libdir)'/" src/SConscript || die
|
|
|
|
default
|
|
}
|
|
|
|
src_configure() {
|
|
local myoptimize=0
|
|
|
|
# Required for >=qt-5.7.0 (bug #590690)
|
|
append-cxxflags -std=c++11
|
|
|
|
# Try to get cpu type based on CFLAGS.
|
|
# Bug #591968
|
|
for i in $(get-flag mcpu) $(get-flag march) ; do
|
|
if [[ ${i} = native ]] ; then
|
|
myoptimize="native"
|
|
break
|
|
fi
|
|
done
|
|
|
|
myesconsargs=(
|
|
prefix="${EPREFIX}/usr"
|
|
qtdir="${EPREFIX}/usr/$(get_libdir)/qt5"
|
|
faad="$(usex aac 1 0)"
|
|
ffmpeg="$(usex ffmpeg 1 0)"
|
|
hid="$(usex hid 1 0)"
|
|
hifieq=1
|
|
m4a="$(usex mp4 1 0)"
|
|
mad="$(usex mp3 1 0)"
|
|
optimize="${myoptimize}"
|
|
opus="$(usex opus 1 0)"
|
|
qt5=1
|
|
shoutcast="$(usex shout 1 0)"
|
|
vinylcontrol=1
|
|
wv="$(usex wavpack 1 0)"
|
|
)
|
|
}
|
|
|
|
src_compile() {
|
|
CC="$(tc-getCC)" CXX="$(tc-getCXX)" LINKFLAGS="${LDFLAGS}" \
|
|
LIBDIR="${EPREFIX}/usr/$(get_libdir)" escons ${myesconsargs[@]}
|
|
}
|
|
|
|
src_install() {
|
|
CC="$(tc-getCC)" CXX="$(tc-getCXX)" LINKFLAGS="${LDFLAGS}" \
|
|
LIBDIR="${EPREFIX}/usr/$(get_libdir)" escons ${myesconsargs[@]} \
|
|
install_root="${ED}"/usr install
|
|
|
|
dodoc README Mixxx-Manual.pdf
|
|
}
|