From owner-svn-ports-head@FreeBSD.ORG Sat Nov 24 20:04:03 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DF382E06; Sat, 24 Nov 2012 20:04:03 +0000 (UTC) (envelope-from nox@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id A6C858FC15; Sat, 24 Nov 2012 20:04:03 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAOK43TJ015204; Sat, 24 Nov 2012 20:04:03 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAOK43ev015203; Sat, 24 Nov 2012 20:04:03 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201211242004.qAOK43ev015203@svn.freebsd.org> From: Juergen Lock Date: Sat, 24 Nov 2012 20:04:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r307727 - head/audio/jack_ghero X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Nov 2012 20:04:04 -0000 Author: nox Date: Sat Nov 24 20:04:03 2012 New Revision: 307727 URL: http://svnweb.freebsd.org/changeset/ports/307727 Log: - Convert to OPTIONSng. - Strip Makefile headers. - Remove shlib major version from LIB_DEPENDS. PR: ports/173801 Submitted by: Chris Petrik Approved by: hselasky (maintainer) Feature safe: yes Modified: head/audio/jack_ghero/Makefile Modified: head/audio/jack_ghero/Makefile ============================================================================== --- head/audio/jack_ghero/Makefile Sat Nov 24 20:01:26 2012 (r307726) +++ head/audio/jack_ghero/Makefile Sat Nov 24 20:04:03 2012 (r307727) @@ -1,9 +1,5 @@ -# Ports collection makefile for: jack_ghero -# Date created: 21 June 2011 -# Whom: Hans Petter Selasky -# +# Created by: Hans Petter Selasky # $FreeBSD$ -# PORTNAME= jack_ghero PORTVERSION= 1.0.3 @@ -14,9 +10,10 @@ MASTER_SITES= http://www.selasky.org/han MAINTAINER= hselasky@FreeBSD.org COMMENT= Daemon that converts a GuitarHero 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,21 +21,19 @@ MAN8= jack_ghero.8 PLIST_FILES= sbin/jack_ghero -OPTIONS= DEBUG "Build with debugging support" Off +OPTIONS_DEFINE= DEBUG .include 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 -.include - .if ${OSVERSION} < 800000 IGNORE= requires usb stack from FreeBSD 8.0-RELEASE or later .endif -.include +.include