63f76304d6
MAKE_JOBS_NUMBER to 1. This makes it safe to do -j${MAKE_JOBS_NUMBER} without any extra logic. - Cleanup ports working around the empty MAKE_JOBS_NUMBER - This also fixes several ports that were expecting MAKE_JOBS_NUMBER to always have a number Reviewed by: bapt Spotted by: John Marino <draco@marino.st> With hat: portmgr
41 lines
861 B
Makefile
41 lines
861 B
Makefile
# New ports collection makefile for: gmidimonitor
|
|
# Date created: 2007-03-20
|
|
# Whom: trasz <trasz@pin.if.uz.zgora.pl>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gmidimonitor
|
|
PORTVERSION= 3.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://download.gna.org/gmidimonitor/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GTK+ application that shows MIDI events
|
|
|
|
LIB_DEPENDS= jack.0:${PORTSDIR}/audio/jack \
|
|
lash.2:${PORTSDIR}/audio/lash
|
|
|
|
USE_BZIP2= yes
|
|
USE_GNOME= gtk20 libglade2
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
PLIST_FILES= bin/gmidimonitor %%DATADIR%%/gmidimonitor.ui
|
|
PLIST_DIRS= %%DATADIR%%
|
|
|
|
MAKE_JOBS_ARGS= -j${MAKE_JOBS_NUMBER}
|
|
|
|
do-configure:
|
|
@(cd ${WRKSRC} && ./waf configure --prefix=${PREFIX} --alsa=no)
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC} && ./waf ${MAKE_JOBS_ARGS})
|
|
|
|
do-install:
|
|
@(cd ${WRKSRC} && ./waf install)
|
|
|
|
.include <bsd.port.mk>
|