mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
app-text/katarakt: drop 0.2
Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de> Part-of: https://github.com/gentoo/gentoo/pull/44415 Closes: https://github.com/gentoo/gentoo/pull/44415 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
parent
7a94305d5e
commit
39064e04aa
@ -1,2 +1 @@
|
||||
DIST katarakt-v0.2.tar.bz2 44034 BLAKE2B 97a4f35c37664065983985d5529e69c4cfe3143943ceb2d5ad6bc8ae708ed075bcdc77dfcc50578acc5776119db909077a730bd7ddf23cbf44abc127df0e5f85 SHA512 fbab92f2ecd832c18330bb805abd772b3ea039bf61fba5b5e909c3ceabae5df5ee4753db3422d8633ed57a76fb4e4831e00ee85bcac36d3dc6b32ca8bb58e435
|
||||
DIST katarakt-v0.3.tar.bz2 44635 BLAKE2B 078863376b6677d610620c4a8f3b1b2714398b8454d754e0fa1000795b940a020d5b4d16570d21bc7395de1368b74fcb739ffa00e58a7e136a689345a854d644 SHA512 393e827e124c618b53939884751f23db0bfaf7ccbe45093797bc1f2931bd697bac20c01967dc10e41e60709abd7f1001267b5aaa921446bb3e88d7024551f963
|
||||
|
||||
@ -1,26 +0,0 @@
|
||||
From 4801619c7752b317da8d57183f590d9c3cce42e1 Mon Sep 17 00:00:00 2001
|
||||
From: Kurt Kanzenbach <kurt@kmk-computers.de>
|
||||
Date: Thu, 30 Jan 2020 19:22:05 +0100
|
||||
Subject: [PATCH] build: Install binary
|
||||
|
||||
Add an install target for the binary.
|
||||
|
||||
Signed-off-by: Kurt Kanzenbach <kurt@kmk-computers.de>
|
||||
---
|
||||
katarakt.pro | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
diff --git a/katarakt.pro b/katarakt.pro
|
||||
index a632713db2ce..220dfd68b1b9 100644
|
||||
--- a/katarakt.pro
|
||||
+++ b/katarakt.pro
|
||||
@@ -57,3 +57,6 @@ web.depends = $$website.target
|
||||
web.CONFIG = phony
|
||||
|
||||
QMAKE_EXTRA_TARGETS += documentation website doc web
|
||||
+
|
||||
+target.path = $$INSTALL_ROOT/$$PREFIX/bin/
|
||||
+INSTALLS += target
|
||||
--
|
||||
2.24.1
|
||||
|
||||
@ -1,29 +0,0 @@
|
||||
From 23b68e9c48204d43b37b23735ad9ea0b219fec7b Mon Sep 17 00:00:00 2001
|
||||
From: Philipp Erhardt <Philipp.Erhardt@informatik.stud.uni-erlangen.de>
|
||||
Date: Mon, 19 Oct 2020 20:42:37 +0200
|
||||
Subject: [PATCH] Fix compilation if the version number contains a leading zero
|
||||
|
||||
---
|
||||
katarakt.pro | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/katarakt.pro b/katarakt.pro
|
||||
index a632713db2ce..84cd59797d0a 100644
|
||||
--- a/katarakt.pro
|
||||
+++ b/katarakt.pro
|
||||
@@ -17,9 +17,9 @@ unix {
|
||||
|
||||
isEmpty(PKG_CONFIG):PKG_CONFIG = pkg-config # same as in link_pkgconfig.prf
|
||||
POPPLER_VERSION = $$system($$PKG_CONFIG --modversion $$POPPLER)
|
||||
- POPPLER_VERSION_MAJOR = $$system(echo "$$POPPLER_VERSION" | cut -d . -f 1)
|
||||
- POPPLER_VERSION_MINOR = $$system(echo "$$POPPLER_VERSION" | cut -d . -f 2)
|
||||
- POPPLER_VERSION_MICRO = $$system(echo "$$POPPLER_VERSION" | cut -d . -f 3)
|
||||
+ POPPLER_VERSION_MAJOR = $$system(echo "$$POPPLER_VERSION" | cut -d . -f 1 | sed "\'s,^0*\\(.\\),\1,\'")
|
||||
+ POPPLER_VERSION_MINOR = $$system(echo "$$POPPLER_VERSION" | cut -d . -f 2 | sed "\'s,^0*\\(.\\),\1,\'")
|
||||
+ POPPLER_VERSION_MICRO = $$system(echo "$$POPPLER_VERSION" | cut -d . -f 3 | sed "\'s,^0*\\(.\\),\1,\'")
|
||||
|
||||
DEFINES += POPPLER_VERSION_MAJOR=$$POPPLER_VERSION_MAJOR
|
||||
DEFINES += POPPLER_VERSION_MINOR=$$POPPLER_VERSION_MINOR
|
||||
--
|
||||
2.33.0
|
||||
|
||||
@ -1,46 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit qmake-utils
|
||||
|
||||
MY_P="${PN}-v${PV}"
|
||||
|
||||
DESCRIPTION="A simple PDF viewer designed to use as much available screen space as possible"
|
||||
HOMEPAGE="https://gitlab.cs.fau.de/Qui_Sum/katarakt"
|
||||
SRC_URI="https://gitlab.cs.fau.de/Qui_Sum/${PN}/-/archive/v${PV}/${MY_P}.tar.bz2"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
LICENSE="BSD-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
BDEPEND="
|
||||
app-text/asciidoc
|
||||
virtual/pkgconfig
|
||||
"
|
||||
RDEPEND="
|
||||
app-text/poppler:=[qt5]
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtdbus:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtnetwork:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtxml:5
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${P}-install.patch"
|
||||
"${FILESDIR}/${P}-poppler.patch"
|
||||
)
|
||||
|
||||
src_configure() {
|
||||
eqmake5 PREFIX="${EPREFIX}/usr"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake INSTALL_ROOT="${D}" install doc
|
||||
doman doc/katarakt.1
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user