diff options
author | dinoex <dinoex@FreeBSD.org> | 2009-01-13 23:40:58 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2009-01-13 23:40:58 +0800 |
commit | 5b8f2754cdd11e495709ac999c48d71d83f370f7 (patch) | |
tree | b2ccc55f57ebf7e7db5a021fea993bef95cb27f1 /sysutils | |
parent | 277f9d0ff8ce741908c207853151a2669af9d886 (diff) | |
download | freebsd-ports-gnome-5b8f2754cdd11e495709ac999c48d71d83f370f7.tar.gz freebsd-ports-gnome-5b8f2754cdd11e495709ac999c48d71d83f370f7.tar.zst freebsd-ports-gnome-5b8f2754cdd11e495709ac999c48d71d83f370f7.zip |
ua is a simple command-line tool that finds sets of identical files.
The name ua is derived from the Hungarian word ugyanaz meaning the same.
The development of ua was motivated by the disturbingly often recurring
event of waiting too long for a shell script using sorts, md5sums, diffs
and the like to finish finding identical files. While there are many tools
out there, we needed a tool that can ignore white spaces and runs quite fast.
WWW: http://oss.euedge.com/wiki/UaMainPage
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/ua/Makefile | 28 | ||||
-rw-r--r-- | sysutils/ua/distinfo | 3 | ||||
-rw-r--r-- | sysutils/ua/pkg-descr | 9 |
4 files changed, 41 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 519d3420867c..37ecc096abb9 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -736,6 +736,7 @@ SUBDIR += ttyload SUBDIR += tua SUBDIR += tw_cli + SUBDIR += ua SUBDIR += ucspi-ipc SUBDIR += ucspi-proxy SUBDIR += ucspi-ssl diff --git a/sysutils/ua/Makefile b/sysutils/ua/Makefile new file mode 100644 index 000000000000..1e40a7164e99 --- /dev/null +++ b/sysutils/ua/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: ua +# Date created: 13 Jan 2009 +# Whom: dirk.meyer@dinoex.sub.org +# +# $FreeBSD$ +# + +PORTNAME= ua +PORTVERSION= 1.0.1 +CATEGORIES= sysutils +MASTER_SITES= http://oss.euedge.com/downloads/ + +MAINTAINER= dinoex@FreeBSD.org +COMMENT= Finds sets of identical files + +GNU_CONFIGURE= yes + +MAN1= kua.1 ua.1 +PLIST_FILES= bin/kua bin/ua +PORTDOCS= README + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/ +.endif + +.include <bsd.port.mk> diff --git a/sysutils/ua/distinfo b/sysutils/ua/distinfo new file mode 100644 index 000000000000..178e98d26bc8 --- /dev/null +++ b/sysutils/ua/distinfo @@ -0,0 +1,3 @@ +MD5 (ua-1.0.1.tar.gz) = 3f1af32a8b838e86b19f402a04451d0e +SHA256 (ua-1.0.1.tar.gz) = 3784bcafb02f6cc7f6ee9595692191e68c2aac43654cfbd65de27108b3029bb3 +SIZE (ua-1.0.1.tar.gz) = 162857 diff --git a/sysutils/ua/pkg-descr b/sysutils/ua/pkg-descr new file mode 100644 index 000000000000..1969e6317dd4 --- /dev/null +++ b/sysutils/ua/pkg-descr @@ -0,0 +1,9 @@ +ua is a simple command-line tool that finds sets of identical files. +The name ua is derived from the Hungarian word ugyanaz meaning the same. + +The development of ua was motivated by the disturbingly often recurring +event of waiting too long for a shell script using sorts, md5sums, diffs +and the like to finish finding identical files. While there are many tools +out there, we needed a tool that can ignore white spaces and runs quite fast. + +WWW: http://oss.euedge.com/wiki/UaMainPage |