From owner-svn-ports-head@FreeBSD.ORG Fri Aug 29 10:21:53 2014 Return-Path: Delivered-To: svn-ports-head@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 DE31F8BE; Fri, 29 Aug 2014 10:21:53 +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 BDBE81766; Fri, 29 Aug 2014 10:21:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7TALrQP067490; Fri, 29 Aug 2014 10:21:53 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7TALq6B067478; Fri, 29 Aug 2014 10:21:52 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201408291021.s7TALq6B067478@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Fri, 29 Aug 2014 10:21:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r366491 - in head: lang/php5 lang/php53 lang/php55 mail/prayer www/gurlchecker www/kdewebdev4 www/py-utidy x11/kde4-baseapps 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.18-1 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: Fri, 29 Aug 2014 10:21:54 -0000 Author: tijl Date: Fri Aug 29 10:21:51 2014 New Revision: 366491 URL: http://svnweb.freebsd.org/changeset/ports/366491 QAT: https://qat.redports.org/buildarchive/r366491/ Log: Fix dependencies on libtidy Reported by: amdmi3 Modified: head/lang/php5/Makefile.ext head/lang/php53/Makefile.ext head/lang/php55/Makefile.ext head/mail/prayer/Makefile head/www/gurlchecker/Makefile head/www/kdewebdev4/Makefile head/www/py-utidy/Makefile head/x11/kde4-baseapps/Makefile Modified: head/lang/php5/Makefile.ext ============================================================================== --- head/lang/php5/Makefile.ext Fri Aug 29 10:19:52 2014 (r366490) +++ head/lang/php5/Makefile.ext Fri Aug 29 10:21:51 2014 (r366491) @@ -389,7 +389,7 @@ CONFIGURE_ARGS+=--enable-sysvshm .if ${PHP_MODNAME} == "tidy" CONFIGURE_ARGS+=--with-tidy=${LOCALBASE} -LIB_DEPENDS+= libtidy-0.99.so:${PORTSDIR}/www/tidy-lib +LIB_DEPENDS+= libtidy.so:${PORTSDIR}/www/tidy-lib .endif .if ${PHP_MODNAME} == "tokenizer" Modified: head/lang/php53/Makefile.ext ============================================================================== --- head/lang/php53/Makefile.ext Fri Aug 29 10:19:52 2014 (r366490) +++ head/lang/php53/Makefile.ext Fri Aug 29 10:21:51 2014 (r366491) @@ -391,7 +391,7 @@ CONFIGURE_ARGS+=--enable-sysvshm .if ${PHP_MODNAME} == "tidy" CONFIGURE_ARGS+=--with-tidy=${LOCALBASE} -LIB_DEPENDS+= libtidy-0.99.so.0:${PORTSDIR}/www/tidy-lib +LIB_DEPENDS+= libtidy.so:${PORTSDIR}/www/tidy-lib .endif .if ${PHP_MODNAME} == "tokenizer" Modified: head/lang/php55/Makefile.ext ============================================================================== --- head/lang/php55/Makefile.ext Fri Aug 29 10:19:52 2014 (r366490) +++ head/lang/php55/Makefile.ext Fri Aug 29 10:21:51 2014 (r366491) @@ -393,7 +393,7 @@ CONFIGURE_ARGS+=--enable-sysvshm .if ${PHP_MODNAME} == "tidy" CONFIGURE_ARGS+=--with-tidy=${LOCALBASE} -LIB_DEPENDS+= libtidy-0.99.so:${PORTSDIR}/www/tidy-lib +LIB_DEPENDS+= libtidy.so:${PORTSDIR}/www/tidy-lib .endif .if ${PHP_MODNAME} == "tokenizer" Modified: head/mail/prayer/Makefile ============================================================================== --- head/mail/prayer/Makefile Fri Aug 29 10:19:52 2014 (r366490) +++ head/mail/prayer/Makefile Fri Aug 29 10:21:51 2014 (r366491) @@ -35,7 +35,7 @@ GROUPS= prayer SESSIONCACHE_USE= BDB=5+ LDAP_USE= OPENLDAP=yes -TIDY_LIB_DEPENDS= libtidy-0.99.so:${PORTSDIR}/www/tidy-lib +TIDY_LIB_DEPENDS= libtidy.so:${PORTSDIR}/www/tidy-lib GID!= id -g DESTDIRNAME= BROOT Modified: head/www/gurlchecker/Makefile ============================================================================== --- head/www/gurlchecker/Makefile Fri Aug 29 10:19:52 2014 (r366490) +++ head/www/gurlchecker/Makefile Fri Aug 29 10:21:51 2014 (r366491) @@ -42,7 +42,7 @@ CONFIGURE_ARGS+= --disable-croco .endif .if ${PORT_OPTIONS:MTIDY} -LIB_DEPENDS+= libtidy-0.99.so:${PORTSDIR}/www/tidy-lib +LIB_DEPENDS+= libtidy.so:${PORTSDIR}/www/tidy-lib .else CONFIGURE_ARGS+= --disable-tidy .endif Modified: head/www/kdewebdev4/Makefile ============================================================================== --- head/www/kdewebdev4/Makefile Fri Aug 29 10:19:52 2014 (r366490) +++ head/www/kdewebdev4/Makefile Fri Aug 29 10:21:51 2014 (r366491) @@ -11,7 +11,7 @@ DIST_SUBDIR= KDE/${PORTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= Comprehensive html/website development environment -LIB_DEPENDS= libtidy-0.99.so:${PORTSDIR}/www/tidy-lib \ +LIB_DEPENDS= libtidy.so:${PORTSDIR}/www/tidy-lib \ libboost_thread.so:${PORTSDIR}/devel/boost-libs USE_GNOME= libxml2 libxslt Modified: head/www/py-utidy/Makefile ============================================================================== --- head/www/py-utidy/Makefile Fri Aug 29 10:19:52 2014 (r366490) +++ head/www/py-utidy/Makefile Fri Aug 29 10:21:51 2014 (r366491) @@ -14,7 +14,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Python interface to tidy-lib # XXX Better depend on tidy or tidy-devel??? -LIB_DEPENDS= libtidy-0.99.so:${PORTSDIR}/www/tidy-lib +LIB_DEPENDS= libtidy.so:${PORTSDIR}/www/tidy-lib USES= zip USE_PYTHON= 2 Modified: head/x11/kde4-baseapps/Makefile ============================================================================== --- head/x11/kde4-baseapps/Makefile Fri Aug 29 10:19:52 2014 (r366490) +++ head/x11/kde4-baseapps/Makefile Fri Aug 29 10:21:51 2014 (r366491) @@ -10,7 +10,7 @@ DIST_SUBDIR= KDE/${PORTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= Basic applications for KDE -LIB_DEPENDS= libtidy-0.99.so:${PORTSDIR}/www/tidy-lib +LIB_DEPENDS= libtidy.so:${PORTSDIR}/www/tidy-lib USE_GNOME= glib20 USE_KDE4= kdehier kdelibs kdeprefix libkonq \