From nobody@FreeBSD.org  Fri May 16 13:41:27 2014
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTPS id F3FADE4F
	for <freebsd-gnats-submit@FreeBSD.org>; Fri, 16 May 2014 13:41:26 +0000 (UTC)
Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(Client did not present a certificate)
	by mx1.freebsd.org (Postfix) with ESMTPS id E171A2F92
	for <freebsd-gnats-submit@FreeBSD.org>; Fri, 16 May 2014 13:41:26 +0000 (UTC)
Received: from cgiserv.freebsd.org ([127.0.1.6])
	by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s4GDfQrH073048
	for <freebsd-gnats-submit@FreeBSD.org>; Fri, 16 May 2014 13:41:26 GMT
	(envelope-from nobody@cgiserv.freebsd.org)
Received: (from nobody@localhost)
	by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s4GDfQMR073047;
	Fri, 16 May 2014 13:41:26 GMT
	(envelope-from nobody)
Message-Id: <201405161341.s4GDfQMR073047@cgiserv.freebsd.org>
Date: Fri, 16 May 2014 13:41:26 GMT
From: John Marino <freebsd@marino.st>
To: freebsd-gnats-submit@FreeBSD.org
Subject: security/gnutls3: unconditional dependency print/texinfo is probably wrong
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         189861
>Category:       ports
>Synopsis:       security/gnutls3: unconditional dependency print/texinfo is probably wrong
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    bdrewery
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri May 16 13:50:00 UTC 2014
>Closed-Date:    Sun May 25 10:02:41 CDT 2014
>Last-Modified:  Sun May 25 15:10:00 UTC 2014
>Originator:     John Marino
>Release:        
>Organization:
>Environment:
>Description:
security/gnutls3 has an unconditional build dependency on print/texinfo.

I believe makeinfo is only needed if DOCS option is set.

When I comment out textinfo dependency and have DOCS off, I am able to build gnutls just fine (and /usr/local/bin/makefile is not on system).

I also grepped the log; makeinfo doesn't appear
>How-To-Repeat:

>Fix:
1) confirm that makeinfo is not needed for anything other than DOCS support
2) Once confirmed, remove the unnecessary build depends

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->bdrewery 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Fri May 16 13:50:04 UTC 2014 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=189861 
State-Changed-From-To: open->closed 
State-Changed-By: bdrewery 
State-Changed-When: Sun May 25 10:02:40 CDT 2014 
State-Changed-Why:  
Fixed, thanks 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/189861: commit references a PR
Date: Sun, 25 May 2014 15:02:38 +0000 (UTC)

 Author: bdrewery
 Date: Sun May 25 15:02:34 2014
 New Revision: 355250
 URL: http://svnweb.freebsd.org/changeset/ports/355250
 QAT: https://qat.redports.org/buildarchive/r355250/
 
 Log:
   - Convert to USES=libtool
   - texinfo is only needed when DOCS is selected [1]
   
   PR:		ports/189861 [1]
   Reported by:	marino [1]
 
 Modified:
   head/security/gnutls3/Makefile
   head/security/gnutls3/pkg-plist
 
 Modified: head/security/gnutls3/Makefile
 ==============================================================================
 --- head/security/gnutls3/Makefile	Sun May 25 14:43:43 2014	(r355249)
 +++ head/security/gnutls3/Makefile	Sun May 25 15:02:34 2014	(r355250)
 @@ -3,6 +3,7 @@
  
  PORTNAME=	gnutls
  PORTVERSION=	3.1.23
 +PORTREVISION=	1
  CATEGORIES=	security net
  MASTER_SITES=	ftp://ftp.gnutls.org/gcrypt/gnutls/v3.1/
  PKGNAMESUFFIX=	${GNUTLS_SUFFIX}
 @@ -10,7 +11,6 @@ PKGNAMESUFFIX=	${GNUTLS_SUFFIX}
  MAINTAINER=	bdrewery@FreeBSD.org
  COMMENT=	GNU Transport Layer Security library
  
 -BUILD_DEPENDS=	${LOCALBASE}/bin/makeinfo:${PORTSDIR}/print/texinfo
  LIB_DEPENDS=	libgpg-error.so:${PORTSDIR}/security/libgpg-error \
  		libnettle.so:${PORTSDIR}/security/nettle \
  		libp11-kit.so:${PORTSDIR}/security/p11-kit \
 @@ -19,9 +19,7 @@ LIB_DEPENDS=	libgpg-error.so:${PORTSDIR}
  
  GNUTLS_SUFFIX=	3
  
 -USES=		gmake iconv pkgconfig tar:xz
 -USE_AUTOTOOLS=	libtool
 -USE_GNOME=	ltverhack
 +USES=		gmake iconv libtool:keepla pkgconfig tar:xz
  USE_LDCONFIG=	${PREFIX}/lib/gnutls3
  CPPFLAGS+=	-I${LOCALBASE}/include -fPIC
  LDFLAGS=	-L${LOCALBASE}/lib
 @@ -49,6 +47,8 @@ LIBDANE_DESC=	DNSSEC support for DANE (d
  LIBDANE_LIB_DEPENDS=	libunbound.so:${PORTSDIR}/dns/unbound
  LIBDANE_CONFIGURE_OFF=	--disable-libdane
  
 +DOCS_BUILD_DEPENDS=	${LOCALBASE}/bin/makeinfo:${PORTSDIR}/print/texinfo
 +
  CXX_CONFIGURE_ENABLE=	cxx
  
  .include <bsd.port.options.mk>
 
 Modified: head/security/gnutls3/pkg-plist
 ==============================================================================
 --- head/security/gnutls3/pkg-plist	Sun May 25 14:43:43 2014	(r355249)
 +++ head/security/gnutls3/pkg-plist	Sun May 25 15:02:34 2014	(r355250)
 @@ -46,22 +46,27 @@ info/gnutls3/pkcs11-vision.png
  %%LIBDANE%%lib/gnutls3/libgnutls-dane.la
  %%LIBDANE%%lib/gnutls3/libgnutls-dane.so
  %%LIBDANE%%lib/gnutls3/libgnutls-dane.so.0
 +%%LIBDANE%%lib/gnutls3/libgnutls-dane.so.0.0.0
  lib/gnutls3/libgnutls-openssl.a
  lib/gnutls3/libgnutls-openssl.la
  lib/gnutls3/libgnutls-openssl.so
  lib/gnutls3/libgnutls-openssl.so.27
 +lib/gnutls3/libgnutls-openssl.so.27.0.2
  lib/gnutls3/libgnutls-xssl.a
  lib/gnutls3/libgnutls-xssl.la
  lib/gnutls3/libgnutls-xssl.so
  lib/gnutls3/libgnutls-xssl.so.0
 +lib/gnutls3/libgnutls-xssl.so.0.0.0
  lib/gnutls3/libgnutls.a
  lib/gnutls3/libgnutls.la
  lib/gnutls3/libgnutls.so
  lib/gnutls3/libgnutls.so.28
 +lib/gnutls3/libgnutls.so.28.21.3
  %%CXX%%lib/gnutls3/libgnutlsxx.a
  %%CXX%%lib/gnutls3/libgnutlsxx.la
  %%CXX%%lib/gnutls3/libgnutlsxx.so
  %%CXX%%lib/gnutls3/libgnutlsxx.so.28
 +%%CXX%%lib/gnutls3/libgnutlsxx.so.28.1.0
  libdata/pkgconfig/gnutls3.pc
  %%LIBDANE%%libdata/pkgconfig/gnutls3-dane.pc
  %%LIBDANE%%man/man1/danetool3.1.gz
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
>Unformatted:
