From owner-svn-ports-all@FreeBSD.ORG Fri Jun 5 13:39:24 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 378B2906; Fri, 5 Jun 2015 13:39:24 +0000 (UTC) (envelope-from mi@FreeBSD.org) 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 25DE31F50; Fri, 5 Jun 2015 13:39:24 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t55DdO2b011969; Fri, 5 Jun 2015 13:39:24 GMT (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t55DdNCJ011965; Fri, 5 Jun 2015 13:39:23 GMT (envelope-from mi@FreeBSD.org) Message-Id: <201506051339.t55DdNCJ011965@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mi set sender to mi@FreeBSD.org using -f From: Mikhail Teterin Date: Fri, 5 Jun 2015 13:39:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388577 - in head/devel: tcllib tcllibc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jun 2015 13:39:24 -0000 Author: mi Date: Fri Jun 5 13:39:23 2015 New Revision: 388577 URL: https://svnweb.freebsd.org/changeset/ports/388577 Log: Minor follow-ups on the last commit separating pure-Tcl and compiled pieces of tcllib: * make the compiled child-port RUN_DEPEND on the master -- it is not useful without it. * disable OPTIONS, when building the child-port -- they aren't meaningful there Pointed out by: gahr Modified: head/devel/tcllib/Makefile head/devel/tcllibc/Makefile Modified: head/devel/tcllib/Makefile ============================================================================== --- head/devel/tcllib/Makefile Fri Jun 5 13:04:58 2015 (r388576) +++ head/devel/tcllib/Makefile Fri Jun 5 13:39:23 2015 (r388577) @@ -16,7 +16,7 @@ LICENSE_NAME= Tcl/Tk License LICENSE_FILE= ${WRKSRC}/license.terms LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -OPTIONS_DEFINE= DOCS MANPAGES +OPTIONS_DEFINE?=DOCS MANPAGES WRKSRC= ${WRKDIR}/tcllib-tcllib_${DISTVERSION} USES+= tcl Modified: head/devel/tcllibc/Makefile ============================================================================== --- head/devel/tcllibc/Makefile Fri Jun 5 13:04:58 2015 (r388576) +++ head/devel/tcllibc/Makefile Fri Jun 5 13:39:23 2015 (r388577) @@ -6,11 +6,13 @@ PKGNAMESUFFIX= c COMMENT= Compiled implementations of some of the modules of Tcllib BUILD_DEPENDS= critcl:${PORTSDIR}/devel/critcl +RUN_DEPENDS= ${PREFIX}/lib/tcllib/pkgIndex.tcl:${MASTERDIR} # PREFIX, not LOCALBASE MASTERDIR= ${.CURDIR:H}/tcllib TMPPLIST= ${WRKDIR}/PLIST DESCR= ${.CURDIR}/pkg-descr ALL_TARGET= critcl +OPTIONS_DEFINE= post-patch: cd ${WRKSRC}/modules/json/c && ${YACC} -b json json.y