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.
gentoo-overlay/media-sound/yoshimi/yoshimi-1.7.0.1.ebuild

52 lines
1.0 KiB

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake xdg flag-o-matic
DESCRIPTION="Software synthesizer based on ZynAddSubFX"
HOMEPAGE="https://yoshimi.github.io/"
SRC_URI="https://github.com/${PN^}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+lv2"
BDEPEND="virtual/pkgconfig"
DEPEND="
>=dev-libs/mxml-2.5
media-libs/alsa-lib
media-libs/fontconfig
media-libs/libsndfile
sci-libs/fftw:3.0=
sys-libs/ncurses:0=
sys-libs/readline:0=
sys-libs/zlib
virtual/jack
x11-libs/cairo[X]
x11-libs/fltk:1[opengl]
lv2? ( media-libs/lv2 )
"
RDEPEND="${DEPEND}"
CMAKE_USE_DIR="${WORKDIR}/${P}/src"
DOCS=( Changelog README.txt )
src_prepare() {
cmake_src_prepare
append-cxxflags -lpthread
append-cppflags -lpthread
}
src_configure() {
local mycmakeargs=( -DLV2Plugin=$(usex lv2) )
cmake_src_configure
}
src_install() {
cmake_src_install
mv "${D}"/usr/share/doc/yoshimi "${D}"/usr/share/doc/${P}
}