diff --git a/kde/frameworks/tier1/kcodecs/kcodecs.py b/kde/frameworks/tier1/kcodecs/kcodecs.py index ed9b4d10..2a47b88e 100644 --- a/kde/frameworks/tier1/kcodecs/kcodecs.py +++ b/kde/frameworks/tier1/kcodecs/kcodecs.py @@ -1,23 +1,22 @@ import info class subinfo(info.infoclass): def setTargets(self): self.versionInfo.setDefaultValues() self.description = "Plugins allowing Qt applications to access further types of images" def setDependencies(self): self.buildDependencies["virtual/base"] = None self.buildDependencies["kde/frameworks/extra-cmake-modules"] = None self.runtimeDependencies["libs/qt5/qtbase"] = None - self.runtimeDependencies["libs/qt5/qttools"] = None self.buildDependencies["dev-utils/gperf"] = None from Package.CMakePackageBase import * class Package(CMakePackageBase): def __init__(self): CMakePackageBase.__init__(self) diff --git a/kde/info.ini b/kde/info.ini index 9429ac45..95ab7597 100644 --- a/kde/info.ini +++ b/kde/info.ini @@ -1,4 +1,7 @@ [General] displayName = KDE description = The KDE Community is a free software community dedicated to creating an open and user-friendly computing experience, offering an advanced graphical desktop, a wide variety of applications for communication, work, education and entertainment and a platform to easily build new applications upon. We have a strong focus on finding innovative solutions to old and new problems, creating a vibrant atmosphere open for experimentation. webpage = https://www.kde.org/ + +runtimeDependencies = libs/qt5/qtbase +buildDependencies = libs/qt5/qttools