From 7b1f6e32d20580f1c885896ba08016578a796e73 Mon Sep 17 00:00:00 2001 From: Mikle Kolyada Date: Mon, 17 Jun 2019 19:22:56 +0300 Subject: app-editror/texworks: initial import Signed-off-by: Mikle Kolyada Package-Manager: Portage-2.3.66, Repoman-2.3.11 --- app-editors/texworks/Manifest | 1 + app-editors/texworks/metadata.xml | 8 ++++ app-editors/texworks/texworks-0.6.3.ebuild | 61 ++++++++++++++++++++++++++++++ 3 files changed, 70 insertions(+) create mode 100644 app-editors/texworks/Manifest create mode 100644 app-editors/texworks/metadata.xml create mode 100644 app-editors/texworks/texworks-0.6.3.ebuild (limited to 'app-editors') diff --git a/app-editors/texworks/Manifest b/app-editors/texworks/Manifest new file mode 100644 index 000000000000..ff1a9953be4c --- /dev/null +++ b/app-editors/texworks/Manifest @@ -0,0 +1 @@ +DIST texworks-0.6.3.tar.gz 12082640 BLAKE2B db5b98f9226e0e7e109dc06d8e0a88b0e8f0dd237676ebec3be55308c720eb6dada25be061d8d5dc27949b9673e93fd65c8ddddfbe03aee4f8170471c52b37fd SHA512 389cf54441e74164fc842f2f293cdee45c6ff9fe202f262d32f3fb076de9a29813a62cd75052969293f2f784e0722215bbbf2206e75bc836a13d495bf5aed653 diff --git a/app-editors/texworks/metadata.xml b/app-editors/texworks/metadata.xml new file mode 100644 index 000000000000..203fa55c746f --- /dev/null +++ b/app-editors/texworks/metadata.xml @@ -0,0 +1,8 @@ + + + + + zlogene@gentoo.org + Mikle Kolyada + + diff --git a/app-editors/texworks/texworks-0.6.3.ebuild b/app-editors/texworks/texworks-0.6.3.ebuild new file mode 100644 index 000000000000..49986398a31a --- /dev/null +++ b/app-editors/texworks/texworks-0.6.3.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_6,3_7} ) + +inherit python-single-r1 cmake-utils xdg-utils + +DESCRIPTION="A simple interface for working with TeX documents" +HOMEPAGE="http://tug.org/texworks/" +SRC_URI="https://github.com/TeXworks/texworks/archive/release-${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="lua python" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +RDEPEND="app-text/hunspell:= + app-text/poppler[qt5] + dev-qt/designer:5 + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtscript:5[scripttools] + lua? ( dev-lang/lua:0 ) + python? ( ${PYTHON_DEPS} ) " + +DEPEND="${RDEPEND}" + +BDEPEND="virtual/pkgconfig" + +S=${WORKDIR}/${PN}-release-${PV} + +pkg_setup() { + python-single-r1_pkg_setup +} + +src_configure() { + local mycmakeargs=( + -Wno-dev + -DPREFER_BUNDLED_SYNCTEX=OFF + -DWITH_LUA=$(usex lua ON OFF) + -DWITH_PYTHON=$(usex python ON OFF) + -DTeXworks_PLUGIN_DIR="/usr/$(get_libdir)/texworks" + -DTeXworks_DOCS_DIR="/share/doc/${PF}" + -DQTPDF_VIEWER=ON + -DBUILD_SHARED_LIBS=ON + -DBUILD_SHARED_PLUGINS=ON + ) + cmake-utils_src_configure +} + +pkg_postinst() { + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_desktop_database_update +} -- cgit v1.2.3-65-gdbad