diff options
author | steve <steve@FreeBSD.org> | 1999-11-27 03:29:56 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-11-27 03:29:56 +0800 |
commit | aba537499ca2898e2bb1b8b255c318d49b05544b (patch) | |
tree | 0679d2d5422be9b411be02e29762a2e77bc5bd8d /www/gnuinfo/files | |
parent | 73150a096cebff4e4658ab25465bd4fa3a04755a (diff) | |
download | freebsd-ports-graphics-aba537499ca2898e2bb1b8b255c318d49b05544b.tar.gz freebsd-ports-graphics-aba537499ca2898e2bb1b8b255c318d49b05544b.tar.zst freebsd-ports-graphics-aba537499ca2898e2bb1b8b255c318d49b05544b.zip |
Initial import of gnuinfo version 1.3.
A CGI program to convert GNU .info files into html.
PR: 14311
Submitted by: Juergen Lock <nox@jelal.kn-bremen.de>
Diffstat (limited to 'www/gnuinfo/files')
-rw-r--r-- | www/gnuinfo/files/gnuinfo.X11R6 | 3 | ||||
-rw-r--r-- | www/gnuinfo/files/gnuinfo.local | 3 | ||||
-rw-r--r-- | www/gnuinfo/files/patch-aa | 24 |
3 files changed, 30 insertions, 0 deletions
diff --git a/www/gnuinfo/files/gnuinfo.X11R6 b/www/gnuinfo/files/gnuinfo.X11R6 new file mode 100644 index 00000000000..3e5a5c75a83 --- /dev/null +++ b/www/gnuinfo/files/gnuinfo.X11R6 @@ -0,0 +1,3 @@ +#! /bin/sh +export INFOPATH=/usr/X11R6/info:/usr/share/info:/usr/local/info +exec ${SCRIPT_FILENAME%/*}/gnuinfo diff --git a/www/gnuinfo/files/gnuinfo.local b/www/gnuinfo/files/gnuinfo.local new file mode 100644 index 00000000000..4b8e131eb5d --- /dev/null +++ b/www/gnuinfo/files/gnuinfo.local @@ -0,0 +1,3 @@ +#! /bin/sh +export INFOPATH=/usr/local/info:/usr/share/info:/usr/X11R6/info +exec ${SCRIPT_FILENAME%/*}/gnuinfo diff --git a/www/gnuinfo/files/patch-aa b/www/gnuinfo/files/patch-aa new file mode 100644 index 00000000000..ca79c60c9f2 --- /dev/null +++ b/www/gnuinfo/files/patch-aa @@ -0,0 +1,24 @@ +Index: Makefile +@@ -1,9 +1,10 @@ + +-INFO_DIRS=\"/usr/info\" ++INFO_DIRS=\"/usr/share/info:/usr/local/info:/usr/X11R6/info\" + GZIP=\"/usr/bin/gzip\" + +-CC=gcc +-CFLAGS=-g -Wall -ansi -pedantic -O2 -DINFODIRS=$(INFO_DIRS) -DGZIP=$(GZIP) ++#CC=gcc ++#CFLAGS=-g -Wall -ansi -pedantic -O2 -DINFODIRS=$(INFO_DIRS) -DGZIP=$(GZIP) ++CFLAGS+=-Wall -ansi -pedantic -DINFODIRS=$(INFO_DIRS) -DGZIP=$(GZIP) + + VERSION=1.3 + OBJS=info2html.o convert.o +@@ -18,7 +19,7 @@ + convert.o: convert.c info2html.h + + convert.c: convert.lex +- flex -t convert.lex > convert.c ++ lex -t convert.lex > convert.c + + + install: gnuinfo |