diff options
author | Juergen Lock <nox@FreeBSD.org> | 2012-11-24 20:04:03 +0000 |
---|---|---|
committer | Juergen Lock <nox@FreeBSD.org> | 2012-11-24 20:04:03 +0000 |
commit | 983cb26eba6651881b87d6d595ac024b735e62a0 (patch) | |
tree | 5624900e990fe8b7c0a848922ced72744ddf746b /audio/jack_ghero/Makefile | |
parent | c63bafd09f05464385fca64c2f064335a8f606d9 (diff) | |
download | ports-983cb26eba6651881b87d6d595ac024b735e62a0.tar.gz ports-983cb26eba6651881b87d6d595ac024b735e62a0.zip |
Notes
Diffstat (limited to 'audio/jack_ghero/Makefile')
-rw-r--r-- | audio/jack_ghero/Makefile | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/audio/jack_ghero/Makefile b/audio/jack_ghero/Makefile index abc398266442..3433e1079b91 100644 --- a/audio/jack_ghero/Makefile +++ b/audio/jack_ghero/Makefile @@ -1,9 +1,5 @@ -# Ports collection makefile for: jack_ghero -# Date created: 21 June 2011 -# Whom: Hans Petter Selasky <hselasky@FreeBSD.org> -# +# Created by: Hans Petter Selasky <hselasky@FreeBSD.org> # $FreeBSD$ -# PORTNAME= jack_ghero PORTVERSION= 1.0.3 @@ -14,9 +10,10 @@ MASTER_SITES= http://www.selasky.org/hans_petter/distfiles/ \ 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 <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 -.include <bsd.port.pre.mk> - .if ${OSVERSION} < 800000 IGNORE= requires usb stack from FreeBSD 8.0-RELEASE or later .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |