Date: Wed, 18 Nov 2015 18:20:02 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401885 - in head/audio: . deadbeef-jack-plugin Message-ID: <201511181820.tAIIK2ig013029@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Wed Nov 18 18:20:01 2015 New Revision: 401885 URL: https://svnweb.freebsd.org/changeset/ports/401885 Log: Add a port of JACK output plugin for DeaDBeeF music player. There are few versions available on the net; this is the only one that seemingly works. WWW: https://github.com/Alexey-Yakovenko/jack Added: head/audio/deadbeef-jack-plugin/ head/audio/deadbeef-jack-plugin/Makefile (contents, props changed) head/audio/deadbeef-jack-plugin/distinfo (contents, props changed) head/audio/deadbeef-jack-plugin/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Wed Nov 18 17:37:44 2015 (r401884) +++ head/audio/Makefile Wed Nov 18 18:20:01 2015 (r401885) @@ -95,6 +95,7 @@ SUBDIR += darkice SUBDIR += dcd SUBDIR += deadbeef + SUBDIR += deadbeef-jack-plugin SUBDIR += deadbeef-mpris-plugin SUBDIR += deadbeef-mpris2-plugin SUBDIR += decibel-audio-player Added: head/audio/deadbeef-jack-plugin/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/deadbeef-jack-plugin/Makefile Wed Nov 18 18:20:01 2015 (r401885) @@ -0,0 +1,31 @@ +# Created by: Alexey Dokuchaev <danfe@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= deadbeef-jack-plugin +DISTVERSION= 0.0.2011.03.22 +CATEGORIES= audio + +MAINTAINER= danfe@FreeBSD.org +COMMENT= JACK output plugin for DeaDBeeF music player + +BUILD_DEPENDS= ${LOCALBASE}/include/deadbeef/deadbeef.h:${PORTSDIR}/audio/deadbeef +LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USE_GITHUB= yes +GH_ACCOUNT= Alexey-Yakovenko +GH_PROJECT= jack +GH_TAGNAME= 62d1e6a + +PLIST_FILES= lib/deadbeef/jack.so + +do-build: + cd ${WRKSRC} && ${CC} ${CFLAGS} -std=c99 -fPIC -shared -Wall \ + -I${LOCALBASE}/include -L${LOCALBASE}/lib \ + -o jack.so jack.c -ljack + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/deadbeef + ${INSTALL_LIB} ${WRKSRC}/jack.so ${STAGEDIR}${PREFIX}/lib/deadbeef + +.include <bsd.port.mk> Added: head/audio/deadbeef-jack-plugin/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/deadbeef-jack-plugin/distinfo Wed Nov 18 18:20:01 2015 (r401885) @@ -0,0 +1,2 @@ +SHA256 (Alexey-Yakovenko-jack-0.0.2011.03.22-62d1e6a_GH0.tar.gz) = 1134ea744e474b589da5503ebad98b21abe6be9d5aa2f1effb418dbb92f1f533 +SIZE (Alexey-Yakovenko-jack-0.0.2011.03.22-62d1e6a_GH0.tar.gz) = 4307 Added: head/audio/deadbeef-jack-plugin/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/deadbeef-jack-plugin/pkg-descr Wed Nov 18 18:20:01 2015 (r401885) @@ -0,0 +1,3 @@ +This is a port of JACK output plugin for DeaDBeeF music player. + +WWW: https://github.com/Alexey-Yakovenko/jack
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511181820.tAIIK2ig013029>