From owner-svn-ports-all@FreeBSD.ORG Tue Jul 15 13:08:12 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 061FF563; Tue, 15 Jul 2014 13:08:12 +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 DAE732450; Tue, 15 Jul 2014 13:08:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6FD8BCV059044; Tue, 15 Jul 2014 13:08:11 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6FD89U8059030; Tue, 15 Jul 2014 13:08:09 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201407151308.s6FD89U8059030@svn.freebsd.org> From: Gabor Pali Date: Tue, 15 Jul 2014 13:08:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361916 - in head: devel/hs-hinotify devel/hs-hlibev devel/hs-pcre-light ftp/hs-curl lang/ghc lang/whitespace multimedia/hs-gstreamer textproc/hs-regex-pcre-builtin www/hs-fastcgi 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: Tue, 15 Jul 2014 13:08:12 -0000 Author: pgj Date: Tue Jul 15 13:08:09 2014 New Revision: 361916 URL: http://svnweb.freebsd.org/changeset/ports/361916 QAT: https://qat.redports.org/buildarchive/r361916/ Log: - Fix LIB_DEPENDS lines Obtained from: FreeBSD Haskell Modified: head/devel/hs-hinotify/Makefile head/devel/hs-hlibev/Makefile head/devel/hs-pcre-light/Makefile head/ftp/hs-curl/Makefile head/lang/ghc/Makefile head/lang/ghc/bsd.cabal.mk head/lang/whitespace/Makefile head/multimedia/hs-gstreamer/Makefile head/textproc/hs-regex-pcre-builtin/Makefile head/www/hs-fastcgi/Makefile Modified: head/devel/hs-hinotify/Makefile ============================================================================== --- head/devel/hs-hinotify/Makefile Tue Jul 15 12:50:28 2014 (r361915) +++ head/devel/hs-hinotify/Makefile Tue Jul 15 13:08:09 2014 (r361916) @@ -10,7 +10,7 @@ COMMENT= Haskell binding to inotify LICENSE= BSD -LIB_DEPENDS= inotify.0:${PORTSDIR}/devel/libinotify +LIB_DEPENDS= libinotify.so:${PORTSDIR}/devel/libinotify .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" .include Modified: head/devel/hs-hlibev/Makefile ============================================================================== --- head/devel/hs-hlibev/Makefile Tue Jul 15 12:50:28 2014 (r361915) +++ head/devel/hs-hlibev/Makefile Tue Jul 15 13:08:09 2014 (r361916) @@ -12,7 +12,7 @@ LICENSE= BSD USE_CABAL= network -LIB_DEPENDS= ev:${PORTSDIR}/devel/libev +LIB_DEPENDS= libev.so:${PORTSDIR}/devel/libev .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" .include Modified: head/devel/hs-pcre-light/Makefile ============================================================================== --- head/devel/hs-pcre-light/Makefile Tue Jul 15 12:50:28 2014 (r361915) +++ head/devel/hs-pcre-light/Makefile Tue Jul 15 13:08:09 2014 (r361916) @@ -10,7 +10,7 @@ COMMENT= Lightweight Haskell regex libra LICENSE= BSD -LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" .include Modified: head/ftp/hs-curl/Makefile ============================================================================== --- head/ftp/hs-curl/Makefile Tue Jul 15 12:50:28 2014 (r361915) +++ head/ftp/hs-curl/Makefile Tue Jul 15 13:08:09 2014 (r361916) @@ -10,7 +10,7 @@ COMMENT= Haskell binding to libcurl LICENSE= BSD -LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl +LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl USE_GHC_NATIVE= yes Modified: head/lang/ghc/Makefile ============================================================================== --- head/lang/ghc/Makefile Tue Jul 15 12:50:28 2014 (r361915) +++ head/lang/ghc/Makefile Tue Jul 15 13:08:09 2014 (r361916) @@ -26,7 +26,7 @@ EXAMPLESDIR= ${PREFIX}/share/examples/gh CONFLICTS= ghc-6.8.* ghc-6.10.* ghc-6.12.* ghc-7.0.* ghc-7.2.* ghc-7.4.* USE_BZIP2= yes -LIB_DEPENDS+= gmp.10:${PORTSDIR}/math/gmp +LIB_DEPENDS+= libgmp.so:${PORTSDIR}/math/gmp USE_AUTOTOOLS= autoconf autoheader USE_PERL5= build @@ -69,7 +69,7 @@ OPTIONS_DEFINE+= BOOTH .include .if ${PORT_OPTIONS:MDYNAMIC} -LIB_DEPENDS+= ffi.6:${PORTSDIR}/devel/libffi +LIB_DEPENDS+= libffi.so.6:${PORTSDIR}/devel/libffi .endif .if empty(PORT_OPTIONS:MBOOT) Modified: head/lang/ghc/bsd.cabal.mk ============================================================================== --- head/lang/ghc/bsd.cabal.mk Tue Jul 15 12:50:28 2014 (r361915) +++ head/lang/ghc/bsd.cabal.mk Tue Jul 15 13:08:09 2014 (r361916) @@ -108,7 +108,7 @@ CONFIGURE_ARGS+= --with-c2hs=${C2HS_CMD} .endif .if defined(EXECUTABLE) -LIB_DEPENDS+= gmp.10:${PORTSDIR}/math/gmp +LIB_DEPENDS+= libgmp.so:${PORTSDIR}/math/gmp USES+= iconv CONFIGURE_ARGS+= --enable-executable-stripping Modified: head/lang/whitespace/Makefile ============================================================================== --- head/lang/whitespace/Makefile Tue Jul 15 12:50:28 2014 (r361915) +++ head/lang/whitespace/Makefile Tue Jul 15 13:08:09 2014 (r361916) @@ -16,7 +16,7 @@ LICENSE= GPLv2 BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \ - libffi.so:${PORTSDIR}/devel/libffi + libffi.so.6:${PORTSDIR}/devel/libffi USES= perl5 gmake USE_PERL5= build Modified: head/multimedia/hs-gstreamer/Makefile ============================================================================== --- head/multimedia/hs-gstreamer/Makefile Tue Jul 15 12:50:28 2014 (r361915) +++ head/multimedia/hs-gstreamer/Makefile Tue Jul 15 13:08:09 2014 (r361916) @@ -8,7 +8,7 @@ CATEGORIES= multimedia haskell MAINTAINER= haskell@FreeBSD.org COMMENT= Binding to the GStreamer open source multimedia framework -LIB_DEPENDS= gstreamer:${PORTSDIR}/multimedia/gstreamer +LIB_DEPENDS= libgstreamer-0.10.so:${PORTSDIR}/multimedia/gstreamer LICENSE= LGPL21 Modified: head/textproc/hs-regex-pcre-builtin/Makefile ============================================================================== --- head/textproc/hs-regex-pcre-builtin/Makefile Tue Jul 15 12:50:28 2014 (r361915) +++ head/textproc/hs-regex-pcre-builtin/Makefile Tue Jul 15 13:08:09 2014 (r361916) @@ -12,7 +12,7 @@ LICENSE= BSD USE_CABAL= regex-base>=0.93 -LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" .include Modified: head/www/hs-fastcgi/Makefile ============================================================================== --- head/www/hs-fastcgi/Makefile Tue Jul 15 12:50:28 2014 (r361915) +++ head/www/hs-fastcgi/Makefile Tue Jul 15 13:08:09 2014 (r361916) @@ -13,7 +13,7 @@ LICENSE= BSD USE_CABAL= cgi>=3000.0.0 -LIB_DEPENDS= fcgi.0:${PORTSDIR}/www/fcgi +LIB_DEPENDS= libfcgi.so:${PORTSDIR}/www/fcgi .include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" .include