diff options
author | Pino Toscano <pino@kde.org> | 2017-05-20 08:08:20 +0200 |
---|---|---|
committer | Pino Toscano <pino@kde.org> | 2017-05-20 08:08:20 +0200 |
commit | 97ba63aafa510e64c78a529cb5e88eebd2e97967 (patch) | |
tree | aa845b80f997f86db2fef8878b8d55576dff189a /attic/modules/FindSharedDesktopOntologies.cmake | |
parent | b58820c4af6407ca6a67d342d7bc43ab09778e7d (diff) | |
download | extra-cmake-modules-97ba63aafa510e64c78a529cb5e88eebd2e97967.tar.gz extra-cmake-modules-97ba63aafa510e64c78a529cb5e88eebd2e97967.tar.bz2 |
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
Diffstat (limited to 'attic/modules/FindSharedDesktopOntologies.cmake')
-rw-r--r-- | attic/modules/FindSharedDesktopOntologies.cmake | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/attic/modules/FindSharedDesktopOntologies.cmake b/attic/modules/FindSharedDesktopOntologies.cmake deleted file mode 100644 index b60f8e97..00000000 --- a/attic/modules/FindSharedDesktopOntologies.cmake +++ /dev/null @@ -1,42 +0,0 @@ -# - Try to find shared-desktop-ontologies -# The shared-desktop-ontologies package is a direct dependancy of the Nepomuk -# semantic desktop system and provides all necessary ontology files like -# RDF, RDFS, NRL, or NIE. -# -# The package is created by the OSCAF project (http://oscaf.sourceforge.net). -# -# Once done this will define -# -# SHAREDDESKTOPONTOLOGIES_FOUND - system has shared-desktop-ontologies -# SHAREDDESKTOPONTOLOGIES_ROOT_DIR - Folder where the ontologies are stored -# SHAREDDESKTOPONTOLOGIES_VERSION_MAJOR - The major version number, i.e. '1' in '1.2' -# SHAREDDESKTOPONTOLOGIES_VERSION_MINOR - The minor version number, i.e. '2' in '1.2' -# SHAREDDESKTOPONTOLOGIES_VERSION - The complete version string, i.e. '1.2' -# - -# Copyright (c) 2009, Sebastian Trueg, <trueg@kde.org> -# -# Redistribution and use is allowed according to the terms of the BSD license. -# For details see the accompanying COPYING-CMAKE-SCRIPTS file. - - -# First try the SharedDesktopOntologiesConfig.cmake from shared-desktop-ontologies 0.2 and newer - -# This is to make it work with cmake 2.6.2, since SDO 0.2 installs its config file into -# the 2.6.3 compatible location only ( share/cmake/SDO/ instead share/SDO/[cmake/] ) -if( "${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_LESS "2.6.3") - find_path(_SDO_CONFIG_DIR SharedDesktopOntologiesConfig.cmake PATH_SUFFIXES share/cmake/SharedDesktopOntologies/ ) -endif() - -if(NOT SharedDesktopOntologies_FIND_VERSION) - set(SharedDesktopOntologies_FIND_VERSION "${SDO_MIN_VERSION}") -endif() - -find_package(SharedDesktopOntologies ${SharedDesktopOntologies_FIND_VERSION} QUIET NO_MODULE HINTS "${_SDO_CONFIG_DIR}" ) - -if (SHAREDDESKTOPONTOLOGIES_ROOT_DIR) - mark_as_advanced(SHAREDDESKTOPONTOLOGIES_ROOT_DIR) -endif (SHAREDDESKTOPONTOLOGIES_ROOT_DIR) - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(SharedDesktopOntologies REQUIRED_VARS SHAREDDESKTOPONTOLOGIES_ROOT_DIR VERSION_VAR SharedDesktopOntologies_VERSION) |