From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 30 13:30:22 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CD3516A4D1 for ; Tue, 30 May 2006 13:30:22 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2055243D46 for ; Tue, 30 May 2006 13:30:20 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k4UDUJja048041 for ; Tue, 30 May 2006 13:30:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k4UDUJJd048040; Tue, 30 May 2006 13:30:19 GMT (envelope-from gnats) Resent-Date: Tue, 30 May 2006 13:30:19 GMT Resent-Message-Id: <200605301330.k4UDUJJd048040@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas-Martin Seck Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C60016A53A for ; Tue, 30 May 2006 13:22:58 +0000 (UTC) (envelope-from thomas@hardy.tmseck.homedns.org) Received: from smtp2.netcologne.de (smtp2.netcologne.de [194.8.194.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id C564143D70 for ; Tue, 30 May 2006 13:22:57 +0000 (GMT) (envelope-from thomas@hardy.tmseck.homedns.org) Received: from laurel.tmseck.homedns.org (xdsl-213-196-227-229.netcologne.de [213.196.227.229]) by smtp2.netcologne.de (Postfix) with SMTP id B8C4C4976 for ; Tue, 30 May 2006 15:22:56 +0200 (MEST) Received: (qmail 1489 invoked from network); 30 May 2006 13:23:19 -0000 Received: from unknown (HELO hardy.tmseck.homedns.org) (192.168.1.2) by 0 with SMTP; 30 May 2006 13:23:19 -0000 Received: from hardy.tmseck.homedns.org (localhost [127.0.0.1]) by hardy.tmseck.homedns.org (8.13.6/8.13.6) with ESMTP id k4UDMtIU027206; Tue, 30 May 2006 15:22:55 +0200 (CEST) (envelope-from thomas@hardy.tmseck.homedns.org) Received: (from thomas@localhost) by hardy.tmseck.homedns.org (8.13.6/8.13.6/Submit) id k4UDMtRk027205; Tue, 30 May 2006 15:22:55 +0200 (CEST) (envelope-from thomas) Message-Id: <200605301322.k4UDMtRk027205@hardy.tmseck.homedns.org> Date: Tue, 30 May 2006 15:22:55 +0200 (CEST) From: Thomas-Martin Seck To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/98144: [Maintainer] www/dillo: activate optional download gui X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Thomas-Martin Seck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 May 2006 13:30:23 -0000 >Number: 98144 >Category: ports >Synopsis: [Maintainer] www/dillo: activate optional download gui >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue May 30 13:30:18 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Thomas-Martin Seck >Release: FreeBSD 6.1-STABLE i386 >Organization: a private site in Germany >Environment: FreeBSD ports collection as of May 30, 2006. >Description: Implement a new configuration option WITH_DILLO_DLGUI (not enabled by default). Dillo will use a FLTK2 based gui for file downloads when this option is set. >How-To-Repeat: >Fix: Apply this patch: Index: Makefile =================================================================== --- Makefile (.../www/dillo) (revision 850) +++ Makefile (.../local/dillo) (revision 850) @@ -6,6 +6,7 @@ # # Tunables: # WITH_DILLO_SSL: enable experimental SSL support +# WITH_DILLO_DLGUI: enable experimental FLTK2 based gui for file downloads # PORTNAME= dillo @@ -29,7 +30,6 @@ CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \ LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --enable-cookies --enable-ipv6 --enable-threaded-dns \ - --disable-dlgui \ --libdir=${PREFIX}/libexec .if defined(WITH_DILLO_SSL) @@ -40,6 +40,15 @@ CONFIGURE_ARGS+= --disable-ssl .endif +.if defined(WITH_DILLO_DLGUI) +CONFIGURE_ARGS+= --enable-dlgui +BUILD_DEPENDS+= fltk>=2.0.r4825:${PORTSDIR}/x11-toolkits/fltk2 +CPPFLAGS+= -I${X11BASE}/include +LDFLAGS+= -L${X11BASE}/lib +.else +CONFIGURE_ARGS+= --disable-dlgui +.endif + CONFLICTS= dillo-i18n-*[0-9]* post-patch: @@ -54,6 +63,11 @@ @${ECHO_CMD} " Set WITH_DILLO_SSL=yes in your make environment or on the" @${ECHO_CMD} " commandline to enable experimental SSL support." .endif +.if !defined(WITH_DILLO_DLGUI) @${ECHO_CMD} "" + @${ECHO_CMD} " Set WITH_DILLO_DLGUI=yes in your make environment or on the" + @${ECHO_CMD} " commandline to enable a FLTK2 based gui for download operations." +.endif + @${ECHO_CMD} "" .include >Release-Note: >Audit-Trail: >Unformatted: