Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
MyPasswordSafe is a straight-forward, easy-to-use password manager
that maintains compatibility with Password Safe files. MyPasswordSafe
has the following features:
* Safes are encrypted when they are stored to disk.
* Passwords never have to be seen, because they are copied to
the clipboard
* Random passwords can be generated.
* Window size, position, and column widths are remembered.
* Passwords remain encrypted until they need to be decrypted at
the dialog and file levels.
* A safe can be made active so it will always be opened when
MyPasswordSafe starts.
* Supports Unicode in the safes
* Languages supported: English and French

View File

@@ -0,0 +1,24 @@
# $NetBSD: Makefile,v 1.36 2013/06/06 12:55:00 wiz Exp $
#
DISTNAME= MyPasswordSafe-20061216
PKGREVISION= 20
CATEGORIES= security
MASTER_SITES= http://www.semanticgap.com/myps/release/
DISTFILES= ${DISTNAME}.src.tgz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.semanticgap.com/myps/
COMMENT= Easy-to-use password manager
.include "options.mk"
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
USE_LANGUAGES= c c++
USE_TOOLS+= gmake
MAKE_FLAGS+= QMAKE=${QTDIR:Q}/bin/qmake
INSTALL_MAKE_FLAGS+= PREFIX=${DESTDIR}${PREFIX}
.include "../../x11/libXScrnSaver/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,12 @@
@comment $NetBSD: PLIST,v 1.2 2009/06/14 18:13:25 joerg Exp $
bin/MyPasswordSafe
share/MyPasswordSafe/locale/mypasswordsafe_c.qm
share/MyPasswordSafe/locale/mypasswordsafe_en.qm
share/MyPasswordSafe/locale/mypasswordsafe_fr.qm
share/doc/MyPasswordSafe/manual.html
share/doc/MyPasswordSafe/sshots/editdialog.fr.jpg
share/doc/MyPasswordSafe/sshots/editdialog.jpg
share/doc/MyPasswordSafe/sshots/mainwindow.fr.jpg
share/doc/MyPasswordSafe/sshots/mainwindow.jpg
share/doc/MyPasswordSafe/sshots/prefsdialog.fr.jpg
share/doc/MyPasswordSafe/sshots/prefsdialog.jpg

View File

@@ -0,0 +1,15 @@
$NetBSD: distinfo,v 1.12 2013/03/28 21:43:10 joerg Exp $
SHA1 (MyPasswordSafe-20061216.src.tgz) = 37bb3f7491b42c8aac5d71cc6546ced018a15119
RMD160 (MyPasswordSafe-20061216.src.tgz) = b61f1525aed3160b88c1ef6c6922ff131ad2248c
Size (MyPasswordSafe-20061216.src.tgz) = 834084 bytes
SHA1 (patch-aa) = ef524bde4c75a822bdf035a828242e6eec5fd652
SHA1 (patch-ab) = 41f42aa0fa4f9d97431a9a01807a0a2cc838a753
SHA1 (patch-ac) = b6bd898a248da7052087a233e7aac215ad1196e2
SHA1 (patch-ad) = dabddc12850f2b323c5fc09d88b2b81eef1c4585
SHA1 (patch-ae) = e5dca33f49895f5b30d757fd41dc58d6e8bb55a0
SHA1 (patch-src-crypto-bfproxy.cpp) = cb84b4c5f474f057f0b702ff541d0587369a21e8
SHA1 (patch-src-encryptedstring.cpp) = 715f7918fce45d3c4516acbcadd99e87f58a6492
SHA1 (patch-src-pwsafe-Util.cpp) = 81b660bfbaa1472071c2ff6d859e5489b133596e
SHA1 (patch-src-safeserializer.cpp) = e63997bc2ebb452056831bf5c147435a3edb2a14
SHA1 (patch-src_xmlserializer.hpp) = 49c91a388b521c5efe5d511adee9a2bd0479ed2e

View File

@@ -0,0 +1,18 @@
# $NetBSD: options.mk,v 1.1 2006/03/29 22:14:18 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.MyPasswordSafe
PKG_SUGGESTED_OPTIONS= qt3
PKG_OPTIONS_REQUIRED_GROUPS= gui
PKG_OPTIONS_GROUP.gui= qt3 # qt4 - not yet
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mqt3)
.include "../../x11/qt3-libs/buildlink3.mk"
.include "../../x11/qt3-tools/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mqt4)
.include "../../x11/qt4-libs/buildlink3.mk"
.include "../../x11/qt4-tools/buildlink3.mk"
.endif

View File

