commit: 8bd9f2c42e3d05450e99cd4e48755d254e23d1e9 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sun Mar 10 15:02:12 2019 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sun Mar 10 16:41:48 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bd9f2c4
media-sound/seq24: EAPI-7 bump, switch to virtual/jack, fix DESCRIPTION Bug: https://bugs.gentoo.org/587326 Closes: https://bugs.gentoo.org/645010 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> media-sound/seq24/seq24-0.9.3-r1.ebuild | 41 +++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/media-sound/seq24/seq24-0.9.3-r1.ebuild b/media-sound/seq24/seq24-0.9.3-r1.ebuild new file mode 100644 index 00000000000..ebb6c2c844a --- /dev/null +++ b/media-sound/seq24/seq24-0.9.3-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop + +DESCRIPTION="Loop based MIDI sequencer with focus on live performances" +HOMEPAGE="https://edge.launchpad.net/seq24/" +SRC_URI="https://edge.launchpad.net/seq24/trunk/${PV}/+download/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="jack lash" + +BDEPEND=" + virtual/pkgconfig +" +DEPEND=" + dev-cpp/gtkmm:2.4 + dev-libs/libsigc++:2 + media-libs/alsa-lib + jack? ( virtual/jack ) + lash? ( media-sound/lash ) +" +RDEPEND="${DEPEND}" + +DOCS=( AUTHORS ChangeLog README RTC SEQ24 ) + +src_configure() { + econf \ + $(use_enable jack) \ + $(use_enable lash) +} + +src_install() { + default + newicon src/pixmaps/seq24_32.xpm seq24.xpm + make_desktop_entry seq24 +}
