From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/qjackctl/
Date: Fri, 1 Nov 2019 12:04:44 +0000 (UTC) [thread overview]
Message-ID: <1572609875.81e0652d27f0d1a6e65336a7bbb3dfa2e283f602.fordfrog@gentoo> (raw)
commit: 81e0652d27f0d1a6e65336a7bbb3dfa2e283f602
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 1 12:04:22 2019 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Nov 1 12:04:35 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81e0652d
media-sound/qjackctl-{0.6.0,9999}: bump + added live ebuild
Closes: https://bugs.gentoo.org/628856
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/qjackctl/Manifest | 1 +
media-sound/qjackctl/qjackctl-0.6.0.ebuild | 61 +++++++++++++++++++++++++++
media-sound/qjackctl/qjackctl-9999.ebuild | 67 ++++++++++++++++++++++++++++++
3 files changed, 129 insertions(+)
diff --git a/media-sound/qjackctl/Manifest b/media-sound/qjackctl/Manifest
index 4fb67cca544..409e2f8f92b 100644
--- a/media-sound/qjackctl/Manifest
+++ b/media-sound/qjackctl/Manifest
@@ -1 +1,2 @@
DIST qjackctl-0.4.5.tar.gz 832932 BLAKE2B 9e47ce1bb0439e62b8922b2a39650410b96ffa6f13489042fdd8909152d31b2a8f5b1a7ee73cd8a85b10aec776175a9c6a3782b0ab592c5196e7352b106b53ee SHA512 251b7275fd6cb13c91420b7c11d5d2a1d9b7c5b11b78a4b5ba41955b4bbaa3c4f4721123f3375c2ce4a243ee9defc69c982cc93796e17e01e096e1228c4fe5fd
+DIST qjackctl-0.6.0.tar.gz 933416 BLAKE2B 116a6a71ab0c0974ff5109c5ae34c47fb4706e3e051d7bfc9daec74f952304606f5a790e03d3b97bc2c68968ac6a09ad885c4dd4c774b2454c9a7af8ec6c997f SHA512 f1cd281f67a764f12301c6b58644aed2419d2c82696a24bd9980aa7ea42a266ff5e4aa6247b0b6ac78cb01afc34219c7de8c0657cfdf0fa9858a52d1f84b8fea
diff --git a/media-sound/qjackctl/qjackctl-0.6.0.ebuild b/media-sound/qjackctl/qjackctl-0.6.0.ebuild
new file mode 100644
index 00000000000..124e16d17dc
--- /dev/null
+++ b/media-sound/qjackctl/qjackctl-0.6.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic qmake-utils xdg-utils
+
+DESCRIPTION="Qt GUI to control the JACK Audio Connection Kit and ALSA sequencer connections"
+HOMEPAGE="http://qjackctl.sourceforge.net/"
+SRC_URI="mirror://sourceforge/qjackctl/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="alsa dbus debug portaudio"
+
+RDEPEND="
+ app-arch/gzip
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+ dev-qt/qtxml:5
+ virtual/jack
+ alsa? ( media-libs/alsa-lib )
+ dbus? ( dev-qt/qtdbus:5 )
+ portaudio? ( media-libs/portaudio )"
+DEPEND="${RDEPEND}
+ dev-qt/linguist-tools:5"
+
+src_configure() {
+ append-cxxflags -std=c++11
+ econf \
+ $(use_enable alsa alsa-seq) \
+ $(use_enable dbus) \
+ $(use_enable debug) \
+ $(use_enable portaudio) \
+ --enable-jack-version
+
+ eqmake5 ${PN}.pro -o ${PN}.mak
+}
+
+src_compile() {
+ emake -f ${PN}.mak
+}
+
+src_install() {
+ default
+
+ gunzip "${D}/usr/share/man/man1/qjackctl.fr.1.gz"
+ gunzip "${D}/usr/share/man/man1/qjackctl.1.gz"
+}
+
+pkg_postinst() {
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ xdg_icon_cache_update
+}
diff --git a/media-sound/qjackctl/qjackctl-9999.ebuild b/media-sound/qjackctl/qjackctl-9999.ebuild
new file mode 100644
index 00000000000..c9e9519c845
--- /dev/null
+++ b/media-sound/qjackctl/qjackctl-9999.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic qmake-utils autotools git-r3 xdg-utils
+
+DESCRIPTION="Qt GUI to control the JACK Audio Connection Kit and ALSA sequencer connections"
+HOMEPAGE="http://qjackctl.sourceforge.net/"
+EGIT_REPO_URI="https://git.code.sf.net/p/qjackctl/code"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS=""
+
+IUSE="alsa dbus debug portaudio"
+
+RDEPEND="
+ app-arch/gzip
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+ dev-qt/qtxml:5
+ virtual/jack
+ alsa? ( media-libs/alsa-lib )
+ dbus? ( dev-qt/qtdbus:5 )
+ portaudio? ( media-libs/portaudio )"
+DEPEND="${RDEPEND}
+ dev-qt/linguist-tools:5"
+
+src_prepare() {
+ eautoreconf
+
+ default
+}
+
+src_configure() {
+ append-cxxflags -std=c++11
+ econf \
+ $(use_enable alsa alsa-seq) \
+ $(use_enable dbus) \
+ $(use_enable debug) \
+ $(use_enable portaudio) \
+ --enable-jack-version
+
+ eqmake5 ${PN}.pro -o ${PN}.mak
+}
+
+src_compile() {
+ emake -f ${PN}.mak
+}
+
+src_install() {
+ default
+
+ gunzip "${D}/usr/share/man/man1/qjackctl.fr.1.gz"
+ gunzip "${D}/usr/share/man/man1/qjackctl.1.gz"
+}
+
+pkg_postinst() {
+ xdg_icon_cache_update
+}
+
+pkg_postrm() {
+ xdg_icon_cache_update
+}
next reply other threads:[~2019-11-01 12:04 UTC|newest]
Thread overview: 104+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-01 12:04 Miroslav Šulc [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-30 11:51 [gentoo-commits] repo/gentoo:master commit in: media-sound/qjackctl/ Miroslav Šulc
2024-10-20 10:33 Miroslav Šulc
2024-10-19 10:44 Jakov Smolić
2024-10-19 10:42 Arthur Zamarin
2024-09-18 12:59 Miroslav Šulc
2024-09-05 10:25 Miroslav Šulc
2024-09-02 8:20 Sam James
2024-09-02 7:59 Sam James
2024-08-02 13:32 Miroslav Šulc
2024-07-20 10:12 Miroslav Šulc
2024-07-19 15:43 Arthur Zamarin
2024-07-19 15:43 Arthur Zamarin
2024-06-19 8:28 Miroslav Šulc
2024-06-02 9:11 Miroslav Šulc
2024-05-31 14:09 Arthur Zamarin
2024-05-31 14:05 Arthur Zamarin
2024-05-01 8:33 Miroslav Šulc
2024-04-10 8:21 Miroslav Šulc
2024-02-24 15:26 Arthur Zamarin
2024-02-24 7:08 Sam James
2023-10-10 8:52 Miroslav Šulc
2023-10-10 8:52 Miroslav Šulc
2023-10-09 20:02 Sam James
2023-10-09 16:21 Arthur Zamarin
2023-09-09 8:40 Miroslav Šulc
2023-07-04 6:09 Miroslav Šulc
2023-07-03 14:59 Sam James
2023-07-03 13:47 Sam James
2023-06-02 6:48 Miroslav Šulc
2023-05-30 18:26 David Seifert
2023-04-25 6:11 Miroslav Šulc
2023-04-23 8:02 Sam James
2023-04-23 7:47 Sam James
2022-12-29 8:28 Miroslav Šulc
2022-11-05 5:44 Miroslav Šulc
2022-11-03 19:13 Sam James
2022-10-04 4:44 Miroslav Šulc
2022-05-04 18:55 Miroslav Šulc
2022-04-04 5:54 Miroslav Šulc
2022-04-04 5:54 Miroslav Šulc
2022-02-11 10:47 Miroslav Šulc
2022-02-11 10:40 Jakov Smolić
2022-02-11 10:40 Jakov Smolić
2022-01-11 8:48 Miroslav Šulc
2021-11-08 11:20 Miroslav Šulc
2021-11-08 10:11 Agostino Sarubbo
2021-11-06 9:02 Jakov Smolić
2021-10-06 6:54 Miroslav Šulc
2021-08-05 19:21 Miroslav Šulc
2021-08-05 14:08 Sam James
2021-07-05 6:03 Miroslav Šulc
2021-06-12 9:44 Miroslav Šulc
2021-06-12 1:18 Sam James
2021-06-12 1:18 Sam James
2021-05-12 5:42 Miroslav Šulc
2021-04-16 7:18 Miroslav Šulc
2021-04-16 0:36 Sam James
2021-04-16 0:35 Sam James
2021-03-16 10:46 Miroslav Šulc
2021-03-08 8:19 Miroslav Šulc
2021-03-07 19:48 Sam James
2021-03-07 19:46 Sam James
2021-02-09 9:32 Miroslav Šulc
2021-02-09 9:32 Miroslav Šulc
2021-02-07 7:52 Miroslav Šulc
2021-02-03 8:30 Miroslav Šulc
2021-02-03 8:30 Miroslav Šulc
2021-01-22 8:15 Miroslav Šulc
2021-01-22 1:49 Sam James
2021-01-20 0:02 Sam James
2020-12-20 4:44 Miroslav Šulc
2020-12-19 10:49 Miroslav Šulc
2020-09-23 10:47 Miroslav Šulc
2020-09-23 10:34 Agostino Sarubbo
2020-09-23 10:20 Agostino Sarubbo
2020-09-17 7:57 Miroslav Šulc
2020-08-21 8:48 Miroslav Šulc
2020-05-20 13:19 Andreas Sturmlechner
2020-05-09 8:41 Miroslav Šulc
2020-05-08 10:46 Agostino Sarubbo
2020-05-07 15:58 Agostino Sarubbo
2020-04-12 4:44 Miroslav Šulc
2020-04-11 16:12 Agostino Sarubbo
2020-04-09 12:25 Agostino Sarubbo
2020-04-03 13:23 Miroslav Šulc
2020-03-09 11:22 Miroslav Šulc
2019-12-10 8:51 Miroslav Šulc
2019-12-03 10:06 Agostino Sarubbo
2019-12-03 10:03 Agostino Sarubbo
2019-11-01 12:19 Miroslav Šulc
2017-09-21 14:33 Michael Palimaka
2017-05-09 7:22 Alexis Ballier
2016-11-15 9:09 Alexis Ballier
2016-10-22 9:38 David Seifert
2016-10-22 9:38 David Seifert
2016-09-19 12:11 Alexis Ballier
2016-04-10 16:33 Michael Palimaka
2016-04-10 16:26 Michael Palimaka
2016-04-07 13:03 Alexis Ballier
2016-03-07 18:50 Alexis Ballier
2015-10-30 14:23 Alexis Ballier
2015-10-30 10:51 Alexis Ballier
2015-10-30 10:51 Alexis Ballier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1572609875.81e0652d27f0d1a6e65336a7bbb3dfa2e283f602.fordfrog@gentoo \
--to=fordfrog@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox