diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2005-12-16 21:39:58 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2005-12-16 21:39:58 +0800 |
commit | 7546d7c7dbd33ddd1f4f0025af3162528576b3e7 (patch) | |
tree | 619eea7b8667912a73149c81f30fa5b4f00a3ca8 | |
parent | 99c5cd31e4ebcc42d3e89b1bff9ab24c8158409e (diff) | |
download | freebsd-ports-graphics-7546d7c7dbd33ddd1f4f0025af3162528576b3e7.tar.gz freebsd-ports-graphics-7546d7c7dbd33ddd1f4f0025af3162528576b3e7.tar.zst freebsd-ports-graphics-7546d7c7dbd33ddd1f4f0025af3162528576b3e7.zip |
- Re-Add misc/bestfit, a utility to Optimally choose files to be put on a
CD (or other media)
- Add two new master sites
- Update WWW
- Take maintainership
- Remove from MOVED
-rw-r--r-- | MOVED | 1 | ||||
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/bestfit/Makefile | 23 | ||||
-rw-r--r-- | misc/bestfit/distinfo | 3 | ||||
-rw-r--r-- | misc/bestfit/pkg-descr | 8 |
5 files changed, 35 insertions, 1 deletions
@@ -2026,7 +2026,6 @@ japanese/balsa||2005-12-15|Mastersite disappeared, does not compile japanese/tkdesk||2005-12-15|Mastersite disappeared textproc/libhtmlparse||2005-12-15|Mastersite disappeared russian/mtc||2005-12-15|Mastersite disappeared -misc/bestfit||2005-12-15|Mastersite disappeared misc/wmmand||2005-12-15|Mastersite disappeared misc/linux-edonkey-tool-list||2005-12-15|Mastersite disappeared misc/dog||2005-12-15|Mastersite disappeared diff --git a/misc/Makefile b/misc/Makefile index 1c069854983..6c0edc83124 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -20,6 +20,7 @@ SUBDIR += bb SUBDIR += bbjd SUBDIR += bdelta + SUBDIR += bestfit SUBDIR += bibletime SUBDIR += biblical-curse SUBDIR += bidwatcher diff --git a/misc/bestfit/Makefile b/misc/bestfit/Makefile new file mode 100644 index 00000000000..531cd82f6c9 --- /dev/null +++ b/misc/bestfit/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: bestfit-0.2.0 +# Date created: 09 Oct 2001 +# Whom: Steven Enderle <enderle@mdn.de> +# +# $FreeBSD$ +# + +PORTNAME= bestfit +PORTVERSION= 0.2.0 +CATEGORIES= misc +MASTER_SITES= http://oskarsapps.mine.nu/src/ \ + http://critical.ch/distfiles/ + +MAINTAINER= ehaupt@FreeBSD.org +COMMENT= Optimally choose files to be put on a CD (or other media) + +GNU_CONFIGURE= yes +MANCOMPRESSED= no + +MAN1= bestfit.1 +PLIST_FILES= bin/bestfit + +.include <bsd.port.mk> diff --git a/misc/bestfit/distinfo b/misc/bestfit/distinfo new file mode 100644 index 00000000000..ba80a897a46 --- /dev/null +++ b/misc/bestfit/distinfo @@ -0,0 +1,3 @@ +MD5 (bestfit-0.2.0.tar.gz) = 9549df4aaa20e624624409694940b35c +SHA256 (bestfit-0.2.0.tar.gz) = c9241ff88fca5816cf12fc1deafb7add25aae87609baeb567c50298c42e16f6f +SIZE (bestfit-0.2.0.tar.gz) = 76004 diff --git a/misc/bestfit/pkg-descr b/misc/bestfit/pkg-descr new file mode 100644 index 00000000000..5ccf3b03378 --- /dev/null +++ b/misc/bestfit/pkg-descr @@ -0,0 +1,8 @@ +Bestfit is a small program to determine which files that should be put +on a CD (or other media), so that as little space as possible is wasted. +It is very easy to use: you specify files on the command line, and +bestfit prints the names of those that were selected. Alternatively, +bestfit can execute a command for each selected file (eg. to move them +to a different directory). + +WWW: http://oskarsapps.mine.nu/bestfit.html |