1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

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
This commit is contained in:
Greg Larkin 2010-01-05 20:02:37 +00:00
parent e350196de9
commit 853c0e778f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=247225
4 changed files with 51 additions and 0 deletions

View File

@ -610,6 +610,7 @@
SUBDIR += plconfig
SUBDIR += plod
SUBDIR += pmap
SUBDIR += pmt
SUBDIR += policykit
SUBDIR += policykit-gnome
SUBDIR += policykit-qt

25
sysutils/pmt/Makefile Normal file
View File

@ -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>

3
sysutils/pmt/distinfo Normal file
View File

@ -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

22
sysutils/pmt/pkg-descr Normal file
View File

@ -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