diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2020-06-19 10:30:17 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2020-06-19 10:30:36 +0300 |
commit | fc1c41e8a047c984981f49fcb3c2961f26e8939b (patch) | |
tree | 30cd5398f1838cf7337f31d0df6dcd8d19d7cef6 /app-editors | |
parent | dev-util/pycharm-community: ignore bundled libs (diff) | |
download | gentoo-fc1c41e8a047c984981f49fcb3c2961f26e8939b.tar.gz gentoo-fc1c41e8a047c984981f49fcb3c2961f26e8939b.tar.bz2 gentoo-fc1c41e8a047c984981f49fcb3c2961f26e8939b.zip |
app-editors/texworks: Drop old
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/texworks/Manifest | 1 | ||||
-rw-r--r-- | app-editors/texworks/texworks-0.6.3.ebuild | 68 |
2 files changed, 0 insertions, 69 deletions
diff --git a/app-editors/texworks/Manifest b/app-editors/texworks/Manifest index b3388ca11125..275991343549 100644 --- a/app-editors/texworks/Manifest +++ b/app-editors/texworks/Manifest @@ -1,2 +1 @@ -DIST texworks-0.6.3.tar.gz 12082640 BLAKE2B db5b98f9226e0e7e109dc06d8e0a88b0e8f0dd237676ebec3be55308c720eb6dada25be061d8d5dc27949b9673e93fd65c8ddddfbe03aee4f8170471c52b37fd SHA512 389cf54441e74164fc842f2f293cdee45c6ff9fe202f262d32f3fb076de9a29813a62cd75052969293f2f784e0722215bbbf2206e75bc836a13d495bf5aed653 DIST texworks-0.6.5.tar.gz 12140935 BLAKE2B 660606fe2e53d5f2a53e80792efbee368f5f2f402ab974761efc6e11a6f2233fd04672dcc3bf0155a070162616c1d5a9c7313825890e6fb0c6c4dc7af2c62d29 SHA512 d97bb7c3ad7bbb402be80556027ef19076dae91bb9449df2b45d54e89b492e32b8d6f109d1bda9388424af6218866d84a8c296c9bc2ef644cf2fac0d4b24939e diff --git a/app-editors/texworks/texworks-0.6.3.ebuild b/app-editors/texworks/texworks-0.6.3.ebuild deleted file mode 100644 index d9fa4f242770..000000000000 --- a/app-editors/texworks/texworks-0.6.3.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python{3_6,3_7} ) - -inherit python-single-r1 cmake-utils virtualx 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/qtconcurrent: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} - -RESTRICT="!test? ( test )" - -pkg_setup() { - python-single-r1_pkg_setup -} - -src_configure() { - local mycmakeargs=( - -Wno-dev - -DPREFER_BUNDLED_SYNCTEX=ON - -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 -} - -src_test() { - virtx default_src_test -} - -pkg_postinst() { - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_desktop_database_update -} |