diff options
author | Alex Merry <kde@randomguy3.me.uk> | 2010-11-19 00:38:29 +0000 |
---|---|---|
committer | Alex Merry <kde@randomguy3.me.uk> | 2010-11-19 00:38:29 +0000 |
commit | b6f79667180e8cecdc8ceb1b2e853111dbaf2d43 (patch) | |
tree | 7d730db80d91aa2518d30442f6b5263d0fcc7ff3 | |
parent | 237682ace3ed8488a991d767b72609e4540c47ee (diff) | |
download | extra-cmake-modules-b6f79667180e8cecdc8ceb1b2e853111dbaf2d43.tar.gz extra-cmake-modules-b6f79667180e8cecdc8ceb1b2e853111dbaf2d43.tar.bz2 |
macro_log_feature's "DESCRIPTION" argument is meant to describe the features the package will provide if found, not describe the package itself (after all, users don't care what some random library _is_, they care what features installing it will provide them with).
svn path=/trunk/KDE/kdelibs/; revision=1198576
-rw-r--r-- | modules/FindNepomuk.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/FindNepomuk.cmake b/modules/FindNepomuk.cmake index c09cf37f..b789aec6 100644 --- a/modules/FindNepomuk.cmake +++ b/modules/FindNepomuk.cmake @@ -20,13 +20,13 @@ if (NOT DEFINED Soprano_FOUND) find_package(Soprano ${SOPRANO_MIN_VERSION}) include(MacroLogFeature) - macro_log_feature(Soprano_FOUND "Soprano" "Semantic Desktop Storing" "http://soprano.sourceforge.net/" FALSE "" "Soprano is needed for Nepomuk") + macro_log_feature(Soprano_FOUND "Soprano" "Support for the Nepomuk semantic desktop system" "http://soprano.sourceforge.net" FALSE "" "") endif (NOT DEFINED Soprano_FOUND) if (NOT DEFINED SHAREDDESKTOPONTOLOGIES_FOUND) find_package(SharedDesktopOntologies) include(MacroLogFeature) - macro_log_feature(SHAREDDESKTOPONTOLOGIES_FOUND "Shared desktop ontologies" "Desktop ontologies" "http://oscaf.sourceforge.net" FALSE "" "Ontologies necessary for the Nepomuk semantic desktop.") + macro_log_feature(SHAREDDESKTOPONTOLOGIES_FOUND "Shared desktop ontologies" "Support for the Nepomuk semantic desktop system" "http://oscaf.sourceforge.net" FALSE "" "") endif (NOT DEFINED SHAREDDESKTOPONTOLOGIES_FOUND) # Check for the following stuff independent from whether soprano has been found |