From owner-svn-ports-all@FreeBSD.ORG Wed Jul 16 08:00:01 2014 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 98D3BFB5; Wed, 16 Jul 2014 08:00:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 84F492A54; Wed, 16 Jul 2014 08:00:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6G801eS025686; Wed, 16 Jul 2014 08:00:01 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6G7xxqT025509; Wed, 16 Jul 2014 07:59:59 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201407160759.s6G7xxqT025509@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 16 Jul 2014 07:59:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362047 - in head: databases/opendbx databases/postgresql91-server devel/kyua-cli devel/nemiver devel/php5-ice devel/py-ice devel/valgrind devel/valgrind-devel dns/getdns dns/samba-nsup... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 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, 16 Jul 2014 08:00:01 -0000 Author: bapt Date: Wed Jul 16 07:59:58 2014 New Revision: 362047 URL: http://svnweb.freebsd.org/changeset/ports/362047 QAT: https://qat.redports.org/buildarchive/r362047/ Log: Fix non default LIB_DEPENDS With hat: portmgr Modified: head/databases/opendbx/Makefile head/databases/postgresql91-server/Makefile head/devel/kyua-cli/Makefile head/devel/nemiver/Makefile head/devel/php5-ice/Makefile head/devel/py-ice/Makefile head/devel/valgrind-devel/Makefile head/devel/valgrind/Makefile head/dns/getdns/Makefile head/dns/samba-nsupdate/Makefile Modified: head/databases/opendbx/Makefile ============================================================================== --- head/databases/opendbx/Makefile Wed Jul 16 07:53:29 2014 (r362046) +++ head/databases/opendbx/Makefile Wed Jul 16 07:59:58 2014 (r362047) @@ -40,9 +40,9 @@ SQLITE_LIB_DEPENDS= libsqlite.so:${PORTS SQLITE3_USE= SQLITE=3 -MSSQL_LIB_DEPENDS= sybdb:${PORTSDIR}/databases/freetds +MSSQL_LIB_DEPENDS= libsybdb.so:${PORTSDIR}/databases/freetds -SYBASE_LIB_DEPENDS= ct:${PORTSDIR}/databases/freetds +SYBASE_LIB_DEPENDS= libct.so:${PORTSDIR}/databases/freetds NLS_USES= gettext NLS_CONFIGURE_DISABLE= nls Modified: head/databases/postgresql91-server/Makefile ============================================================================== --- head/databases/postgresql91-server/Makefile Wed Jul 16 07:53:29 2014 (r362046) +++ head/databases/postgresql91-server/Makefile Wed Jul 16 07:59:58 2014 (r362047) @@ -214,7 +214,7 @@ IGNORE= requires that you remove heimdal CONFIGURE_ARGS+=--with-krb5 # Allow defining a home built MIT Kerberos by setting KRB5_HOME . if defined(KRB5_HOME) && exists(${KRB5_HOME}/lib/libgssapi_krb5.a) && exists(${KRB5_HOME}/bin/krb5-config) -LIB_DEPENDS+= krb5.3:${PORTSDIR}/security/krb5 +LIB_DEPENDS+= libkrb5.so:${PORTSDIR}/security/krb5 . endif . endif . endif Modified: head/devel/kyua-cli/Makefile ============================================================================== --- head/devel/kyua-cli/Makefile Wed Jul 16 07:53:29 2014 (r362046) +++ head/devel/kyua-cli/Makefile Wed Jul 16 07:59:58 2014 (r362047) @@ -14,7 +14,7 @@ COMMENT= Kyua (automated testing framewo LICENSE= BSD LIB_DEPENDS= liblutok.so.3:${PORTSDIR}/devel/lutok -LIB_DEPENDS+= sqlite3:${PORTSDIR}/databases/sqlite3 +LIB_DEPENDS+= libsqlite3.so:${PORTSDIR}/databases/sqlite3 BUILD_DEPENDS= kyua-testers>=0.2:${PORTSDIR}/devel/kyua-testers RUN_DEPENDS:= ${BUILD_DEPENDS} Modified: head/devel/nemiver/Makefile ============================================================================== --- head/devel/nemiver/Makefile Wed Jul 16 07:53:29 2014 (r362046) +++ head/devel/nemiver/Makefile Wed Jul 16 07:59:58 2014 (r362047) @@ -56,7 +56,7 @@ GLIB_SCHEMAS= org.nemiver.gschema.xml .if ${PORT_OPTIONS:MGHEX} CONFIGURE_ARGS+=--enable-memoryview PLIST_SUB+= GHEX="" -LIB_DEPENDS+= gtkhex.0:${PORTSDIR}/editors/ghex +LIB_DEPENDS+= libgtkhex.so:${PORTSDIR}/editors/ghex .else CONFIGURE_ARGS+=--disable-memoryview PLIST_SUB+= GHEX="@comment " Modified: head/devel/php5-ice/Makefile ============================================================================== --- head/devel/php5-ice/Makefile Wed Jul 16 07:53:29 2014 (r362046) +++ head/devel/php5-ice/Makefile Wed Jul 16 07:59:58 2014 (r362047) @@ -11,7 +11,7 @@ LICENSE= GPLv2 BUILD_DEPENDS= mcpp:${PORTSDIR}/devel/mcpp \ slice2php:${PORTSDIR}/devel/ice -LIB_DEPENDS= Ice.${LIB_VRS}:${PORTSDIR}/devel/ice +LIB_DEPENDS= libIce.so.${LIB_VRS}:${PORTSDIR}/devel/ice OPTIONS_DEFINE= DEBUG DOCS NAMESPACES OPTIONS_DEFAULT= Modified: head/devel/py-ice/Makefile ============================================================================== --- head/devel/py-ice/Makefile Wed Jul 16 07:53:29 2014 (r362046) +++ head/devel/py-ice/Makefile Wed Jul 16 07:59:58 2014 (r362047) @@ -11,7 +11,7 @@ LICENSE= GPLv2 BUILD_DEPENDS= mcpp:${PORTSDIR}/devel/mcpp \ slice2py:${PORTSDIR}/devel/ice -LIB_DEPENDS= Ice.${LIB_VRS}:${PORTSDIR}/devel/ice +LIB_DEPENDS= libIce.so.${LIB_VRS}:${PORTSDIR}/devel/ice USE_PYTHON= yes SLAVE_PORT= yes Modified: head/devel/valgrind-devel/Makefile ============================================================================== --- head/devel/valgrind-devel/Makefile Wed Jul 16 07:53:29 2014 (r362046) +++ head/devel/valgrind-devel/Makefile Wed Jul 16 07:59:58 2014 (r362047) @@ -32,7 +32,7 @@ OPTIONS_DEFINE_amd64= 32BIT 32BIT_DESC= Enable debugging of 32-bit programs (requires lib32) MPI_DESC= Enable build of MPI wrappers -MPI_LIB_DEPENDS= mpich:${PORTSDIR}/net/mpich2 +MPI_LIB_DEPENDS= libmpich.so:${PORTSDIR}/net/mpich2 OPTIONS_SUB= yes USES= pathfix pkgconfig gmake perl5 shebangfix tar:bzip2 Modified: head/devel/valgrind/Makefile ============================================================================== --- head/devel/valgrind/Makefile Wed Jul 16 07:53:29 2014 (r362046) +++ head/devel/valgrind/Makefile Wed Jul 16 07:59:58 2014 (r362047) @@ -29,7 +29,7 @@ OPTIONS_DEFAULT_amd64= 32BIT 32BIT_DESC= Enable debugging of 32-bit programs (requires lib32) MPI_DESC= Enable build of MPI wrappers -MPI_LIB_DEPENDS= mpich:${PORTSDIR}/net/mpich2 +MPI_LIB_DEPENDS= libmpich.so:${PORTSDIR}/net/mpich2 OPTIONS_SUB= yes USES= pathfix tar:bzip2 pkgconfig gmake perl5 shebangfix Modified: head/dns/getdns/Makefile ============================================================================== --- head/dns/getdns/Makefile Wed Jul 16 07:53:29 2014 (r362046) +++ head/dns/getdns/Makefile Wed Jul 16 07:59:58 2014 (r362047) @@ -37,7 +37,7 @@ LIBEV_LIB_DEPENDS= libev.so:${PORTSDIR}/ LIBEV_CONFIGURE_WITH= libev LIBUV_LIB_DEPENDS= libuv.so:${PORTSDIR}/devel/libuv LIBUV_CONFIGURE_WITH= libuv -LIBEVENT_LIB_DEPENDS= event-1:${PORTSDIR}/devel/libevent +LIBEVENT_LIB_DEPENDS= libevent-1.4.so:${PORTSDIR}/devel/libevent LIBEVENT_CONFIGURE_WITH=libevent .include Modified: head/dns/samba-nsupdate/Makefile ============================================================================== --- head/dns/samba-nsupdate/Makefile Wed Jul 16 07:53:29 2014 (r362046) +++ head/dns/samba-nsupdate/Makefile Wed Jul 16 07:59:58 2014 (r362047) @@ -61,7 +61,7 @@ CONFIGURE_ARGS+= --with-gssapi="${HEIMDA .elif exists(/usr/lib/libkrb5.so) && exists(/usr/bin/krb5-config) CONFIGURE_ARGS+= --with-gssapi="/usr" .else -LIB_DEPENDS+= krb5:${PORTSDIR}/security/heimdal +LIB_DEPENDS+= libkrb5.so:${PORTSDIR}/security/heimdal CONFIGURE_ARGS+= --with-gssapi="${LOCALBASE}" .endif