Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Jun 2003 16:07:51 -0500
From:      Mark Linimon <linimon@lonesome.com>
To:        FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/53457: [patch][non-maintainer] set NOT_FOR_ARCHS for audio/tclmidi
Message-ID:  <200306181607.51943.linimon@lonesome.com>
In-Reply-To: <200306181950.h5IJoKEh063289@freefall.freebsd.org>
References:  <200306181950.h5IJoKEh063289@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
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.

--- tclmidi/Makefile.dist	Fri Feb 21 07:14:32 2003
+++ tclmidi/Makefile	Wed Jun 18 16:06:18 2003
@@ -15,6 +15,10 @@
 MAINTAINER=	shanee@augusta.de
 COMMENT=	A language designed for creating and editing standard MIDI files
 
+.if ${MACHINE_ARCH} == "ia64" || ${MACHINE_ARCH} == "sparc64"
+IGNORE=		"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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200306181607.51943.linimon>