summaryrefslogtreecommitdiff
path: root/community/kleansweep
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/kleansweep
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/kleansweep')
-rw-r--r--community/kleansweep/ChangeLog2
-rw-r--r--community/kleansweep/PKGBUILD27
-rw-r--r--community/kleansweep/kubuntu_03_fix_scons_chmod_error.patch23
3 files changed, 0 insertions, 52 deletions
diff --git a/community/kleansweep/ChangeLog b/community/kleansweep/ChangeLog
deleted file mode 100644
index d8e35c402..000000000
--- a/community/kleansweep/ChangeLog
+++ /dev/null
@@ -1,2 +0,0 @@
-2007-06-25 Georg Grabler (STiAT) <ggrabler@gmail.com>
-* Added libtool option
diff --git a/community/kleansweep/PKGBUILD b/community/kleansweep/PKGBUILD
deleted file mode 100644
index c6783590d..000000000
--- a/community/kleansweep/PKGBUILD
+++ /dev/null
@@ -1,27 +0,0 @@
-# $Id: PKGBUILD 77134 2012-10-05 11:29:08Z spupykin $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Maintainer: Guillermo A. Amaral <me@guillermoamaral.com>
-
-pkgname=kleansweep
-pkgver=0.2.9
-pkgrel=6
-pkgdesc="Allows you to reclaim disk space by finding unneeded files"
-license=("GPL")
-url="http://linux.bydg.org/~yogin/"
-arch=(i686 x86_64)
-depends=('kdelibs3')
-makedepends=('scons')
-options=('libtool')
-#source=(http://linux-projects.net/d/kleansweep-$pkgver.tar.gz
-source=(http://arch.p5n.pp.ru/~sergej/dl/2011/kleansweep-$pkgver.tar.gz
- kubuntu_03_fix_scons_chmod_error.patch)
-md5sums=('25fea364644590acd23fe766506e0b92'
- 'bebb833313fc184848b5fef77a7cb310')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- [ $NOEXTRACT -eq 1 ] || patch -p1 <$srcdir/kubuntu_03_fix_scons_chmod_error.patch
- [ $NOEXTRACT -eq 1 ] || ./configure
- scons
- scons install DESTDIR=$pkgdir
-}
diff --git a/community/kleansweep/kubuntu_03_fix_scons_chmod_error.patch b/community/kleansweep/kubuntu_03_fix_scons_chmod_error.patch
deleted file mode 100644
index 4e6495016..000000000
--- a/community/kleansweep/kubuntu_03_fix_scons_chmod_error.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -Nur -x '*.orig' -x '*~' kleansweep-0.2.9/admin/generic.py kleansweep-0.2.9.new/admin/generic.py
---- kleansweep-0.2.9/admin/generic.py 2008-02-15 02:59:29.000000000 +0100
-+++ kleansweep-0.2.9.new/admin/generic.py 2008-02-15 03:00:49.278304972 +0100
-@@ -244,7 +244,8 @@
- ret=self.env.Program(self.p_localtarget, self.p_localsource)
- if not self.env.has_key('NOAUTOINSTALL'):
- ins=self.env.bksys_install(self.instdir, ret)
-- if self.perms: self.env.AddPostAction(ins, self.env.Chmod(ins, self.perms))
-+ if ins and self.perms:
-+ for i in ins: self.env.AddPostAction(ins, self.env.Chmod(str(i), self.perms))
- elif self.type=='staticlib':
- ret=self.env.StaticLibrary(self.p_localtarget, self.p_localsource)
-
-@@ -462,7 +463,8 @@
- if not destfile: install_list = env.Install(lenv.join(basedir,subdir), lenv.make_list(files))
- elif subdir: install_list = env.InstallAs(lenv.join(basedir,subdir,destfile), lenv.make_list(files))
- else: install_list = env.InstallAs(lenv.join(basedir,destfile), lenv.make_list(files))
-- if perms and install_list: lenv.AddPostAction(install_list, lenv.Chmod(install_list, perms))
-+ if perms and install_list:
-+ for i in install_list: lenv.AddPostAction(install_list, lenv.Chmod(str(i), perms))
- env.Alias('install', install_list)
- return install_list
-