pkgsrc/security/MyPasswordSafe/options.mk
wiz 16760194c1 Update to 20060326. Add options.mk file in preparation of eventual
qt4 support (doesn't compile yet).

2006-03-26 19:06  nolan

	* src/serializers.cpp: Had a reported bug in which only the items
	  in a single group got saved with a PwSafe 1.0 safe. The repro
	  steps were:	Create a safe with a few entries   Save it as a
	  PwSafe 1.0 safe   Create a couple of folders	 Move the items
	  into those folders   Save the safe.	 Reopen the safe  It ended
	  up with the items from a single group instead of all the items.
	  The cause was that I was returning from a recursive call to
	  BlowfishLizer::saveGroup instead of only returning on an error.

2006-01-23 20:57  nolan

	* MyPasswordSafe.pro, MyPasswordSafe.qrc, src/aboutdlg.ui,
	  src/main.cpp, src/manualdlg.ui, src/mypasswordsafe.ui,
	  src/mypasswordsafe.ui.h, src/newpassphrasedlg.ui,
	  src/passphrasedlg.ui, src/plaintextlizer.cpp,
	  src/plaintextlizer.hpp, src/preferencesdlg.ui,
	  src/preferencesdlg.ui.h, src/pwordeditdlg.ui, src/safe.hpp,
	  src/safedragobject.cpp, src/safedragobject.hpp,
	  src/safelistview.cpp, src/safelistview.hpp, src/serializers.cpp,
	  src/startupdlgbase.ui, src/xmlserializer.cpp,
	  src/tools/idle/idle_x11.cpp, uuid-1.0.0/Makefile,
	  uuid-1.0.0/config.status: Converted to Qt4

2005-12-17 06:47  nolan

	* src/: mypasswordsafe.ui.h, pwordeditdlg.ui, pwordeditdlg.ui.h:
	  Set the edit dialog as the active window if the user tries to
	  edit that item a second time.  Moved the future group handling
	  for new items into MyPasswordSafe

2005-12-17 06:33  nolan

	* src/: mypasswordsafe.ui, mypasswordsafe.ui.h, pwordeditdlg.ui,
	  pwordeditdlg.ui.h, safelistview.cpp: Made the add and edit
	  dialogs non-modal Hiding during a lock now works

2005-12-17 05:03  nolan

	* src/: mypasswordsafe.ui, mypasswordsafe.ui.h, pwordeditdlg.ui,
	  pwordeditdlg.ui.h, safelistview.cpp, safelistview.hpp: Attempted
	  to hide the edit dialog when MyPS got locked, but that caused a
	  crash so they get closed.  Moved entry creation and updating to
	  PwordEditDlg Moved the default user name and generation length
	  into PwordEditDlg

2005-12-17 02:42  nolan

	* src/pwordeditdlg.ui.h, src/serializers.cpp, uuid-1.0.0/Makefile,
	  uuid-1.0.0/config.status: Fixed the problem with the show
	  password button; was checking for a normal echo mode

2005-11-25 00:21  nolan

	* src/: mypasswordsafe.ui, mypasswordsafe.ui.h: Lock on minimize
	  works under WindowMaker

2005-11-24 01:23  nolan

	* src/mypasswordsafe.ui.h: Parented all the dialogs

2005-11-23 22:15  nolan

	* release/Makefile: Updated release path and upload rules

2005-11-23 11:14  nolan

	* src/: mypasswordsafe.ui.h, pwordeditdlg.ui, pwordeditdlg.ui.h:
	  Had a bug in the user name and password checking in the edit
	  dialog.  Fixed that by adding an isNew attribute.

2005-11-23 08:21  nolan

	* src/tools/idle/: idle.cpp, idle.h, idle.pri, idle_mac.cpp,
	  idle_win.cpp, idle_x11.cpp, win32/Makefile, win32/idleui.cpp,
	  win32/idleui.def, win32/idleui.dll, win32/idleui.h: Added Idle
	  from Psi to lock MyPS

2005-11-23 08:21  nolan

	* src/mypasswordsafe.ui, src/mypasswordsafe.ui.h,
	  src/preferencesdlg.ui, src/preferencesdlg.ui.h,
	  src/pwordeditdlg.ui, src/pwordeditdlg.ui.h, src/safe.cpp,
	  src/safe.hpp, src/safelistview.cpp, src/safelistview.hpp,
	  src/serializers.cpp, test/safe/safe.pro, test/safe/safetest.cpp:
	  Added Idle from Psi to lock MyPS Add Password: automatically
	  generate a new password and display it to the user Confirm
	  changes to user name and/or password in entries Empty fields are
	  now saved working around a bug in Password Safe Clipboard will be
	  cleared after a specified time Generated passwords are
	  automatically fetched

2005-11-23 08:19  nolan

	* MyPasswordSafe.pro: Added Idle from Psi
2006-03-29 22:14:18 +00:00

18 lines
494 B
Makefile

# $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