aballier    15/07/20 09:09:20

  Modified:             ChangeLog
  Added:                qjackctl-0.4.0.ebuild
  Log:
  version bump, add qt5 useflag
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  Changes    Path
1.85                 media-sound/qjackctl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qjackctl/ChangeLog?rev=1.85&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qjackctl/ChangeLog?rev=1.85&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qjackctl/ChangeLog?r1=1.84&r2=1.85

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qjackctl/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog   8 Apr 2015 07:21:46 -0000       1.84
+++ ChangeLog   20 Jul 2015 09:09:20 -0000      1.85
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/qjackctl
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/ChangeLog,v 1.84 
2015/04/08 07:21:46 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/ChangeLog,v 1.85 
2015/07/20 09:09:20 aballier Exp $
+
+*qjackctl-0.4.0 (20 Jul 2015)
+
+  20 Jul 2015; Alexis Ballier <[email protected]> +qjackctl-0.4.0.ebuild:
+  version bump, add qt5 useflag
 
 *qjackctl-0.3.13 (08 Apr 2015)
 



1.1                  media-sound/qjackctl/qjackctl-0.4.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qjackctl/qjackctl-0.4.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qjackctl/qjackctl-0.4.0.ebuild?rev=1.1&content-type=text/plain

Index: qjackctl-0.4.0.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/qjackctl/qjackctl-0.4.0.ebuild,v 
1.1 2015/07/20 09:09:20 aballier Exp $

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 )
        !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() {
        use qt5 && export PATH="$(qt5_get_bindir):${PATH}"
        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
}




Reply via email to