From linimon@lonesome.com  Wed Jun 18 12:46:34 2003
Return-Path: <linimon@lonesome.com>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id CBDB037B401
	for <FreeBSD-gnats-submit@FreeBSD.org>; Wed, 18 Jun 2003 12:46:34 -0700 (PDT)
Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66])
	by mx1.FreeBSD.org (Postfix) with ESMTP id C365743FAF
	for <FreeBSD-gnats-submit@FreeBSD.org>; Wed, 18 Jun 2003 12:46:33 -0700 (PDT)
	(envelope-from linimon@lonesome.com)
Received: from lonesome.lonesome.com (cs242746-11.austin.rr.com [24.27.46.11])
	(using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits))
	(No client certificate requested)
	by mail.soaustin.net (Postfix) with ESMTP id 097CA140CB
	for <FreeBSD-gnats-submit@FreeBSD.org>; Wed, 18 Jun 2003 14:46:33 -0500 (CDT)
Received: from lonesome.lonesome.com (localhost.lonesome.com [127.0.0.1])
	by lonesome.lonesome.com (8.12.9/8.12.3) with ESMTP id h5IJoiNa032053
	for <FreeBSD-gnats-submit@FreeBSD.org>; Wed, 18 Jun 2003 14:50:44 -0500 (CDT)
	(envelope-from linimon@lonesome.lonesome.com)
Received: (from linimon@localhost)
	by lonesome.lonesome.com (8.12.9/8.12.6/Submit) id h5IJoh3E032052;
	Wed, 18 Jun 2003 14:50:43 -0500 (CDT)
	(envelope-from linimon)
Message-Id: <200306181950.h5IJoh3E032052@lonesome.lonesome.com>
Date: Wed, 18 Jun 2003 14:50:43 -0500 (CDT)
From: Mark Linimon <linimon@lonesome.com>
Reply-To:
To: FreeBSD-gnats-submit@FreeBSD.org
Cc:
Subject: [patch][non-maintainer] set NOT_FOR_ARCHS for audio/tclmidi
X-Send-Pr-Version: 3.113.1
X-GNATS-Notify:

>Number:         53457
>Category:       ports
>Synopsis:       [patch] [non-maintainer] set NOT_FOR_ARCHS for audio/tclmidi
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jun 18 12:50:20 PDT 2003
>Closed-Date:    Fri Aug 29 17:30:38 PDT 2003
>Last-Modified:  Wed Jan 14 20:29:47 UTC 2009
>Originator:     Mark Linimon
>Release:        FreeBSD-4.7
>Organization:
FreeBSD
>Environment:
System: FreeBSD lonesome.lonesome.com 4.7-STABLE FreeBSD 4.7-STABLE #0: Fri Nov 8 23:46:29 CST 2002 root@lonesome.lonesome.com:/usr/src/sys/compile/MULTIMEDIA i386
>Description:
	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
>Fix:

--- tclmidi/Makefile.dist	Fri Feb 21 07:14:32 2003
+++ tclmidi/Makefile	Wed Jun 18 14:47:48 2003
@@ -15,6 +15,9 @@
 MAINTAINER=	shanee@augusta.de
 COMMENT=	A language designed for creating and editing standard MIDI files
 
+# seems to have problems with pointer casting as of 06/18/2003
+NOT_FOR_ARCHS=	ia64 sparc64
+
 LIB_DEPENDS=	tcl82.1:${PORTSDIR}/lang/tcl82
 
 MAKE_ENV=	TCL_GENERIC_DIR=${LOCALBASE}/include/tcl8.2
>Release-Note:
>Audit-Trail:

From: Mark Linimon <linimon@lonesome.com>
To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org
Cc:  
Subject: Re: ports/53457: [patch][non-maintainer] set NOT_FOR_ARCHS for audio/tclmidi
Date: Wed, 18 Jun 2003 16:07:51 -0500

 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
 
State-Changed-From-To: open->closed 
State-Changed-By: edwin 
State-Changed-When: Fri Aug 29 17:30:15 PDT 2003 
State-Changed-Why:  
Commited, thanks! 
(informed maintainer) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=53457 
>Unformatted:
