From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 30DBF1382C5 for ; Sat, 19 Jun 2021 08:58:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60485E0827; Sat, 19 Jun 2021 08:58:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 439C4E0827 for ; Sat, 19 Jun 2021 08:58:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 572A133BEC5 for ; Sat, 19 Jun 2021 08:58:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D739B78A for ; Sat, 19 Jun 2021 08:58:32 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1624092701.962df3242d3067f499c242a196dc7fa45533d3a0.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/hexter/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/hexter/hexter-1.1.0-r1.ebuild X-VCS-Directories: media-plugins/hexter/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 962df3242d3067f499c242a196dc7fa45533d3a0 X-VCS-Branch: master Date: Sat, 19 Jun 2021 08:58:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9002d03f-3874-41c1-ac27-246c571ee64e X-Archives-Hash: a714bc3c8d95fbd82fa738b385e197e9 commit: 962df3242d3067f499c242a196dc7fa45533d3a0 Author: Aisha Tammy aisha cc> AuthorDate: Sat Feb 6 19:55:55 2021 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sat Jun 19 08:51:41 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=962df324 media-plugins/hexter: drop gtk2 support Closes: https://bugs.gentoo.org/769035 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Aisha Tammy aisha.cc> Closes: https://github.com/gentoo/gentoo/pull/19354 Signed-off-by: Miroslav Šulc gentoo.org> media-plugins/hexter/hexter-1.1.0-r1.ebuild | 35 +++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/media-plugins/hexter/hexter-1.1.0-r1.ebuild b/media-plugins/hexter/hexter-1.1.0-r1.ebuild new file mode 100644 index 00000000000..96942bb615e --- /dev/null +++ b/media-plugins/hexter/hexter-1.1.0-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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="readline" + +BDEPEND=" + virtual/pkgconfig +" +RDEPEND=" + media-libs/alsa-lib + >=media-libs/dssi-0.4 + >=media-libs/liblo-0.12 + readline? ( + sys-libs/ncurses:0= + sys-libs/readline:0= + ) +" +DEPEND="${RDEPEND} + media-libs/ladspa-sdk +" + +src_configure() { + PKG_CONFIG=pkg-config \ + econf --without-gtk2 \ + $(use_with readline textui) +}