ports/144868: [PATCH] textproc/urlview: attempts to build X11 even if WITHOUT_X11 is defined

yokota33 at gmail.com yokota33 at gmail.com
Fri Mar 19 07:20:07 UTC 2010


>Number:         144868
>Category:       ports
>Synopsis:       [PATCH] textproc/urlview: attempts to build X11 even if WITHOUT_X11 is defined
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Mar 19 07:20:06 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Koji Yokota
>Release:        FreeBSD 8.0-RELEASE i386
>Organization:
>Environment:
System: FreeBSD hoge.otaru-uc.ac.jp 8.0-RELEASE FreeBSD 8.0-RELEASE #4: Mon Dec 7 11:08:05 JST 2009 hoge at hoge.otaru-uc.ac.jp:/usr/src/sys/i386/compile/OUC i386


	
>Description:
	textproc/urlview tries to build X-based web browsers such as Firefox
	by dependency. However, it is not wanted by users who uses mail/mutt
	on systems without X11. Adding respect for WITHOUT_X11 is wanted.
	
>How-To-Repeat:
	
>Fix:

	

--- patch-Makefile begins here ---
--- Makefile.orig	2010-02-05 20:44:35.000000000 +0900
+++ Makefile	2010-03-19 15:20:10.000000000 +0900
@@ -27,6 +27,7 @@
 
 .include <bsd.port.pre.mk>
 
+.if !defined(WITHOUT_X11)
 .if defined(WITH_GECKO)
 USE_GECKO=	firefox-devel firefox35 seamonkey
 .include "${PORTSDIR}/Mk/bsd.gecko.mk"
@@ -37,6 +38,7 @@
 RUN_DEPENDS+=	${LOCALBASE}/lib/firefox3/firefox:${PORTSDIR}/www/firefox35
 GECKO=		firefox3
 .endif
+.endif
 
 post-patch:
 	@${REINPLACE_CMD} -e "s,!!PREFIX!!,${PREFIX},g" \
--- patch-Makefile ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list