Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 19 May 2019 06:08:58 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r502014 - in head/audio: . mio2jack
Message-ID:  <201905190608.x4J68wTR037956@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Sun May 19 06:08:58 2019
New Revision: 502014
URL: https://svnweb.freebsd.org/changeset/ports/502014

Log:
  New port: audio/mio2jack
  
  Mio2jack is a tool to expose Sndio MIDI ports to JACK.
  
  For now it only handles one-way communication, that is MIDI events
  flowing in the Sndio to JACK direction.
  
  WWW: https://github.com/martingms/mio2jack

Added:
  head/audio/mio2jack/
  head/audio/mio2jack/Makefile   (contents, props changed)
  head/audio/mio2jack/distinfo   (contents, props changed)
  head/audio/mio2jack/pkg-descr   (contents, props changed)
Modified:
  head/audio/Makefile

Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile	Sun May 19 04:53:17 2019	(r502013)
+++ head/audio/Makefile	Sun May 19 06:08:58 2019	(r502014)
@@ -502,6 +502,7 @@
     SUBDIR += midipp
     SUBDIR += mikmod
     SUBDIR += milkytracker
+    SUBDIR += mio2jack
     SUBDIR += mixer.app
     SUBDIR += mixmos
     SUBDIR += mixxx

Added: head/audio/mio2jack/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/mio2jack/Makefile	Sun May 19 06:08:58 2019	(r502014)
@@ -0,0 +1,30 @@
+# $FreeBSD$
+
+PORTNAME=	mio2jack
+PORTVERSION=	g20180501
+CATEGORIES=	audio
+
+MAINTAINER=	tobik@FreeBSD.org
+COMMENT=	Expose Sndio MIDI ports to JACK
+
+LICENSE=	ISCL
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+LIB_DEPENDS=	libjack.so:audio/jack \
+		libsndio.so:audio/sndio
+
+USES=		localbase:ldflags
+USE_GITHUB=	yes
+GH_ACCOUNT=	martingms
+GH_TAGNAME=	9d0de50b226539e3e61ad4f36aa74cfe160d2747
+
+MAKEFILE=	/dev/null
+ALL_TARGET=	mio2jack
+LDFLAGS+=	-ljack -lsndio
+
+PLIST_FILES=	bin/mio2jack
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/mio2jack ${STAGEDIR}${PREFIX}/bin
+
+.include <bsd.port.mk>

Added: head/audio/mio2jack/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/mio2jack/distinfo	Sun May 19 06:08:58 2019	(r502014)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1558244708
+SHA256 (martingms-mio2jack-g20180501-9d0de50b226539e3e61ad4f36aa74cfe160d2747_GH0.tar.gz) = 6a3161ecf360c2697c7c5d73ccee6a3a7fd6314b22f841b9a70f38ddf5e625f2
+SIZE (martingms-mio2jack-g20180501-9d0de50b226539e3e61ad4f36aa74cfe160d2747_GH0.tar.gz) = 2261

Added: head/audio/mio2jack/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/mio2jack/pkg-descr	Sun May 19 06:08:58 2019	(r502014)
@@ -0,0 +1,6 @@
+Mio2jack is a tool to expose Sndio MIDI ports to JACK.
+
+For now it only handles one-way communication, that is MIDI events
+flowing in the Sndio to JACK direction.
+
+WWW: https://github.com/martingms/mio2jack



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