From owner-svn-ports-head@FreeBSD.ORG Sat Apr 19 15:57:47 2014 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 83FA0E14; Sat, 19 Apr 2014 15:57:47 +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 56A231DC8; Sat, 19 Apr 2014 15:57:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3JFvl1k019452; Sat, 19 Apr 2014 15:57:47 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3JFvkuP019449; Sat, 19 Apr 2014 15:57:46 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201404191557.s3JFvkuP019449@svn.freebsd.org> From: Tijl Coosemans Date: Sat, 19 Apr 2014 15:57:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351598 - in head: devel/libg19draw games/etracer lang/php53 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: Sat, 19 Apr 2014 15:57:47 -0000 Author: tijl Date: Sat Apr 19 15:57:46 2014 New Revision: 351598 URL: http://svnweb.freebsd.org/changeset/ports/351598 QAT: https://qat.redports.org/buildarchive/r351598/ Log: Fix libfreetype dependencies. PR: ports/188792 Modified: head/devel/libg19draw/Makefile head/games/etracer/Makefile head/lang/php53/Makefile.ext Modified: head/devel/libg19draw/Makefile ============================================================================== --- head/devel/libg19draw/Makefile Sat Apr 19 13:54:30 2014 (r351597) +++ head/devel/libg19draw/Makefile Sat Apr 19 15:57:46 2014 (r351598) @@ -11,7 +11,7 @@ MAINTAINER= armin@frozen-zone.org COMMENT= G19 draw library LIB_DEPENDS= libg19.so:${PORTSDIR}/devel/libg19 \ - libfreetype.so.9:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -pthread" Modified: head/games/etracer/Makefile ============================================================================== --- head/games/etracer/Makefile Sat Apr 19 13:54:30 2014 (r351597) +++ head/games/etracer/Makefile Sat Apr 19 15:57:46 2014 (r351598) @@ -12,7 +12,7 @@ MAINTAINER= peter_dunning@dsl.pipex.com COMMENT= The latest and greatest fork of the classic Tux Racer LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ - libfreetype.so.9:${PORTSDIR}/print/freetype2 + libfreetype.so:${PORTSDIR}/print/freetype2 USE_SDL= mixer sdl USE_XORG= x11 xi xext xmu xt Modified: head/lang/php53/Makefile.ext ============================================================================== --- head/lang/php53/Makefile.ext Sat Apr 19 13:54:30 2014 (r351597) +++ head/lang/php53/Makefile.ext Sat Apr 19 15:57:46 2014 (r351598) @@ -87,9 +87,9 @@ USE_OPENSSL= yes .endif .if ${PHP_MODNAME} == "gd" -LIB_DEPENDS= libfreetype.so.9:${PORTSDIR}/print/freetype2 \ +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ libpng15.so:${PORTSDIR}/graphics/png \ - libjpeg.so.11:${PORTSDIR}/graphics/jpeg + libjpeg.so:${PORTSDIR}/graphics/jpeg CONFIGURE_ARGS+=--with-gd \ --with-freetype-dir=${LOCALBASE} \