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-libs/liblscp/liblscp-0.9.11.ebuild

38 lines
750 B

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="C++ library for the Linux Sampler control protocol"
HOMEPAGE="https://www.linuxsampler.org"
if [[ ${PV} == "9999" ]] ; then
inherit subversion
ESVN_REPO_URI="https://svn.linuxsampler.org/svn/liblscp/trunk"
else
SRC_URI="https://www.rncbc.org/archive/${P}.tar.gz
https://download.linuxsampler.org/packages/${P}.tar.gz"
KEYWORDS="~amd64 ~ppc ~x86"
fi
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="doc"
BDEPEND="doc? ( app-doc/doxygen )"
PATCHES=(
"${FILESDIR}/${PN}-0.9.6-conditional.patch"
)
DOCS=( ChangeLog README )
src_configure() {
local mycmakeargs=(
-DBUILD_DOC=$(usex doc)
)
cmake_src_configure
}