2022-01-16 06:30:25 -05:00
|
|
|
# Copyright 1999-2022 Gentoo Authors
|
2020-07-08 19:55:48 -04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2022-01-16 06:30:25 -05:00
|
|
|
EAPI=8
|
2020-07-07 00:20:50 -04:00
|
|
|
|
2021-06-13 13:50:42 -04:00
|
|
|
inherit cmake xdg
|
2020-07-07 00:20:50 -04:00
|
|
|
|
|
|
|
if [[ ${PV} != *9999* ]]; then
|
2021-06-13 04:47:22 -04:00
|
|
|
SRC_URI="https://github.com/iurie-sw/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
2020-07-07 00:20:50 -04:00
|
|
|
KEYWORDS="~amd64"
|
|
|
|
else
|
|
|
|
inherit git-r3
|
2021-06-13 04:47:22 -04:00
|
|
|
EGIT_REPO_URI="https://github.com/iurie-sw/${PN}.git"
|
2020-07-07 00:20:50 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
DESCRIPTION="A free software percussion synthesizer"
|
|
|
|
HOMEPAGE="https://github.com/iurie-sw/geonkick"
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
|
2020-08-20 18:33:19 -04:00
|
|
|
DEPEND="
|
2020-07-07 00:20:50 -04:00
|
|
|
dev-libs/rapidjson
|
|
|
|
media-libs/libsndfile
|
|
|
|
media-libs/lv2
|
|
|
|
"
|
2020-08-20 18:33:19 -04:00
|
|
|
RDEPEND="${DEPEND}"
|
2021-03-15 03:11:45 -04:00
|
|
|
BDEPEND="
|
|
|
|
>=dev-util/cmake-3.7
|
|
|
|
"
|