diff options
author | schwarz <schwarz> | 2012-07-03 18:37:55 +0000 |
---|---|---|
committer | schwarz <schwarz> | 2012-07-03 18:37:55 +0000 |
commit | 7bbda43b715c42b7805c6ab8a4e00e445db9cfae (patch) | |
tree | d674e42395094c0ffe42e2ba2ad7c09ac118ed5c /security/keepassx | |
parent | cb58ba6267509e8deecc5cf9761aaeab006018ee (diff) | |
download | pkgsrc-7bbda43b715c42b7805c6ab8a4e00e445db9cfae.tar.gz |
patch away special paths for MacOS X since they are not supported by pkgsrc.
Treat MacOS X just like any other UNIX system.
Diffstat (limited to 'security/keepassx')
-rw-r--r-- | security/keepassx/distinfo | 3 | ||||
-rw-r--r-- | security/keepassx/patches/patch-src_src.pro | 26 |
2 files changed, 28 insertions, 1 deletions
diff --git a/security/keepassx/distinfo b/security/keepassx/distinfo index 5609500344b..38eec1fa6bb 100644 --- a/security/keepassx/distinfo +++ b/security/keepassx/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.2 2011/11/24 13:37:22 joerg Exp $ +$NetBSD: distinfo,v 1.3 2012/07/03 18:37:55 schwarz Exp $ SHA1 (KeePassX-0.2.2.tar.gz) = bae4b984d32f2bb6220d17a135e3322c4df73fcb RMD160 (KeePassX-0.2.2.tar.gz) = ba386cca105227120c0c50a500eee3b2b2bf24ec Size (KeePassX-0.2.2.tar.gz) = 302656 bytes SHA1 (patch-src_crypto_twofish.cpp) = 7bd41b67c0df56be41a9579d09c5d8d765b97353 SHA1 (patch-src_lib_random.cpp) = 802b128fcc9c4805e1061246a2c9e9aeb420dbe8 +SHA1 (patch-src_src.pro) = 291d8f96c20a67e5098dac11af457de7300a953b diff --git a/security/keepassx/patches/patch-src_src.pro b/security/keepassx/patches/patch-src_src.pro new file mode 100644 index 00000000000..8234b7fffd3 --- /dev/null +++ b/security/keepassx/patches/patch-src_src.pro @@ -0,0 +1,26 @@ +$NetBSD: patch-src_src.pro,v 1.1 2012/07/03 18:37:55 schwarz Exp $ + +--- src/src.pro.orig 2012-06-30 20:01:34.000000000 +0200 ++++ src/src.pro 2012-06-30 20:02:23.000000000 +0200 +@@ -8,7 +8,7 @@ + data.files += ../share/keepass/*
+ TARGET = ../bin/keepass
+
+-unix:!macx{
++unix{
+ isEmpty(PREFIX){
+ PREFIX=/usr/local
+ }
+@@ -18,12 +18,6 @@ + SOURCES+=lib/AutoType_X11.cpp
+ }
+
+-macx{
+- target.path = /Applications
+- data.path = /Applications/keepass.app/Contents/share/keepass
+- SOURCES+=lib/AutoType_X11.cpp
+-}
+-
+ win32{
+ SOURCES+=lib/AutoType_Win.cpp
+ TARGET=../$$TARGET
|