diff options
author | miwi <miwi@FreeBSD.org> | 2007-01-28 08:16:21 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-01-28 08:16:21 +0800 |
commit | a843ea579affda73eaa96f846a6d06c1e63af030 (patch) | |
tree | 8a8ff84a69ee9c993e908ed3ce1c57c8da78524c | |
parent | 115ae49c942f396a5b2d1d6bf395d81d8e539c95 (diff) | |
download | freebsd-ports-gnome-a843ea579affda73eaa96f846a6d06c1e63af030.tar.gz freebsd-ports-gnome-a843ea579affda73eaa96f846a6d06c1e63af030.tar.zst freebsd-ports-gnome-a843ea579affda73eaa96f846a6d06c1e63af030.zip |
A filter program, used to generate text to be
included into C code as #define, provides the conversion
of newlines and quotes into standard C-code text
WWW: http://www.lulli.net/frog/prjsynd.cgi?prj=toh
PR: ports/107691
Submitted by: Paolo Lulli
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/toh/Makefile | 20 | ||||
-rw-r--r-- | devel/toh/distinfo | 3 | ||||
-rw-r--r-- | devel/toh/pkg-descr | 6 |
4 files changed, 30 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 83ec6ad94b97..dc38c5d11fbe 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -2033,6 +2033,7 @@ SUBDIR += tla SUBDIR += tmake SUBDIR += tnt + SUBDIR += toh SUBDIR += towitoko SUBDIR += tpasm SUBDIR += tpg diff --git a/devel/toh/Makefile b/devel/toh/Makefile new file mode 100644 index 000000000000..a0d52c3c9a2a --- /dev/null +++ b/devel/toh/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: toh +# Date created: Sun, 7 Jan 2007 21:51:07 +0100 +# Whom: Paolo Lulli +# +# $FreeBSD$ +# + +PORTNAME= toh +PORTVERSION= 0.1 +CATEGORIES= devel +MASTER_SITES= http://www.lulli.net/prj/toh//dist/ + +MAINTAINER= paolo@lulli.net +COMMENT= Text to include + +GNU_CONFIGURE= yes + +PLIST_FILES= bin/toh + +.include <bsd.port.mk> diff --git a/devel/toh/distinfo b/devel/toh/distinfo new file mode 100644 index 000000000000..b3002637fca1 --- /dev/null +++ b/devel/toh/distinfo @@ -0,0 +1,3 @@ +MD5 (toh-0.1.tar.gz) = 423d1407effe1ea70a3227540d5ca860 +SHA256 (toh-0.1.tar.gz) = aaefad79fae6b3b6bc30ec875d9aeffa613d994909401a1f289c11a25343f683 +SIZE (toh-0.1.tar.gz) = 252814 diff --git a/devel/toh/pkg-descr b/devel/toh/pkg-descr new file mode 100644 index 000000000000..27a679ec440e --- /dev/null +++ b/devel/toh/pkg-descr @@ -0,0 +1,6 @@ +A filter program, used to generate text to be +included into C code as #define, provides the conversion +of newlines and quotes into standard C-code text + + +WWW: http://www.lulli.net/frog/prjsynd.cgi?prj=toh |