diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-30 00:30:10 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-30 00:30:10 +0000 |
commit | a5904758703784bee660f7f4656176d08401e112 (patch) | |
tree | 417477fcb520d65001b5ed97edb50d6eae9ece75 /audio | |
parent | ports/devel/tclxml depends on ports/devel/tcllib (diff) |
[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>
Notes
Notes:
svn path=/head/; revision=88017
Diffstat (limited to 'audio')
-rw-r--r-- | audio/tclmidi/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/audio/tclmidi/Makefile b/audio/tclmidi/Makefile index 4818bc26d8ac..8265b30bb58f 100644 --- a/audio/tclmidi/Makefile +++ b/audio/tclmidi/Makefile @@ -15,6 +15,10 @@ MASTER_SITES= ftp://ftp.cs.ruu.nl/pub/MIDI/PROGRAMS/ 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 |