1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00
freebsd-ports/audio/tclmidi/Makefile
Edwin Groothuis a590475870 [patch][non-maintainer] set NOT_FOR_ARCHS for audio/tclmidi
This port seems to build on neither ia64 nor sparc64,
	probably due to some kind of pointer casting problem.  Mark
	as NOT_FOR_ARCHS to save bento from trying to build it on
	those architectures.

	A more careful reading of bsd.port.mk suggests that IGNORE
	should be set in this case instead of NOT_FOR_ARCHS.  This
	will still save bento build time, but not indicate that the
	port will _never_ run on these archs.

PR:		ports/53457
Submitted by:	Mark Linimon <linimon@lonesome.com>
2003-08-30 00:30:10 +00:00

39 lines
1.2 KiB
Makefile

# New ports collection makefile for: tclmidi
# Date created: 14 May 1999
# Whom: shanee@augusta.de
#
# $FreeBSD$
#
PORTNAME= tclmidi
PORTVERSION= 3.1
CATEGORIES= audio
MASTER_SITES= ftp://ftp.cs.ruu.nl/pub/MIDI/PROGRAMS/
# despite references on the homepage to ftp.xor.com, that server
# doesn't work - edwin 20021227
MAINTAINER= shanee@augusta.de
COMMENT= A language designed for creating and editing standard MIDI files
.if ${MACHINE_ARCH} == "ia64" || ${MACHINE_ARCH} == "sparc64"
IGNORE= "ignored due to cast from pointer to integer of different size"
.endif
LIB_DEPENDS= tcl82.1:${PORTSDIR}/lang/tcl82
MAKE_ENV= TCL_GENERIC_DIR=${LOCALBASE}/include/tcl8.2
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-tclsh=${LOCALBASE}/bin/tclsh8.2
MAN1= mplay.1 mrec.1 tclmidi.1 minfo.1 midtotcl.1
MANN= midiconf.n midievnt.n midifree.n midiget.n midigrep.n \
midimake.n midimerg.n midiplay.n midiput.n midiread.n \
midirec.n midirew.n midisplt.n midistop.n midiwait.n \
midiwrit.n midivers.n midimove.n midicopy.n mididel.n \
miditrck.n mididev.n miditime.n midifeat.n
post-install:
@${CAT} ${PKGMESSAGE} | ${SED} s#/usr/local#${PREFIX}#g
.include <bsd.port.mk>