1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-05 11:35:01 +00:00

Update to 1.7

PR:		ports/77320
Submitted by:	Roland Smith
Approved by:	maintainer
This commit is contained in:
Volker Stolz 2005-02-13 18:38:47 +00:00
parent be148e9050
commit 7404119b22
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=128717
6 changed files with 27 additions and 120 deletions

View File

@ -7,8 +7,7 @@
#
PORTNAME= ccrypt
PORTVERSION= 1.3
PORTREVISION= 2
PORTVERSION= 1.7
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
http://quasar.mathstat.uottawa.ca/~selinger/ccrypt/download/
@ -30,7 +29,7 @@ post-patch:
@${REINPLACE_CMD} -e 's|gtar|tar|g' ${WRKSRC}/configure
post-install:
.if !defined(NOPORTDOCS)
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for i in README doc/ccrypt.html doc/cypfaq01.txt
${INSTALL_DATA} ${WRKSRC}/$i ${DOCSDIR}

View File

@ -1,2 +1,2 @@
MD5 (ccrypt-1.3.tar.gz) = 5dc4646f684273e8fa9f152286b54256
SIZE (ccrypt-1.3.tar.gz) = 162255
MD5 (ccrypt-1.7.tar.gz) = 19526e31a7d234e29d54dbcc876605d5
SIZE (ccrypt-1.7.tar.gz) = 214189

View File

@ -1,11 +1,11 @@
--- Makefile.in.orig Thu Feb 7 09:08:04 2002
+++ Makefile.in Thu Feb 7 09:08:12 2002
@@ -72,7 +72,7 @@
VERSION = @VERSION@
lispdir = @lispdir@
--- Makefile.in.orig Mon Mar 29 06:58:19 2004
+++ Makefile.in Sun Jan 23 09:55:14 2005
@@ -150,7 +150,7 @@
sharedstatedir = @sharedstatedir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
-SUBDIRS = src emacs doc check
+SUBDIRS = src doc check
EXTRA_DIST = README.win
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive

View File

@ -1,20 +1,20 @@
--- doc/Makefile.in.orig Wed Jan 30 14:15:42 2002
+++ doc/Makefile.in Sun Sep 15 09:24:14 2002
@@ -195,7 +195,7 @@
install-exec-am:
--- doc/Makefile.in.orig Mon Mar 29 06:58:19 2004
+++ doc/Makefile.in Sun Jan 23 09:59:41 2005
@@ -274,7 +274,7 @@
check: check-am
all-am: Makefile $(MANS) $(DATA)
installdirs:
- $(mkdir_p) $(DESTDIR)$(man1dir) $(DESTDIR)$(htmldir)
+ $(mkdir_p) $(DESTDIR)$(man1dir)
install: install-am
install-exec: install-exec-am
install-data: install-data-am
@@ -316,7 +316,7 @@
-install-data-am: install-man install-htmlDATA
+install-data-am: install-man # install-htmlDATA
info-am:
-install-data-am: install-htmlDATA install-man
+install-data-am: install-man
@$(NORMAL_INSTALL)
$(MAKE) $(AM_MAKEFLAGS) install-data-hook
install-data: install-data-am
@@ -210,7 +210,7 @@
install-strip:
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
installdirs:
- $(mkinstalldirs) $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(htmldir)
+ $(mkinstalldirs) $(DESTDIR)$(mandir)/man1 # $(DESTDIR)$(htmldir)
mostlyclean-generic:

View File

@ -1,11 +0,0 @@
--- src/Makefile.in.orig Wed Jan 30 14:15:42 2002
+++ src/Makefile.in Sun Sep 15 09:26:45 2002
@@ -76,7 +76,7 @@
VERSION = @VERSION@
lispdir = @lispdir@
-CFLAGS = -O3
+CFLAGS = @CFLAGS@
bin_PROGRAMS = ccrypt
noinst_PROGRAMS = maketables

View File

