summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorJason E. Hale <jhale@FreeBSD.org>2016-11-19 13:07:08 +0000
committerJason E. Hale <jhale@FreeBSD.org>2016-11-19 13:07:08 +0000
commit7d8de86c49073829b14f71080315538302c881b3 (patch)
tree680a017a352b22ec654eeb1f8f5c25eceedb24be /audio
parentConvert R-cran ports to auto-plist. (diff)
Update to 0.4.4
Notes
Notes: svn path=/head/; revision=426365
Diffstat (limited to 'audio')
-rw-r--r--audio/qjackctl/Makefile20
-rw-r--r--audio/qjackctl/distinfo5
-rw-r--r--audio/qjackctl/files/patch-src_qjackctlInterfaceComboBox.cpp19
3 files changed, 14 insertions, 30 deletions
diff --git a/audio/qjackctl/Makefile b/audio/qjackctl/Makefile
index 6afc1dff76d5..a7340ed14c44 100644
--- a/audio/qjackctl/Makefile
+++ b/audio/qjackctl/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= qjackctl
-PORTVERSION= 0.4.2
+PORTVERSION= 0.4.4
CATEGORIES= audio
MASTER_SITES= SF
@@ -14,7 +14,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libjack.so:audio/jack
-USES= gmake
+USES= gmake localbase pkgconfig
+USE_XORG= x11
+INSTALLS_ICONS= yes
QT_NONSTANDARD= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= ac_cv_qmake=${QMAKE} \
@@ -39,15 +41,15 @@ PORTAUDIO_LIB_DEPENDS= libportaudio.so:audio/portaudio
PORTAUDIO_CONFIGURE_ENABLE= portaudio
SYSTRAY_DESC= System tray icon support
-SYSTRAY_CONFIGURE_WITH= system-tray
+SYSTRAY_CONFIGURE_ENABLE= system-tray
-QT4_USE= qt4=corelib,dbus,gui,xml \
- qt4=linguisttools_build \
- qt4=moc_build,qmake_build,rcc_build,uic_build
+QT4_USE= QT4=corelib,dbus,gui,xml \
+ QT4=linguisttools_build \
+ QT4=moc_build,qmake_build,rcc_build,uic_build
QT4_CONFIGURE_ENABLE= qt4
-QT5_USE= qt5=core,dbus,gui,widgets,x11extras,xml \
- qt5=buildtools_build,linguisttools_build,qmake_build
-QT5_CONFIGURE_ENABLE= qt5
+QT5_USE= QT5=core,dbus,gui,widgets,x11extras,xml \
+ QT5=buildtools_build,linguisttools_build,qmake_build \
+ GL=gl
post-configure:
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${QMAKE} -o ${PORTNAME}.mak \
diff --git a/audio/qjackctl/distinfo b/audio/qjackctl/distinfo
index 124c83cddf89..71908969e735 100644
--- a/audio/qjackctl/distinfo
+++ b/audio/qjackctl/distinfo
@@ -1,2 +1,3 @@
-SHA256 (qjackctl-0.4.2.tar.gz) = cf1c4aff22f8410feba9122e447b1e28c8fa2c71b12cfc0551755d351f9eaf5e
-SIZE (qjackctl-0.4.2.tar.gz) = 824383
+TIMESTAMP = 1479482960
+SHA256 (qjackctl-0.4.4.tar.gz) = 531db2f7eca654fd8769a1281dccb54ebca57a0b2a575734d1bafc3896a46ba5
+SIZE (qjackctl-0.4.4.tar.gz) = 831637
diff --git a/audio/qjackctl/files/patch-src_qjackctlInterfaceComboBox.cpp b/audio/qjackctl/files/patch-src_qjackctlInterfaceComboBox.cpp
deleted file mode 100644
index deb60846ae36..000000000000
--- a/audio/qjackctl/files/patch-src_qjackctlInterfaceComboBox.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
---- src/qjackctlInterfaceComboBox.cpp.orig 2016-04-05 15:57:30 UTC
-+++ src/qjackctlInterfaceComboBox.cpp
-@@ -210,9 +210,16 @@ private:
-
- // Fill HostApi info...
- const PaHostApiIndex iNumHostApi = Pa_GetHostApiCount();
-+#ifdef __clang__
-+ QString *hostNames = new QString[iNumHostApi];
-+#else
- QString hostNames[iNumHostApi];
-+#endif
- for (PaHostApiIndex i = 0; i < iNumHostApi; ++i)
- hostNames[i] = QString(Pa_GetHostApiInfo(i)->name);
-+#ifdef __clang__
-+ delete [] hostNames;
-+#endif
-
- // Fill device info...
- const PaDeviceIndex iNumDevice = Pa_GetDeviceCount();