From nobody@FreeBSD.org  Wed Jun 12 15:37:10 2013
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
	by hub.freebsd.org (Postfix) with ESMTP id 635C6CA5
	for <freebsd-gnats-submit@FreeBSD.org>; Wed, 12 Jun 2013 15:37:10 +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 560B116AA
	for <freebsd-gnats-submit@FreeBSD.org>; Wed, 12 Jun 2013 15:37:10 +0000 (UTC)
Received: from oldred.freebsd.org ([127.0.1.6])
	by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r5CFb9kK042281
	for <freebsd-gnats-submit@FreeBSD.org>; Wed, 12 Jun 2013 15:37:09 GMT
	(envelope-from nobody@oldred.freebsd.org)
Received: (from nobody@localhost)
	by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r5CFb9Dh042237;
	Wed, 12 Jun 2013 15:37:09 GMT
	(envelope-from nobody)
Message-Id: <201306121537.r5CFb9Dh042237@oldred.freebsd.org>
Date: Wed, 12 Jun 2013 15:37:09 GMT
From: Kenta Suzumoto <kentas@hush.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [patch] net/tightvnc pulling in extra dependency
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         179519
>Category:       ports
>Synopsis:       [patch] net/tightvnc pulling in extra dependency
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    itetcu
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jun 12 15:40:01 UTC 2013
>Closed-Date:    Sat Jul 27 15:54:09 UTC 2013
>Last-Modified:  Sat Jul 27 16:00:00 UTC 2013
>Originator:     Kenta Suzumoto
>Release:        9.1-STABLE
>Organization:
>Environment:
>Description:
The net/tightvnc port currently pulls in lang/gcc from ports, which is really huge and takes forever to build. Despite the last commit from miwi saying "Unbreak build for clang" it's still asking for gcc. The one from base builds it fine, so I think we shouldn't pull in lang/gcc to build it.

Maintainer will probably timeout again.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

Index: Makefile
===================================================================
--- Makefile	(revision 320699)
+++ Makefile	(working copy)
@@ -22,7 +22,7 @@
 
 WRKSRC=		${WRKDIR}/vnc_unixsrc
 
-USE_GCC=	yes
+USE_GCC=	any
 USE_BZIP2=	yes
 USE_PERL5=	yes
 USE_IMAKE=	yes


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->itetcu 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Wed Jun 12 15:40:09 UTC 2013 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=179519 
State-Changed-From-To: open->closed 
State-Changed-By: crees 
State-Changed-When: Sat Jul 27 15:54:08 UTC 2013 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/179519: commit references a PR
Date: Sat, 27 Jul 2013 15:54:10 +0000 (UTC)

 Author: crees
 Date: Sat Jul 27 15:53:56 2013
 New Revision: 323793
 URL: http://svnweb.freebsd.org/changeset/ports/323793
 
 Log:
   remove GCC requirement
   
   PR:		ports/179519
   Submitted by:	Kenta Suzumoto <kentas@hush.com> (also by 4721 below)
   
   add LICENSE
   remove shared library version from depends
   remove stale comment
   
   PR:		ports/180063
   Submitted by:	4721@hushmail.com
   Approved by:	maintainer timeout (itetcu, 5 weeks)
 
 Modified:
   head/net/tightvnc/Makefile
 
 Modified: head/net/tightvnc/Makefile
 ==============================================================================
 --- head/net/tightvnc/Makefile	Sat Jul 27 15:29:02 2013	(r323792)
 +++ head/net/tightvnc/Makefile	Sat Jul 27 15:53:56 2013	(r323793)
 @@ -4,28 +4,27 @@
  PORTNAME=	tightvnc
  PORTVERSION=	1.3.10
  PORTREVISION=	3
 -CATEGORIES=	net
 +CATEGORIES=	net java
  MASTER_SITES=	SF/vnc-tight/TightVNC-unix/${PORTVERSION}
  DISTNAME=	${PORTNAME}-${PORTVERSION}_unixsrc
  
  MAINTAINER=	itetcu@FreeBSD.org
  COMMENT=	Enhanced version of VNC
  
 -LIB_DEPENDS=	jpeg.11:${PORTSDIR}/graphics/jpeg
 +LICENSE=	GPLv2
 +LICENSE_FILE=	${WRKSRC}/LICENCE.TXT
 +
 +LIB_DEPENDS=	jpeg:${PORTSDIR}/graphics/jpeg
  RUN_DEPENDS=	showrgb:${PORTSDIR}/x11/rgb \
  		xauth:${PORTSDIR}/x11/xauth \
  		xorg-fonts>=7.2:${PORTSDIR}/x11-fonts/xorg-fonts
  
  MAKE_JOBS_UNSAFE=	yes
 -
  CONFLICTS=	tridiavnc-[0-9]* vnc-[0-9]*
 -
  WRKSRC=		${WRKDIR}/vnc_unixsrc
 -
  USES=		imake shebangfix
  SHEBANG_FILES=	vncserver
  CFLAGS+=	-Wno-return-type
 -USE_GCC=	yes
  USE_BZIP2=	yes
  USE_PERL5=	yes
  USE_XORG=	xaw
 @@ -37,9 +36,6 @@ MAN1=		Xvnc.1 vncviewer.1 vncpasswd.1 vn
  OPTIONS_DEFINE=	JVNC_VIEWER
  JVNC_VIEWER_DESC=	Install Java-based vnc viewer
  
 -#.include <bsd.port.pre.mk>
 -
 -### use me when 5.5, 6.1, 6.2R die or we do impement something in b.p.m
  .include <bsd.port.options.mk>
  
  .if ${PORT_OPTIONS:MJVNC_VIEWER}
 _______________________________________________
 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:
