svn commit: r435234 - head/audio/deadbeef-jack-plugin

Alexey Dokuchaev danfe at FreeBSD.org
Thu Mar 2 12:42:51 UTC 2017


Author: danfe
Date: Thu Mar  2 12:42:50 2017
New Revision: 435234
URL: https://svnweb.freebsd.org/changeset/ports/435234

Log:
  - Define LICENSE (MIT)
  - Remove MAKE_JOBS_UNSAFE that was added in r415925: while it's true that
    most plugins we have in the tree are make(1) jobs unsafe (and, in fact,
    come from the same upstream with nearly identical (and broken) Makefile
    logic), this particular port contains single C source file and we build
    and install it directly via port's Makefile (in situ), so it can hardly
    be make(1) -jX unsafe

Modified:
  head/audio/deadbeef-jack-plugin/Makefile

Modified: head/audio/deadbeef-jack-plugin/Makefile
==============================================================================
--- head/audio/deadbeef-jack-plugin/Makefile	Thu Mar  2 12:31:17 2017	(r435233)
+++ head/audio/deadbeef-jack-plugin/Makefile	Thu Mar  2 12:42:50 2017	(r435234)
@@ -8,6 +8,8 @@ CATEGORIES=	audio
 MAINTAINER=	danfe at FreeBSD.org
 COMMENT=	JACK output plugin for DeaDBeeF music player
 
+LICENSE=	MIT
+
 BUILD_DEPENDS=	${LOCALBASE}/include/deadbeef/deadbeef.h:audio/deadbeef
 LIB_DEPENDS=	libjack.so:audio/jack
 RUN_DEPENDS:=	${BUILD_DEPENDS}
@@ -17,8 +19,6 @@ GH_ACCOUNT=	Alexey-Yakovenko
 GH_PROJECT=	jack
 GH_TAGNAME=	62d1e6a
 
-MAKE_JOBS_UNSAFE=	yes
-
 PLIST_FILES=	lib/deadbeef/jack.so
 
 do-build:


More information about the svn-ports-head mailing list