Re: re passwordsafe under RHEL5 (and wtf re the forum)
[email protected] Wed, 22 Dec 2010 08:23:49 -0600
| Newsgroups | gmane.comp.security.passwordsafe.devel |
|---|---|
| Message-ID | <[email protected]> |
------------------------------------------------------------------------------ Forrester recently released a report on the Return on Investment (ROI) of Google Apps. They found a 300% ROI, 38%-56% cost savings, and break-even within 7 months. Over 3 million businesses have gone Google with Google Apps: an online email calendar, and document program that's accessible from your browser. Read the Forrester report: http://p.sf.net/sfu/googleapps-sfnew _______________________________________________ Passwordsafe-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/passwordsafe-devel
(unnamed)
(application/octet-stream, 783 B) - not displayed
PATCH-pwsafe-help
(text/plain, 1007 B)
--- Makefile.linux.orig 2010-11-24 15:03:26.000000000 -0600 +++ Makefile.linux 2010-12-22 07:57:11.000000000 -0600 @@ -18,7 +18,10 @@ deb: $(MAKE) -C install/deb -.PHONY: all clean reallyclean debug release unicodedebug unicoderelease deb +help: + $(MAKE) -f Makefile.linux -C help + +.PHONY: all clean reallyclean debug release unicodedebug unicoderelease deb help # Local variables: # mode: makefile # End: --- help/Makefile.linux.orig 2010-12-22 07:58:42.000000000 -0600 +++ help/Makefile.linux 2010-12-22 08:01:05.000000000 -0600 @@ -0,0 +1,18 @@ +# +# Makefile to compile all versions of the pwsafe help for linux +# +# The resulting help.zip file for your locale should be copied to +# /usr/share/doc/passwordsafe/help/help.zip +# + +HELP_DIRS := default pwsafeDE pwsafeFR pwsafeRU pwsafeES + +.PHONY: all + +all: + -@(for d in $(HELP_DIRS); do \ + echo "(cd $$d; zip -r help ./* -x \*/.svn/\*)" ; \ + (cd $$d; zip -r help ./* -x \*/.svn/\* > /dev/null) ; \ + done) + +