From 0b6b506536c1ff50f1531d26be2fccfe86c74335 Mon Sep 17 00:00:00 2001 From: zuntum Date: Thu, 1 Nov 2001 00:57:41 +0000 Subject: Move pkg/ files into package's toplevel directory --- devel/xdelta/DESCR | 18 ++++++++++++++++++ devel/xdelta/PLIST | 23 +++++++++++++++++++++++ devel/xdelta/pkg/DESCR | 18 ------------------ devel/xdelta/pkg/PLIST | 23 ----------------------- 4 files changed, 41 insertions(+), 41 deletions(-) create mode 100644 devel/xdelta/DESCR create mode 100644 devel/xdelta/PLIST delete mode 100644 devel/xdelta/pkg/DESCR delete mode 100644 devel/xdelta/pkg/PLIST (limited to 'devel/xdelta') diff --git a/devel/xdelta/DESCR b/devel/xdelta/DESCR new file mode 100644 index 00000000000..1870b029cc2 --- /dev/null +++ b/devel/xdelta/DESCR @@ -0,0 +1,18 @@ +The delta generator portion of this program is a delta algorithm which +searches for substring matches between the files and then outputs +instructions to reconstruct the new file from the old file. It produces a +set of copy/insert instructions that tell how to reconstruct the file as a +sequence of copies from the FROM file and inserts from the delta itself. +In this regard, the program is much closer to a compression program than +to a diff program. However, the delta is not "compressed", in that the +delta's entropy H(P) will be very similar to the entropy of the portions +of the TO file not found within the FROM file. The delta will compress +just as well as the TO file will. This is a fundamentally different +method of computing deltas than in the traditional "diff" program. The +diff program and it's variants use a least-common-subsequence (LCS) +algorithm to find a list of inserts and deletes that will modify the FROM +file into the TO file. LCS is more expensive to compute and is sometimes +more useful, especially to the human reader. Since LCS is a fairly +expensive algorithm, diff programs usually divide the input files into +newline-separated "atoms" before computing a delta. This is a fine +approximation for text files, but not binary files. diff --git a/devel/xdelta/PLIST b/devel/xdelta/PLIST new file mode 100644 index 00000000000..c294ef0f482 --- /dev/null +++ b/devel/xdelta/PLIST @@ -0,0 +1,23 @@ +@comment $NetBSD: PLIST,v 1.1 2001/11/01 01:27:18 zuntum Exp $ +bin/edsio-comp +bin/xdelta +bin/xdelta-config +include/edsio.h +include/edsio_edsio.h +include/xdelta.h +include/xd_edsio.h +@unexec install-info --delete %D/info/xdelta.info %D/info/dir +info/xdelta.info +@exec install-info %D/info/xdelta.info %D/info/dir +lib/libedsio.so.0.0 +lib/libedsio.so.0 +lib/libedsio.so +lib/libedsio.la +lib/libedsio.a +lib/libxdelta.so.2.0 +lib/libxdelta.so.2 +lib/libxdelta.so +lib/libxdelta.la +lib/libxdelta.a +man/man1/xdelta.1 +share/aclocal/xdelta.m4 diff --git a/devel/xdelta/pkg/DESCR b/devel/xdelta/pkg/DESCR deleted file mode 100644 index 1870b029cc2..00000000000 --- a/devel/xdelta/pkg/DESCR +++ /dev/null @@ -1,18 +0,0 @@ -The delta generator portion of this program is a delta algorithm which -searches for substring matches between the files and then outputs -instructions to reconstruct the new file from the old file. It produces a -set of copy/insert instructions that tell how to reconstruct the file as a -sequence of copies from the FROM file and inserts from the delta itself. -In this regard, the program is much closer to a compression program than -to a diff program. However, the delta is not "compressed", in that the -delta's entropy H(P) will be very similar to the entropy of the portions -of the TO file not found within the FROM file. The delta will compress -just as well as the TO file will. This is a fundamentally different -method of computing deltas than in the traditional "diff" program. The -diff program and it's variants use a least-common-subsequence (LCS) -algorithm to find a list of inserts and deletes that will modify the FROM -file into the TO file. LCS is more expensive to compute and is sometimes -more useful, especially to the human reader. Since LCS is a fairly -expensive algorithm, diff programs usually divide the input files into -newline-separated "atoms" before computing a delta. This is a fine -approximation for text files, but not binary files. diff --git a/devel/xdelta/pkg/PLIST b/devel/xdelta/pkg/PLIST deleted file mode 100644 index 1ab6696dfc7..00000000000 --- a/devel/xdelta/pkg/PLIST +++ /dev/null @@ -1,23 +0,0 @@ -@comment $NetBSD: PLIST,v 1.5 2001/08/01 17:28:28 wiz Exp $ -bin/edsio-comp -bin/xdelta -bin/xdelta-config -include/edsio.h -include/edsio_edsio.h -include/xdelta.h -include/xd_edsio.h -@unexec install-info --delete %D/info/xdelta.info %D/info/dir -info/xdelta.info -@exec install-info %D/info/xdelta.info %D/info/dir -lib/libedsio.so.0.0 -lib/libedsio.so.0 -lib/libedsio.so -lib/libedsio.la -lib/libedsio.a -lib/libxdelta.so.2.0 -lib/libxdelta.so.2 -lib/libxdelta.so -lib/libxdelta.la -lib/libxdelta.a -man/man1/xdelta.1 -share/aclocal/xdelta.m4 -- cgit v1.2.3