From owner-freebsd-gnome@FreeBSD.ORG Fri Feb 24 07:17:51 2006 Return-Path: X-Original-To: gnome@freebsd.org Delivered-To: freebsd-gnome@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 180BA16A420 for ; Fri, 24 Feb 2006 07:17:51 +0000 (GMT) (envelope-from caelian@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96E8343D45 for ; Fri, 24 Feb 2006 07:17:50 +0000 (GMT) (envelope-from caelian@gmail.com) Received: by zproxy.gmail.com with SMTP id 13so255164nzn for ; Thu, 23 Feb 2006 23:17:50 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer; b=nXtSu/zXPXH9sVM0dmorZ9A9Fd7zWVxJjS347OYOhYFDD057kmRzh+QuOioUK/Es4lYjVz4sc3l0yBnGqXsM6m682pteRVNYfyZ3H5DiL9cVaqqahAGXvTHz3/hbdYDw7FfnIQtDAafcSxCs4sVIu/YCSXIGlRKeAysay6j9ol0= Received: by 10.36.127.11 with SMTP id z11mr6128344nzc; Thu, 23 Feb 2006 23:17:49 -0800 (PST) Received: from synergy.odyssey.homeunix.org ( [68.190.230.198]) by mx.gmail.com with ESMTP id 8sm1815078nzn.2006.02.23.23.17.49; Thu, 23 Feb 2006 23:17:49 -0800 (PST) From: Pascal Hofstee To: gnome@freebsd.org Content-Type: multipart/mixed; boundary="=-0dI43UhZmyL+G6ab/Ip2" Date: Thu, 23 Feb 2006 23:17:47 -0800 Message-Id: <1140765467.825.3.camel@synergy.odyssey.homeunix.org> Mime-Version: 1.0 X-Mailer: Evolution 2.5.91 FreeBSD GNOME Team Port Cc: Subject: bsd.port.mk (at least in MC-gnome) breaks package dependency registration X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Feb 2006 07:17:51 -0000 --=-0dI43UhZmyL+G6ab/Ip2 Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi, With the recent reverting of the PERL_BUILD/RUN_DEPENDS mechanism it looks like somebody removed a single " too much from bsd.port.mk which in turn is causing Syntax error: Unterminated quoted string errors during package registration. Attached is a patch for bsd.port.mk which puts this " back in place which should hopefully restore package registration. It looks like i am forced to uninstall reinstall all my ports now since i only noticed the breakage halfway through a rather involved portupgrade cycle. So my package dependency information in /var/db/pkg is shot. -- Pascal Hofstee --=-0dI43UhZmyL+G6ab/Ip2 Content-Disposition: attachment; filename=patch-bsd.port.mk Content-Type: text/plain; name=patch-bsd.port.mk; charset=us-ascii Content-Transfer-Encoding: 7bit --- bsd.port.mk.orig Thu Feb 23 23:11:32 2006 +++ bsd.port.mk Thu Feb 23 23:11:48 2006 @@ -4690,7 +4690,7 @@ .endif BUILD-DEPENDS-LIST= \ - for dir in $$(${ECHO_CMD} "${EXTRACT_DEPENDS} ${PATCH_DEPENDS} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/^[^:]*://' -e 's/:.*//' | ${SORT} -u) $$(${ECHO_CMD} ${DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/:.*//' | ${SORT} -u); do \ + for dir in $$(${ECHO_CMD} "${EXTRACT_DEPENDS} ${PATCH_DEPENDS} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS}" | ${TR} '\040' '\012' | ${SED} -e 's/^[^:]*://' -e 's/:.*//' | ${SORT} -u) $$(${ECHO_CMD} ${DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/:.*//' | ${SORT} -u); do \ if [ -d $$dir ]; then \ ${ECHO_CMD} $$dir; \ else \ --=-0dI43UhZmyL+G6ab/Ip2--