From owner-freebsd-gnome@FreeBSD.ORG Mon Jul 14 16:23:03 2003 Return-Path: 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 874C437B401 for ; Mon, 14 Jul 2003 16:23:03 -0700 (PDT) Received: from corbulon.video-collage.com (corbulon.video-collage.com [64.35.99.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99F0943FCB for ; Mon, 14 Jul 2003 16:23:02 -0700 (PDT) (envelope-from mi+mx@aldan.algebra.com) Received: from mteterin.us.murex.com (250-217.customer.cloud9.net [168.100.250.217])h6ENMx7G036331 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=FAIL); Mon, 14 Jul 2003 19:23:00 -0400 (EDT) (envelope-from mi+mx@aldan.algebra.com) From: Mikhail Teterin Organization: Virtual Estates, Inc. To: Joe Marcus Clarke Date: Mon, 14 Jul 2003 19:22:58 -0400 User-Agent: KMail/1.5.1 References: <200307141816.25067@misha-mx.virtual-estates.net> <1058221306.299.91.camel@gyros> In-Reply-To: <1058221306.299.91.camel@gyros> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-u" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200307141922.58178@misha-mx.virtual-estates.net> X-Scanned-By: MIMEDefang 2.21 (www . roaringpenguin . com / mimedefang) cc: FreeBSD GNOME Users Subject: Re: minor patch for gconf X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jul 2003 23:23:03 -0000 =On Mon, 2003-07-14 at 18:16, Mikhail Teterin wrote: => Hello! => => Gconf does not really care, which db-backend it is going to use, it => seems. The following patch makes it accept anything, but default to => db41. If the user already has, say, db2 installed, there is no need => to drag in another version of db just for gconf, is there? => => The patch relies on the ability to use regular expressions in the => LIB_DEPENDS lines, committed in March by kris. Should a particular => version of db be non-suitable for gconf, it is trivial to modify the => patch's regular expression. Thanks! =Technically, this won't work, but that's okay. I don't really use gconf (xmleditor dragged it in through the gnomelibs), so I'm more interested in the "technicality", than in getting anything done :-) Why would it not work? Seems to: ===> gconf-1.0.9_3 depends on executable: gmake - found ===> gconf-1.0.9_3 depends on file: /opt/libexec/libtool13/libtool - found ===> gconf-1.0.9_3 depends on executable: pkg-config - found ===> gconf-1.0.9_3 depends on shared library: guile.15 - found ===> gconf-1.0.9_3 depends on shared library: db[0-9]+ - found ===> gconf-1.0.9_3 depends on shared library: X11.6 - found ===> gconf-1.0.9_3 depends on shared library: glib12.3 - found ===> gconf-1.0.9_3 depends on shared library: gtk12.2 - found ===> gconf-1.0.9_3 depends on shared library: xml.5 - found ===> gconf-1.0.9_3 depends on shared library: ORBit.2 - found ===> gconf-1.0.9_3 depends on shared library: oaf.0 - found ===> Configuring for gconf-1.0.9_3 [...] =The DB backend isn't used by GConf anyway. You could simply hack =gconf's configure to remove DB detection altogether, and that would be =fine. I would think, it is imperative, that the bogus dependency is cut out from the popular port. Unless I misunderstand you, this is a bug in gconf, that the FreeBSD port of gconf better fixes, is not it? -mi => =================================================================== => RCS file: /home/ncvs/ports/devel/gconf/Makefile,v => retrieving revision 1.38 => diff -U2 -r1.38 Makefile => --- Makefile 12 Jun 2003 09:45:56 -0000 1.38 => +++ Makefile 14 Jul 2003 22:15:53 -0000 => @@ -19,5 +19,5 @@ => => LIB_DEPENDS= guile.15:${PORTSDIR}/lang/guile \ => - db3.3:${PORTSDIR}/databases/db3 => + db[0-9]+:${PORTSDIR}/databases/db41 => => USE_BZIP2= yes => => => _______________________________________________ => freebsd-gnome@freebsd.org mailing list => http://lists.freebsd.org/mailman/listinfo/freebsd-gnome => To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org"