summaryrefslogtreecommitdiff
path: root/community/pwmanager
diff options
context:
space:
mode:
Diffstat (limited to 'community/pwmanager')
-rw-r--r--community/pwmanager/ChangeLog5
-rw-r--r--community/pwmanager/PKGBUILD30
-rw-r--r--community/pwmanager/build-fix.patch57
3 files changed, 0 insertions, 92 deletions
diff --git a/community/pwmanager/ChangeLog b/community/pwmanager/ChangeLog
deleted file mode 100644
index 3bad1ddcd..000000000
--- a/community/pwmanager/ChangeLog
+++ /dev/null
@@ -1,5 +0,0 @@
-2007-07-02 tardo <tardo@nagi-fanboi.net>
-* Built for x86_64
-
-2007-06-25 Georg Grabler (STiAT) <ggrabler@gmail.com>
-* Added libtool option
diff --git a/community/pwmanager/PKGBUILD b/community/pwmanager/PKGBUILD
deleted file mode 100644
index c13ce266a..000000000
--- a/community/pwmanager/PKGBUILD
+++ /dev/null
@@ -1,30 +0,0 @@
-# $Id: PKGBUILD 58627 2011-11-16 15:52:59Z spupykin $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
-# Contributors: Pointer <pointer@linux-blog.de>, tmaynard <arch@toddmaynard.com>
-
-pkgname=pwmanager
-pkgver=1.2.4
-pkgrel=5
-pkgdesc="With PwManager you can easily manage your passwords"
-arch=('i686' 'x86_64')
-url="http://passwordmanager.sourceforge.net/"
-license=('GPL')
-depends=('kdelibs3')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/passwordmanager/$pkgname-$pkgver.tar.bz2
- build-fix.patch)
-md5sums=('e6f720af9b325bc0e7ea20c9c5e6039f'
- 'bcc412cb855cba4910e51920ae38a326')
-
-build() {
- . /etc/profile.d/qt3.sh
- export PATH=$QTDIR/bin:$PATH
- cd $srcdir/$pkgname-$pkgver
-
- patch -p1 <$srcdir/build-fix.patch
-
- ./configure --prefix=/opt/kde --without-arts
- make
- make DESTDIR=$pkgdir install
-}
diff --git a/community/pwmanager/build-fix.patch b/community/pwmanager/build-fix.patch
deleted file mode 100644
index b04078265..000000000
--- a/community/pwmanager/build-fix.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-diff -wbBur pwmanager-1.2.4/pwmanager/base64.cpp pwmanager-1.2.4.my/pwmanager/base64.cpp
---- pwmanager-1.2.4/pwmanager/base64.cpp 2005-11-06 01:16:51.000000000 +0000
-+++ pwmanager-1.2.4.my/pwmanager/base64.cpp 2009-01-28 16:02:43.000000000 +0000
-@@ -41,6 +41,7 @@
- * *
- ***************************************************************************/
-
-+#include <stdlib.h>
- #include "base64.h"
- #include "pwmexception.h"
-
-diff -wbBur pwmanager-1.2.4/pwmanager/binentrygen.cpp pwmanager-1.2.4.my/pwmanager/binentrygen.cpp
---- pwmanager-1.2.4/pwmanager/binentrygen.cpp 2005-11-06 01:16:51.000000000 +0000
-+++ pwmanager-1.2.4.my/pwmanager/binentrygen.cpp 2009-01-28 16:03:08.000000000 +0000
-@@ -8,7 +8,7 @@
- * as published by the Free Software Foundation. *
- * *
- ***************************************************************************/
--
-+#include <stdlib.h>
- #include "binentrygen.h"
- #include "base64.h"
- #include "pwmexception.h"
-diff -wbBur pwmanager-1.2.4/pwmanager/compressbzip2.cpp pwmanager-1.2.4.my/pwmanager/compressbzip2.cpp
---- pwmanager-1.2.4/pwmanager/compressbzip2.cpp 2005-11-06 01:16:50.000000000 +0000
-+++ pwmanager-1.2.4.my/pwmanager/compressbzip2.cpp 2009-01-28 16:03:47.000000000 +0000
-@@ -10,7 +10,7 @@
- ***************************************************************************/
-
- #include "compressbzip2.h"
--
-+#include <string.h>
- #include <stdlib.h>
-
- #define BZ_NO_STDIO
-diff -wbBur pwmanager-1.2.4/pwmanager/main.cpp pwmanager-1.2.4.my/pwmanager/main.cpp
---- pwmanager-1.2.4/pwmanager/main.cpp 2005-11-06 01:16:51.000000000 +0000
-+++ pwmanager-1.2.4.my/pwmanager/main.cpp 2009-01-28 16:05:16.000000000 +0000
-@@ -9,6 +9,7 @@
- * *
- ***************************************************************************/
-
-+#include <stdlib.h>
- #include <kcmdlineargs.h>
- #include <kaboutdata.h>
- #include <klocale.h>
-diff -wbBur pwmanager-1.2.4/pwmanager/serializer.cpp pwmanager-1.2.4.my/pwmanager/serializer.cpp
---- pwmanager-1.2.4/pwmanager/serializer.cpp 2005-11-06 01:16:50.000000000 +0000
-+++ pwmanager-1.2.4.my/pwmanager/serializer.cpp 2009-01-28 16:06:32.000000000 +0000
-@@ -9,6 +9,7 @@
- * *
- ***************************************************************************/
-
-+#include <stdlib.h>
- #include "serializer.h"
- #include "configuration.h"
- #include "pwmexception.h"