From owner-svn-ports-all@FreeBSD.ORG Wed Dec 18 06:44:53 2013 Return-Path: Delivered-To: svn-ports-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C3F1CA2; Wed, 18 Dec 2013 06:44:53 +0000 (UTC) Received: from gw.catspoiler.org (gw.catspoiler.org [75.1.14.242]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1E71D1AC1; Wed, 18 Dec 2013 06:44:52 +0000 (UTC) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.13.3/8.13.3) with ESMTP id rBI6ig6o077594; Tue, 17 Dec 2013 22:44:46 -0800 (PST) (envelope-from truckman@FreeBSD.org) Message-Id: <201312180644.rBI6ig6o077594@gw.catspoiler.org> Date: Tue, 17 Dec 2013 22:44:42 -0800 (PST) From: Don Lewis Subject: Re: svn commit: r336187 - in head/databases: akonadi akonadi-googledata couchdb cppdb cyrus-imspd dbtool evolution-data-server firebird20-server firebird21-server firebird25-server freetds freetds-deve... To: bapt@FreeBSD.org In-Reply-To: <20131217213201.GO99753@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Dec 2013 06:44:53 -0000 On 17 Dec, Baptiste Daroussin wrote: > On Tue, Dec 17, 2013 at 01:11:06PM -0800, Don Lewis wrote: >> On 11 Dec, Baptiste Daroussin wrote: >> > Author: bapt >> > Date: Wed Dec 11 18:08:52 2013 >> > New Revision: 336187 >> > URL: http://svnweb.freebsd.org/changeset/ports/336187 >> > >> > Log: >> > In preparation for making libtool generate libraries with a sane name, fix all >> > LIB_DEPENDS in databases >> > >> >> > Modified: head/databases/evolution-data-server/Makefile >> > ============================================================================== >> > --- head/databases/evolution-data-server/Makefile Wed Dec 11 18:05:34 2013 (r336186) >> > +++ head/databases/evolution-data-server/Makefile Wed Dec 11 18:08:52 2013 (r336187) >> > @@ -12,13 +12,13 @@ DIST_SUBDIR= gnome2 >> > MAINTAINER= gnome@FreeBSD.org >> > COMMENT= The data backends for the Evolution integrated mail/PIM suite >> > >> > -LIB_DEPENDS= soup-2.4:${PORTSDIR}/devel/libsoup \ >> > - gdata.7:${PORTSDIR}/devel/libgdata \ >> > - dbus-glib-1:${PORTSDIR}/devel/dbus-glib \ >> > - ical:${PORTSDIR}/devel/libical \ >> > - nss3:${PORTSDIR}/security/nss \ >> > - tasn1:${PORTSDIR}/security/libtasn1 \ >> > - gnome-keyring:${PORTSDIR}/security/libgnome-keyring >> > +LIB_DEPENDS= libsoup-2.so:${PORTSDIR}/devel/libsoup \ >> > + libgdata.so:${PORTSDIR}/devel/libgdata \ >> > + libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ >> > + libical.so:${PORTSDIR}/devel/libical \ >> > + libnss3.so:${PORTSDIR}/security/nss \ >> > + libtasn1.so:${PORTSDIR}/security/libtasn1 \ >> > + libgnome-keyring.so:${PORTSDIR}/security/libgnome-keyring >> > >> > USE_BZIP2= yes >> > USE_GMAKE= yes >> > @@ -52,7 +52,7 @@ KRB5_LIB= `/usr/bin/krb5-config gssapi >> > .endif >> > >> > .if ${PORT_OPTIONS:MWEATHER} >> > -LIB_DEPENDS+= gweather:${PORTSDIR}/net/libgweather >> > +LIB_DEPENDS+= libgweather.so:${PORTSDIR}/net/libgweather >> > CONFIGURE_ARGS+= --with-weather >> > PLIST_SUB+= WEATHER="" >> > .else >> > >> >> This broke evolution-data-server, and it is still broken as of r336693. >> The devel/libsoup port installs these libraries: > > Fixed sorry about it Thanks!