From owner-svn-ports-head@FreeBSD.ORG Wed Dec 11 10:04:59 2013 Return-Path: Delivered-To: svn-ports-head@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 BBDC62DB; Wed, 11 Dec 2013 10:04:59 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A61B812F3; Wed, 11 Dec 2013 10:04:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBBA4xkx005416; Wed, 11 Dec 2013 10:04:59 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBBA4uf6005401; Wed, 11 Dec 2013 10:04:56 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201312111004.rBBA4uf6005401@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 11 Dec 2013 10:04:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336153 - in head/archivers: ark dact epkg libarchive liborange lrzip p5-Compress-LZO p5-Compress-Raw-Lzma pixz rpm rpm5 tardy upx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Dec 2013 10:04:59 -0000 Author: bapt Date: Wed Dec 11 10:04:56 2013 New Revision: 336153 URL: http://svnweb.freebsd.org/changeset/ports/336153 Log: In preparation for making libtool generate libraries with a sane name, fix all LIB_DEPENDS in accessibility With hat: portmgr Modified: head/archivers/ark/Makefile head/archivers/dact/Makefile head/archivers/epkg/Makefile head/archivers/libarchive/Makefile head/archivers/liborange/Makefile head/archivers/lrzip/Makefile head/archivers/p5-Compress-LZO/Makefile head/archivers/p5-Compress-Raw-Lzma/Makefile head/archivers/pixz/Makefile head/archivers/rpm/Makefile head/archivers/rpm5/Makefile head/archivers/tardy/Makefile head/archivers/upx/Makefile Modified: head/archivers/ark/Makefile ============================================================================== --- head/archivers/ark/Makefile Wed Dec 11 09:51:36 2013 (r336152) +++ head/archivers/ark/Makefile Wed Dec 11 10:04:56 2013 (r336153) @@ -11,7 +11,7 @@ DIST_SUBDIR= KDE/${PORTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= Archiving tool for KDE -LIB_DEPENDS= qjson.0:${PORTSDIR}/devel/qjson +LIB_DEPENDS= libqjson.so:${PORTSDIR}/devel/qjson CONFLICTS_INSTALL= kdeutils-4.[0-7].* @@ -44,7 +44,7 @@ RUN_DEPENDS+= unzip>0:${PORTSDIR}/archiv .include .if ${OSVERSION} < 800505 || (${OSVERSION} >= 900000 && ${OSVERSION} < 900012) -LIB_DEPENDS+= archive:${PORTSDIR}/archivers/libarchive +LIB_DEPENDS+= libarchive.so:${PORTSDIR}/archivers/libarchive .endif .if ${PORT_OPTIONS:MRAR} Modified: head/archivers/dact/Makefile ============================================================================== --- head/archivers/dact/Makefile Wed Dec 11 09:51:36 2013 (r336152) +++ head/archivers/dact/Makefile Wed Dec 11 10:04:56 2013 (r336153) @@ -9,8 +9,8 @@ MASTER_SITES= http://www.rkeene.org/file MAINTAINER= miwi@FreeBSD.org COMMENT= Dynamic Adaptive Compression Tool -LIB_DEPENDS= mcrypt.8:${PORTSDIR}/security/libmcrypt \ - lzo2.2:${PORTSDIR}/archivers/lzo2 +LIB_DEPENDS= libmcrypt.so:${PORTSDIR}/security/libmcrypt \ + liblzo2.so:${PORTSDIR}/archivers/lzo2 NO_STAGE= yes USES= gmake Modified: head/archivers/epkg/Makefile ============================================================================== --- head/archivers/epkg/Makefile Wed Dec 11 09:51:36 2013 (r336152) +++ head/archivers/epkg/Makefile Wed Dec 11 10:04:56 2013 (r336153) @@ -11,8 +11,8 @@ MAINTAINER= pirzyk@FreeBSD.org COMMENT= Encap Package Manager BUILD_DEPENDS= ${LOCALBASE}/lib/libfget.a:${PORTSDIR}/ftp/fget -LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl \ - expat.6:${PORTSDIR}/textproc/expat2 +LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl \ + libexpat.so:${PORTSDIR}/textproc/expat2 NO_STAGE= yes HAS_CONFIGURE= YES Modified: head/archivers/libarchive/Makefile ============================================================================== --- head/archivers/libarchive/Makefile Wed Dec 11 09:51:36 2013 (r336152) +++ head/archivers/libarchive/Makefile Wed Dec 11 10:04:56 2013 (r336153) @@ -92,7 +92,7 @@ CONFIGURE_ARGS+= --without-xml2 .endif .if ${PORT_OPTIONS:MLZO} -LIB_DEPENDS= lzo2:${PORTSDIR}/archivers/lzo2 +LIB_DEPENDS= liblzo2.so:${PORTSDIR}/archivers/lzo2 CONFIGURE_ARGS+= --with-lzo2 .else CONFIGURE_ARGS+= --without-lzo2 Modified: head/archivers/liborange/Makefile ============================================================================== --- head/archivers/liborange/Makefile Wed Dec 11 09:51:36 2013 (r336152) +++ head/archivers/liborange/Makefile Wed Dec 11 10:04:56 2013 (r336153) @@ -34,7 +34,7 @@ USE_LDCONFIG= yes CONFIGURE_ARGS+= --without-libsynce REQUIRES+= libsynce .else -LIB_DEPENDS+= synce:${PORTSDIR}/palm/synce-libsynce +LIB_DEPENDS+= libsynce.so:${PORTSDIR}/palm/synce-libsynce CONFIGURE_ARGS+= --with-libsynce .endif @@ -42,7 +42,7 @@ CONFIGURE_ARGS+= --with-libsynce CONFIGURE_ARGS+= --without-libdynamite REQUIRES+= libdynamite .else -LIB_DEPENDS+= dynamite:${PORTSDIR}/archivers/libdynamite +LIB_DEPENDS+= libdynamite.so:${PORTSDIR}/archivers/libdynamite CONFIGURE_ARGS+= --with-libdynamite .endif @@ -50,7 +50,7 @@ CONFIGURE_ARGS+= --with-libdynamite CONFIGURE_ARGS+= --without-libunshield REQUIRES+= libunshield .else -LIB_DEPENDS+= unshield:${PORTSDIR}/archivers/unshield +LIB_DEPENDS+= libunshield.so:${PORTSDIR}/archivers/unshield CONFIGURE_ARGS+= --with-libunshield .endif @@ -64,7 +64,7 @@ CONFIGURE_ARGS+= --enable-vise .if ${PORT_OPTIONS:MMSI} CONFIGURE_ARGS+= --enable-msi --with-libgsf -LIB_DEPENDS+= gsf-1.114:${PORTSDIR}/devel/libgsf +LIB_DEPENDS+= libgsf-1.so.114:${PORTSDIR}/devel/libgsf .endif post-patch: Modified: head/archivers/lrzip/Makefile ============================================================================== --- head/archivers/lrzip/Makefile Wed Dec 11 09:51:36 2013 (r336152) +++ head/archivers/lrzip/Makefile Wed Dec 11 10:04:56 2013 (r336153) @@ -13,7 +13,7 @@ COMMENT= Long Range ZIP or Lzma RZIP LICENSE= GPLv2 BUILD_DEPENDS= nasm>=0:${PORTSDIR}/devel/nasm -LIB_DEPENDS= lzo2:${PORTSDIR}/archivers/lzo2 +LIB_DEPENDS= liblzo2.so:${PORTSDIR}/archivers/lzo2 NO_STAGE= yes CFLAGS+= -I${LOCALBASE}/include Modified: head/archivers/p5-Compress-LZO/Makefile ============================================================================== --- head/archivers/p5-Compress-LZO/Makefile Wed Dec 11 09:51:36 2013 (r336152) +++ head/archivers/p5-Compress-LZO/Makefile Wed Dec 11 10:04:56 2013 (r336153) @@ -11,7 +11,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Interface to the LZO compression library -LIB_DEPENDS= lzo2:${PORTSDIR}/archivers/lzo2 +LIB_DEPENDS= liblzo2.so:${PORTSDIR}/archivers/lzo2 CFLAGS+= -I${LOCALBASE}/include/lzo USES= perl5 Modified: head/archivers/p5-Compress-Raw-Lzma/Makefile ============================================================================== --- head/archivers/p5-Compress-Raw-Lzma/Makefile Wed Dec 11 09:51:36 2013 (r336152) +++ head/archivers/p5-Compress-Raw-Lzma/Makefile Wed Dec 11 10:04:56 2013 (r336153) @@ -32,7 +32,7 @@ LZMA_DEPEND?= xz .endif .if (${LZMA_DEPEND} == "xz") || (${LZMA_DEPEND} == "lzmalib") -LIB_DEPENDS+= lzma:${PORTSDIR}/archivers/${LZMA_DEPEND} +LIB_DEPENDS+= liblzma.so:${PORTSDIR}/archivers/${LZMA_DEPEND} .endif pre-build: Modified: head/archivers/pixz/Makefile ============================================================================== --- head/archivers/pixz/Makefile Wed Dec 11 09:51:36 2013 (r336152) +++ head/archivers/pixz/Makefile Wed Dec 11 10:04:56 2013 (r336153) @@ -19,7 +19,7 @@ MAKE_ENV+= PTHREAD_LIBS=${PTHREAD_LIBS} .include .if ${OSVERSION} < 800505 || (${OSVERSION} >= 900000 && ${OSVERSION} < 900012) -LIB_DEPENDS+= lzma:${PORTSDIR}/archivers/xz +LIB_DEPENDS+= liblzma.so:${PORTSDIR}/archivers/xz CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib .endif Modified: head/archivers/rpm/Makefile ============================================================================== --- head/archivers/rpm/Makefile Wed Dec 11 09:51:36 2013 (r336152) +++ head/archivers/rpm/Makefile Wed Dec 11 10:04:56 2013 (r336153) @@ -12,7 +12,7 @@ MASTER_SITES= http://rpm5.org/files/rpm/ MAINTAINER= sylvio@FreeBSD.org COMMENT= The Red Hat Package Manager -LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt +LIB_DEPENDS= libpopt.so:${PORTSDIR}/devel/popt CONFLICTS= rpm-[45].* Modified: head/archivers/rpm5/Makefile ============================================================================== --- head/archivers/rpm5/Makefile Wed Dec 11 09:51:36 2013 (r336152) +++ head/archivers/rpm5/Makefile Wed Dec 11 10:04:56 2013 (r336153) @@ -10,13 +10,13 @@ MASTER_SITES= http://rpm5.org/files/rpm/ MAINTAINER= afb@rpm5.org COMMENT= The RPM Package Manager -LIB_DEPENDS= sqlite3.8:${PORTSDIR}/databases/sqlite3 \ - popt.0:${PORTSDIR}/devel/popt \ - beecrypt.7:${PORTSDIR}/security/beecrypt \ - neon.27:${PORTSDIR}/www/neon29 \ - magic:${PORTSDIR}/sysutils/file \ - xar:${PORTSDIR}/archivers/xar \ - pcre.3:${PORTSDIR}/devel/pcre +LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 \ + libpopt.so:${PORTSDIR}/devel/popt \ + libbeecrypt.so:${PORTSDIR}/security/beecrypt \ + libneon.so:${PORTSDIR}/www/neon29 \ + libmagic.so:${PORTSDIR}/sysutils/file \ + libxar.so:${PORTSDIR}/archivers/xar \ + libpcre.so:${PORTSDIR}/devel/pcre BUILD_DEPENDS= gsed:${PORTSDIR}/textproc/gsed \ ${LOCALBASE}/lib/libuuid.a:${PORTSDIR}/misc/ossp-uuid \ bash:${PORTSDIR}/shells/bash @@ -122,7 +122,7 @@ PORTDOCS= * .include .if ${OSVERSION} < 800505 || (${OSVERSION} >= 900000 && ${OSVERSION} < 900012) -LIB_DEPENDS+= lzma:${PORTSDIR}/archivers/xz +LIB_DEPENDS+= liblzma.so:${PORTSDIR}/archivers/xz .endif .if ${OSVERSION} <= 701000 Modified: head/archivers/tardy/Makefile ============================================================================== --- head/archivers/tardy/Makefile Wed Dec 11 09:51:36 2013 (r336152) +++ head/archivers/tardy/Makefile Wed Dec 11 10:04:56 2013 (r336153) @@ -15,7 +15,7 @@ LICENSE= GPLv3 BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs \ ${LOCALBASE}/include/libiberty/libiberty.h:${PORTSDIR}/devel/gnulibiberty -LIB_DEPENDS= explain:${PORTSDIR}/devel/libexplain +LIB_DEPENDS= libexplain.so:${PORTSDIR}/devel/libexplain GNU_CONFIGURE= yes Modified: head/archivers/upx/Makefile ============================================================================== --- head/archivers/upx/Makefile Wed Dec 11 09:51:36 2013 (r336152) +++ head/archivers/upx/Makefile Wed Dec 11 10:04:56 2013 (r336153) @@ -12,7 +12,7 @@ DISTFILES= ${PORTNAME}-${PORTVERSION}-sr MAINTAINER= fjoe@FreeBSD.org COMMENT= The Ultimate Packer for eXecutables -LIB_DEPENDS= ucl.1:${PORTSDIR}/archivers/ucl +LIB_DEPENDS= libucl.so:${PORTSDIR}/archivers/ucl NO_STAGE= yes LZMA_VER= 4.65