From owner-freebsd-gnome@FreeBSD.ORG Fri Apr 21 00:28:06 2006 Return-Path: X-Original-To: gnome@freebsd.org Delivered-To: freebsd-gnome@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0603C16A400; Fri, 21 Apr 2006 00:28:06 +0000 (UTC) (envelope-from alex@foxybanana.com) Received: from ultrasuede.reed.edu (ultrasuede.reed.edu [134.10.2.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB6C843D68; Fri, 21 Apr 2006 00:28:03 +0000 (GMT) (envelope-from alex@foxybanana.com) Received: from Laptop.mine.box (c029h217.dorm.reed.edu [134.10.29.217]) by ultrasuede.reed.edu (8.13.6/8.13.6) with ESMTP id k3L0S2jc032308 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NOT); Thu, 20 Apr 2006 17:28:02 -0700 Received: from Laptop.mine.box (localhost [127.0.0.1]) by Laptop.mine.box (8.13.4/8.13.4) with ESMTP id k3L0RB5s052742; Thu, 20 Apr 2006 17:27:11 -0700 (PDT) (envelope-from alex@Laptop.mine.box) Received: (from alex@localhost) by Laptop.mine.box (8.13.4/8.13.4/Submit) id k3L0RAYR052741; Thu, 20 Apr 2006 17:27:10 -0700 (PDT) (envelope-from alex) Date: Thu, 20 Apr 2006 17:27:10 -0700 (PDT) Message-Id: <200604210027.k3L0RAYR052741@Laptop.mine.box> To: FreeBSD-gnats-submit@freebsd.org From: Alexander Botero-Lowry X-send-pr-version: 3.113 X-GNATS-Notify: X-Scanned-By: MIMEDefang 2.53 on 134.10.2.46 Cc: gnome@freebsd.org Subject: [PATCH] devel/glade2: Add a WITHOUT_GNOME knob X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Apr 2006 00:28:06 -0000 >Submitter-Id: current-users >Originator: Alexander Botero-Lowry >Organization: >Confidential: no >Synopsis: [PATCH] devel/glade2: Add a WITHOUT_GNOME knob >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 6.0-STABLE i386 >Environment: System: FreeBSD Laptop.mine.box 6.0-STABLE FreeBSD 6.0-STABLE #1: Tue Feb 7 19:06:16 PST >Description: - glade does not require gnome support, it is just an option, so I made a (non-default) knob to disable GNOME support. Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- glade2-2.12.1_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/glade2/Makefile /usr/local/tinderbox/portstrees/FreeBSD/ports/devel/glade2/Makefile --- /usr/ports/devel/glade2/Makefile Thu Apr 20 16:58:07 2006 +++ /usr/local/tinderbox/portstrees/FreeBSD/ports/devel/glade2/Makefile Thu Apr 20 17:24:14 2006 @@ -18,21 +18,29 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= A user interface builder for GTK+/GNOME -RUN_DEPENDS= ${X11BASE}/lib/gtk-2.0/modules/libgail-gnome.so:${PORTSDIR}/x11-toolkits/libgail-gnome - USE_BZIP2= yes USE_GETTEXT= yes USE_X_PREFIX= yes INSTALLS_OMF= yes GNU_CONFIGURE= yes -USE_GNOME= gnomeprefix intlhack gnomehack libgnomeui +USE_GNOME= gnomeprefix intlhack gnomehack USE_GMAKE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" -#OPTIONS= GNOMEDB "Enable libgnomedb support" off +OPTIONS= GNOME "Enable gnome support" on #\ +# GNOMEDB "Enable libgnomedb support" off .include +.if defined(WITHOUT_GNOME) +CONFIGURE_ARGS+= --disable-gnome +BUILD_DEPENDS= scrollkeeper-config:${PORTSDIR}/textproc/scrollkeeper +RUN_DEPENDS= scrollkeeper-config:${PORTSDIR}/textproc/scrollkeeper +USE_GNOME+= gtk20 +.else +USE_GNOME+= libgnomeui +RUN_DEPENDS= ${X11BASE}/lib/gtk-2.0/modules/libgail-gnome.so:${PORTSDIR}/x11-toolkits/libgail-gnome +.endif #.if defined(WITH_GNOMEDB) #USE_GNOME+= libgnomedb --- glade2-2.12.1_1.patch ends here ---