From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 6 07:30:07 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A8B11065672 for ; Fri, 6 Feb 2009 07:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0906D8FC1F for ; Fri, 6 Feb 2009 07:30:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n167U6oH068705 for ; Fri, 6 Feb 2009 07:30:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n167U6cW068701; Fri, 6 Feb 2009 07:30:06 GMT (envelope-from gnats) Date: Fri, 6 Feb 2009 07:30:06 GMT Message-Id: <200902060730.n167U6cW068701@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Bruce Cran Cc: Subject: Re: ports/131430: [NEW PORT] comms/dfu-util OpenMoko USB Device Firmware Upgrade Utility X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bruce Cran List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Feb 2009 07:30:07 -0000 The following reply was made to PR ports/131430; it has been noted by GNATS. From: Bruce Cran To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/131430: [NEW PORT] comms/dfu-util OpenMoko USB Device Firmware Upgrade Utility Date: Fri, 6 Feb 2009 07:25:05 +0000 --MP_/Rfcj78Y=8hZML5KwxM8wTm8 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline I removed the check for FreeBSD 8 during testing and forgot to add it back in before submitting the port. Please apply the attached patch before committing. -- Bruce Cran --MP_/Rfcj78Y=8hZML5KwxM8wTm8 Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=Makefile.diff.txt --- Makefile.orig 2009-02-06 07:16:38.000000000 +0000 +++ Makefile 2009-02-06 07:21:37.000000000 +0000 @@ -23,6 +23,10 @@ .include +.if ${OSVERSION} < 800056 +BROKEN=Does not build - requires new USB stack in FreeBSD 8 +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/dfu-util ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/doc/dfu-util.1 ${MAN1PREFIX}/man/man1 --MP_/Rfcj78Y=8hZML5KwxM8wTm8--