From owner-svn-ports-head@freebsd.org Thu Feb 1 08:17:52 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28D71ECE99B; Thu, 1 Feb 2018 08:17:52 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D15E37E8A1; Thu, 1 Feb 2018 08:17:51 +0000 (UTC) (envelope-from acm@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 CC67E21E9; Thu, 1 Feb 2018 08:17:51 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w118HpBh067091; Thu, 1 Feb 2018 08:17:51 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w118Hpjm067087; Thu, 1 Feb 2018 08:17:51 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201802010817.w118Hpjm067087@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Thu, 1 Feb 2018 08:17:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460577 - in head: devel/fpc-fcl-js devel/fpc-fcl-web devel/fpc-fppkg www/fpc-googleapi X-SVN-Group: ports-head X-SVN-Commit-Author: acm X-SVN-Commit-Paths: in head: devel/fpc-fcl-js devel/fpc-fcl-web devel/fpc-fppkg www/fpc-googleapi X-SVN-Commit-Revision: 460577 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.25 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, 01 Feb 2018 08:17:52 -0000 Author: acm Date: Thu Feb 1 08:17:51 2018 New Revision: 460577 URL: https://svnweb.freebsd.org/changeset/ports/460577 Log: - Add missing depedencies Modified: head/devel/fpc-fcl-js/Makefile head/devel/fpc-fcl-web/Makefile head/devel/fpc-fppkg/Makefile head/www/fpc-googleapi/Makefile Modified: head/devel/fpc-fcl-js/Makefile ============================================================================== --- head/devel/fpc-fcl-js/Makefile Thu Feb 1 07:58:47 2018 (r460576) +++ head/devel/fpc-fcl-js/Makefile Thu Feb 1 08:17:51 2018 (r460577) @@ -6,7 +6,7 @@ PKGNAMESUFFIX= -fcl-js COMMENT= Free Pascal Javascript scanner/parser/syntax tree (FCL) -USE_FPC= yes +USE_FPC= fcl-base fcl-res rtl-objpas MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//} Modified: head/devel/fpc-fcl-web/Makefile ============================================================================== --- head/devel/fpc-fcl-web/Makefile Thu Feb 1 07:58:47 2018 (r460576) +++ head/devel/fpc-fcl-web/Makefile Thu Feb 1 08:17:51 2018 (r460577) @@ -7,8 +7,8 @@ PKGNAMESUFFIX= -fcl-web COMMENT= Free Pascal web application libary (FCL) USE_FPC= dblib fcl-async fcl-base fcl-db fcl-xml fcl-json fcl-net \ - fcl-passrc fastcgi httpd22 httpd24 ibase mysql odbc openssl \ - oracle postgres pxlib rtl-extra sqlite + fcl-fpcunit fcl-passrc fastcgi httpd22 httpd24 ibase mysql \ + odbc openssl oracle postgres pxlib rtl-extra sqlite MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//} Modified: head/devel/fpc-fppkg/Makefile ============================================================================== --- head/devel/fpc-fppkg/Makefile Thu Feb 1 07:58:47 2018 (r460576) +++ head/devel/fpc-fppkg/Makefile Thu Feb 1 08:17:51 2018 (r460577) @@ -6,9 +6,9 @@ PKGNAMESUFFIX= -fppkg COMMENT= Free Pascal package manager unit -USE_FPC= dblib fastcgi fcl-async fcl-base fcl-db fcl-json fcl-net \ - fcl-passrc fcl-web fcl-xml httpd22 httpd24 ibase mysql odbc \ - openssl oracle postgres pxlib rtl-extra sqlite +USE_FPC= dblib fastcgi fcl-async fcl-base fcl-db fcl-fpcunit fcl-json \ + fcl-net fcl-passrc fcl-web fcl-xml httpd22 httpd24 ibase \ + mysql odbc openssl oracle postgres pxlib rtl-extra sqlite MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//} Modified: head/www/fpc-googleapi/Makefile ============================================================================== --- head/www/fpc-googleapi/Makefile Thu Feb 1 07:58:47 2018 (r460576) +++ head/www/fpc-googleapi/Makefile Thu Feb 1 08:17:51 2018 (r460577) @@ -5,9 +5,10 @@ PKGNAMESUFFIX= -googleapi COMMENT= Free Pascal googleapi unit -USE_FPC= dblib fastcgi fcl-async fcl-base fcl-db fcl-json fcl-net \ - fcl-passrc fcl-res fcl-web fcl-xml httpd22 httpd24 ibase mysql \ - postgres pxlib odbc openssl oracle rtl-extra rtl-objpas sqlite +USE_FPC= dblib fastcgi fcl-async fcl-base fcl-db fcl-json fcl-fpcunit \ + fcl-net fcl-passrc fcl-res fcl-web fcl-xml httpd22 httpd24 \ + ibase mysql postgres pxlib odbc openssl oracle rtl-extra \ + rtl-objpas sqlite MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//}