From owner-freebsd-ports@FreeBSD.ORG Wed Dec 30 10:13:41 2009 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B25A110656A4 for ; Wed, 30 Dec 2009 10:13:41 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from mail-iw0-f198.google.com (mail-iw0-f198.google.com [209.85.223.198]) by mx1.freebsd.org (Postfix) with ESMTP id 722DC8FC2D for ; Wed, 30 Dec 2009 10:13:41 +0000 (UTC) Received: by iwn36 with SMTP id 36so8024734iwn.3 for ; Wed, 30 Dec 2009 02:13:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=+Leavv1XWuoK/0ZBo2AHEkLq77IX1wB2JanXSOizz18=; b=bJhc+yB21sK0h//HZ0ukFKBVgdMghKovIXtooQqlrOVw4aygF3QI56DF4kNjUk4EvM hYvtYWTXA18TKKiiGYZIsV6Jb9iXJnN0LtaWyDa8b/bo63YHWCxj11i9zjpA6GlBTJ7R lPUBdcQzspHoEXyOVWYVrQhgUsr6YTSHS0T1I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=xkzyfOh0Y398MJPSkpW7fIvDLgFy1GrY3VtGeRMGZikyuNefC2xpsCrx0T97XP5aDQ HFZ0/VnYatTPbbb8Vgm3wLlt3UwDtPlWp6Sipb+ixxTAAYKfD2c4eTQJ/9MomEeqmHcr Z1GSmWJ0WsgjkLwqsaVIXuuI2a8pyPGTUvWQs= MIME-Version: 1.0 Received: by 10.231.120.90 with SMTP id c26mr1029527ibr.1.1262168008416; Wed, 30 Dec 2009 02:13:28 -0800 (PST) In-Reply-To: <15694.1262163232@tristatelogic.com> References: <3jcA1ljpZsB1WBdNgXUe/MEiwds@SNwcwk2DeGhgeFqjLEiQrEAOiKg> <15694.1262163232@tristatelogic.com> Date: Wed, 30 Dec 2009 04:13:28 -0600 Message-ID: <790a9fff0912300213ue31688u63ff118e803eb958@mail.gmail.com> From: Scot Hetzel To: "Ronald F. Guilmette" Content-Type: text/plain; charset=ISO-8859-1 Cc: rea-fbsd@codelabs.ru, freebsd-ports@freebsd.org Subject: Re: Need help disabling (re-)configure step X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Dec 2009 10:13:41 -0000 On Wed, Dec 30, 2009 at 2:53 AM, Ronald F. Guilmette wrote: > So now... I FINALLY (whew!) got avahi-app built and installed... albeit > one which does not use that DBus thingy. OK swell. So now I go on to > build gthumb and I get the crap below. Have you got any sage suggestions > for how I should get past _this_ new problem? > > If you do, I'd be much obliged. Thanks. : > ===> Verifying install for gnomevfs-2.0 in /usr/ports/devel/gnome-vfs > ===> gnome-vfs-2.24.2 depends on executable: gmake - found > ===> gnome-vfs-2.24.2 depends on package: libtool>=2.2 - found > ===> gnome-vfs-2.24.2 depends on file: /usr/local/bin/intltool-extract - found > ===> gnome-vfs-2.24.2 depends on file: /usr/local/libdata/pkgconfig/gnome-mime-data-2.0.pc - found > ===> gnome-vfs-2.24.2 depends on executable: pkg-config - found > ===> gnome-vfs-2.24.2 depends on shared library: hal.1 - found > ===> gnome-vfs-2.24.2 depends on shared library: smbclient.0 - found > ===> gnome-vfs-2.24.2 depends on shared library: avahi-client - not found > ===> Verifying install for avahi-client in /usr/ports/net/avahi-app > ===> Returning to build of gnome-vfs-2.24.2 > Error: shared library "avahi-client" does not exist > *** Error code 1 The reason that libavahi-client doesn't exists is due to you had build avahi-app without D-Bus support: Building libavahi-core yes Building avahi-daemon: yes Building avahi-dnsconfd: yes Building libavahi-client: no (You need avahi-daemon and D-Bus!) To get the devel/gnome-vfs to build without the libavahi-client do the following: cd /usr/ports/devel/gnome-vfs make config Uncheck "Enable Bonjour/Rendezvous support", and then do a 'make install'. You should now be able to deinstall the avahi-app, as the only thing that depended on it was gn Scot