summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2016-03-26 17:28:45 +0100
committerJohannes Huber <johu@gentoo.org>2016-03-26 17:28:45 +0100
commit17f990fdcc13177b7912dce6e41ab85f12928f0c (patch)
treebd9d55dd6765b31e7f741fec55faa7fa6998bc5c
parent84b125cd3f6e1724622928366bfe02b92f0870ad (diff)
downloadkde-17f990fdcc13177b7912dce6e41ab85f12928f0c.tar.gz
kde-17f990fdcc13177b7912dce6e41ab85f12928f0c.tar.bz2
kde-17f990fdcc13177b7912dce6e41ab85f12928f0c.zip
kde-misc/openofficeorg-thumbnail: Remove
Moved to gentoo main tree.
-rw-r--r--kde-misc/openofficeorg-thumbnail/Manifest1
-rw-r--r--kde-misc/openofficeorg-thumbnail/files/openofficeorg-thumbnail-1.0.0-kf5-support.patch78
-rw-r--r--kde-misc/openofficeorg-thumbnail/metadata.xml8
-rw-r--r--kde-misc/openofficeorg-thumbnail/openofficeorg-thumbnail-1.0.0-r500.ebuild28
4 files changed, 0 insertions, 115 deletions
diff --git a/kde-misc/openofficeorg-thumbnail/Manifest b/kde-misc/openofficeorg-thumbnail/Manifest
deleted file mode 100644
index d0fa5830a88..00000000000
--- a/kde-misc/openofficeorg-thumbnail/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST OpenOfficeorgThumbnail-1.0.0.tar.gz 11335 SHA256 fbed59bf58615c88ca31f3db782fd9f01b1630ef847ba7027d518dd99fae8be0 SHA512 cd4173e7fb31ef9928184005abd92d467eda37cbb807c7fadd02fc8cd4a276388c1898015f79357ac657c3aa29dec0668c5aa3b8b1dfebb9466a045fad990ee5 WHIRLPOOL 6d1a6ae4e3483cc23ff1ceac8f4c0e6f0b8fadb80f9543bc7e3177a0b8fe863c15bb28c1a9a52cc9a8cee00f761b5753900c4cdd4ed3f1cab1fcdffbe0ef73b6
diff --git a/kde-misc/openofficeorg-thumbnail/files/openofficeorg-thumbnail-1.0.0-kf5-support.patch b/kde-misc/openofficeorg-thumbnail/files/openofficeorg-thumbnail-1.0.0-kf5-support.patch
deleted file mode 100644
index 53be8ecc288..00000000000
--- a/kde-misc/openofficeorg-thumbnail/files/openofficeorg-thumbnail-1.0.0-kf5-support.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-diff -r 16f0dcf220bc CMakeLists.txt
---- a/CMakeLists.txt Fri Jan 22 18:13:03 2010 -0300
-+++ b/CMakeLists.txt Tue Oct 14 10:47:20 2014 +0200
-@@ -1,8 +1,19 @@
- project(OpenDocumentThumbnail)
-
--find_package(KDE4 REQUIRED)
--include (KDE4Defaults)
-+cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
-+set(QT_MIN_VERSION "5.2.0")
-
--include_directories( ${KDE4_INCLUDES} ${QT_INCLUDES} )
-+find_package(ECM 1.0.0 REQUIRED NO_MODULE)
-+set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
-
--add_subdirectory( src )
-+include(FeatureSummary)
-+include(WriteBasicConfigVersionFile)
-+include(KDEInstallDirs)
-+include(KDECMakeSettings)
-+include(KDECompilerSettings)
-+
-+find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS Gui)
-+find_package(KF5 REQUIRED COMPONENTS KIO)
-+find_package(KF5Archive)
-+
-+add_subdirectory(src)
-diff -r 16f0dcf220bc src/CMakeLists.txt
---- a/src/CMakeLists.txt Fri Jan 22 18:13:03 2010 -0300
-+++ b/src/CMakeLists.txt Tue Oct 14 10:47:20 2014 +0200
-@@ -1,12 +1,9 @@
-
- set(OpenOfficeorgThumbnail_SRCS openofficeorgcreator.cpp)
-
--qt4_add_resources(OpenOfficeorgThumbnail_SRCS openofficeorgthumbnail.qrc)
-+qt5_add_resources(OpenOfficeorgThumbnail_SRCS openofficeorgthumbnail.qrc)
-
--kde4_add_plugin(openofficeorgthumbnail ${OpenOfficeorgThumbnail_SRCS})
--
--target_link_libraries(openofficeorgthumbnail ${KDE4_KIO_LIBS} )
--
--install(TARGETS openofficeorgthumbnail DESTINATION ${PLUGIN_INSTALL_DIR} )
--
-+add_library(openofficeorgthumbnail MODULE ${OpenOfficeorgThumbnail_SRCS})
-+target_link_libraries(openofficeorgthumbnail KF5::KIOWidgets KF5::Archive)
-+install(TARGETS openofficeorgthumbnail DESTINATION ${PLUGIN_INSTALL_DIR})
- install(FILES openofficeorgthumbnail.desktop DESTINATION ${SERVICES_INSTALL_DIR})
-diff -r 16f0dcf220bc src/opendocumentcreator.cpp
---- a/src/openofficeorgcreator.cpp Fri Jan 22 18:13:03 2010 -0300
-+++ b/src/openofficeorgcreator.cpp Tue Oct 14 10:47:20 2014 +0200
-@@ -28,7 +28,7 @@
-
- extern "C"
- {
-- KDE_EXPORT ThumbCreator *new_creator()
-+ Q_DECL_EXPORT ThumbCreator *new_creator()
- {
- return new OOoCreator;
- }
-@@ -95,7 +95,7 @@
-
- ThumbCreator::Flags OOoCreator::flags() const
- {
-- return (Flags)(DrawFrame | BlendIcon);
-+ return (Flags)(DrawFrame);
- }
-
-
-diff -r 16f0dcf220bc src/opendocumentthumbnail.desktop
---- a/src/openofficeorgthumbnail.desktop Fri Jan 22 18:13:03 2010 -0300
-+++ b/src/openofficeorgthumbnail.desktop Tue Oct 14 10:47:20 2014 +0200
-@@ -5,5 +5,6 @@
- X-KDE-ServiceTypes=ThumbCreator
- MimeType=application/vnd.oasis.opendocument.text;application/vnd.oasis.opendocument.text-template;application/vnd.oasis.opendocument.text-master;application/vnd.oasis.opendocument.spreadsheet;application/vnd.oasis.opendocument.spreadsheet-template;application/vnd.oasis.opendocument.graphics;application/vnd.oasis.opendocument.graphics-template;application/vnd.oasis.opendocument.presentation;application/vnd.oasis.opendocument.presentation-template;application/vnd.oasis.opendocument.formula;application/vnd.oasis.opendocument.formula-template;application/vnd.oasis.opendocument.chart;application/vnd.oasis.opendocument.chart-template;
- X-KDE-Library=openofficeorgthumbnail
-+ServiceTypes=ThumbCreator
- CacheThumbnail=true
- IgnoreMaximumSize=true
diff --git a/kde-misc/openofficeorg-thumbnail/metadata.xml b/kde-misc/openofficeorg-thumbnail/metadata.xml
deleted file mode 100644
index 2fdbf33d963..00000000000
--- a/kde-misc/openofficeorg-thumbnail/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>kde@gentoo.org</email>
- <name>Gentoo KDE Project</name>
- </maintainer>
-</pkgmetadata>
diff --git a/kde-misc/openofficeorg-thumbnail/openofficeorg-thumbnail-1.0.0-r500.ebuild b/kde-misc/openofficeorg-thumbnail/openofficeorg-thumbnail-1.0.0-r500.ebuild
deleted file mode 100644
index d756db74b3a..00000000000
--- a/kde-misc/openofficeorg-thumbnail/openofficeorg-thumbnail-1.0.0-r500.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-MY_PN="OpenOfficeorgThumbnail"
-MY_P="${MY_PN}-${PV}"
-inherit kde5
-
-DESCRIPTION="KDE thumbnail-plugin that generates thumbnails for ODF files"
-HOMEPAGE="http://www.kde-apps.org/content/show.php?content=110864"
-SRC_URI="http://arielch.fedorapeople.org/devel/src/${MY_P}.tar.gz"
-
-LICENSE="LGPL-3"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="
- $(add_frameworks_dep karchive)
- $(add_frameworks_dep kio)
- $(add_qt_dep qtgui)
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=( "${FILESDIR}"/${P}-kf5-support.patch )