From owner-svn-ports-head@freebsd.org Thu Sep 19 08:01:59 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 27C7AFA67A; Thu, 19 Sep 2019 08:01:59 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46Yq7V71k9z4PBK; Thu, 19 Sep 2019 08:01:58 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D44ACA48C; Thu, 19 Sep 2019 08:01:58 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8J81wWr079764; Thu, 19 Sep 2019 08:01:58 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8J81wYN079763; Thu, 19 Sep 2019 08:01:58 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201909190801.x8J81wYN079763@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 19 Sep 2019 08:01:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512320 - head/graphics/gd X-SVN-Group: ports-head X-SVN-Commit-Author: dinoex X-SVN-Commit-Paths: head/graphics/gd X-SVN-Commit-Revision: 512320 X-SVN-Commit-Repository: ports 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.29 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: Thu, 19 Sep 2019 08:01:59 -0000 Author: dinoex Date: Thu Sep 19 08:01:58 2019 New Revision: 512320 URL: https://svnweb.freebsd.org/changeset/ports/512320 Log: - make TIFF an option PR: 239572 Submitted by: Robert Schulze Modified: head/graphics/gd/Makefile Modified: head/graphics/gd/Makefile ============================================================================== --- head/graphics/gd/Makefile Thu Sep 19 07:55:02 2019 (r512319) +++ head/graphics/gd/Makefile Thu Sep 19 08:01:58 2019 (r512320) @@ -14,8 +14,7 @@ COMMENT?= Graphics library for fast creation of images LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= libtiff.so:graphics/tiff \ - libpng.so:graphics/png \ +LIB_DEPENDS= libpng.so:graphics/png \ libfreetype.so:print/freetype2 CONFLICTS= bazaar-1.* @@ -26,8 +25,8 @@ GNU_CONFIGURE= yes USE_LDCONFIG= yes TEST_TARGET= check -OPTIONS_DEFINE= FONTCONFIG ICONV XPM WEBP -OPTIONS_DEFAULT=FONTCONFIG WEBP +OPTIONS_DEFINE= FONTCONFIG ICONV XPM WEBP TIFF +OPTIONS_DEFAULT=FONTCONFIG WEBP TIFF NO_OPTIONS_SORT=yes FONTCONFIG_LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig FONTCONFIG_CONFIGURE_OFF= --with-fontconfig=no @@ -38,6 +37,8 @@ XPM_CONFIGURE_ON= --with-x XPM_CONFIGURE_OFF= --with-xpm=no WEBP_LIB_DEPENDS= libwebp.so:graphics/webp WEBP_CONFIGURE_OFF= --without-webp +TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff +TIFF_CONFIGURE_OFF= --without-tiff .include