From owner-freebsd-gnome@FreeBSD.ORG Wed May 15 05:30:17 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D71322E4 for ; Wed, 15 May 2013 05:30:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id B1AC0DBE for ; Wed, 15 May 2013 05:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r4F5UH5e042693 for ; Wed, 15 May 2013 05:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r4F5UHrT042692; Wed, 15 May 2013 05:30:17 GMT (envelope-from gnats) Date: Wed, 15 May 2013 05:30:17 GMT Message-Id: <201305150530.r4F5UHrT042692@freefall.freebsd.org> To: gnome@FreeBSD.org From: John Marino Subject: ports/178535: textproc/docbook-sk: RUN_DEPENDS misconfigured for pkgng X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: John Marino List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 May 2013 05:30:17 -0000 The following reply was made to PR ports/178535; it has been noted by GNATS. From: John Marino To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: ports/178535: textproc/docbook-sk: RUN_DEPENDS misconfigured for pkgng Date: Sun, 12 May 2013 15:02:38 GMT >Number: 178535 >Category: ports >Synopsis: textproc/docbook-sk: RUN_DEPENDS misconfigured for pkgng >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun May 12 15:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: John Marino >Release: >Organization: >Environment: >Description: The docbook-sk port defines the RUN_DEPENDS as a full path including the $PREFIX. pkg doesn't seem to like it and emits an error. The fix is just give the binary without a path to RUN_DEPENDS example before the patch is applied: ============================= ===> Installing existing package /usr/packages/All/docbook-xsl-1.76.1.txz Installing docbook-xsl-1.76.1...Installing docbook-sk-4.1.2_4...missing dependency xmlcatmgr-2.2 Failed to install the following 1 package(s): /usr/packages/All/docbook-xsl-1.76.1.txz ===> Returning to build of roxterm-2.7.1 same example after the patch is applied: ============================= Installing docbook-xsl-1.76.1...Installing docbook-sk-4.1.2_4...Installing xmlcatmgr-2.2... + Creating /usr/local/share/sgml/catalog + Registering CATALOG catalog.ports (SGML) + Creating /usr/local/share/sgml/catalog.ports + Creating /usr/local/share/xml/catalog + Registering nextCatalog catalog.ports (XML) + Creating /usr/local/share/xml/catalog.ports done done >How-To-Repeat: try to build x11/roxterm in poudriere with pkgng >Fix: Patch attached with submission follows: --- Makefile.orig 2012-11-17 06:01:54.000000000 +0000 +++ Makefile @@ -15,7 +15,7 @@ DISTNAME= docbkx${PORTVERSION:S/.//g} MAINTAINER= gnome@FreeBSD.org COMMENT= XML version of the DocBook DTD version controlled for ScrollKeeper -RUN_DEPENDS= ${XMLCATMGR}:${PORTSDIR}/textproc/xmlcatmgr +RUN_DEPENDS= xmlcatmgr:${PORTSDIR}/textproc/xmlcatmgr USE_ZIP= yes NO_BUILD= yes >Release-Note: >Audit-Trail: >Unformatted: _______________________________________________ freebsd-ports-bugs@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports-bugs To unsubscribe, send any mail to "freebsd-ports-bugs-unsubscribe@freebsd.org"