diff options
author | glarkin <glarkin@FreeBSD.org> | 2010-01-06 04:02:37 +0800 |
---|---|---|
committer | glarkin <glarkin@FreeBSD.org> | 2010-01-06 04:02:37 +0800 |
commit | 423e82b285d2e0ccb81ca712074180b37bb8c5ae (patch) | |
tree | b1c181b8825e93b7b8e2483b1a151de04eaca6fc /sysutils | |
parent | c4beb33bf287d72c27fa120e43836de04beb7371 (diff) | |
download | freebsd-ports-gnome-423e82b285d2e0ccb81ca712074180b37bb8c5ae.tar.gz freebsd-ports-gnome-423e82b285d2e0ccb81ca712074180b37bb8c5ae.tar.zst freebsd-ports-gnome-423e82b285d2e0ccb81ca712074180b37bb8c5ae.zip |
The Pipe Magic Tools (PMT) are a small collection of filters which
can be added to UNIX pipes. The filters include:
speed
Measures the speed of the data flowing through the pipe
throttle
Controls the speed of the data flowing through the pipe
rot13
The famous rot13 algorithm
rot47
The not-so-famous rot47 algorithm
tolower
Converts all alphabetic characters to lower case
toupper
Converts all alphabetic characters to upper case
WWW: http://hansmi.ch/software/pipe-magic-tools
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/pmt/Makefile | 25 | ||||
-rw-r--r-- | sysutils/pmt/distinfo | 3 | ||||
-rw-r--r-- | sysutils/pmt/pkg-descr | 22 |
4 files changed, 51 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 866dbbbb7398..aae42a4d4dd9 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -610,6 +610,7 @@ SUBDIR += plconfig SUBDIR += plod SUBDIR += pmap + SUBDIR += pmt SUBDIR += policykit SUBDIR += policykit-gnome SUBDIR += policykit-qt diff --git a/sysutils/pmt/Makefile b/sysutils/pmt/Makefile new file mode 100644 index 000000000000..3f7859a60a72 --- /dev/null +++ b/sysutils/pmt/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: pmt +# Date created: 2010-01-05 +# Whom: Greg Larkin <glarkin@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= pmt +PORTVERSION= 0.2 +CATEGORIES= sysutils +MASTER_SITES= http://hansmi.ch/download/pmt/ \ + LOCAL/glarkin + +MAINTAINER= glarkin@FreeBSD.org +COMMENT= A small collection of filters which can be added to UNIX pipes + +USE_BZIP2= yes +USE_GMAKE= yes + +PLIST_FILES= bin/pmt + +do-install: + @${CP} ${WRKSRC}/pmt ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/sysutils/pmt/distinfo b/sysutils/pmt/distinfo new file mode 100644 index 000000000000..dbf250c8b2bd --- /dev/null +++ b/sysutils/pmt/distinfo @@ -0,0 +1,3 @@ +MD5 (pmt-0.2.tar.bz2) = 0a1d005f853ae403e60a618eeda83729 +SHA256 (pmt-0.2.tar.bz2) = 8a07f9708bc11e96896c0875e521641e2e844e3d495b3309ba38a8b8aa841246 +SIZE (pmt-0.2.tar.bz2) = 6810 diff --git a/sysutils/pmt/pkg-descr b/sysutils/pmt/pkg-descr new file mode 100644 index 000000000000..428f16422a68 --- /dev/null +++ b/sysutils/pmt/pkg-descr @@ -0,0 +1,22 @@ +The Pipe Magic Tools (PMT) are a small collection of filters which +can be added to UNIX pipes. The filters include: + +speed + Measures the speed of the data flowing through the pipe + +throttle + Controls the speed of the data flowing through the pipe + +rot13 + The famous rot13 algorithm + +rot47 + The not-so-famous rot47 algorithm + +tolower + Converts all alphabetic characters to lower case + +toupper + Converts all alphabetic characters to upper case + +WWW: http://hansmi.ch/software/pipe-magic-tools |