From owner-svn-ports-head@freebsd.org Sun Aug 23 18:18:08 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CDD6C9C17B0; Sun, 23 Aug 2015 18:18:08 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org (repo.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 BF0CA221; Sun, 23 Aug 2015 18:18:08 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7NII89f042590; Sun, 23 Aug 2015 18:18:08 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7NII89K042588; Sun, 23 Aug 2015 18:18:08 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201508231818.t7NII89K042588@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Sun, 23 Aug 2015 18:18:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r395122 - head/print/texlive-base 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.20 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: Sun, 23 Aug 2015 18:18:08 -0000 Author: hrs Date: Sun Aug 23 18:18:07 2015 New Revision: 395122 URL: https://svnweb.freebsd.org/changeset/ports/395122 Log: Fix dependency accidentally removed in the previous commits. Modified: head/print/texlive-base/Makefile Modified: head/print/texlive-base/Makefile ============================================================================== --- head/print/texlive-base/Makefile Sun Aug 23 16:44:16 2015 (r395121) +++ head/print/texlive-base/Makefile Sun Aug 23 18:18:07 2015 (r395122) @@ -16,6 +16,7 @@ RUN_DEPENDS= psbook:${PORTSDIR}/print/ps LIB_DEPENDS= libicuio.so:${PORTSDIR}/devel/icu \ libt1.so:${PORTSDIR}/devel/t1lib \ libTECkit.so:${PORTSDIR}/textproc/teckit \ + libgd.so:${PORTSDIR}/graphics/gd \ libgraphite2.so:${PORTSDIR}/graphics/graphite2 \ libfreetype.so:${PORTSDIR}/print/freetype2 \ libharfbuzz.so:${PORTSDIR}/print/harfbuzz \ @@ -30,6 +31,7 @@ CONFLICTS_INSTALL= texlive-texmf-201[234 USE_TEX= web2c kpathsea ptexenc tlmgr texhash-bootstrap USES= ghostscript pkgconfig perl5 shebangfix tar:xz USE_PERL5= run +USE_XORG= x11 xmu # during build phase gnu configure is run a lot MAKE_ENV+= CONFIG_SITE=${CONFIG_SITE} EXCLUDE_FILES= ${DISTNAME}/texk/web2c \ @@ -58,6 +60,7 @@ CONFIGURE_ARGS= --disable-native-texlive --with-system-freetype2 \ --with-freetype2-includes=${LOCALBASE}/include/freetype2 \ --with-freetype2-libdir=${LOCALBASE}/lib \ + --with-system-gd \ --with-system-cairo \ --with-system-harfbuzz \ --with-system-graphite2 \