forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-sound/qjackctl: Bump to 0.4.1.
Package-Manager: portage-2.2.23
- Loading branch information
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST qjackctl-0.3.10.tar.gz 487678 SHA256 5cdd937c44e5c737f3d2c2063ada015cac2fc8ed0cdbcb90d0ba747087270132 SHA512 1d7c310967cd112aad2caa79684b40b90070e5ce78fe2fd71f0a159ff835a8ccb4806dd140237c05d369ec782965472616aca67fc649cf1ba232535dc8b3104f WHIRLPOOL 7a6cb86992d4dafc0dc43bb8587285c0a2db64649c29fb9a4236f050f89ac9df4cd1d6b7083b980a6121bb508eb98da3b48b3d4eca96d655d75bf737e107f9ab | ||
DIST qjackctl-0.4.0.tar.gz 500534 SHA256 5b651cc5bd85986bcb36b32943e091c931ba229d58732c1724a200e03762485a SHA512 dff5d6bd153cc92149e7a16820ab061f70090eca7a15f8f79ac7b9316e7c279f61e800cfbfc7ec4ce0a13721e717f9f18b98611c22c2a134830111c865d3d001 WHIRLPOOL ae607775d75825355d405b6b3e41ae25793b4a698735d847c9617e6af2eef8dd73cf4ed104e7941c1d014ebeb02d48d128cb363241898ab9ffcb5752ae59464e | ||
DIST qjackctl-0.4.1.tar.gz 824293 SHA256 98024e1ea9f55ac16c290feda051d6494b2261e83f6a918f0fa583b509e2bfd1 SHA512 99de2de422a82a1dbc26dd2d2548afd31a50dc650f2dbe177a26edfe3808a2f66a2206120535edaec8314f3ef25b2dfe6fadfdfb11b814ffe311185c68252881 WHIRLPOOL bfe04a75ba323fd2cf7c8e715ba9a0623bcaadcc47ad74f387aff381036c77d8fec269bfa341783e17a4580fda8f652fa30f52deeb61c857eed817588ab21367 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
inherit qmake-utils | ||
|
||
DESCRIPTION="A Qt application 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 +qt5" | ||
|
||
RDEPEND=" | ||
>=media-sound/jack-audio-connection-kit-0.109.2 | ||
qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtxml:5 dev-qt/qtwidgets:5 ) | ||
!qt5? ( dev-qt/qtcore:4 dev-qt/qtgui:4 ) | ||
alsa? ( media-libs/alsa-lib ) | ||
dbus? ( dev-qt/qtdbus:4 ) | ||
portaudio? ( media-libs/portaudio )" | ||
DEPEND="${RDEPEND}" | ||
|
||
DOCS="AUTHORS ChangeLog README TODO TRANSLATORS" | ||
|
||
src_configure() { | ||
econf \ | ||
$(use_with !qt5 qt4 "$(qt4_get_bindir)/..") \ | ||
$(use_with qt5 qt5 "$(qt5_get_bindir)/..") \ | ||
$(use_enable alsa alsa-seq) \ | ||
$(use_enable dbus) \ | ||
$(use_enable debug) \ | ||
$(use_enable portaudio) | ||
|
||
# Emulate what the Makefile does, so that we can get the correct | ||
# compiler used. | ||
if use qt5 ; then | ||
eqmake5 ${PN}.pro -o ${PN}.mak | ||
else | ||
eqmake4 ${PN}.pro -o ${PN}.mak | ||
fi | ||
} | ||
|
||
src_compile() { | ||
emake -f ${PN}.mak | ||
} |