diff options
author | kbyanc <kbyanc@FreeBSD.org> | 2003-07-30 03:33:58 +0800 |
---|---|---|
committer | kbyanc <kbyanc@FreeBSD.org> | 2003-07-30 03:33:58 +0800 |
commit | 2051e5341ad95cfe9a88f00c1a562fc34cbdc0f2 (patch) | |
tree | a6e40cc65153aeb00a3fbde8f9eac2918549a094 /security/gcipher/files | |
parent | 3018837764eb05f643fb38722cec1044adf7f1e9 (diff) | |
download | freebsd-ports-gnome-2051e5341ad95cfe9a88f00c1a562fc34cbdc0f2.tar.gz freebsd-ports-gnome-2051e5341ad95cfe9a88f00c1a562fc34cbdc0f2.tar.zst freebsd-ports-gnome-2051e5341ad95cfe9a88f00c1a562fc34cbdc0f2.zip |
Add gcipher 1.0, a simple encryption tool.
PR: 53738
Submitted by: Shannon -jj Behrens <jjinux@yahoo.com>
Diffstat (limited to 'security/gcipher/files')
-rw-r--r-- | security/gcipher/files/patch-Const.py | 9 | ||||
-rw-r--r-- | security/gcipher/files/patch-gcipher | 16 | ||||
-rw-r--r-- | security/gcipher/files/patch-gcipher.desktop | 14 |
3 files changed, 39 insertions, 0 deletions
diff --git a/security/gcipher/files/patch-Const.py b/security/gcipher/files/patch-Const.py new file mode 100644 index 000000000000..eac9b1ae6d1b --- /dev/null +++ b/security/gcipher/files/patch-Const.py @@ -0,0 +1,9 @@ +diff -ur ../gcipher-1.0.orig/src/Const.py ./src/Const.py +--- ../gcipher-1.0.orig/src/Const.py Wed Jun 25 14:03:43 2003 ++++ ./src/Const.py Wed Jun 25 14:05:59 2003 +@@ -9,4 +9,4 @@ + Read Help/Contents to learn how to use gcipher + as a command line filter or as a network proxy.""" + AUTHORS = ["Shannon -jj Behrens <jjinux@yahoo.com>"] +-GLADEDIR = "." ++GLADEDIR = "/usr/X11R6/share/gnome/gcipher/lib" diff --git a/security/gcipher/files/patch-gcipher b/security/gcipher/files/patch-gcipher new file mode 100644 index 000000000000..cb48ac1009fb --- /dev/null +++ b/security/gcipher/files/patch-gcipher @@ -0,0 +1,16 @@ +diff -ur ../gcipher-1.0.orig/src/gcipher ./src/gcipher +--- ../gcipher-1.0.orig/src/gcipher Wed Jun 25 14:03:43 2003 ++++ ./src/gcipher Wed Jun 25 14:06:14 2003 +@@ -1,10 +1,10 @@ +-#!/usr/bin/python ++#!/usr/local/bin/python + + """This is the main executable script.""" + + # Edit the path below if you need to port GCipher. + import sys +-# sys.path.append("/usr/share/gcipher/lib") ++sys.path.append("/usr/X11R6/share/gnome/gcipher/lib") + + from os import environ + from os.path import join diff --git a/security/gcipher/files/patch-gcipher.desktop b/security/gcipher/files/patch-gcipher.desktop new file mode 100644 index 000000000000..6027a262a8dd --- /dev/null +++ b/security/gcipher/files/patch-gcipher.desktop @@ -0,0 +1,14 @@ +diff -ur ../gcipher-1.0.orig/src/gcipher.desktop ./src/gcipher.desktop +--- ../gcipher-1.0.orig/src/gcipher.desktop Wed Jun 25 15:07:51 2003 ++++ ./src/gcipher.desktop Wed Jun 25 15:08:47 2003 +@@ -4,8 +4,8 @@ + Name[en_US.ISO8859-15]=GCipher + Comment[en_US.ISO8859-15]=A simple encryption tool + Exec=gcipher +-Icon=/usr/share/pixmaps/gnome-lockscreen.png ++Icon=/usr/X11R6/share/gnome/pixmaps/gnome-lockscreen.png + Terminal=false + Type=Application + StartupNotify=true +-Categories=GNOME;Application;Utility;X-Red-Hat-Base; ++Categories=Application;Cryptography; |