From 60945053af0588a6219a4a6867aace9e7b47faeb Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 19 Nov 2022 19:01:00 +0000 Subject: gentoo auto-resync : 19:11:2022 - 19:01:00 --- media-sound/lingot/lingot-1.1.1.ebuild | 60 ++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 media-sound/lingot/lingot-1.1.1.ebuild (limited to 'media-sound/lingot/lingot-1.1.1.ebuild') diff --git a/media-sound/lingot/lingot-1.1.1.ebuild b/media-sound/lingot/lingot-1.1.1.ebuild new file mode 100644 index 000000000000..50150787ae07 --- /dev/null +++ b/media-sound/lingot/lingot-1.1.1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools xdg + +DESCRIPTION="Accurate, easy to use, and highly configurable musical instrument tuner" +HOMEPAGE="https://www.nongnu.org/lingot/" +SRC_URI="https://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="alsa +fftw jack pulseaudio test" +RESTRICT="!test? ( test )" +REQUIRED_USE="test? ( pulseaudio )" + +RDEPEND=" + dev-libs/glib:2 + dev-libs/json-c:= + x11-libs/cairo + x11-libs/gtk+:3 + alsa? ( media-libs/alsa-lib ) + fftw? ( sci-libs/fftw:3.0= ) + jack? ( virtual/jack ) + pulseaudio? ( media-libs/libpulse ) +" +DEPEND="${RDEPEND} + test? ( dev-util/cunit ) +" +BDEPEND=" + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig +" + +PATCHES=( "${FILESDIR}"/${P}-desktop-icon.patch ) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + local myemakeargs=( + $(use_with alsa) + $(use_with fftw) + $(use_with jack) + $(use_with pulseaudio) + $(use_with test cunit) + ) + + econf "${myemakeargs[@]}" +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +} -- cgit v1.2.3