diff options
author | agc <agc> | 2003-07-24 07:08:20 +0000 |
---|---|---|
committer | agc <agc> | 2003-07-24 07:08:20 +0000 |
commit | d04b9bf476824f20c1eb88d01a96f6558d99e099 (patch) | |
tree | b8962ddf2a917ed64711a99c61c762a19de96b3d /misc | |
parent | c06c6a6fd602c75be40190dc22c6d64dad442071 (diff) | |
download | pkgsrc-d04b9bf476824f20c1eb88d01a96f6558d99e099.tar.gz |
Initial import of Paulus's dirdiff-1.6 into the NetBSD Packages Collection.
dirdiff is a graphical tool to display the differences(a la diff)
between files in directories. Given two or more directory trees,
dirdiff will display the differences between them in various glorious
colors. It provides merging and the creation of patches.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/dirdiff/DESCR | 4 | ||||
-rw-r--r-- | misc/dirdiff/Makefile | 15 | ||||
-rw-r--r-- | misc/dirdiff/PLIST | 3 | ||||
-rw-r--r-- | misc/dirdiff/distinfo | 5 | ||||
-rw-r--r-- | misc/dirdiff/patches/patch-aa | 20 |
5 files changed, 47 insertions, 0 deletions
diff --git a/misc/dirdiff/DESCR b/misc/dirdiff/DESCR new file mode 100644 index 00000000000..cf4542a79d9 --- /dev/null +++ b/misc/dirdiff/DESCR @@ -0,0 +1,4 @@ +dirdiff is a graphical tool to display the differences(a la diff) +between files in directories. Given two or more directory trees, +dirdiff will display the differences between them in various glorious +colors. It provides merging and the creation of patches. diff --git a/misc/dirdiff/Makefile b/misc/dirdiff/Makefile new file mode 100644 index 00000000000..27137146c8e --- /dev/null +++ b/misc/dirdiff/Makefile @@ -0,0 +1,15 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/07/24 07:08:20 agc Exp $ +# + +DISTNAME= dirdiff-1.6 +CATEGORIES= misc tk80 +MASTER_SITES= http://samba.org/ftp/paulus/ + +MAINTAINER= tech-pkg@NetBSD.org +HOMEPAGE= http://samba.org/ftp/paulus/ +COMMENT= Displays differences between directories + +USE_BUILDLINK2= yes + +.include "../../x11/tk/buildlink2.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/misc/dirdiff/PLIST b/misc/dirdiff/PLIST new file mode 100644 index 00000000000..529e3da6165 --- /dev/null +++ b/misc/dirdiff/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2003/07/24 07:08:20 agc Exp $ +bin/dirdiff +lib/libfilecmp.so.0.0 diff --git a/misc/dirdiff/distinfo b/misc/dirdiff/distinfo new file mode 100644 index 00000000000..013a9399b45 --- /dev/null +++ b/misc/dirdiff/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2003/07/24 07:08:20 agc Exp $ + +SHA1 (dirdiff-1.6.tar.gz) = b06003909ef50d4668660f3db4ba703ac17c4f14 +Size (dirdiff-1.6.tar.gz) = 27965 bytes +SHA1 (patch-aa) = 5414ea8dfcd7509c1c76b2e7e33f5aca14a62435 diff --git a/misc/dirdiff/patches/patch-aa b/misc/dirdiff/patches/patch-aa new file mode 100644 index 00000000000..3bd242d7b94 --- /dev/null +++ b/misc/dirdiff/patches/patch-aa @@ -0,0 +1,20 @@ +$NetBSD: patch-aa,v 1.1.1.1 2003/07/24 07:08:20 agc Exp $ + +--- Makefile 2003/07/24 07:02:17 1.1 ++++ Makefile 2003/07/24 07:03:14 +@@ -2,12 +2,12 @@ + # + # In fact all we have to make is the libfilecmp.so.0.0 library. + +-BINDIR=$(DESTDIR)/usr/bin +-LIBDIR=$(DESTDIR)/usr/lib ++BINDIR=$(DESTDIR)${PREFIX}/bin ++LIBDIR=$(DESTDIR)${PREFIX}/lib + INSTALL=install + + # You may need to change the -I arguments depending on your system +-CFLAGS=-O3 -I/usr/include/tcl8.3/ -I/usr/include/tcl ++CFLAGS=-O3 -I${PREFIX}/include + + all: libfilecmp.so.0.0 + |