diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-11-16 03:46:52 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-11-16 03:46:52 +0000 |
commit | 9eaccc7883371a564b0f92fdf87b5bd8ebf8f7d2 (patch) | |
tree | d04dbbfdbc733c07ccaf1b6cb85a4c4555987982 | |
parent | 9dda4cb85ddddb5f879c786540a6e47f4cccb696 (diff) | |
download | FreeBSD-ports-9eaccc7883371a564b0f92fdf87b5bd8ebf8f7d2.zip FreeBSD-ports-9eaccc7883371a564b0f92fdf87b5bd8ebf8f7d2.tar.gz |
add cwtext
Morse Code Generator
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/cwtext/Makefile | 30 | ||||
-rw-r--r-- | textproc/cwtext/distinfo | 1 | ||||
-rw-r--r-- | textproc/cwtext/pkg-comment | 1 | ||||
-rw-r--r-- | textproc/cwtext/pkg-descr | 16 | ||||
-rw-r--r-- | textproc/cwtext/pkg-plist | 2 |
6 files changed, 51 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index bebcb7c..c5b1b0d 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -19,6 +19,7 @@ SUBDIR += cole SUBDIR += cost SUBDIR += crimson + SUBDIR += cwtext SUBDIR += dadadodo SUBDIR += dico SUBDIR += dict diff --git a/textproc/cwtext/Makefile b/textproc/cwtext/Makefile new file mode 100644 index 0000000..5fb947a1 --- /dev/null +++ b/textproc/cwtext/Makefile @@ -0,0 +1,30 @@ +# ex:ts=8 +# New ports collection makefile for: cwtext +# Date created: Nov 16, 2001 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= cwtext +PORTVERSION= 0.90 +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org + +USE_GMAKE= yes +MAKEFILE= makefile +ALL_TARGET= ALL + +post-patch: + @${PERL} -pi -e "s,^PREFIX,#PREFIX,g ; \ + s,gcc,${CC} ${CFLAGS},g" ${WRKSRC}/${MAKEFILE} + +do-install: +.for file in cwpcm cwtext + ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin +.endfor + +.include <bsd.port.mk> diff --git a/textproc/cwtext/distinfo b/textproc/cwtext/distinfo new file mode 100644 index 0000000..a77fc31 --- /dev/null +++ b/textproc/cwtext/distinfo @@ -0,0 +1 @@ +MD5 (cwtext-0.90.tar.gz) = 15257a2e570d4c4d8eea6a9be3170724 diff --git a/textproc/cwtext/pkg-comment b/textproc/cwtext/pkg-comment new file mode 100644 index 0000000..6af1a1f --- /dev/null +++ b/textproc/cwtext/pkg-comment @@ -0,0 +1 @@ +Morse Code Generator diff --git a/textproc/cwtext/pkg-descr b/textproc/cwtext/pkg-descr new file mode 100644 index 0000000..b402065 --- /dev/null +++ b/textproc/cwtext/pkg-descr @@ -0,0 +1,16 @@ +About the project + +We plan to build a program that will accept ASCII text as input and generate +International Morse Code as output. The output formats can be: + + - . -..- - (text) on the console + Raw audio on /dev/audio (8bit PCM data) + .wav files + .ogg or (proprietary format) compressed audio + +International Morse Code + +Supported character set includes [A-Za-z] (all downcased as Morse is not case +sensitive), [0-9], ",-.?/" plus a few procedural characters (SK, AR, BT etc). + +WWW: http://cwtext.sourceforge.net/ diff --git a/textproc/cwtext/pkg-plist b/textproc/cwtext/pkg-plist new file mode 100644 index 0000000..a8a254e --- /dev/null +++ b/textproc/cwtext/pkg-plist @@ -0,0 +1,2 @@ +bin/cwpcm +bin/cwtext |