From owner-svn-ports-head@freebsd.org Wed Mar 7 19:59:10 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 2E380F2B19F; Wed, 7 Mar 2018 19:59:10 +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 D88E16AE9B; Wed, 7 Mar 2018 19:59:09 +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 D385926515; Wed, 7 Mar 2018 19:59:09 +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 w27Jx91r011067; Wed, 7 Mar 2018 19:59:09 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w27Jx9v5011066; Wed, 7 Mar 2018 19:59:09 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201803071959.w27Jx9v5011066@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Wed, 7 Mar 2018 19:59:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463824 - head/Mk/Uses X-SVN-Group: ports-head X-SVN-Commit-Author: acm X-SVN-Commit-Paths: head/Mk/Uses X-SVN-Commit-Revision: 463824 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: Wed, 07 Mar 2018 19:59:10 -0000 Author: acm Date: Wed Mar 7 19:59:09 2018 New Revision: 463824 URL: https://svnweb.freebsd.org/changeset/ports/463824 Log: - Introduce the new "lazarus" USES. The goal is to use it for lazarus-based app support Added: head/Mk/Uses/lazarus.mk (contents, props changed) Added: head/Mk/Uses/lazarus.mk ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/Mk/Uses/lazarus.mk Wed Mar 7 19:59:09 2018 (r463824) @@ -0,0 +1,96 @@ +# +# $FreeBSD$ +# +# Support for Lazarus-based ports. +# +# Feature: lazaurs +# Usage: USES=lazarus +# Valid ARGS: (none), gtk2, qt4, qt5 +# +# For FreeBSD committers: +# Please send all suggested changes to the maintainer instead of committing +# them to SVN yourself. +# +# (none) - This automatically build lazarus-app with gtk2 interface +# +# gtk2 - This automatically build lazarus-app with gtk2 interface +# +# qt4 - This automatically build lazarus-app with qt4 interface +# +# qt5 - This automatically build lazarus-app with qt5 interface +# +# Variables for ports: +# +# LAZARUS_PROJECT_FILES - List of lpi files. It must not be empty +# Default: empty +# LAZARUS_DIR - Path to lazarus installation directory +# Default: ${LOCALBASE}/share/lazarus-${LAZARUS_VER} +# LAZBUILD_ARGS - lazbuild extra args. It could be -d most of cases. +# See man lazbuild for more information +# Default: empty +# + +.if !defined(_INCLUDE_USES_LAZARUS_MK) + +LAZARUS_Include_MAINTAINER= acm@FreeBSD.org + +_INCLUDE_USES_LAZARUS_MK= yes + +.if defined(DEFAULT_LAZARUS_VER) +WARNING+= "DEFAULT_LAZARUS_VER is defined, consider using DEFAULT_VERSIONS=lazarus=${DEFAULT_LAZARUS_VER} instead" +.endif + +.if empty(lazarus_ARGS:Mgtk2) && empty(lazarus_ARGS:Mqt4) && empty(lazarus_ARGS:Mqt5) +lazarus_ARGS+= gtk2 +.endif + +DEFAULT_LAZARUS_VER= ${LAZARUS_DEFAULT} +# When adding a version, please keep the comment in +# Mk/bsd.default-versions.mk in sync. +LAZARUS_VER= ${DEFAULT_LAZARUS_VER} +LAZARUS_ARCH= ${ARCH:S/amd64/x86_64/} +LAZARUS_PROJECT_FILES?= # empty +LAZARUS_DIR?= ${LOCALBASE}/share/lazarus-${LAZARUS_VER} + +ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS_REASON= not yet ported to anything other than i386 and amd64 + +BUILD_DEPENDS+= fpcres:lang/fpc-utils + +BUILDNAME= ${LAZARUS_ARCH}-${OPSYS:tl} +LCL_UNITS_DIR= ${LOCALBASE}/share/lazarus-${LAZARUS_VER}/lcl/units/${BUILDNAME} + +.if ${lazarus_ARGS:Mgtk2} +USE_FPC+= gtk2 +USE_GNOME= gdkpixbuf2 gtk20 +LCL_PLATFORM= gtk2 +BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:editors/lazarus +.endif + +.if ${lazarus_ARGS:Mqt4} +LIB_DEPENDS+= libQt4Pas.so:x11-toolkits/qt4pas +LCL_PLATFORM= qt +BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:editors/lazarus-qt4 +.endif + +.if ${lazarus_ARGS:Mqt5} +LIB_DEPENDS+= libQt5Pas.so:x11-toolkits/qt5pas +LCL_PLATFORM= qt5 +BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:editors/lazarus-qt5 +.endif + +LAZBUILD_CMD= ${LOCALBASE}/bin/lazbuild +LAZBUILD_ARGS?= # empty + +.if !defined(NO_LAZBUILD) +. if !target(do-build) +do-build: +. for PROJECT_FILE in ${LAZARUS_PROJECT_FILES} + @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${LAZARUS_CMD} \ + ${LAZBUILD_ARGS} --ws=${LCL_PLATFORM} --lazarusdir=${LAZARUS_DIR} ${PROJECT_FILE}) +. endfor +. endif # !target(do-build) +.endif + +.endif +# End of lazarus.mk file