diff options
author | lioux <lioux@FreeBSD.org> | 2001-08-08 06:52:42 +0000 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2001-08-08 06:52:42 +0000 |
commit | adbdc766081e0b16234a6d9608a97b6fc698811c (patch) | |
tree | 56e56f09bea0c108e89c69dd83fe32a696a2ee25 | |
parent | 669017d76436b42a4a017ba841cb9343d792bf4a (diff) | |
download | FreeBSD-ports-adbdc766081e0b16234a6d9608a97b6fc698811c.zip FreeBSD-ports-adbdc766081e0b16234a6d9608a97b6fc698811c.tar.gz |
New port reed version 4.6: A text pager with autoscrolling and more
PR: 29533
Submitted by: Pete Fritchman <petef@databits.net>
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/reed/Makefile | 29 | ||||
-rw-r--r-- | misc/reed/distinfo | 1 | ||||
-rw-r--r-- | misc/reed/files/patch-src::reed.h | 10 | ||||
-rw-r--r-- | misc/reed/pkg-comment | 1 | ||||
-rw-r--r-- | misc/reed/pkg-descr | 10 | ||||
-rw-r--r-- | misc/reed/pkg-plist | 3 | ||||
-rw-r--r-- | sysutils/reed/Makefile | 29 | ||||
-rw-r--r-- | sysutils/reed/distinfo | 1 | ||||
-rw-r--r-- | sysutils/reed/files/patch-src::reed.h | 10 | ||||
-rw-r--r-- | sysutils/reed/pkg-comment | 1 | ||||
-rw-r--r-- | sysutils/reed/pkg-descr | 10 | ||||
-rw-r--r-- | sysutils/reed/pkg-plist | 3 |
13 files changed, 109 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index d6c92c1..7a15a1c 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -144,6 +144,7 @@ SUBDIR += qlas SUBDIR += quotes SUBDIR += quranref + SUBDIR += reed SUBDIR += rfc SUBDIR += rname SUBDIR += rtfm diff --git a/misc/reed/Makefile b/misc/reed/Makefile new file mode 100644 index 0000000..60463f1 --- /dev/null +++ b/misc/reed/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: reed +# Date created: 7 August 2001 +# Whom: Pete Fritchman <petef@databits.net> +# +# $FreeBSD$ +# + +PORTNAME= reed +PORTVERSION= 4.6 +CATEGORIES= misc +MASTER_SITES= http://www.sacredchao.net/software/reed/ + +MAINTAINER= petef@databits.net + +LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt + +GNU_CONFIGURE= yes +USE_GMAKE= yes +MAKE_ARGS= CFLAGS="-I${LOCALBASE}/include ${CFLAGS}" + +post-patch: + @${PERL} -pi -e 's!sys/dir.h!dirent.h!g' ${WRKSRC}/configure \ + ${WRKSRC}/src/reed.h + @${PERL} -pi -e 's!-O3!!' ${WRKSRC}/configure + @${PERL} -pi -e 's!CFLAGS =!CFLAGS +=!' ${WRKSRC}/src/Makefile.in + +MAN1= breed.1 reed.1 wrap.1 + +.include <bsd.port.mk> diff --git a/misc/reed/distinfo b/misc/reed/distinfo new file mode 100644 index 0000000..5e5b316 --- /dev/null +++ b/misc/reed/distinfo @@ -0,0 +1 @@ +MD5 (reed-4.6.tar.gz) = 99534e8c2532de28437f5284a0056bea diff --git a/misc/reed/files/patch-src::reed.h b/misc/reed/files/patch-src::reed.h new file mode 100644 index 0000000..ceb7c2f --- /dev/null +++ b/misc/reed/files/patch-src::reed.h @@ -0,0 +1,10 @@ +--- src/reed.h.orig Thu Nov 30 19:09:49 2000 ++++ src/reed.h Tue Aug 7 23:14:10 2001 +@@ -19,6 +19,7 @@ + #include <string.h> + #include <sys/types.h> + #include <sys/stat.h> ++#include <sys/syslimits.h> + #include <sys/dir.h> + #include <regex.h> + #include <pwd.h> diff --git a/misc/reed/pkg-comment b/misc/reed/pkg-comment new file mode 100644 index 0000000..d1ab88c --- /dev/null +++ b/misc/reed/pkg-comment @@ -0,0 +1 @@ +A text pager with autoscrolling and more diff --git a/misc/reed/pkg-descr b/misc/reed/pkg-descr new file mode 100644 index 0000000..4b95185 --- /dev/null +++ b/misc/reed/pkg-descr @@ -0,0 +1,10 @@ +reed is a text pager for reading large files, such as full books +(usually etexts from Project Gutenberg). It has the features one +would expect for a pager (multiple buffers, searching, file +information, subshells, etc) and more: persistent bookmarks, auto +scrolling, and support for many different types of files. + +WWW: http://www.sacredchao.net/software/reed/ + +- Pete +petef@databits.net diff --git a/misc/reed/pkg-plist b/misc/reed/pkg-plist new file mode 100644 index 0000000..0fbfaa2 --- /dev/null +++ b/misc/reed/pkg-plist @@ -0,0 +1,3 @@ +bin/breed +bin/reed +bin/wrap diff --git a/sysutils/reed/Makefile b/sysutils/reed/Makefile new file mode 100644 index 0000000..60463f1 --- /dev/null +++ b/sysutils/reed/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: reed +# Date created: 7 August 2001 +# Whom: Pete Fritchman <petef@databits.net> +# +# $FreeBSD$ +# + +PORTNAME= reed +PORTVERSION= 4.6 +CATEGORIES= misc +MASTER_SITES= http://www.sacredchao.net/software/reed/ + +MAINTAINER= petef@databits.net + +LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt + +GNU_CONFIGURE= yes +USE_GMAKE= yes +MAKE_ARGS= CFLAGS="-I${LOCALBASE}/include ${CFLAGS}" + +post-patch: + @${PERL} -pi -e 's!sys/dir.h!dirent.h!g' ${WRKSRC}/configure \ + ${WRKSRC}/src/reed.h + @${PERL} -pi -e 's!-O3!!' ${WRKSRC}/configure + @${PERL} -pi -e 's!CFLAGS =!CFLAGS +=!' ${WRKSRC}/src/Makefile.in + +MAN1= breed.1 reed.1 wrap.1 + +.include <bsd.port.mk> diff --git a/sysutils/reed/distinfo b/sysutils/reed/distinfo new file mode 100644 index 0000000..5e5b316 --- /dev/null +++ b/sysutils/reed/distinfo @@ -0,0 +1 @@ +MD5 (reed-4.6.tar.gz) = 99534e8c2532de28437f5284a0056bea diff --git a/sysutils/reed/files/patch-src::reed.h b/sysutils/reed/files/patch-src::reed.h new file mode 100644 index 0000000..ceb7c2f --- /dev/null +++ b/sysutils/reed/files/patch-src::reed.h @@ -0,0 +1,10 @@ +--- src/reed.h.orig Thu Nov 30 19:09:49 2000 ++++ src/reed.h Tue Aug 7 23:14:10 2001 +@@ -19,6 +19,7 @@ + #include <string.h> + #include <sys/types.h> + #include <sys/stat.h> ++#include <sys/syslimits.h> + #include <sys/dir.h> + #include <regex.h> + #include <pwd.h> diff --git a/sysutils/reed/pkg-comment b/sysutils/reed/pkg-comment new file mode 100644 index 0000000..d1ab88c --- /dev/null +++ b/sysutils/reed/pkg-comment @@ -0,0 +1 @@ +A text pager with autoscrolling and more diff --git a/sysutils/reed/pkg-descr b/sysutils/reed/pkg-descr new file mode 100644 index 0000000..4b95185 --- /dev/null +++ b/sysutils/reed/pkg-descr @@ -0,0 +1,10 @@ +reed is a text pager for reading large files, such as full books +(usually etexts from Project Gutenberg). It has the features one +would expect for a pager (multiple buffers, searching, file +information, subshells, etc) and more: persistent bookmarks, auto +scrolling, and support for many different types of files. + +WWW: http://www.sacredchao.net/software/reed/ + +- Pete +petef@databits.net diff --git a/sysutils/reed/pkg-plist b/sysutils/reed/pkg-plist new file mode 100644 index 0000000..0fbfaa2 --- /dev/null +++ b/sysutils/reed/pkg-plist @@ -0,0 +1,3 @@ +bin/breed +bin/reed +bin/wrap |