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-plugins/hexter/hexter-1.1.0.ebuild

39 lines
740 B

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Yamaha DX7 modeling DSSI plugin"
HOMEPAGE="http://smbolton.com/hexter.html"
SRC_URI="https://github.com/smbolton/${PN}/releases/download/version_${PV}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="gtk2 readline"
BDEPEND="
virtual/pkgconfig
"
RDEPEND="
media-libs/alsa-lib
>=media-libs/dssi-0.4
>=media-libs/liblo-0.12
gtk2? ( x11-libs/gtk+:2 )
readline? (
sys-libs/ncurses:0=
sys-libs/readline:0=
)
"
DEPEND="${RDEPEND}
media-libs/ladspa-sdk
"
src_configure() {
PKG_CONFIG=$(tc-getPKG_CONFIG) \
econf $(use_with gtk2) \
$(use_with readline textui)
}