Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Jul 1999 03:45:08 -0500 (CDT)
From:      chris@calldei.com
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/12706: [Patch] xchat port should have USE_GNOME/USE_PANEL hooks
Message-ID:  <199907190845.DAA12400@holly.dyndns.org>

next in thread | raw e-mail | index | archive | help

>Number:         12706
>Category:       ports
>Synopsis:       [Patch] xchat port should have USE_GNOME/USE_PANEL hooks
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jul 19 01:50:00 PDT 1999
>Closed-Date:
>Last-Modified:
>Originator:     Chris Costello
>Release:        FreeBSD 4.0-CURRENT i386
>Organization:
none
>Environment:

Makefile:
     $Id: Makefile,v 1.18 1999/07/19 03:59:57 cpiazza Exp $

>Description:

Users cannot enable the GNOME and GNOME-panel features in X-Chat via the
FreeBSD port.

>How-To-Repeat:

>Fix:

--- /usr/home/chris/FreeBSD/ports/irc/xchat/Makefile	Mon Jul 19 03:20:15 1999
+++ Makefile	Mon Jul 19 03:37:47 1999
@@ -22,7 +22,19 @@
 USE_GMAKE=	yes
 USE_PERL5=	yes
 GNU_CONFIGURE=	yes
-CONFIGURE_ARGS=	--disable-gnome --disable-panel --disable-nls
+CONFIGURE_ARGS=	--disable-nls
+
+.if defined(USE_GNOME)
+CONFIGURE_ARGS+= --enable-gnome
+.if defined(USE_PANEL)
+CONFIGURE_ARGS+= --enable-panel
+.else
+CONFIGURE_ARGS+= --disable-panel
+.endif
+.else
+CONFIGURE_ARGS+= --disable-gnome
+.endif
+
 CONFIGURE_ENV=	GTK_CONFIG="${GTK_CONFIG}"
 
 post-install:

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


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199907190845.DAA12400>