From nobody@FreeBSD.org  Sun May 12 15:02:38 2013
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1])
	by hub.freebsd.org (Postfix) with ESMTP id A2A87359
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 12 May 2013 15:02:38 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from oldred.FreeBSD.org (oldred.freebsd.org [8.8.178.121])
	by mx1.freebsd.org (Postfix) with ESMTP id 9575CEED
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 12 May 2013 15:02:38 +0000 (UTC)
Received: from oldred.FreeBSD.org ([127.0.1.6])
	by oldred.FreeBSD.org (8.14.5/8.14.5) with ESMTP id r4CF2cjE084166
	for <freebsd-gnats-submit@FreeBSD.org>; Sun, 12 May 2013 15:02:38 GMT
	(envelope-from nobody@oldred.FreeBSD.org)
Received: (from nobody@localhost)
	by oldred.FreeBSD.org (8.14.5/8.14.5/Submit) id r4CF2coe084163;
	Sun, 12 May 2013 15:02:38 GMT
	(envelope-from nobody)
Message-Id: <201305121502.r4CF2coe084163@oldred.FreeBSD.org>
Date: Sun, 12 May 2013 15:02:38 GMT
From: John Marino <draco@marino.st>
To: freebsd-gnats-submit@FreeBSD.org
Subject: textproc/docbook-sk: RUN_DEPENDS misconfigured for pkgng
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         178535
>Category:       ports
>Synopsis:       textproc/docbook-sk: RUN_DEPENDS misconfigured for pkgng
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    gnome
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sun May 12 15:10:00 UTC 2013
>Closed-Date:    Mon May 13 15:33:32 UTC 2013
>Last-Modified:  Wed May 15 05:30:16 UTC 2013
>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:
Responsible-Changed-From-To: freebsd-ports-bugs->gnome 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sun May 12 15:10:08 UTC 2013 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=178535 

From: John Marino <draco@marino.st>
To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org
Cc:  
Subject: Re: ports/178535: textproc/docbook-sk: RUN_DEPENDS misconfigured
 for pkgng
Date: Sun, 12 May 2013 17:15:59 +0200

 Actually, it is possible that something else explains this.
 
 I have been deleting and recreating xmlcatmgr and it's possible that 
 poudriere built roxterm simultaneously with xmlcatmgr instead of after 
 it.
 
 This report may be a red herring.
 (my apologies if it is)
State-Changed-From-To: open->closed 
State-Changed-By: kwm 
State-Changed-When: Mon May 13 15:32:55 UTC 2013 
State-Changed-Why:  
Reporter reports issue disapeared. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=178535 

From: John Marino <draco@marino.st>
To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org
Cc:  
Subject: Re: ports/178535: textproc/docbook-sk: RUN_DEPENDS misconfigured
 for pkgng
Date: Sun, 12 May 2013 17:15:59 +0200

 Actually, it is possible that something else explains this.
 
 I have been deleting and recreating xmlcatmgr and it's possible that 
 poudriere built roxterm simultaneously with xmlcatmgr instead of after 
 it.
 
 This report may be a red herring.
 (my apologies if it is)
 _______________________________________________
 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"

From: John Marino <draco@marino.st>
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"
>Unformatted:
