diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-03-05 12:45:54 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-03-05 12:45:54 +0800 |
commit | c6e87a80ba0df31f1af0900fb07fca395638aa20 (patch) | |
tree | 81e0e40e6a5af49324663adcb56e1f926914307e /lang | |
parent | 80da2d188c6986c6d88d04b193e14c5a231bace0 (diff) | |
download | freebsd-ports-gnome-c6e87a80ba0df31f1af0900fb07fca395638aa20.tar.gz freebsd-ports-gnome-c6e87a80ba0df31f1af0900fb07fca395638aa20.tar.zst freebsd-ports-gnome-c6e87a80ba0df31f1af0900fb07fca395638aa20.zip |
add rotfl, a simple text-formatting language
Diffstat (limited to 'lang')
-rw-r--r-- | lang/Makefile | 1 | ||||
-rw-r--r-- | lang/rotfl/Makefile | 36 | ||||
-rw-r--r-- | lang/rotfl/distinfo | 1 | ||||
-rw-r--r-- | lang/rotfl/pkg-comment | 1 | ||||
-rw-r--r-- | lang/rotfl/pkg-descr | 9 | ||||
-rw-r--r-- | lang/rotfl/pkg-plist | 10 |
6 files changed, 58 insertions, 0 deletions
diff --git a/lang/Makefile b/lang/Makefile index 6ae95e029b2a..a9dfc2d5632a 100644 --- a/lang/Makefile +++ b/lang/Makefile @@ -104,6 +104,7 @@ SUBDIR += python15 SUBDIR += ratfor SUBDIR += rexx-imc + SUBDIR += rotfl SUBDIR += ruby SUBDIR += ruby-man SUBDIR += ruby-perl diff --git a/lang/rotfl/Makefile b/lang/rotfl/Makefile new file mode 100644 index 000000000000..69b072b463bc --- /dev/null +++ b/lang/rotfl/Makefile @@ -0,0 +1,36 @@ +# ex:ts=8 +# New ports collection makefile for: rotfl +# Date created: Mar 5, 2001 +# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= rotfl +PORTVERSION= 0.6.4 +CATEGORIES= lang +MASTER_SITES= http://www.bangmoney.org/projects/rotfl/ \ + ftp://ftp.bangmoney.org/pub/rotfl/ + +MAINTAINER= ijliao@FreeBSD.org + +RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Term/ReadKey.pm:${PORTSDIR}/devel/p5-Term-ReadKey + +USE_PERL5= yes +NO_BUILD= yes + +MAN1= rotfl.1 + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/rotfl ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MAN1PREFIX}/man/man1 + @${MKDIR} ${PREFIX}/share/rotfl + ${CP} -R ${WRKSRC}/examples ${PREFIX}/share/rotfl/ +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/rotfl/docs +.for file in HOWTO README + ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/rotfl/docs +.endfor +.endif + +.include <bsd.port.mk> diff --git a/lang/rotfl/distinfo b/lang/rotfl/distinfo new file mode 100644 index 000000000000..f9112c648ccd --- /dev/null +++ b/lang/rotfl/distinfo @@ -0,0 +1 @@ +MD5 (rotfl-0.6.4.tar.gz) = c0cca2d10dfdff8e8e2d05e682e21a84 diff --git a/lang/rotfl/pkg-comment b/lang/rotfl/pkg-comment new file mode 100644 index 000000000000..662b085a6113 --- /dev/null +++ b/lang/rotfl/pkg-comment @@ -0,0 +1 @@ +rotfl is a simple text-formatting language diff --git a/lang/rotfl/pkg-descr b/lang/rotfl/pkg-descr new file mode 100644 index 000000000000..33072d9c7853 --- /dev/null +++ b/lang/rotfl/pkg-descr @@ -0,0 +1,9 @@ +rotfl is a simple text-formatting language. It's similar in function +to TeX, HTML, nroff/groff, Postscript, etc. However, it's far less +complicated than any of those. I made is simple because I didn't want +to learn a complicated text formatting language, yet needed to format +some stuff for use on my server. If you are looking to create some +nicely formatted text without having to learn a complicated language, +then rotfl is perfect for you. + +WWW: http://www.bangmoney.org/projects/rotfl/ diff --git a/lang/rotfl/pkg-plist b/lang/rotfl/pkg-plist new file mode 100644 index 000000000000..6c229fa7a5cf --- /dev/null +++ b/lang/rotfl/pkg-plist @@ -0,0 +1,10 @@ +bin/rotfl +share/rotfl/examples/justify.rot +share/rotfl/examples/list.rot +share/rotfl/examples/many-records.rot +share/rotfl/examples/misc.rot +@dirrm share/rotfl/examples +%%PORTDOCS%%share/rotfl/docs/HOWTO +%%PORTDOCS%%share/rotfl/docs/README +%%PORTDOCS%%@dirrm share/rotfl/docs +@dirrm share/rotfl |