Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 Mar 2017 12:42:50 +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: r435234 - head/audio/deadbeef-jack-plugin
Message-ID:  <201703021242.v22Cgo5r084417@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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:



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