From owner-svn-ports-all@freebsd.org Mon Jun 11 17:25:12 2018 Return-Path: Delivered-To: svn-ports-all@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 6C7DB101E307; Mon, 11 Jun 2018 17:25:12 +0000 (UTC) (envelope-from fernape@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 1F43972434; Mon, 11 Jun 2018 17:25:12 +0000 (UTC) (envelope-from fernape@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 006DD1E785; Mon, 11 Jun 2018 17:25:12 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5BHPBCN080236; Mon, 11 Jun 2018 17:25:11 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5BHPBQh080233; Mon, 11 Jun 2018 17:25:11 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <201806111725.w5BHPBQh080233@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Mon, 11 Jun 2018 17:25:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472195 - head/editors/texstudio X-SVN-Group: ports-head X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: head/editors/texstudio X-SVN-Commit-Revision: 472195 X-SVN-Commit-Repository: ports 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.26 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: Mon, 11 Jun 2018 17:25:12 -0000 Author: fernape Date: Mon Jun 11 17:25:11 2018 New Revision: 472195 URL: https://svnweb.freebsd.org/changeset/ports/472195 Log: editors/texstudio: update to 2.12.8 * USE_GITHUB since this release is only in GH and not in SF * Add LICENSE according to project's site (no license file is provided) * Use DISTVERSION instead of PORTVERSION * Flavorize port and make qt5 default (as in the previous version) PR: 227097 Reported by: lebarondemerde@privacychain.ch Approved by: tcberner (mentor), portmgr (mat) Differential Revision: https://reviews.freebsd.org/D15023 Modified: head/editors/texstudio/Makefile head/editors/texstudio/distinfo head/editors/texstudio/pkg-plist Modified: head/editors/texstudio/Makefile ============================================================================== --- head/editors/texstudio/Makefile Mon Jun 11 17:19:29 2018 (r472194) +++ head/editors/texstudio/Makefile Mon Jun 11 17:25:11 2018 (r472195) @@ -1,52 +1,54 @@ # $FreeBSD$ PORTNAME= texstudio -PORTVERSION= 2.11.0 -PORTREVISION= 8 +DISTVERSION= 2.12.8 CATEGORIES= editors -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/TeXstudio%20${PORTVERSION} +PKGNAMESUFFIX= -${FLAVOR} MAINTAINER= abiliojr@gmail.com COMMENT= Integrated writing environment for LaTeX documents -LIB_DEPENDS= libhunspell-1.6.so:textproc/hunspell \ - libpoppler.so:graphics/poppler +LICENSE= GPLv2 BROKEN_aarch64= fails to compile: error: no member named mc_eip in __mcontext BROKEN_armv6= fails to compile: error: no member named mc_eip in __mcontext +LIB_DEPENDS= libhunspell-1.6.so:textproc/hunspell \ + libpoppler.so:graphics/poppler + +FLAVORS= qt5 qt4 +FLAVOR?= ${FLAVORS:[1]} + +qt4_LIB_DEPENDS= libpoppler-qt4.so:graphics/poppler-qt4 \ + libquazip.so:archivers/quazip@qt4 +qt5_LIB_DEPENDS= libpoppler-qt5.so:graphics/poppler-qt5 \ + libquazip5.so:archivers/quazip@qt5 + USES= desktop-file-utils dos2unix ghostscript:run \ pkgconfig qmake -DOS2UNIX_FILES= ${PORTNAME}.pro -_USE_QT4= corelib gui network script svg xml \ +.if ${FLAVOR} == qt4 +USE_QT4= corelib gui network script svg xml \ iconengines_run designer_build moc_build rcc_build uic_build -_USE_QT5= core gui network script svg widgets xml \ +QMAKE_ARGS= QUAZIP_INCLUDE="${LOCALBASE}/include/quazip" \ + QUAZIP_LIB="-lquazip" +.else +USE_QT5= core gui network script svg widgets xml \ printsupport concurrent uitools buildtools_build +QMAKE_ARGS= QUAZIP_INCLUDE="${LOCALBASE}/include/quazip5" \ + QUAZIP_LIB="-lquazip5" +QTVER_SUFFIX= 5 +.endif USE_XORG= x11 USE_GL= gl USE_TEX= latex dvipsk +USE_GITHUB= yes +GH_ACCOUNT= ${PORTNAME}-org -WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION} +DOS2UNIX_FILES= ${PORTNAME}.pro -OPTIONS_SINGLE= TOOLKIT -OPTIONS_SINGLE_TOOLKIT= QT4 QT5 -OPTIONS_DEFAULT= QT5 - -QMAKE_ARGS= USE_SYSTEM_HUNSPELL=true USE_SYSTEM_QUAZIP=true - -TOOLKIT_DESC= Qt toolkit -QT4_USE= ${_USE_QT4:S/^/QT4=/} -QT4_LIB_DEPENDS=libpoppler-qt4.so:graphics/poppler-qt4 \ - libquazip.so:archivers/quazip@qt4 -QT4_QMAKE_ON= QUAZIP_INCLUDE="${LOCALBASE}/include/quazip" \ - QUAZIP_LIB="-lquazip" -QT5_USE= ${_USE_QT5:S/^/QT5=/} -QT5_LIB_DEPENDS=libpoppler-qt5.so:graphics/poppler-qt5 \ - libquazip5.so:archivers/quazip@qt5 -QT5_QMAKE_ON= QUAZIP_INCLUDE="${LOCALBASE}/include/quazip5" \ - QUAZIP_LIB="-lquazip5" +QMAKE_ARGS+= USE_SYSTEM_HUNSPELL=true USE_SYSTEM_QUAZIP=true post-patch: @${REINPLACE_CMD} -e 's,^\(utilities.path =\).*,\1 ${DATADIR},' \ Modified: head/editors/texstudio/distinfo ============================================================================== --- head/editors/texstudio/distinfo Mon Jun 11 17:19:29 2018 (r472194) +++ head/editors/texstudio/distinfo Mon Jun 11 17:25:11 2018 (r472195) @@ -1,3 +1,3 @@ -TIMESTAMP = 1468240968 -SHA256 (texstudio-2.11.0.tar.gz) = 170e6d68952251e8c64589b0d147cb7692005e135cc6fc14579c6fd593f54307 -SIZE (texstudio-2.11.0.tar.gz) = 26263749 +TIMESTAMP = 1523190835 +SHA256 (texstudio-org-texstudio-2.12.8_GH0.tar.gz) = 3dec30ded3f36bb0591f8ed1b78b86fa23f276f5744925bc91075715c3f58062 +SIZE (texstudio-org-texstudio-2.12.8_GH0.tar.gz) = 26555418 Modified: head/editors/texstudio/pkg-plist ============================================================================== --- head/editors/texstudio/pkg-plist Mon Jun 11 17:19:29 2018 (r472194) +++ head/editors/texstudio/pkg-plist Mon Jun 11 17:25:11 2018 (r472195) @@ -118,10 +118,12 @@ share/icons/hicolor/scalable/apps/texstudio.svg %%DATADIR%%/texstudio32x32.png %%DATADIR%%/texstudio48x48.png %%DATADIR%%/texstudio64x64.png +%%DATADIR%%/texstudio_ar.qm %%DATADIR%%/texstudio_cs.qm %%DATADIR%%/texstudio_de.qm %%DATADIR%%/texstudio_el.qm %%DATADIR%%/texstudio_es.qm +%%DATADIR%%/texstudio_fa.qm %%DATADIR%%/texstudio_fr.qm %%DATADIR%%/texstudio_hu.qm %%DATADIR%%/texstudio_it.qm @@ -130,6 +132,7 @@ share/icons/hicolor/scalable/apps/texstudio.svg %%DATADIR%%/texstudio_pl.qm %%DATADIR%%/texstudio_pt_BR.qm %%DATADIR%%/texstudio_ru_RU.qm +%%DATADIR%%/texstudio_tr_TR.qm %%DATADIR%%/texstudio_uk.qm %%DATADIR%%/texstudio_vi.qm %%DATADIR%%/texstudio_zh_CN.qm