commit: b30fa91ef71d9e6c41f22118b4cee1999b403357 Author: Karl Linden <karl.j.linden <AT> gmail <DOT> com> AuthorDate: Fri Nov 23 20:00:43 2018 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sat Nov 24 23:16:42 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b30fa91e
media-sound/jack-smf-utils: EAPI-7 bump, DEPEND on virtual/jack - Drop version specifier from dev-libs/glib dependency. - Sort dependencies. - Update HOMEPAGE and SRC_URI. The old ones are no longer reachable, and it looks like the project is now hosted on SourceForge. Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: Karl Linden <karl.j.linden <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/10440 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> .../jack-smf-utils/jack-smf-utils-1.0-r1.ebuild | 28 +++++++++++++++++++ .../jack-smf-utils/jack-smf-utils-1.0.ebuild | 31 ---------------------- 2 files changed, 28 insertions(+), 31 deletions(-) diff --git a/media-sound/jack-smf-utils/jack-smf-utils-1.0-r1.ebuild b/media-sound/jack-smf-utils/jack-smf-utils-1.0-r1.ebuild new file mode 100644 index 00000000000..edaef45d9e2 --- /dev/null +++ b/media-sound/jack-smf-utils/jack-smf-utils-1.0-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Utilities for MIDI streams and files using Jack MIDI" +HOMEPAGE="https://sourceforge.net/projects/jack-smf-utils/" +SRC_URI="https://sourceforge.net/projects/jack-smf-utils/files/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="lash readline" + +RDEPEND=" + dev-libs/glib + virtual/jack + lash? ( media-sound/lash ) + readline? ( sys-libs/readline:0 )" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig" + +src_configure() { + econf \ + $(use_with lash) \ + $(use_with readline) +} diff --git a/media-sound/jack-smf-utils/jack-smf-utils-1.0.ebuild b/media-sound/jack-smf-utils/jack-smf-utils-1.0.ebuild deleted file mode 100644 index c8fe7a6a7c9..00000000000 --- a/media-sound/jack-smf-utils/jack-smf-utils-1.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -DESCRIPTION="Utilities for MIDI streams and files using Jack MIDI" -HOMEPAGE="http://pin.if.uz.zgora.pl/~trasz/jack-smf-utils/" -SRC_URI="http://pin.if.uz.zgora.pl/~trasz/jack-smf-utils/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="lash readline" - -RDEPEND="readline? ( sys-libs/readline ) - >=dev-libs/glib-2.2 - >=media-sound/jack-audio-connection-kit-0.102 - lash? ( media-sound/lash )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_compile() { - econf $(use_with readline) \ - $(use_with lash) - emake || die "make failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS TODO -}
