From owner-svn-ports-head@FreeBSD.ORG Sat Sep 6 15:10:19 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 03431A22; Sat, 6 Sep 2014 15:10:19 +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 C8E161028; Sat, 6 Sep 2014 15:10:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s86FAIGb049785; Sat, 6 Sep 2014 15:10:18 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s86FAIEW049783; Sat, 6 Sep 2014 15:10:18 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201409061510.s86FAIEW049783@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 6 Sep 2014 15:10:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r367442 - in head/lang: yap yap-devel 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: Sat, 06 Sep 2014 15:10:19 -0000 Author: adamw Date: Sat Sep 6 15:10:18 2014 New Revision: 367442 URL: http://svnweb.freebsd.org/changeset/ports/367442 QAT: https://qat.redports.org/buildarchive/r367442/ Log: Fix build by removing texlive from USE_TEX. While here, just add install_docs to INSTALL_TARGET rather than calling a separate ${MAKE} without MAKE_ENV or MAKE_ARGS. Modified: head/lang/yap-devel/Makefile head/lang/yap/Makefile Modified: head/lang/yap-devel/Makefile ============================================================================== --- head/lang/yap-devel/Makefile Sat Sep 6 14:51:52 2014 (r367441) +++ head/lang/yap-devel/Makefile Sat Sep 6 15:10:18 2014 (r367442) @@ -20,9 +20,10 @@ OPTIONS_DEFINE= DOCS MYDDAS OPTIONS_SUB= yes MYDDAS_DESC= Enable MySQL support -DOCS_USE= TEX=formats:build,dvipsk:build,texlive +DOCS_USE= TEX=formats:build,dvipsk:build DOCS_BUILD_DEPENDS= ${LOCALBASE}/bin/texi2html:${PORTSDIR}/textproc/texi2html \ ${LOCALBASE}/bin/texi2pdf:${PORTSDIR}/print/texinfo +DOCS_INSTALL_TARGET= install install_doc MYDDAS_LIB_DEPENDS= libiodbc.so:${PORTSDIR}/databases/libiodbc MYDDAS_CONFIGURE_ENABLE= myddas myddas-top-level @@ -32,7 +33,7 @@ STRIP= #none USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-max-performance --disable-clpbn-bp -USES= gmake +USES= gmake USE_GCC= any EXTRACT_CMD= ${GZIP_CMD} @@ -50,9 +51,4 @@ post-build: ${REINPLACE_CMD} -e '758,761d' ${WRKSRC}/Makefile .endif -post-install: -.if ${PORT_OPTIONS:MDOCS} - (cd ${WRKSRC} ; ${MAKE} DESTDIR=${STAGEDIR} install_docs) -.endif - .include Modified: head/lang/yap/Makefile ============================================================================== --- head/lang/yap/Makefile Sat Sep 6 14:51:52 2014 (r367441) +++ head/lang/yap/Makefile Sat Sep 6 15:10:18 2014 (r367442) @@ -15,14 +15,15 @@ CONFLICTS= yap-6.3.* OPTIONS_DEFINE= DOCS -DOCS_USE= TEX=formats:build,dvipsk:build,texlive +DOCS_USE= TEX=formats:build,dvipsk:build DOCS_BUILD_DEPENDS= ${LOCALBASE}/bin/texi2html:${PORTSDIR}/textproc/texi2html \ ${LOCALBASE}/bin/texi2pdf:${PORTSDIR}/print/texinfo +DOCS_INSTALL_TARGET= install install_docs USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-max-performance -USES= gmake +USES= gmake USE_GCC= any DOCSDIR= ${PREFIX}/share/doc/Yap @@ -36,9 +37,4 @@ post-build: ${REINPLACE_CMD} -e '559,562d' ${WRKSRC}/Makefile .endif -post-install: -.if ${PORT_OPTIONS:MDOCS} - (cd ${WRKSRC} ; ${MAKE} DESTDIR=${STAGEDIR} install_docs) -.endif - .include