Index: head/security/Makefile =================================================================== --- head/security/Makefile (revision 34352) +++ head/security/Makefile (revision 34353) @@ -1,129 +1,130 @@ # $FreeBSD$ # SUBDIR += aafid2 SUBDIR += acid SUBDIR += aide SUBDIR += bjorb SUBDIR += bro SUBDIR += bugs SUBDIR += ca-roots SUBDIR += calife SUBDIR += cfs SUBDIR += checkpassword SUBDIR += chrootuid + SUBDIR += cksfv SUBDIR += cops SUBDIR += crack SUBDIR += cyrus-sasl SUBDIR += ddos_scan SUBDIR += donkey SUBDIR += dsniff SUBDIR += fakebo SUBDIR += find_ddos SUBDIR += firewalk SUBDIR += fragrouter SUBDIR += fuzz SUBDIR += fwtk SUBDIR += gag SUBDIR += gnupg SUBDIR += gnupg-rsa SUBDIR += gpa SUBDIR += gpasman SUBDIR += gtkportscan SUBDIR += heimdal SUBDIR += hping SUBDIR += ident2 SUBDIR += identify SUBDIR += inflex SUBDIR += its4 SUBDIR += john SUBDIR += keynote SUBDIR += keyprint SUBDIR += kmap SUBDIR += krb5 SUBDIR += kssh SUBDIR += l0pht-watch SUBDIR += libident SUBDIR += libmcrypt SUBDIR += libmcrypt-nm SUBDIR += libparanoia SUBDIR += logcheck SUBDIR += lsh SUBDIR += lxnb SUBDIR += mhash SUBDIR += mindterm-binary SUBDIR += nbaudit SUBDIR += nessus SUBDIR += nessus-libraries SUBDIR += nessus-libnasl SUBDIR += nessus-plugins SUBDIR += nmap SUBDIR += nmapfe SUBDIR += oidentd SUBDIR += openssh SUBDIR += openssh-askpass SUBDIR += openssl SUBDIR += p5-Authen-PAM SUBDIR += p5-Authen-Radius SUBDIR += p5-Crypt-Blowfish SUBDIR += p5-Crypt-CBC SUBDIR += p5-Crypt-DES SUBDIR += p5-Crypt-IDEA SUBDIR += p5-Digest-MD5 SUBDIR += p5-GnuPG-Interface SUBDIR += p5-IO-Socket-SSL SUBDIR += p5-MD5 SUBDIR += p5-Net-SSLeay SUBDIR += p5-PGP SUBDIR += p5-PGP-Sign SUBDIR += pad SUBDIR += pam-mysql SUBDIR += pgp SUBDIR += pgp5 SUBDIR += pgp6 SUBDIR += pgpdump SUBDIR += pgpgpg SUBDIR += pidentd SUBDIR += pktsuckers SUBDIR += portscanner SUBDIR += portsentry SUBDIR += pscan SUBDIR += racoon SUBDIR += radiusniff SUBDIR += rid SUBDIR += rsaref SUBDIR += ruby-acl SUBDIR += ruby-tcpwrap SUBDIR += saint SUBDIR += scanssh SUBDIR += seahorse SUBDIR += siphon SUBDIR += skip SUBDIR += slurpie SUBDIR += slush SUBDIR += smurflog SUBDIR += sniff SUBDIR += snort SUBDIR += srm SUBDIR += ssh SUBDIR += ssh2 SUBDIR += sslproxy SUBDIR += sslwrap SUBDIR += strobe SUBDIR += stunnel SUBDIR += sudo SUBDIR += super SUBDIR += swatch SUBDIR += tcp_wrapper SUBDIR += trinokiller SUBDIR += tripwire SUBDIR += tripwire-131 SUBDIR += uvscan-dat SUBDIR += vlock SUBDIR += vscan SUBDIR += whisker SUBDIR += xinetd SUBDIR += zebedee SUBDIR += zombiezapper .include Property changes on: head/security/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.139 \ No newline at end of property +1.140 \ No newline at end of property Index: head/security/cksfv/Makefile =================================================================== --- head/security/cksfv/Makefile (nonexistent) +++ head/security/cksfv/Makefile (revision 34353) @@ -0,0 +1,26 @@ +# New ports collection makefile for: cksfv +# Date created: 18 October 2000 +# Whom: Johann Visagie +# +# $FreeBSD$ +# + +PORTNAME= cksfv +PORTVERSION= 1.1 +CATEGORIES= security +MASTER_SITES= http://www.fodder.org/cksfv/ + +MAINTAINER= johann@egenetics.com + +BUILD_WRKSRC= ${WRKSRC}/src +INSTALL_WRKSRC= ${BUILD_WRKSRC} +USE_GMAKE= yes +ALL_TARGET= cksfv + +post-install: +.if !defined(NOPORTDOCS) + @ ${MKDIR} ${PREFIX}/share/doc/cksfv + @ ${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/cksfv +.endif + +.include Property changes on: head/security/cksfv/Makefile ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/security/cksfv/distinfo =================================================================== --- head/security/cksfv/distinfo (nonexistent) +++ head/security/cksfv/distinfo (revision 34353) @@ -0,0 +1 @@ +MD5 (cksfv-1.1.tar.gz) = e32e3fc05b99ce8ff06af57df3f16952 Property changes on: head/security/cksfv/distinfo ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/security/cksfv/files/patch-src-Makefile =================================================================== --- head/security/cksfv/files/patch-src-Makefile (nonexistent) +++ head/security/cksfv/files/patch-src-Makefile (revision 34353) @@ -0,0 +1,20 @@ +--- src/Makefile.orig Mon May 22 23:57:05 2000 ++++ src/Makefile Wed Oct 18 10:14:25 2000 +@@ -17,14 +17,15 @@ + # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + PROG= cksfv ++CC?= gcc + CFLAGS+= -Wall -Werror -O2 + SRCS= cksfv.c print.c crc32.c readsfv.c newsfv.c + + cksfv: $(SRCS) +- gcc $(CFLAGS) -o $(PROG) $(SRCS) ++ $(CC) $(CFLAGS) -o $(PROG) $(SRCS) + + install: cksfv +- cp $(PROG) /usr/local/bin ++ $(BSD_INSTALL_PROGRAM) $(PROG) $(PREFIX)/bin + + clean: + rm -f *.o *~ *.core $(PROG) Property changes on: head/security/cksfv/files/patch-src-Makefile ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/security/cksfv/pkg-comment =================================================================== --- head/security/cksfv/pkg-comment (nonexistent) +++ head/security/cksfv/pkg-comment (revision 34353) @@ -0,0 +1 @@ +Create or manipulate Simple File Verification (SFV) checksum files Property changes on: head/security/cksfv/pkg-comment ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/security/cksfv/pkg-descr =================================================================== --- head/security/cksfv/pkg-descr (nonexistent) +++ head/security/cksfv/pkg-descr (revision 34353) @@ -0,0 +1,13 @@ +The Simple File Verification (SFV) system is a file integrity verification +system which is popular on some platforms. A software package may be +accompanied by an SFV file (usually with extension .sfv) which contains +CRC-32 checksums for all the files that comprise the package. + +cksfv (Check SFV) can both create simple file verification (SFV) files, and +test file integrity against existing SFV files. + +Licence: GPL +Author: Bryan Call +WWW: http://www.fodder.org/cksfv/ + +-- Johann Visagie Property changes on: head/security/cksfv/pkg-descr ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/security/cksfv/pkg-plist =================================================================== --- head/security/cksfv/pkg-plist (nonexistent) +++ head/security/cksfv/pkg-plist (revision 34353) @@ -0,0 +1,3 @@ +bin/cksfv +share/doc/cksfv/README +@dirrm share/doc/cksfv Property changes on: head/security/cksfv/pkg-plist ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property