diff options
Diffstat (limited to 'media-sound/lingot/lingot-1.1.1.ebuild')
-rw-r--r-- | media-sound/lingot/lingot-1.1.1.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
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..4c27784dea9a --- /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 + +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 +} |