Bug 53457 - [patch] [non-maintainer] set NOT_FOR_ARCHS for audio/tclmidi
Summary: [patch] [non-maintainer] set NOT_FOR_ARCHS for audio/tclmidi
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-06-18 20:50 UTC by Mark Linimon
Modified: 2009-01-14 20:29 UTC (History)
0 users

See Also:


Attachments
file.diff (419 bytes, patch)
2003-06-18 20:50 UTC, Mark Linimon
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Mark Linimon 2003-06-18 20:50:20 UTC
	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.

How-To-Repeat: 	n/a
Comment 1 Mark Linimon 2003-06-18 22:07:51 UTC
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
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2003-08-30 01:30:15 UTC
State Changed
From-To: open->closed

Commited, thanks! 
(informed maintainer)