summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-01-18 17:06:38 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-01-18 17:06:38 +0000
commit5cf32c6d8774a6b4b775d95479601123d7dbf389 (patch)
treef71dfc4b6b7e7f3311a7485338e735fd80f408d3 /sysutils
parentDocument bug in Mozilla-based software that may leave downloaded files (diff)
Add fdupes, a program for identifying or deleting duplicate files residing
within specified directories. PR: ports/75546 Submitted by: Emanuel Haupt <ehaupt@critical.ch>
Notes
Notes: svn path=/head/; revision=126728
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/Makefile1
-rw-r--r--sysutils/fdupes/Makefile36
-rw-r--r--sysutils/fdupes/distinfo2
-rw-r--r--sysutils/fdupes/pkg-descr4
4 files changed, 43 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile
index eddba83fa368..c4f332dcac88 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -123,6 +123,7 @@
SUBDIR += extipl
SUBDIR += fastest_cvsup
SUBDIR += fcron
+ SUBDIR += fdupes
SUBDIR += fetchlog
SUBDIR += ffsrecov
SUBDIR += file
diff --git a/sysutils/fdupes/Makefile b/sysutils/fdupes/Makefile
new file mode 100644
index 000000000000..9758f20f9ac6
--- /dev/null
+++ b/sysutils/fdupes/Makefile
@@ -0,0 +1,36 @@
+# New ports collection makefile for: fdupes
+# Date created: 27 December 2004
+# Whom: Emanuel Haupt <ehaupt@critical.ch>
+#
+# $FreeBSD$
+#
+
+PORTNAME= fdupes
+PORTVERSION= 1.40
+CATEGORIES= sysutils
+MASTER_SITES= http://netdial.caribe.net/~adrian2/programs/
+
+MAINTAINER= ehaupt@critical.ch
+COMMENT= Fdupes is a program for identifying or deleting duplicate files
+
+USE_GETOPT_LONG= yes
+
+MAN1= fdupes.1
+PLIST_FILES= bin/fdupes
+
+.include <bsd.port.pre.mk>
+
+CFLAGS+= -DHAVE_DECL_GETOPT
+
+do-build:
+.if ${OSVERSION} < 500041
+ ${CC} ${CFLAGS} ${WRKSRC}/${PORTNAME}.c ${WRKSRC}/md5/md5.c -o ${WRKSRC}/${PORTNAME} -DVERSION=\"${PORTVERSION}\" -I${LOCALBASE}/include ${LOCALBASE}/lib/libgnugetopt.so
+.else
+ ${CC} ${CFLAGS} ${WRKSRC}/${PORTNAME}.c ${WRKSRC}/md5/md5.c -o ${WRKSRC}/${PORTNAME} -DVERSION=\"${PORTVERSION}\"
+.endif
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1
+
+.include <bsd.port.post.mk>
diff --git a/sysutils/fdupes/distinfo b/sysutils/fdupes/distinfo
new file mode 100644
index 000000000000..0679984a37dc
--- /dev/null
+++ b/sysutils/fdupes/distinfo
@@ -0,0 +1,2 @@
+MD5 (fdupes-1.40.tar.gz) = 11de9ab4466089b6acbb62816b30b189
+SIZE (fdupes-1.40.tar.gz) = 16026
diff --git a/sysutils/fdupes/pkg-descr b/sysutils/fdupes/pkg-descr
new file mode 100644
index 000000000000..65f3d320b175
--- /dev/null
+++ b/sysutils/fdupes/pkg-descr
@@ -0,0 +1,4 @@
+FDUPES is a program for identifying or deleting duplicate files residing within
+specified directories.
+
+WWW: http://netdial.caribe.net/~adrian2/fdupes.html