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 61EB91382C5 for ; Sat, 2 Jan 2021 20:31:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7439AE0848; Sat, 2 Jan 2021 20:31:42 +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 54920E0848 for ; Sat, 2 Jan 2021 20:31:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2D99D340F6A for ; Sat, 2 Jan 2021 20:31:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EE3B448E for ; Sat, 2 Jan 2021 20:31:35 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1609619452.5cd5e89091f100b0e72b94805cac218d5c30ecd6.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/kmidimon/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/kmidimon/Manifest media-sound/kmidimon/kmidimon-1.0.0_pre20201003.ebuild media-sound/kmidimon/metadata.xml X-VCS-Directories: media-sound/kmidimon/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 5cd5e89091f100b0e72b94805cac218d5c30ecd6 X-VCS-Branch: master Date: Sat, 2 Jan 2021 20:31:35 +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: 64004e34-2c5e-4c7c-b28e-9ec46dafdc31 X-Archives-Hash: ed38040a59bb2d7e99c73ce0a4b04063 commit: 5cd5e89091f100b0e72b94805cac218d5c30ecd6 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jan 2 16:01:55 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jan 2 20:30:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cd5e890 media-sound/kmidimon: Resurrect package as 1.0.0_pre20201003 snapshot Bug: https://bugs.gentoo.org/633502 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/kmidimon/Manifest | 1 + .../kmidimon/kmidimon-1.0.0_pre20201003.ebuild | 40 ++++++++++++++++++++++ media-sound/kmidimon/metadata.xml | 15 ++++++++ 3 files changed, 56 insertions(+) diff --git a/media-sound/kmidimon/Manifest b/media-sound/kmidimon/Manifest new file mode 100644 index 00000000000..ebda93d3940 --- /dev/null +++ b/media-sound/kmidimon/Manifest @@ -0,0 +1 @@ +DIST kmidimon-1.0.0_pre20201003.zip 559637 BLAKE2B 57843d2718b8efb6d0be1174390bb21949e200efddc8a7ed65a67eef422eb0976f6008184bdb836bcaa3aabba9a1ea6e2ae848f931a26255a97cc11a29b85643 SHA512 0e6750196a0ecd138746602f6e9c2344aa3fe1ea49a0bb6a40d0626e7a428fb3c8fe51bed76b4df342eef32163c83deffd610bd3904108706943ee6e969b5b26 diff --git a/media-sound/kmidimon/kmidimon-1.0.0_pre20201003.ebuild b/media-sound/kmidimon/kmidimon-1.0.0_pre20201003.ebuild new file mode 100644 index 00000000000..230e713785e --- /dev/null +++ b/media-sound/kmidimon/kmidimon-1.0.0_pre20201003.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake xdg + +DESCRIPTION="MIDI monitor for ALSA sequencer" +HOMEPAGE="https://kmidimon.sourceforge.io/" +SRC_URI="https://sourceforge.net/code-snapshots/svn/k/km/${PN}/code/${PN}-code-r217-trunk.zip -> ${P}.zip" +S="${WORKDIR}/${PN}-code-r217-trunk" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + media-libs/alsa-lib + >=media-sound/drumstick-2.0.0 +" +DEPEND="${RDEPEND}" +BDEPEND=" + app-arch/unzip + dev-qt/linguist-tools:5 +" + +src_prepare() { + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DCMAKE_INSTALL_DOCDIR="${EPREFIX}"/usr/share/doc/${PF}/html + ) + cmake_src_configure +} diff --git a/media-sound/kmidimon/metadata.xml b/media-sound/kmidimon/metadata.xml new file mode 100644 index 00000000000..e3a6e95b81e --- /dev/null +++ b/media-sound/kmidimon/metadata.xml @@ -0,0 +1,15 @@ + + + + + kde@gentoo.org + Gentoo KDE Project + + + sound@gentoo.org + Gentoo Sound project + + + kmidimon + +