@ -1,81 +0,0 @@
--- src/main.c.orig Wed Oct 15 06:33:06 2003
+++ src/main.c Wed Oct 15 06:33:46 2003
@@ -37,42 +37,42 @@
void usage(FILE *fout) {
fprintf(fout, "\
-"NAME" "VERSION". Secure encryption and decryption of files and streams.
-
-Usage: "NAME" [mode] [options] [file...]
- "NAMEENCRYPT" [options] [file...]
- "NAMEDECRYPT" [options] [file...]
- "NAMECAT" [options] file...
-
-Modes:
- -e, --encrypt encrypt
- -d, --decrypt decrypt
- -c, --cat cat; decrypt files to stdout
- -x, --keychange change key
- -u, --unixcrypt decrypt old unix crypt files
-
-Options:
- -h, --help print this help message and exit
- -V, --version print version info and exit
- -L, --license print license info and exit
- -v, --verbose print progress information to stderr
- -q, --quiet run quietly; suppress warnings
- -f, --force overwrite existing files without asking
- -m, --mismatch allow decryption with non-matching key
- -E, --envvar var read keyword from environment variable (unsafe)
- -K, --key key give keyword on command line (unsafe)
- -k, --keyfile file read keyword(s) as first line(s) from file
- -P, --prompt prompt use this prompt instead of default
- -S, --suffix .suf use suffix .suf instead of default "SUF"
- -s, --strictsuffix refuse to encrypt files which already have suffix
- -F, --envvar2 var as -E for second keyword (for keychange mode)
- -H, --key2 key as -H for second keyword (for keychange mode)
- -Q, --prompt2 prompt as -P for second keyword (for keychange mode)
- -t, --timid prompt twice for destructive encryption keys
- -r, --recursive recurse through directories
- -R, --rec-symlinks follow symbolic links as subdirectories
- -l, --symlinks dereference symbolic links
- -- end of options, filenames follow
+"NAME" "VERSION". Secure encryption and decryption of files and streams. \n\
+ \n\
+Usage: "NAME" [mode] [options] [file...] \n\
+ "NAMEENCRYPT" [options] [file...] \n\
+ "NAMEDECRYPT" [options] [file...] \n\
+ "NAMECAT" [options] file... \n\
+ \n\
+Modes: \n\
+ -e, --encrypt encrypt \n\
+ -d, --decrypt decrypt \n\
+ -c, --cat cat; decrypt files to stdout \n\
+ -x, --keychange change key \n\
+ -u, --unixcrypt decrypt old unix crypt files \n\
+\n\
+Options:\n\
+ -h, --help print this help message and exit\n\
+ -V, --version print version info and exit\n\
+ -L, --license print license info and exit\n\
+ -v, --verbose print progress information to stderr\n\
+ -q, --quiet run quietly; suppress warnings\n\
+ -f, --force overwrite existing files without asking\n\
+ -m, --mismatch allow decryption with non-matching key\n\
+ -E, --envvar var read keyword from environment variable (unsafe)\n\
+ -K, --key key give keyword on command line (unsafe)\n\
+ -k, --keyfile file read keyword(s) as first line(s) from file\n\
+ -P, --prompt prompt use this prompt instead of default\n\
+ -S, --suffix .suf use suffix .suf instead of default "SUF"\n\
+ -s, --strictsuffix refuse to encrypt files which already have suffix\n\
+ -F, --envvar2 var as -E for second keyword (for keychange mode)\n\
+ -H, --key2 key as -H for second keyword (for keychange mode)\n\
+ -Q, --prompt2 prompt as -P for second keyword (for keychange mode)\n\
+ -t, --timid prompt twice for destructive encryption keys\n\
+ -r, --recursive recurse through directories\n\
+ -R, --rec-symlinks follow symbolic links as subdirectories\n\
+ -l, --symlinks dereference symbolic links\n\
+ -- end of options, filenames follow\n\
");
}