Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Nov 2012 20:15:49 +0000 (UTC)
From:      Juergen Lock <nox@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r307729 - head/audio/jack_umidi
Message-ID:  <201211242015.qAOKFnaP017104@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nox
Date: Sat Nov 24 20:15:49 2012
New Revision: 307729
URL: http://svnweb.freebsd.org/changeset/ports/307729

Log:
  - Convert to OPTIONSng.
  - Strip Makefile headers.
  - Remove shlib major version from LIB_DEPENDS.
  
  PR:		ports/173804
  Submitted by:	Chris Petrik <c.petrik.sosa@gmail.com>
  Approved by:	hselasky (maintainer)
  Feature safe:	yes

Modified:
  head/audio/jack_umidi/Makefile

Modified: head/audio/jack_umidi/Makefile
==============================================================================
--- head/audio/jack_umidi/Makefile	Sat Nov 24 20:09:19 2012	(r307728)
+++ head/audio/jack_umidi/Makefile	Sat Nov 24 20:15:49 2012	(r307729)
@@ -1,9 +1,5 @@
-# Ports collection makefile for: jack_umidi
-# Date created: 21 June 2011
-# Whom:         Hans Petter Selasky <hselasky@FreeBSD.org>
-#
+# Created by: Hans Petter Selasky <hselasky@FreeBSD.org>
 # $FreeBSD$
-#
 
 PORTNAME=	jack_umidi
 PORTVERSION=	1.0.4
@@ -14,9 +10,10 @@ MASTER_SITES=	http://www.selasky.org/han
 MAINTAINER=	hselasky@FreeBSD.org
 COMMENT=	Daemon that converts a raw MIDI device into a JACK MIDI device
 
-LIB_DEPENDS=	jack.0:${PORTSDIR}/audio/jack
-
 LICENSE=	BSD
+
+LIB_DEPENDS=	jack:${PORTSDIR}/audio/jack
+
 USE_BZIP2=	yes
 MAKE_JOBS_SAFE=	yes
 MANCOMPRESSED=	yes
@@ -24,14 +21,14 @@ MAN8=		jack_umidi.8
 
 PLIST_FILES=	sbin/jack_umidi
 
-OPTIONS=	DEBUG "Build with debugging support" Off
+OPTIONS_DEFINE=        DEBUG
 
 .include <bsd.port.options.mk>
 
 MAKE_ARGS+=" HAVE_MAN=YES"
 MAKE_ARGS+=" PTHREAD_LIBS=${PTHREAD_LIBS}"
 
-.if defined(WITH_DEBUG)
+.if ${PORT_OPTIONS:MDEBUG}
 MAKE_ARGS+=" HAVE_DEBUG=YES"
 .endif
 



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