mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
e5c598f182
- Use PTHREAD_LIBS. - Fix compile warning. Submitted by: hselasky (maintainer)
41 lines
841 B
Makefile
41 lines
841 B
Makefile
# Ports collection makefile for: libumidi
|
|
# Date created: 21 June 2011
|
|
# Whom: Hans Petter Selasky <hselasky@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libumidi
|
|
PORTVERSION= 2.0.5
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.selasky.org/hans_petter/distfiles/ \
|
|
http://hselasky.homeunix.org:8192/distfiles/
|
|
|
|
MAINTAINER= hselasky@FreeBSD.org
|
|
COMMENT= A universal general purpose MIDI library
|
|
|
|
LICENSE= BSD
|
|
USE_BZIP2= yes
|
|
MAN3= umidi20.3
|
|
MANCOMPRESSED= yes
|
|
|
|
OPTIONS= DEBUG "Build with debugging support" Off \
|
|
JACK "Build with Jack support" On
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
MAKE_ARGS+=" PTHREAD_LIBS=${PTHREAD_LIBS}"
|
|
|
|
.if defined(WITH_JACK)
|
|
MAKE_ARGS+=" HAVE_JACK=YES"
|
|
LIB_DEPENDS= jack.0:${PORTSDIR}/audio/jack
|
|
.endif
|
|
|
|
.if defined(WITH_DEBUG)
|
|
MAKE_ARGS+=" HAVE_DEBUG=YES"
|
|
.endif
|
|
|
|
MAKE_ARGS+=" HAVE_MAN=YES"
|
|
|
|
.include <bsd.port.mk>
|