public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-text/kbibtex/files/, app-text/kbibtex/
@ 2017-12-29 19:34 Andreas Sturmlechner
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2017-12-29 19:34 UTC (permalink / raw
  To: gentoo-commits

commit:     dbf18dc1588ec9531de896551fcffc5aa038793b
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 19:34:04 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 19:34:04 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbf18dc1

app-text/kbibtex: Drop slot 4

Bug: https://bugs.gentoo.org/642446
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-text/kbibtex/Manifest                         |   1 -
 app-text/kbibtex/files/kbibtex-0.6.2-webkit.patch | 109 ----------------------
 app-text/kbibtex/kbibtex-0.6.2.ebuild             |  37 --------
 3 files changed, 147 deletions(-)

diff --git a/app-text/kbibtex/Manifest b/app-text/kbibtex/Manifest
index d6b2fc4ff48..beb07972178 100644
--- a/app-text/kbibtex/Manifest
+++ b/app-text/kbibtex/Manifest
@@ -1,2 +1 @@
-DIST kbibtex-0.6.2.tar.xz 3081364 BLAKE2B 8f52c4afea73dae10d3277aabd78a010c0bd2e0437084a87c5b8f5f2d99b40bf63ea4eb04b80699af2e7324e2436a38597394d4aabb076444c1f175327e3f77b SHA512 aa23e80cb273c0ae721ecc917f540070deea520fea2d7ca7ee97fde2c6918dba84769ad083fed93b9d0260539273c20c214b92c94269b413f46cb644d16dc270
 DIST kbibtex-0.8_pre20171110.tar.gz 11423893 BLAKE2B 78bcd72da35775d9927f35b865aba1e5ee88fd6391e5b354dd23d319a17a18c5aa521d32f58f1827a86bf33d1a42e7bef19940fdd1b83e67124b7335520bb1cd SHA512 719c40e78e22dc936a5395bf299962b4ec657df89877df78f17139dcd9b45a7ed98ff213a7c8a0cf0eeb4960a3b10cafaf7521e334a3269f96e2abdcdd67c913

diff --git a/app-text/kbibtex/files/kbibtex-0.6.2-webkit.patch b/app-text/kbibtex/files/kbibtex-0.6.2-webkit.patch
deleted file mode 100644
index c59a7fb9caf..00000000000
--- a/app-text/kbibtex/files/kbibtex-0.6.2-webkit.patch
+++ /dev/null
@@ -1,109 +0,0 @@
-commit 2cd09d41ed559461a0f0a346ebec3dea82c06947
-Author: Andreas Sturmlechner <andreas.sturmlechner@gmail.com>
-Date:   Sat Jan 21 18:26:46 2017 +0100
-
-    Add option to disable Qt4WebKit even if present
-    
-    - Link against Qt4WebKit only if(HAVE_WEBKIT)
-    - Remove Qt4WebKit linking from tests
-    
-    REVIEW: 129863
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index ee3d810..1acbf8a 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -48,6 +48,12 @@ set(
- )
- 
- option(
-+    WITH_QTWEBKIT
-+    "Enable QtWebkit support"
-+    ON
-+)
-+
-+option(
-     UNITY_BUILD
-     "Compile multiple C++ files in one big, merged file (\"Unity build\")\nSee also http://t-fischer.dreamwidth.org/3054.html"
- )
-diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
-index 04222a7..0b7be01 100644
---- a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -37,24 +37,41 @@ include(
- # check if QtWebKit is available, which seems to be not available
- # on e.g. RedHat Enterprise Linux 6 or Scientific Linux 6
- if(
--    QT_QTWEBKIT_FOUND
-+    WITH_QTWEBKIT
- )
--    message(
--        STATUS
--        "Found QtWebKit, enabling WebKit support"
-+    if(
-+        QT_QTWEBKIT_FOUND
-+    )
-+        message(
-+            STATUS
-+            "Found QtWebKit, enabling WebKit support"
-+        )
-+        add_definitions(
-+            -DHAVE_QTWEBKIT
-+        )
-+        set(
-+            OPTIONAL_QTWEBKIT_LIBRARIES
-+            ${QT_QTWEBKIT_LIBRARIES}
-+        )
-+    else(
-+        QT_QTWEBKIT_FOUND
-     )
--    add_definitions(
--        -DHAVE_QTWEBKIT
-+        message(
-+            STATUS
-+            "QtWebKit not found, disabling WebKit support"
-+        )
-+    endif(
-+        QT_QTWEBKIT_FOUND
-     )
- else(
--    QT_QTWEBKIT_FOUND
-+    WITH_QTWEBKIT
- )
-     message(
-         STATUS
--        "QtWebKit not found, disabling WebKit support"
-+        "QtWebKit support disabled by configure"
-     )
- endif(
--    QT_QTWEBKIT_FOUND
-+    WITH_QTWEBKIT
- )
- 
- add_definitions(
-diff --git a/src/networking/CMakeLists.txt b/src/networking/CMakeLists.txt
-index efa14f4..f7ade08 100644
---- a/src/networking/CMakeLists.txt
-+++ b/src/networking/CMakeLists.txt
-@@ -131,7 +131,7 @@ target_link_libraries(
-     kbibtexnetworking
-     LINK_PRIVATE
-     ${QT_QTCORE_LIBRARY}
--    ${QT_QTWEBKIT_LIBRARY}
-+    ${OPTIONAL_QTWEBKIT_LIBRARIES}
-     ${KDE4_KDECORE_LIBS}
-     ${KDE4_KIO_LIBS}
-     ${POPPLER_QT4_LIBRARIES}
-diff --git a/src/program/CMakeLists.txt b/src/program/CMakeLists.txt
-index a9fe213..fa57506 100644
---- a/src/program/CMakeLists.txt
-+++ b/src/program/CMakeLists.txt
-@@ -65,7 +65,7 @@ kde4_add_executable(
- target_link_libraries(
-     kbibtex
-     LINK_PRIVATE
--    ${QT_QTWEBKIT_LIBRARIES}
-+    ${OPTIONAL_QTWEBKIT_LIBRARIES}
-     ${KDE4_KIO_LIBS}
-     ${KDE4_KPARTS_LIBS}
-     ${KDE4_KFILE_LIBS}

diff --git a/app-text/kbibtex/kbibtex-0.6.2.ebuild b/app-text/kbibtex/kbibtex-0.6.2.ebuild
deleted file mode 100644
index 1ed3726917b..00000000000
--- a/app-text/kbibtex/kbibtex-0.6.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit kde4-base
-
-DESCRIPTION="BibTeX editor by KDE to edit bibliographies used with LaTeX"
-HOMEPAGE="https://userbase.kde.org/KBibTeX"
-SRC_URI="mirror://kde/stable/KBibTeX/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="4"
-KEYWORDS="amd64 x86"
-IUSE="debug"
-
-DEPEND="
-	app-text/poppler[qt4]
-	dev-libs/libxml2
-	dev-libs/libxslt
-	dev-libs/qoauth:0
-	virtual/tex-base
-	x11-libs/libqxt
-"
-RDEPEND="${DEPEND}
-	dev-tex/bibtex2html
-"
-
-PATCHES=( "${FILESDIR}/${P}-webkit.patch" )
-
-src_configure() {
-	local mycmakeargs=(
-		-DWITH_QTWEBKIT=OFF
-	)
-
-	kde4-base_src_configure
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-text/kbibtex/files/, app-text/kbibtex/
@ 2022-11-23 20:19 Andreas Sturmlechner
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2022-11-23 20:19 UTC (permalink / raw
  To: gentoo-commits

commit:     a58b3731e753121d653abc77f0820f6f1d30e7db
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 23 19:57:19 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Nov 23 20:19:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a58b3731

app-text/kbibtex: Backport two upstream fixes, update EAPI 7 -> 8

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 .../files/kbibtex-0.9.2-fix-crash-w-newer-Qt.patch | 28 ++++++++
 ...-0.9.2-fix-creation-w-url-from-user-input.patch | 28 ++++++++
 app-text/kbibtex/kbibtex-0.9.2-r1.ebuild           | 84 ++++++++++++++++++++++
 3 files changed, 140 insertions(+)

diff --git a/app-text/kbibtex/files/kbibtex-0.9.2-fix-crash-w-newer-Qt.patch b/app-text/kbibtex/files/kbibtex-0.9.2-fix-crash-w-newer-Qt.patch
new file mode 100644
index 000000000000..91cc51f9303c
--- /dev/null
+++ b/app-text/kbibtex/files/kbibtex-0.9.2-fix-crash-w-newer-Qt.patch
@@ -0,0 +1,28 @@
+From 84b0551eb141b3a7904ceec158d040200c995023 Mon Sep 17 00:00:00 2001
+From: Albert Astals Cid <aacid@kde.org>
+Date: Thu, 8 Apr 2021 22:07:15 +0200
+Subject: [PATCH] Fix crash with newer Qt versions
+
+Assign m_internalModel before calling into
+QSortFilterProxyModel::setSourceModel since that can end up calling filterAcceptsRow
+---
+ src/gui/file/sortfilterfilemodel.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/gui/file/sortfilterfilemodel.cpp b/src/gui/file/sortfilterfilemodel.cpp
+index 73707cec..87657aa2 100644
+--- a/src/gui/file/sortfilterfilemodel.cpp
++++ b/src/gui/file/sortfilterfilemodel.cpp
+@@ -40,8 +40,8 @@ SortFilterFileModel::SortFilterFileModel(QObject *parent)
+ 
+ void SortFilterFileModel::setSourceModel(QAbstractItemModel *model)
+ {
+-    QSortFilterProxyModel::setSourceModel(model);
+     m_internalModel = dynamic_cast<FileModel *>(model);
++    QSortFilterProxyModel::setSourceModel(model);
+ }
+ 
+ FileModel *SortFilterFileModel::fileSourceModel() const
+-- 
+GitLab
+

diff --git a/app-text/kbibtex/files/kbibtex-0.9.2-fix-creation-w-url-from-user-input.patch b/app-text/kbibtex/files/kbibtex-0.9.2-fix-creation-w-url-from-user-input.patch
new file mode 100644
index 000000000000..fdc42d97810b
--- /dev/null
+++ b/app-text/kbibtex/files/kbibtex-0.9.2-fix-creation-w-url-from-user-input.patch
@@ -0,0 +1,28 @@
+From 1153930536abe9f0331acef67dc40b18210eb07e Mon Sep 17 00:00:00 2001
+From: Thomas Fischer <fischer@unix-ag.uni-kl.de>
+Date: Sat, 1 Oct 2022 23:15:52 +0200
+Subject: [PATCH] Fix creation of URL from user input
+
+... when opening a document associated with a bibliographic entry.
+
+BUG: 459150
+---
+ src/parts/part.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/parts/part.cpp b/src/parts/part.cpp
+index 5324647f..9dc35d1c 100644
+--- a/src/parts/part.cpp
++++ b/src/parts/part.cpp
+@@ -914,7 +914,7 @@ void KBibTeXPart::elementViewDocumentMenu(QObject *obj)
+     QString text = static_cast<QAction *>(obj)->data().toString(); ///< only a QAction will be passed along
+ 
+     /// Guess mime type for url to open
+-    QUrl url(text);
++    QUrl url{QUrl::fromUserInput(text)};
+     QMimeType mimeType = FileInfo::mimeTypeForUrl(url);
+     const QString mimeTypeName = mimeType.name();
+     /// Ask KDE subsystem to open url in viewer matching mime type
+-- 
+GitLab
+

diff --git a/app-text/kbibtex/kbibtex-0.9.2-r1.ebuild b/app-text/kbibtex/kbibtex-0.9.2-r1.ebuild
new file mode 100644
index 000000000000..e8d349aaa433
--- /dev/null
+++ b/app-text/kbibtex/kbibtex-0.9.2-r1.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_HANDBOOK="optional"
+ECM_TEST="true"
+KFMIN=5.82.0
+QTMIN=5.15.5
+inherit ecm kde.org optfeature
+
+DESCRIPTION="BibTeX editor to edit bibliographies used with LaTeX"
+HOMEPAGE="https://apps.kde.org/kbibtex/ https://userbase.kde.org/KBibTeX"
+
+if [[ ${KDE_BUILD_TYPE} != live ]]; then
+	SRC_URI="mirror://kde/stable/KBibTeX/${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="5"
+IUSE="webengine zotero"
+
+RESTRICT="test"
+
+DEPEND="
+	app-text/poppler[qt5]
+	dev-libs/icu:=
+	>=dev-qt/qtconcurrent-${QTMIN}:5
+	>=dev-qt/qtdbus-${QTMIN}:5
+	>=dev-qt/qtgui-${QTMIN}:5
+	>=dev-qt/qtnetwork-${QTMIN}:5
+	>=dev-qt/qtwidgets-${QTMIN}:5
+	>=dev-qt/qtxml-${QTMIN}:5
+	>=dev-qt/qtxmlpatterns-${QTMIN}:5
+	>=kde-frameworks/kcompletion-${KFMIN}:5
+	>=kde-frameworks/kconfig-${KFMIN}:5
+	>=kde-frameworks/kconfigwidgets-${KFMIN}:5
+	>=kde-frameworks/kcoreaddons-${KFMIN}:5
+	>=kde-frameworks/kcrash-${KFMIN}:5
+	>=kde-frameworks/ki18n-${KFMIN}:5
+	>=kde-frameworks/kiconthemes-${KFMIN}:5
+	>=kde-frameworks/kio-${KFMIN}:5
+	>=kde-frameworks/kitemviews-${KFMIN}:5
+	>=kde-frameworks/kjobwidgets-${KFMIN}:5
+	>=kde-frameworks/kparts-${KFMIN}:5
+	>=kde-frameworks/kservice-${KFMIN}:5
+	>=kde-frameworks/ktexteditor-${KFMIN}:5
+	>=kde-frameworks/ktextwidgets-${KFMIN}:5
+	>=kde-frameworks/kwallet-${KFMIN}:5
+	>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
+	>=kde-frameworks/kxmlgui-${KFMIN}:5
+	virtual/tex-base
+	webengine? ( >=dev-qt/qtwebengine-${QTMIN}:5[widgets] )
+	zotero? (
+		>=app-crypt/qca-2.3.0:2[qt5(+)]
+		dev-libs/qoauth:5
+	)
+"
+RDEPEND="${DEPEND}
+	dev-tex/bibtex2html
+"
+
+PATCHES=(
+	"${FILESDIR}/${P}-fix-crash-w-newer-Qt.patch"
+	"${FILESDIR}/${P}-fix-creation-w-url-from-user-input.patch" # KDE-bug 459150
+)
+
+src_configure() {
+	local mycmakeargs=(
+		-DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebKitWidgets=ON
+		$(cmake_use_find_package webengine Qt5WebEngineWidgets)
+		$(cmake_use_find_package zotero Qca-qt5)
+	)
+
+	ecm_src_configure
+}
+
+pkg_postinst() {
+	if [[ -z "${REPLACING_VERSIONS}" ]]; then
+		optfeature "PDF or PostScript document previews" "kde-apps/okular:${SLOT}"
+	fi
+	ecm_pkg_postinst
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-text/kbibtex/files/, app-text/kbibtex/
@ 2023-04-23 20:28 Andreas Sturmlechner
  0 siblings, 0 replies; 3+ messages in thread
From: Andreas Sturmlechner @ 2023-04-23 20:28 UTC (permalink / raw
  To: gentoo-commits

commit:     26632ece91818ebc34ee87848e30d5ab42c04ba8
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 23 20:27:18 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Apr 23 20:27:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26632ece

app-text/kbibtex: drop 0.9.3.1

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 app-text/kbibtex/Manifest                          |  1 -
 .../kbibtex/files/kbibtex-0.9.3.1-bogus-dep.patch  | 34 ---------
 app-text/kbibtex/kbibtex-0.9.3.1.ebuild            | 81 ----------------------
 3 files changed, 116 deletions(-)

diff --git a/app-text/kbibtex/Manifest b/app-text/kbibtex/Manifest
index a99eb3dac623..4025a94e7268 100644
--- a/app-text/kbibtex/Manifest
+++ b/app-text/kbibtex/Manifest
@@ -1,2 +1 @@
-DIST kbibtex-0.9.3.1.tar.xz 4219496 BLAKE2B dc57f8f54ec6cbadc1b0b529387a47524f3ceb9e69a79e777a9b69c14c8cd2f240a6153bf9f95f5f5c57483a93c84505d6673625ccb38233c3a3b177bc20b4c4 SHA512 2e7406c16e1e520973166d6a4d27f4e3d51a4276ea25de611d09010ca40e3b0ea56fce6c29589ae51c58096c362cab11b439df0d80ff1b6951d4b92d46262e27
 DIST kbibtex-0.9.3.2.tar.xz 4219844 BLAKE2B 48d1f32455e58fe3df30e355c89b4dd9d7f39c262e5c884493492207babc033bbeb39bf48d4b908f272394a5a677b8955f3d65bada66e589af88d2c93b9ec092 SHA512 69a0125dfe7dd8c539a60735169ee9713e4d6475121429e1fd23638213f5fb5ec6dbf6aed095fc5a2fc0f922ee7c2461a5d1aed9a6937dfb8bbe5c846ba7087f

diff --git a/app-text/kbibtex/files/kbibtex-0.9.3.1-bogus-dep.patch b/app-text/kbibtex/files/kbibtex-0.9.3.1-bogus-dep.patch
deleted file mode 100644
index 2235498bbe7a..000000000000
--- a/app-text/kbibtex/files/kbibtex-0.9.3.1-bogus-dep.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From f12d17d38011fd8b432ed4ba8952eb9241b152a6 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner <asturm@gentoo.org>
-Date: Tue, 24 Jan 2023 20:17:55 +0100
-Subject: [PATCH] Revert "Fixing minore build system issues"
-
-This reverts commit 6860474d423c47f0633d537851b793fda76ae223.
----
- CMakeLists.txt | 3 ---
- 1 file changed, 3 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index c375a34b..48196146 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -43,8 +43,6 @@ include(KDECMakeSettings)
- include(ECMInstallIcons)
- include(ECMSetupVersion)
- include(ECMAddAppIcon)
--include(ECMQtDeclareLoggingCategory)
--include(ECMGenerateHeaders)
- include(GenerateExportHeader)
- 
- find_package(
-@@ -54,7 +52,6 @@ find_package(
-     Core
-     Widgets
-     Network
--    NetworkAuth
-     XmlPatterns
-     Concurrent
- )
--- 
-2.39.1
-

diff --git a/app-text/kbibtex/kbibtex-0.9.3.1.ebuild b/app-text/kbibtex/kbibtex-0.9.3.1.ebuild
deleted file mode 100644
index 30394d6ef420..000000000000
--- a/app-text/kbibtex/kbibtex-0.9.3.1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="optional"
-ECM_TEST="true"
-KFMIN=5.82.0
-QTMIN=5.15.5
-inherit ecm kde.org optfeature
-
-DESCRIPTION="BibTeX editor to edit bibliographies used with LaTeX"
-HOMEPAGE="https://apps.kde.org/kbibtex/ https://userbase.kde.org/KBibTeX"
-
-if [[ ${KDE_BUILD_TYPE} != live ]]; then
-	SRC_URI="mirror://kde/stable/KBibTeX/$(ver_cut 1-3)/${P}.tar.xz"
-	KEYWORDS="amd64 x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="5"
-IUSE="webengine zotero"
-
-RESTRICT="test"
-
-DEPEND="
-	app-text/poppler[qt5]
-	dev-libs/icu:=
-	>=dev-qt/qtconcurrent-${QTMIN}:5
-	>=dev-qt/qtdbus-${QTMIN}:5
-	>=dev-qt/qtgui-${QTMIN}:5
-	>=dev-qt/qtnetwork-${QTMIN}:5
-	>=dev-qt/qtwidgets-${QTMIN}:5
-	>=dev-qt/qtxml-${QTMIN}:5
-	>=dev-qt/qtxmlpatterns-${QTMIN}:5
-	>=kde-frameworks/kcompletion-${KFMIN}:5
-	>=kde-frameworks/kconfig-${KFMIN}:5
-	>=kde-frameworks/kconfigwidgets-${KFMIN}:5
-	>=kde-frameworks/kcoreaddons-${KFMIN}:5
-	>=kde-frameworks/kcrash-${KFMIN}:5
-	>=kde-frameworks/ki18n-${KFMIN}:5
-	>=kde-frameworks/kiconthemes-${KFMIN}:5
-	>=kde-frameworks/kio-${KFMIN}:5
-	>=kde-frameworks/kitemviews-${KFMIN}:5
-	>=kde-frameworks/kjobwidgets-${KFMIN}:5
-	>=kde-frameworks/kparts-${KFMIN}:5
-	>=kde-frameworks/kservice-${KFMIN}:5
-	>=kde-frameworks/ktexteditor-${KFMIN}:5
-	>=kde-frameworks/ktextwidgets-${KFMIN}:5
-	>=kde-frameworks/kwallet-${KFMIN}:5
-	>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
-	>=kde-frameworks/kxmlgui-${KFMIN}:5
-	virtual/tex-base
-	webengine? ( >=dev-qt/qtwebengine-${QTMIN}:5[widgets] )
-	zotero? (
-		>=app-crypt/qca-2.3.0:2[qt5(+)]
-		dev-libs/qoauth:5
-	)
-"
-RDEPEND="${DEPEND}
-	dev-tex/bibtex2html
-"
-
-PATCHES=( "${FILESDIR}/${P}-bogus-dep.patch" )
-
-src_configure() {
-	local mycmakeargs=(
-		-DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebKitWidgets=ON
-		$(cmake_use_find_package webengine Qt5WebEngineWidgets)
-		$(cmake_use_find_package zotero Qca-qt5)
-	)
-
-	ecm_src_configure
-}
-
-pkg_postinst() {
-	if [[ -z "${REPLACING_VERSIONS}" ]]; then
-		optfeature "PDF or PostScript document previews" "kde-apps/okular:${SLOT}"
-	fi
-	ecm_pkg_postinst
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-04-23 20:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-23 20:19 [gentoo-commits] repo/gentoo:master commit in: app-text/kbibtex/files/, app-text/kbibtex/ Andreas Sturmlechner
  -- strict thread matches above, loose matches on Subject: below --
2023-04-23 20:28 Andreas Sturmlechner
2017-12-29 19:34 Andreas Sturmlechner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox