media-gfx/krita: Drop 4.2.9

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2020-10-13 16:22:52 +02:00
parent ada017ed32
commit 4b12e0d846
5 changed files with 0 additions and 581 deletions

View File

@@ -1,3 +1,2 @@
DIST krita-4.2.9-patchset.tar.xz 7928 BLAKE2B 57256884edafd528cfca529e020a226613a37682df445ece24d434e816f218d822c03d668a13806f775d02757bafd9627ed8073406e5506023767d06c78c30de SHA512 36ec902afec082fcf18c0e523a83a08aa54d54bd5393691b0f17dcab0969e69973d8e842fac44fcf66232f369b36f97937f67b5c0b0bdcff019cc1d323b3bf59
DIST krita-4.2.9.tar.xz 170082028 BLAKE2B dafe300a1ef56a743272ce5936a0640949b7cfd37322e30e8a7ef17c4e51bf9dc8175d1443f9943836a229933ecb9a5d28249b8c90155165f3f0ee800e3cfa66 SHA512 66eef3d1b5647e62551276662ef4332f15abc022f1032f27a2ad695a8d2dc5fa758146492a9da2b8cbd4a52e47c576473029d2aa9728dea3bec869b8173f08c0
DIST krita-4.3.0.tar.xz 166246720 BLAKE2B 74a6e02968a2abdeb59ca2702f0a4a7be23473657667b14592ad08b81d25d9e4815fb5d206a23f33a82268974e9369450525c53b43fef46831ad4c501c34546c SHA512 5633a6ccacc140b119082f14fe792b1219b8065304fccc55a84a2373a46cb036ad40f718beb8719e1f664e35d679b18e86f5f3db8685166a187d8cf3a77722f4

View File

@@ -1,399 +0,0 @@
--- a/plugins/filters/CMakeLists.txt 2019-07-31 11:22:19.572862843 +0200
+++ b/plugins/filters/CMakeLists.txt 2019-07-31 11:22:19.576862870 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory( tests )
+endif()
add_subdirectory( blur )
add_subdirectory( colors )
add_subdirectory( colorsfilters )
--- a/plugins/filters/unsharp/CMakeLists.txt 2019-07-31 11:22:19.582862912 +0200
+++ b/plugins/filters/unsharp/CMakeLists.txt 2019-07-31 11:22:19.587862947 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory( tests )
+endif()
set(kritaunsharpfilter_SOURCES
unsharp.cpp
--- a/plugins/paintops/defaultpaintops/CMakeLists.txt 2019-07-31 11:22:19.592862983 +0200
+++ b/plugins/paintops/defaultpaintops/CMakeLists.txt 2019-07-31 11:22:19.595863003 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(brush/tests)
+endif()
include_directories(brush
duplicate
--- a/plugins/paintops/libpaintop/CMakeLists.txt 2019-07-31 11:22:19.600863038 +0200
+++ b/plugins/paintops/libpaintop/CMakeLists.txt 2019-07-31 11:22:19.603863060 +0200
@@ -104,4 +104,6 @@
install(TARGETS kritalibpaintop ${INSTALL_TARGETS_DEFAULT_ARGS})
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
--- a/plugins/dockers/lut/CMakeLists.txt 2019-07-31 11:22:19.608863094 +0200
+++ b/plugins/dockers/lut/CMakeLists.txt 2019-07-31 11:22:19.613863129 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
include_directories(SYSTEM
${OCIO_INCLUDE_DIR}
--- a/plugins/dockers/animation/CMakeLists.txt 2019-07-31 11:22:19.619863171 +0200
+++ b/plugins/dockers/animation/CMakeLists.txt 2019-07-31 11:22:19.624863206 +0200
@@ -1,5 +1,7 @@
if (NOT WIN32 AND NOT APPLE)
- add_subdirectory(tests)
+ if(BUILD_TESTING)
+add_subdirectory(tests)
+endif()
endif()
set(KRITA_ANIMATIONDOCKER_SOURCES
--- a/plugins/extensions/qmic/CMakeLists.txt 2019-07-31 11:22:19.630863248 +0200
+++ b/plugins/extensions/qmic/CMakeLists.txt 2019-07-31 11:22:19.635863283 +0200
@@ -20,4 +20,6 @@
target_link_libraries(kritaqmic kritaui)
install(TARGETS kritaqmic DESTINATION ${KRITA_PLUGIN_INSTALL_DIR})
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
--- a/plugins/tools/basictools/CMakeLists.txt 2019-07-31 11:22:19.641863325 +0200
+++ b/plugins/tools/basictools/CMakeLists.txt 2019-07-31 11:22:19.645863353 +0200
@@ -1,5 +1,7 @@
if (NOT APPLE)
- add_subdirectory(tests)
+ if(BUILD_TESTING)
+add_subdirectory(tests)
+endif()
endif ()
set(kritadefaulttools_SOURCES
--- a/plugins/tools/tool_transform2/CMakeLists.txt 2019-07-31 11:22:19.650863388 +0200
+++ b/plugins/tools/tool_transform2/CMakeLists.txt 2019-07-31 11:22:19.653863409 +0200
@@ -1,5 +1,7 @@
if (NOT WIN32 AND NOT APPLE)
- add_subdirectory(tests)
+ if(BUILD_TESTING)
+add_subdirectory(tests)
+endif()
endif()
set(kritatooltransform_SOURCES
--- a/plugins/impex/svg/CMakeLists.txt 2019-07-31 11:22:19.658863444 +0200
+++ b/plugins/impex/svg/CMakeLists.txt 2019-07-31 11:22:19.662863472 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(kritasvgimport_SOURCES
kis_svg_import.cc
--- a/plugins/impex/brush/CMakeLists.txt 2019-07-31 11:22:19.668863514 +0200
+++ b/plugins/impex/brush/CMakeLists.txt 2019-07-31 11:22:19.672863542 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(kritabrushexport_PART_SRCS
kis_brush_export.cpp
--- a/plugins/impex/psd/CMakeLists.txt 2019-07-31 11:22:19.678863584 +0200
+++ b/plugins/impex/psd/CMakeLists.txt 2019-07-31 11:22:19.684863626 +0200
@@ -1,5 +1,7 @@
if (NOT MSVC AND NOT APPLE)
- add_subdirectory(tests)
+ if(BUILD_TESTING)
+add_subdirectory(tests)
+endif()
endif()
configure_file(config_psd.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config_psd.h)
--- a/plugins/impex/tga/CMakeLists.txt 2019-07-31 11:22:19.690863668 +0200
+++ b/plugins/impex/tga/CMakeLists.txt 2019-07-31 11:22:19.695863703 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(kritatgaexport_SOURCES
kis_tga_export.cpp
--- a/plugins/impex/libkra/CMakeLists.txt 2019-07-31 11:22:19.700863738 +0200
+++ b/plugins/impex/libkra/CMakeLists.txt 2019-07-31 11:22:19.704863766 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(kritalibkra_LIB_SRCS
kis_colorize_dom_utils.cpp
--- a/plugins/impex/jpeg/CMakeLists.txt 2019-07-31 11:22:19.709863801 +0200
+++ b/plugins/impex/jpeg/CMakeLists.txt 2019-07-31 11:22:19.713863829 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(ICCJPEG_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/lcms")
--- a/plugins/impex/gif/CMakeLists.txt 2019-07-31 11:22:19.720863878 +0200
+++ b/plugins/impex/gif/CMakeLists.txt 2019-07-31 11:22:19.726863920 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(kritagifexport_SOURCES
kis_gif_export.cpp
--- a/plugins/impex/exr/CMakeLists.txt 2019-07-31 11:22:19.732863962 +0200
+++ b/plugins/impex/exr/CMakeLists.txt 2019-07-31 11:22:19.736863990 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
include_directories(SYSTEM ${OPENEXR_INCLUDE_DIR} )
--- a/plugins/impex/xcf/CMakeLists.txt 2019-07-31 11:22:19.740864018 +0200
+++ b/plugins/impex/xcf/CMakeLists.txt 2019-07-31 11:22:19.744864046 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(XCFTOOLS_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/3rdparty/xcftools")
--- a/plugins/impex/tiff/CMakeLists.txt 2019-07-31 11:22:19.750864088 +0200
+++ b/plugins/impex/tiff/CMakeLists.txt 2019-07-31 11:22:19.755864123 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(libkritatiffconverter_LIB_SRCS
kis_tiff_converter.cc
--- a/plugins/impex/ora/CMakeLists.txt 2019-07-31 11:22:19.762864172 +0200
+++ b/plugins/impex/ora/CMakeLists.txt 2019-07-31 11:22:19.767864207 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(libkritaconverter_LIB_SRCS
ora_converter.cpp
--- a/plugins/impex/heif/CMakeLists.txt 2019-07-31 11:22:19.774864256 +0200
+++ b/plugins/impex/heif/CMakeLists.txt 2019-07-31 11:22:19.778864284 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${HEIF_CFLAGS}")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${HEIF_CFLAGS}")
--- a/plugins/impex/pdf/CMakeLists.txt 2019-07-31 11:22:19.783864319 +0200
+++ b/plugins/impex/pdf/CMakeLists.txt 2019-07-31 11:22:19.788864354 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(kritapdfimport_SOURCES kis_pdf_import.cpp kis_pdf_import_widget.cpp )
--- a/plugins/impex/csv/CMakeLists.txt 2019-07-31 11:22:19.796864410 +0200
+++ b/plugins/impex/csv/CMakeLists.txt 2019-07-31 11:22:19.803864459 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
# import
--- a/plugins/impex/heightmap/CMakeLists.txt 2019-07-31 11:22:19.810864508 +0200
+++ b/plugins/impex/heightmap/CMakeLists.txt 2019-07-31 11:22:19.819864571 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
include_directories( ${CMAKE_CURRENT_SOURCE_DIR} )
--- a/plugins/impex/raw/CMakeLists.txt 2019-07-31 11:22:19.826864620 +0200
+++ b/plugins/impex/raw/CMakeLists.txt 2019-07-31 11:22:19.830864648 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
if(OPENEXR_FOUND)
include_directories(${OPENEXR_INCLUDE_DIR})
--- a/plugins/impex/qimageio/CMakeLists.txt 2019-07-31 11:22:19.837864697 +0200
+++ b/plugins/impex/qimageio/CMakeLists.txt 2019-07-31 11:22:19.844864746 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(kritaqimageioexport_SOURCES
kis_qimageio_export.cpp
--- a/plugins/impex/qml/CMakeLists.txt 2019-07-31 11:22:19.851864795 +0200
+++ b/plugins/impex/qml/CMakeLists.txt 2019-07-31 11:22:19.856864830 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(kritaqmlexport_SOURCES
qml_converter.cc
--- a/plugins/impex/png/CMakeLists.txt 2019-07-31 11:22:19.862864872 +0200
+++ b/plugins/impex/png/CMakeLists.txt 2019-07-31 11:22:19.867864907 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(kritapngimport_SOURCES
kis_png_import.cc
--- a/plugins/color/lcms2engine/CMakeLists.txt 2019-07-31 11:22:19.872864942 +0200
+++ b/plugins/color/lcms2engine/CMakeLists.txt 2019-07-31 11:22:19.876864969 +0200
@@ -1,6 +1,8 @@
project( lcmsengine )
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
include_directories(SYSTEM
${LCMS2_INCLUDE_DIR}
--- a/libs/brush/CMakeLists.txt 2019-07-31 11:22:19.881865005 +0200
+++ b/libs/brush/CMakeLists.txt 2019-07-31 11:22:19.885865033 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory( tests )
+endif()
include_directories(SYSTEM
${EIGEN3_INCLUDE_DIR}
--- a/libs/global/CMakeLists.txt 2019-07-31 11:22:19.890865068 +0200
+++ b/libs/global/CMakeLists.txt 2019-07-31 11:22:19.896865110 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory( tests )
+endif()
include(CheckFunctionExists)
check_function_exists(backtrace HAVE_BACKTRACE)
--- a/libs/image/CMakeLists.txt 2019-07-31 11:22:19.902865151 +0200
+++ b/libs/image/CMakeLists.txt 2019-07-31 11:22:19.908865194 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory( tests )
+endif()
add_subdirectory( tiles3 )
--- a/libs/image/tiles3/CMakeLists.txt 2019-07-31 11:22:19.913865228 +0200
+++ b/libs/image/tiles3/CMakeLists.txt 2019-07-31 11:22:19.917865256 +0200
@@ -1 +1,3 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
--- a/libs/odf/CMakeLists.txt 2019-07-31 11:22:19.922865291 +0200
+++ b/libs/odf/CMakeLists.txt 2019-07-31 11:22:19.926865319 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory( tests )
+endif()
set(kritaodf_LIB_SRCS
KoOdf.cpp
--- a/libs/metadata/CMakeLists.txt 2019-07-31 11:22:19.930865347 +0200
+++ b/libs/metadata/CMakeLists.txt 2019-07-31 11:22:19.934865376 +0200
@@ -29,4 +29,6 @@
install(TARGETS kritametadata ${INSTALL_TARGETS_DEFAULT_ARGS})
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
--- a/libs/store/CMakeLists.txt 2019-07-31 11:22:19.940865418 +0200
+++ b/libs/store/CMakeLists.txt 2019-07-31 11:22:19.944865445 +0200
@@ -1,6 +1,8 @@
include_directories(${QUAZIP_INCLUDE_DIRS})
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
set(kritastore_LIB_SRCS
KoDirectoryStore.cpp
--- a/libs/libkis/CMakeLists.txt 2019-07-31 11:22:19.951865495 +0200
+++ b/libs/libkis/CMakeLists.txt 2019-07-31 11:22:19.958865544 +0200
@@ -47,4 +47,6 @@
install(TARGETS kritalibkis ${INSTALL_TARGETS_DEFAULT_ARGS})
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
--- a/libs/widgetutils/CMakeLists.txt 2019-07-31 11:22:19.968865614 +0200
+++ b/libs/widgetutils/CMakeLists.txt 2019-07-31 11:22:19.981865705 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
configure_file(xmlgui/config-xmlgui.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-xmlgui.h )
--- a/libs/widgets/CMakeLists.txt 2019-07-31 11:22:19.992865782 +0200
+++ b/libs/widgets/CMakeLists.txt 2019-07-31 11:22:20.000865837 +0200
@@ -1,4 +1,6 @@
+if(BUILD_TESTING)
add_subdirectory( tests )
+endif()
include_directories(${CMAKE_CURRENT_BINARY_DIR})
--- a/libs/flake/CMakeLists.txt 2019-07-31 11:22:20.010865908 +0200
+++ b/libs/flake/CMakeLists.txt 2019-07-31 11:22:20.017865956 +0200
@@ -9,8 +9,12 @@
)
add_subdirectory(styles)
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
+if(BUILD_TESTING)
add_subdirectory(resources/tests)
+endif()
set(kritaflake_SRCS
KoGradientHelper.cpp
--- a/libs/ui/CMakeLists.txt 2019-07-31 11:22:20.029866040 +0200
+++ b/libs/ui/CMakeLists.txt 2019-07-31 11:22:20.039866111 +0200
@@ -7,7 +7,9 @@
${OCIO_INCLUDE_DIR}
)
+if(BUILD_TESTING)
add_subdirectory( tests )
+endif()
if (APPLE)
find_library(FOUNDATION_LIBRARY Foundation)
--- a/libs/pigment/CMakeLists.txt 2019-07-31 11:22:20.050866188 +0200
+++ b/libs/pigment/CMakeLists.txt 2019-07-31 11:22:20.057866236 +0200
@@ -31,7 +31,9 @@
message("${__per_arch_factory_objs}")
endif()
+if(BUILD_TESTING)
add_subdirectory(tests)
+endif()
add_subdirectory(benchmarks)
set(kritapigment_SRCS

View File

@@ -1,122 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
ECM_TEST="forceoptional"
PYTHON_COMPAT=( python3_{6,7,8,9} )
KFMIN=5.60.0
QTMIN=5.12.3
VIRTUALX_REQUIRED="test"
inherit ecm kde.org python-single-r1
if [[ ${KDE_BUILD_TYPE} = release ]]; then
SRC_URI="mirror://kde/stable/${PN}/$(ver_cut 1-3)/${P}.tar.xz
https://dev.gentoo.org/~asturm/distfiles/${P}-patchset.tar.xz"
KEYWORDS="amd64 ~ppc64 ~x86"
fi
DESCRIPTION="Free digital painting application. Digital Painting, Creative Freedom!"
HOMEPAGE="https://kde.org/applications/graphics/org.kde.krita https://krita.org/en/"
LICENSE="GPL-3"
SLOT="5"
IUSE="color-management fftw gif +gsl heif +jpeg openexr pdf qtmedia +raw tiff vc"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
BDEPEND="
dev-cpp/eigen:3
dev-lang/perl
sys-devel/gettext
"
RDEPEND="${PYTHON_DEPS}
dev-libs/boost:=
dev-libs/quazip
$(python_gen_cond_dep '
dev-python/PyQt5[${PYTHON_MULTI_USEDEP}]
dev-python/sip[${PYTHON_MULTI_USEDEP}]
')
>=dev-qt/qtconcurrent-${QTMIN}:5
>=dev-qt/qtdbus-${QTMIN}:5
>=dev-qt/qtdeclarative-${QTMIN}:5
>=dev-qt/qtgui-${QTMIN}:5=[-gles2-only]
>=dev-qt/qtnetwork-${QTMIN}:5
>=dev-qt/qtprintsupport-${QTMIN}:5
>=dev-qt/qtsvg-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
>=dev-qt/qtx11extras-${QTMIN}:5
>=dev-qt/qtxml-${QTMIN}:5
>=kde-frameworks/karchive-${KFMIN}:5
>=kde-frameworks/kcompletion-${KFMIN}:5
>=kde-frameworks/kconfig-${KFMIN}:5
>=kde-frameworks/kcoreaddons-${KFMIN}:5
>=kde-frameworks/kcrash-${KFMIN}:5
>=kde-frameworks/kguiaddons-${KFMIN}:5
>=kde-frameworks/ki18n-${KFMIN}:5
>=kde-frameworks/kiconthemes-${KFMIN}:5
>=kde-frameworks/kitemmodels-${KFMIN}:5
>=kde-frameworks/kitemviews-${KFMIN}:5
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
>=kde-frameworks/kwindowsystem-${KFMIN}:5
>=kde-frameworks/kxmlgui-${KFMIN}:5
media-gfx/exiv2:=
media-libs/lcms
media-libs/libpng:0=
sys-libs/zlib
virtual/opengl
x11-libs/libX11
x11-libs/libXi
color-management? ( media-libs/opencolorio )
fftw? ( sci-libs/fftw:3.0= )
gif? ( media-libs/giflib )
gsl? ( sci-libs/gsl:= )
jpeg? ( virtual/jpeg:0 )
heif? ( media-libs/libheif:= )
openexr? (
media-libs/ilmbase:=
media-libs/openexr
)
pdf? ( app-text/poppler[qt5] )
qtmedia? ( >=dev-qt/qtmultimedia-${QTMIN}:5 )
raw? ( media-libs/libraw:= )
tiff? ( media-libs/tiff:0 )
"
DEPEND="${RDEPEND}
vc? ( >=dev-libs/vc-1.1.0 )
"
# bug 630508
RESTRICT+=" test"
PATCHES=(
"${FILESDIR}"/${PN}-4.2.4-tests-optional.patch
"${WORKDIR}"/${P}-patchset
)
pkg_setup() {
python-single-r1_pkg_setup
ecm_pkg_setup
}
src_configure() {
# Prevent sandbox violation from FindPyQt5.py module
# See Gentoo-bug 655918
addpredict /dev/dri
local mycmakeargs=(
$(cmake_use_find_package color-management OCIO)
$(cmake_use_find_package fftw FFTW3)
$(cmake_use_find_package gif GIF)
$(cmake_use_find_package gsl GSL)
$(cmake_use_find_package heif HEIF)
$(cmake_use_find_package jpeg JPEG)
$(cmake_use_find_package openexr OpenEXR)
$(cmake_use_find_package pdf Poppler)
$(cmake_use_find_package qtmedia Qt5Multimedia)
$(cmake_use_find_package raw LibRaw)
$(cmake_use_find_package tiff TIFF)
$(cmake_use_find_package vc Vc)
)
ecm_src_configure
}

View File

@@ -1,2 +1 @@
DIST quiterss-0.19.3.tar.gz 3765681 BLAKE2B 81d5fc78fc75328040a862306b4a3c76ff76f99953072e14e143d8283126c43410a5bb2b9c98a2c2c95959c1883b2a50d2e647cbb2cee2614f6ae3d15e25ac90 SHA512 8f8a7a25e53bb08a2b4f8f462aa2b74127eaeae7babc0ef448eff1d448de05bac6f59942a578d16cf24a5e554a004a5a2bfc7508b875c7eb54e3c4ebaa3ac51e
DIST quiterss-0.19.4.tar.gz 3771775 BLAKE2B d1515a13b4b26a9bfae1760d25e1ab28b1ca797806dc49f2826631764755ad61f5ed887a1c17f6728f45b0fd33271f06157acb1a529a628e0a0f5acb436bee23 SHA512 117a83f7ef61907b8625b0da1fbe069974fa06a434040e54c9c90d8ca572dc60aa96c1081dbe3d7110d0c9304fe47dafe1faeedcc45e32bbf638b793eede96da

View File

@@ -1,58 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit qmake-utils xdg
DESCRIPTION="A Qt-based RSS/Atom feed reader"
HOMEPAGE="https://quiterss.org"
if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="https://github.com/QuiteRSS/quiterss.git"
inherit git-r3
else
SRC_URI="https://github.com/QuiteRSS/quiterss/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
fi
LICENSE="GPL-3"
SLOT="0"
IUSE=""
BDEPEND="
dev-qt/linguist-tools:5
virtual/pkgconfig
"
DEPEND="
>=dev-db/sqlite-3.11.1:3
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtmultimedia:5
dev-qt/qtnetwork:5[ssl]
dev-qt/qtprintsupport:5
dev-qt/qtsingleapplication[X,qt5(+)]
dev-qt/qtsql:5[sqlite]
dev-qt/qtwebkit:5
dev-qt/qtwidgets:5
dev-qt/qtxml:5
"
RDEPEND="${DEPEND}"
src_prepare() {
default
sed -e "s/exists(.git)/0/" -i QuiteRSS.pro || die
}
src_configure() {
local myqmakeargs=(
PREFIX="${EPREFIX}/usr"
SYSTEMQTSA=1
)
eqmake5 "${myqmakeargs[@]}"
}
src_install() {
emake INSTALL_ROOT="${D}" install
einstalldocs
}