diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-10-04 13:48:29 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-10-04 19:36:53 +0200 |
commit | 188d42464564cb5154af3eda3af930d207317268 (patch) | |
tree | 18872a706f5911fcd974c302f3e47d3057ac7a9c /app-office/texstudio/texstudio-4.3.1-r1.ebuild | |
parent | dev-db/pg_top: drop 4.0.0-r3 (diff) | |
download | gentoo-188d42464564cb5154af3eda3af930d207317268.tar.gz gentoo-188d42464564cb5154af3eda3af930d207317268.tar.bz2 gentoo-188d42464564cb5154af3eda3af930d207317268.zip |
app-office/texstudio: drop 4.3.1-r1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-office/texstudio/texstudio-4.3.1-r1.ebuild')
-rw-r--r-- | app-office/texstudio/texstudio-4.3.1-r1.ebuild | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/app-office/texstudio/texstudio-4.3.1-r1.ebuild b/app-office/texstudio/texstudio-4.3.1-r1.ebuild deleted file mode 100644 index b9d465b6d461..000000000000 --- a/app-office/texstudio/texstudio-4.3.1-r1.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit desktop qmake-utils xdg - -MY_PV="${PV/_/}" -DESCRIPTION="Free cross-platform LaTeX editor (fork from texmakerX)" -HOMEPAGE="https://www.texstudio.org https://github.com/texstudio-org/texstudio" -SRC_URI="https://github.com/texstudio-org/texstudio/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-${MY_PV}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86" -IUSE="video" - -DEPEND=" - app-text/hunspell:= - app-text/poppler:=[qt5] - >=dev-libs/quazip-1.0:0=[qt5(+)] - dev-qt/designer:5 - dev-qt/qtcore:5 - dev-qt/qtconcurrent:5 - dev-qt/qtdeclarative:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtprintsupport:5 - dev-qt/qtsingleapplication[qt5(+),X] - dev-qt/qtsvg:5 - dev-qt/qttest:5 - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 - sys-libs/zlib - x11-libs/libX11 - x11-libs/libXext - video? ( >=media-libs/phonon-4.11.0[qt5(+)] ) -" -RDEPEND=" - ${DEPEND} - app-text/ghostscript-gpl - app-text/psutils - media-libs/netpbm - virtual/latex-base -" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/${PN}-3.0.5-quazip1.patch" # TODO: upstream -) - -src_prepare() { - # TODO: find hunspell quazip utilities/poppler-data qtsingleapplication -delete || die - rm -r src/quazip || die - - if use video; then - sed "/^PHONON/s:$:true:g" -i ${PN}.pro || die - fi - - sed -e "/qtsingleapplication.pri/s/.*/CONFIG += qtsingleapplication/" \ - -i ${PN}.pro || die - default -} - -src_configure() { - eqmake5 USE_SYSTEM_HUNSPELL=1 USE_SYSTEM_QUAZIP=1 NO_TESTS=false -} - -src_install() { - local i - for i in 16x16 22x22 32x32 48x48 64x64 128x128; do - newicon -s ${i} utilities/${PN}${i}.png ${PN}.png - done - - emake DESTDIR="${D}" INSTALL_ROOT="${ED}" install - - # We don't install licences per package - rm "${ED}"/usr/share/texstudio/COPYING || die -} |