removing filelight, icontasks form apps, included in KDE 4.8

This commit is contained in:
abveritas 2012-02-11 16:37:38 +00:00
parent cc0c302f82
commit 37bf8e82a1
4 changed files with 0 additions and 113 deletions

View File

@ -1,42 +0,0 @@
#
# Apps Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dot]org>
# maintainer (x86_64): Nistor Andrei <coder[dot]tux[at]ceata[dot]org>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=filelight
pkgver=1.9rc3
pkgrel=2
pkgdesc="A KDE program that creates a complex, but data-rich graphical representation of the files and directories on your computer"
arch=('i686' 'x86_64')
url="http://kde-apps.org/content/show.php/filelight?content=99561"
license=('GPL2')
depends=('kdelibs' 'qimageblitz' 'hicolor-icon-theme')
makedepends=('cmake' 'automoc4')
install=${pkgname}.install
source=("http://www.kde-apps.org/CONTENT/content-files/99561-$pkgname-${pkgver}.tgz"
'kurl.patch')
md5sums=('a75cb50bc0b7238507952fb7d1b8d8a8'
'ab4e31907ccb452b515c5057653526d8')
build() {
cd "${srcdir}"
pushd "${pkgname}-${pkgver}"
patch -p1 < ../../kurl.patch
popd
mkdir build
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_INSTALL_PREFIX=/usr
make || return 1
}
package() {
cd ${srcdir}/build
make DESTDIR=${pkgdir} install || return 1
}

View File

@ -1,11 +0,0 @@
post_install() {
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}

View File

@ -1,23 +0,0 @@
--- a/src/app/mainWindow.cpp
+++ b/src/app/mainWindow.cpp
@@ -222,7 +222,7 @@ inline void MainWindow::slotComboScan()
inline bool MainWindow::slotScanPath(const QString &path)
{
- return slotScanUrl(KUrl::KUrl(path));
+ return slotScanUrl(KUrl(path));
}
bool MainWindow::slotScanUrl(const KUrl &url)
--- a/src/part/radialMap/widget.cpp
+++ b/src/part/radialMap/widget.cpp
@@ -64,7 +64,7 @@ RadialMap::Widget::path() const
KUrl
RadialMap::Widget::url(File const * const file) const
{
- return KUrl::KUrl(file ? file->fullPath() : m_tree->fullPath());
+ return KUrl(file ? file->fullPath() : m_tree->fullPath());
}
void

View File

@ -1,37 +0,0 @@
#
# Apps Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
# Contributor: mcder3@gmail.com
pkgname=kdeplasma-applets-icontasks
_pkgname=plasma-icontasks
pkgver=0.9.2
pkgrel=1
pkgdesc="A modified version of default taskbar applet and taskmanager library."
arch=('i686' 'x86_64')
url="http://kde-look.org/content/show.php?content=144808"
screenshot="http://i.imgur.com/FQvwx.png"
license=('GPL3')
depends=('qt' 'kde-workspace')
makedepends=('automoc4' 'cmake')
conflicts=('kdeplasma-addons-applets-icontasks')
replaces=('kdeplasma-addons-applets-icontasks')
source=("http://kde-look.org/CONTENT/content-files/144808-${_pkgname}-${pkgver}.tar.bz2")
md5sums=('b5f2f0163f0a9ca0292ac6afe4c616b8')
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
[ -d build ] && rm -r build
mkdir build && cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
..
make
}
package() {
cd "${srcdir}/${_pkgname}-${pkgver}/build"
make DESTDIR="${pkgdir}" install
}