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/qsampler/qsampler-0.5.3.ebuild

59 lines
1.1 KiB

# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit qmake-utils xdg-utils
DESCRIPTION="Graphical frontend to the LinuxSampler engine"
HOMEPAGE="https://qsampler.sourceforge.io/ https://www.linuxsampler.org/"
SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug +libgig"
COMMON_DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
media-libs/alsa-lib
>=media-libs/liblscp-0.5.6:=
x11-libs/libX11
libgig? ( >=media-libs/libgig-3.3.0:= )
"
RDEPEND="${COMMON_DEPEND}
>=media-sound/linuxsampler-0.5
"
DEPEND="${COMMON_DEPEND}
dev-qt/linguist-tools:5
"
DOCS=( AUTHORS ChangeLog README TODO TRANSLATORS )
PATCHES=( "${FILESDIR}/${P}-Makefile.patch" )
src_configure() {
local myeconfargs=(
$(use_enable debug)
$(use_enable libgig)
)
ac_qmake="$(qt5_get_bindir)/qmake" \
econf "${myeconfargs[@]}"
cd src || die
eqmake5 src.pro -o Makefile
}
pkg_postinst() {
xdg_mimeinfo_database_update
xdg_desktop_database_update
}
pkg_postrm() {
xdg_mimeinfo_database_update
xdg_desktop_database_update
}