You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
6 years ago
|
# Copyright 1999-2018 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=6
|
||
|
|
||
|
inherit autotools
|
||
|
|
||
|
DESCRIPTION="A graphical music visualization plugin similar to milkdrop"
|
||
|
HOMEPAGE="https://github.com/projectM-visualizer/projectm"
|
||
|
|
||
|
if [[ ${PV} == *9999 ]] ; then
|
||
|
EGIT_REPO_URI="https://github.com/projectM-visualizer/projectm.git"
|
||
|
inherit git-r3
|
||
|
else
|
||
|
SRC_URI="https://github.com/projectM-visualizer/projectm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
|
||
|
S=${WORKDIR}/projectm-${PV}/
|
||
|
fi
|
||
|
|
||
|
LICENSE="LGPL-2"
|
||
|
SLOT="0"
|
||
|
IUSE="gles2 qt5 sdl"
|
||
|
|
||
|
RDEPEND="gles2? ( media-libs/mesa[gles2] )
|
||
6 years ago
|
media-libs/glm
|
||
6 years ago
|
media-libs/mesa
|
||
|
qt5? (
|
||
|
dev-qt/qtcore:5
|
||
|
dev-qt/qtgui:5
|
||
|
dev-qt/qtwidgets:5
|
||
|
dev-qt/qtopengl:5
|
||
|
media-sound/pulseaudio
|
||
|
)
|
||
|
sdl? ( >=media-libs/libsdl2-2.0.5 )
|
||
|
sys-libs/zlib"
|
||
|
|
||
|
DEPEND="${RDEPEND}
|
||
|
virtual/pkgconfig"
|
||
|
|
||
|
src_prepare() {
|
||
|
default
|
||
|
eautoreconf
|
||
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
econf \
|
||
|
$(use_enable gles2 gles ) \
|
||
|
$(use_enable qt5 qt ) \
|
||
|
$(use_enable sdl ) \
|
||
|
--enable-emscripten=no
|
||
|
}
|