From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 26 05:10:23 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD97316A41F for ; Tue, 26 Jul 2005 05:10:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60E0B43D46 for ; Tue, 26 Jul 2005 05:10:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j6Q5ANXN026967 for ; Tue, 26 Jul 2005 05:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j6Q5ANCE026966; Tue, 26 Jul 2005 05:10:23 GMT (envelope-from gnats) Date: Tue, 26 Jul 2005 05:10:23 GMT Message-Id: <200507260510.j6Q5ANCE026966@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: John Merryweather Cooper Cc: Subject: Re: ports/84048: sysutils/ntfsprogs: partition device access requires 512 byte size X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Merryweather Cooper List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Jul 2005 05:10:23 -0000 The following reply was made to PR ports/84048; it has been noted by GNATS. From: John Merryweather Cooper To: Joe Marcus Clarke Cc: Andriy Gapon , gnome@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/84048: sysutils/ntfsprogs: partition device access requires 512 byte size Date: Mon, 25 Jul 2005 23:05:09 -0600 This is a multi-part message in MIME format. --------------060408060604010404060105 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Joe Marcus Clarke wrote: >On Mon, 2005-07-25 at 09:06 -0600, John Merryweather Cooper wrote: > > > >>> >>> >>> >>> >>While we're at it, if the GNOMEVFS2 option is selected, the build fails >>as follows: >> >>"/usr/ports/Mk/bsd.gnome.mk", line 598: Malformed conditional >>(${_USE_GNOME_ALL:Mgnomevfs2}=="") >>"/usr/ports/Mk/bsd.port.mk", line 5234: if-less endif >>make: fatal errors encountered -- cannot continue >>*** Error code 1 >> >>Looks like some of the code in bsd.gnome.mk got a little side-ways in a >>recent commit. >> >> > >The bug is in ntfsprogs. They are missing: > >WANT_GNOME= yes > >Somewhere before bsd.port.pre.mk. Without this, none of the GNOME >macros will be defined. > >Joe > > > >>jmc >> >>_______________________________________________ >>freebsd-gnome@freebsd.org mailing list >>http://lists.freebsd.org/mailman/listinfo/freebsd-gnome >>To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" >> >> >> This patch to the Makefile fixes the build with WITH_GNOMEVFS2. jmc --------------060408060604010404060105 Content-Type: text/plain; name="patch-Makefile" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch-Makefile" --- Makefile Fri Jun 17 09:13:06 2005 +++ Makefile.new Mon Jul 25 23:00:47 2005 @@ -39,6 +39,8 @@ ntfsresize.8 \ ntfsundelete.8 +WANT_GNOME= yes + .include .if defined(WITH_GNOMEVFS2) --------------060408060604010404060105--