@@ -0,0 +1,27 @@
$NetBSD: patch-aa,v 1.3 2006/11/30 18:51:32 joerg Exp $
--- Makefile.orig 2004-12-06 13:14:53.000000000 +0000
+++ Makefile
@@ -11,13 +11,6 @@ endif
QMAKE=qmake
DATE=$(shell date +%Y%m%d)
VERSION=0.6.7
-ifndef USER
- # get the user's name from the environment
- USER=$(USER)
-endif
-ifndef HOST
- HOST=$(shell hostname)
-endif
all: MyPasswordSafe
@@ -29,7 +22,7 @@ MyPasswordSafe.mak: MyPasswordSafe.pro
MyPasswordSafe: config uuid-1.0.0/.libs/libuuid.a MyPasswordSafe.mak
${MAKE} -f MyPasswordSafe.mak
- lrelease locale/*.ts
+ ${LOCALBASE}/qt3/bin/lrelease locale/*.ts
uuid-1.0.0/.libs/libuuid.a:
cd uuid-1.0.0 && ./configure --prefix=$(PREFIX) && cd ..

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-ab,v 1.2 2005/11/17 22:12:37 wiz Exp $
--- src/crypto/sha1.h.orig 2004-12-06 13:32:07.000000000 +0100
+++ src/crypto/sha1.h
@@ -15,7 +15,7 @@
#include <stdint.h>
#include <string>
-#include "endian.h"
+#include "myendian.h"
using std::string;

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-ac,v 1.3 2007/01/06 19:06:22 rillig Exp $
qt3-3.3.5 fix. Can probably be removed after next qt3 release.
--- src/mypasswordsafe.ui.orig 2004-12-06 17:03:46.000000000 +0100
+++ src/mypasswordsafe.ui
@@ -1006,6 +1006,5 @@
<pixmapinproject/>
<layoutdefaults spacing="6" margin="11"/>
<includehints>
- <includehint>safelistview.hpp</includehint>
</includehints>
</UI>

View File

@@ -0,0 +1,25 @@
$NetBSD: patch-ad,v 1.2 2012/03/02 15:07:16 hans Exp $
--- src/myendian.h.orig 2006-01-19 23:32:41.000000000 +0000
+++ src/myendian.h
@@ -8,10 +8,19 @@
# define BYTE_ORDER LITTLE_ENDIAN
# endif
#else
-# ifdef __NetBSD__
+# if defined(__DragonFly__) || defined(__NetBSD__)
# include <sys/endian.h>
# elif __APPLE__
# include <ppc/endian.h>
+# elif __sun
+# include <sys/byteorder.h>
+# define LITTLE_ENDIAN 1234
+# define BIG_ENDIAN 4321
+# ifdef _BIG_ENDIAN
+# define BYTE_ORDER BIG_ENDIAN
+# else
+# define BYTE_ORDER LITTLE_ENDIAN
+# endif
# else
# include <endian.h>
# endif

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-ae,v 1.1 2011/08/02 17:09:21 joerg Exp $
--- src/safe.hpp.orig 2011-08-02 13:39:15.000000000 +0000
+++ src/safe.hpp
@@ -129,7 +129,7 @@ public:
SafeEntry(SafeGroup *parent);
SafeEntry(SafeGroup *parent,
const QString &n, const QString &u,
- const EncryptedString &p, const QString &n);
+ const EncryptedString &p, const QString &m);
SafeEntry(const SafeEntry &item);
~SafeEntry();

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-src-crypto-bfproxy.cpp,v 1.1 2011/11/22 20:05:25 joerg Exp $
--- src/crypto/bfproxy.cpp.orig 2011-11-22 19:21:27.000000000 +0000
+++ src/crypto/bfproxy.cpp
@@ -17,6 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "bfproxy.hpp"
+#include <string.h>
BFProxy::BFProxy(const unsigned char *key, int len)
{

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-src-encryptedstring.cpp,v 1.1 2011/11/22 20:05:25 joerg Exp $
--- src/encryptedstring.cpp.orig 2011-11-22 19:06:44.000000000 +0000
+++ src/encryptedstring.cpp
@@ -15,6 +15,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+#include <stdlib.h>
+#include <string.h>
#include <time.h>
#include <iostream>
#include "pwsafe/Util.h"

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-src-pwsafe-Util.cpp,v 1.1 2011/11/22 20:05:25 joerg Exp $
--- src/pwsafe/Util.cpp.orig 2011-11-22 19:15:04.000000000 +0000
+++ src/pwsafe/Util.cpp
@@ -5,7 +5,10 @@
#include "PW_BlowFish.h"
//#include "PwsPlatform.h"
+#include <limits.h>
#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
#include <iostream>
using std::cout;
using std::endl;

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-src-safeserializer.cpp,v 1.1 2011/11/22 20:05:25 joerg Exp $
--- src/safeserializer.cpp.orig 2011-11-22 18:59:13.000000000 +0000
+++ src/safeserializer.cpp
@@ -17,6 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <qstring.h>
+#include <algorithm>
#include "safe.hpp"
#include "safeserializer.hpp"
#include "plaintextlizer.hpp"

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-src_xmlserializer.hpp,v 1.1 2013/03/28 21:43:11 joerg Exp $
--- src/xmlserializer.hpp.orig 2013-03-27 10:08:42.000000000 +0000
+++ src/xmlserializer.hpp
@@ -22,7 +22,6 @@
#include "safeserializer.hpp"
class Safe;
-enum Safe::Error;
class EncryptedString;
class SecuredString;