diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-01-18 17:06:38 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-01-18 17:06:38 +0000 |
commit | 5cf32c6d8774a6b4b775d95479601123d7dbf389 (patch) | |
tree | f71dfc4b6b7e7f3311a7485338e735fd80f408d3 /sysutils/fdupes | |
parent | 410c998edc58e5ad358bf669e6b83b8f0b30cf2f (diff) | |
download | ports-5cf32c6d8774a6b4b775d95479601123d7dbf389.tar.gz ports-5cf32c6d8774a6b4b775d95479601123d7dbf389.zip |
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/fdupes')
-rw-r--r-- | sysutils/fdupes/Makefile | 36 | ||||
-rw-r--r-- | sysutils/fdupes/distinfo | 2 | ||||
-rw-r--r-- | sysutils/fdupes/pkg-descr | 4 |
3 files changed, 42 insertions, 0 deletions
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 |