Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Feb 2019 18:45:47 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r492712 - in head/audio: . qmidictl qmidictl/files
Message-ID:  <201902111845.x1BIjl5x041883@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Mon Feb 11 18:45:47 2019
New Revision: 492712
URL: https://svnweb.freebsd.org/changeset/ports/492712

Log:
  New port: audio/qmidictl: MIDI remote control application sending MIDI over UDP/IP multicast

Added:
  head/audio/qmidictl/
  head/audio/qmidictl/Makefile   (contents, props changed)
  head/audio/qmidictl/distinfo   (contents, props changed)
  head/audio/qmidictl/files/
  head/audio/qmidictl/files/patch-src_qmidictlUdpDevice.cpp   (contents, props changed)
  head/audio/qmidictl/files/patch-src_qmidictlUdpDevice.h   (contents, props changed)
  head/audio/qmidictl/pkg-descr   (contents, props changed)
  head/audio/qmidictl/pkg-plist   (contents, props changed)
Modified:
  head/audio/Makefile

Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile	Mon Feb 11 18:42:37 2019	(r492711)
+++ head/audio/Makefile	Mon Feb 11 18:45:47 2019	(r492712)
@@ -706,6 +706,7 @@
     SUBDIR += pytone
     SUBDIR += qjackctl
     SUBDIR += qmidiarp
+    SUBDIR += qmidictl
     SUBDIR += qmpdclient
     SUBDIR += qsampler
     SUBDIR += qsynth

Added: head/audio/qmidictl/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/qmidictl/Makefile	Mon Feb 11 18:45:47 2019	(r492712)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	qmidictl
+DISTVERSION=	0.5.3
+CATEGORIES=	audio
+MASTER_SITES=	SF
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	MIDI remote control application sending MIDI over UDP/IP multicast
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+USES=		gl gmake localbase pkgconfig qt:5
+GNU_CONFIGURE=	yes
+USE_QT=		core gui widgets qmake_build buildtools_build
+USE_GL=		gl
+
+.include <bsd.port.mk>

Added: head/audio/qmidictl/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/qmidictl/distinfo	Mon Feb 11 18:45:47 2019	(r492712)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1549909733
+SHA256 (qmidictl-0.5.3.tar.gz) = a42d7a2f3fc8090a4fa0a7696f532048071febac88d5ae5e10a0697cb1831551
+SIZE (qmidictl-0.5.3.tar.gz) = 195116

Added: head/audio/qmidictl/files/patch-src_qmidictlUdpDevice.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/qmidictl/files/patch-src_qmidictlUdpDevice.cpp	Mon Feb 11 18:45:47 2019	(r492712)
@@ -0,0 +1,13 @@
+--- src/qmidictlUdpDevice.cpp.orig	2019-02-11 18:29:43 UTC
++++ src/qmidictlUdpDevice.cpp
+@@ -40,6 +40,10 @@ inline void closesocket(int s) { ::close
+ #endif
+ #endif
+ 
++#if defined(__FreeBSD__)
++#include <netinet/in.h>
++#endif
++
+ #include <QByteArray>
+ #include <QThread>
+ 

Added: head/audio/qmidictl/files/patch-src_qmidictlUdpDevice.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/qmidictl/files/patch-src_qmidictlUdpDevice.h	Mon Feb 11 18:45:47 2019	(r492712)
@@ -0,0 +1,13 @@
+--- src/qmidictlUdpDevice.h.orig	2019-02-11 18:32:44 UTC
++++ src/qmidictlUdpDevice.h
+@@ -36,6 +36,10 @@
+ #endif
+ #endif
+ 
++#if defined(__FreeBSD__)
++#include <netinet/in.h>
++#endif
++
+ #include <QObject>
+ #include <QString>
+ 

Added: head/audio/qmidictl/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/qmidictl/pkg-descr	Mon Feb 11 18:45:47 2019	(r492712)
@@ -0,0 +1,5 @@
+QmidiCtl is a MIDI remote controller application that sends MIDI data over the
+network, using UDP/IP multicast. Inspired by multimidicast and designed to be
+compatible with ipMIDI for Windows.
+
+WWW: https://qmidictl.sourceforge.io/

Added: head/audio/qmidictl/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/qmidictl/pkg-plist	Mon Feb 11 18:45:47 2019	(r492712)
@@ -0,0 +1,9 @@
+bin/qmidictl
+man/man1/qmidictl.1.gz
+man/man1/qmidictl.fr.1.gz
+share/applications/hildon/qmidictl.desktop
+share/icons/hicolor/26x26/hildon/qmidictl.png
+share/icons/hicolor/32x32/hildon/qmidictl.png
+share/icons/hicolor/48x48/hildon/qmidictl.png
+share/icons/hicolor/64x64/hildon/qmidictl.png
+share/metainfo/qmidictl.appdata.xml



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902111845.x1BIjl5x041883>