From 97ba63aafa510e64c78a529cb5e88eebd2e97967 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Sat, 20 May 2017 08:08:20 +0200 Subject: Drop modules from attic that are not useful anymore Even if they are in attic and not actually in use, drop a number of modules (and old tests) that it does not make sense to keep carry further: - FindAlsa.cmake, config-alsa.h.cmake: cmake has been providing a better FindALSA for long time - FindEigen.cmake, FindEigen2.cmake & test: Eigen v1 & v2 are deprecated and unmaintained for years - FindGStreamer.cmake: gstreamer-0.10 is long dead upstream - FindKdcraw.cmake, FindKDE4Workspace.cmake, FindKdeMultimedia.cmake, FindKDevPlatform.cmake, FindKexiv2.cmake, FindKipi.cmake, FindLibAttica.cmake, FindLibKonq.cmake: modules for KDE 4 libraries -- they are provided already by kdelibs 4.x, and the frameworks versions of those libraries provide cmake config files already - FindKNepomuk.cmake, FindKonto.cmake, FindNepomuk.cmake, NepomukAddOntologyClasses.cmake, NepomukMacros.cmake: Nepomuk stuff, which is long dead - FindKopete.cmake: the Frameworks version of Kopete is not released yet, so it'd rather provide own cmake config files - FindKorundum.cmake: Korudum is dead upstream, and so is Ruby 1.8 - FindLCMS.cmake & test: LCMS 1 is dead for many years already - FindMusicBrainz.cmake: libmusicbrainz v2 is long dead, and the web service API it uses was dismantled years ago - FindOpenEXR.cmake & test: ECM already provides an improved and polished version of this module - FindPolkitQt.cmake: polkit-qt is long dead, replaced by polkit-qt-1 - FindPopplerQt4.cmake: ECM 5.19+ already provides a better FindPoppler module - FindSharedDesktopOntologies.cmake: dead upstream, but also used to provide cmake config files already - tests for Blitz, Flex, LibXslt: their modules are not even in attic --- attic/modules/FindPopplerQt4.cmake | 53 -------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 attic/modules/FindPopplerQt4.cmake (limited to 'attic/modules/FindPopplerQt4.cmake') diff --git a/attic/modules/FindPopplerQt4.cmake b/attic/modules/FindPopplerQt4.cmake deleted file mode 100644 index f2a59b8c..00000000 --- a/attic/modules/FindPopplerQt4.cmake +++ /dev/null @@ -1,53 +0,0 @@ -# - Try to find the Qt4 binding of the Poppler library -# Once done this will define -# -# POPPLER_QT4_FOUND - system has poppler-qt4 -# POPPLER_QT4_INCLUDE_DIR - the poppler-qt4 include directory -# POPPLER_QT4_LIBRARIES - Link these to use poppler-qt4 -# POPPLER_QT4_DEFINITIONS - Compiler switches required for using poppler-qt4 -# - -# use pkg-config to get the directories and then use these values -# in the FIND_PATH() and FIND_LIBRARY() calls - -# Copyright (c) 2006, Wilfried Huss, -# -# Redistribution and use is allowed according to the terms of the BSD license. -# For details see the accompanying COPYING-CMAKE-SCRIPTS file. - - -find_package(PkgConfig) -pkg_check_modules(PC_POPPLERQT4 QUIET poppler-qt4) - -set(POPPLER_QT4_DEFINITIONS ${PC_POPPLERQT4_CFLAGS_OTHER}) - -find_path(POPPLER_QT4_INCLUDE_DIR - NAMES poppler-qt4.h - HINTS ${PC_POPPLERQT4_INCLUDEDIR} - PATH_SUFFIXES poppler/qt4 poppler -) - -find_library(POPPLER_QT4_LIBRARY - NAMES poppler-qt4 - HINTS ${PC_POPPLERQT4_LIBDIR} -) - -set(POPPLER_QT4_LIBRARIES ${POPPLER_QT4_LIBRARY}) - -if (POPPLER_QT4_INCLUDE_DIR AND POPPLER_QT4_LIBRARIES) - set(POPPLER_QT4_FOUND TRUE) -else (POPPLER_QT4_INCLUDE_DIR AND POPPLER_QT4_LIBRARIES) - set(POPPLER_QT4_FOUND FALSE) -endif (POPPLER_QT4_INCLUDE_DIR AND POPPLER_QT4_LIBRARIES) - -if (POPPLER_QT4_FOUND) - if (NOT PopplerQt4_FIND_QUIETLY) - message(STATUS "Found poppler-qt4: library: ${POPPLER_QT4_LIBRARIES}, include path: ${POPPLER_QT4_INCLUDE_DIR}") - endif (NOT PopplerQt4_FIND_QUIETLY) -else (POPPLER_QT4_FOUND) - if (PopplerQt4_FIND_REQUIRED) - message(FATAL_ERROR "Could NOT find poppler-qt4") - endif (PopplerQt4_FIND_REQUIRED) -endif (POPPLER_QT4_FOUND) - -mark_as_advanced(POPPLER_QT4_INCLUDE_DIR POPPLER_QT4_LIBRARIES) -- cgit v1.2.1