summaryrefslogtreecommitdiff
path: root/textproc/rot
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/rot')
-rw-r--r--textproc/rot/Makefile30
-rw-r--r--textproc/rot/distinfo2
-rw-r--r--textproc/rot/files/patch-rot.c27
-rw-r--r--textproc/rot/pkg-descr2
4 files changed, 0 insertions, 61 deletions
diff --git a/textproc/rot/Makefile b/textproc/rot/Makefile
deleted file mode 100644
index b103f2565917..000000000000
--- a/textproc/rot/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-# Created by: ijliao
-# $FreeBSD$
-
-PORTNAME= rot
-PORTVERSION= 1.2
-CATEGORIES= textproc
-MASTER_SITES= http://www.xs4all.nl/~henkoers/
-DISTNAME= ${PORTNAME}
-EXTRACT_SUFX= .tar.Z
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Rotates a file so that lines become columns and vice versa
-
-BROKEN= unfetchable
-DEPRECATED= Unfetchable, unmaintained
-EXPIRATION_DATE= 2019-10-16
-
-ALL_TARGET= ${PORTNAME}
-CFLAGS+= -Wno-return-type
-
-PLIST_FILES= bin/rot man/man1/rot.1.gz
-
-post-patch:
- @${REINPLACE_CMD} "s:^CFLAGS=:#CFLAGS=:" ${WRKSRC}/Makefile
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/rot ${STAGEDIR}${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/rot.man ${STAGEDIR}${MAN1PREFIX}/man/man1/rot.1
-
-.include <bsd.port.mk>
diff --git a/textproc/rot/distinfo b/textproc/rot/distinfo
deleted file mode 100644
index b8ee5d2c2cb1..000000000000
--- a/textproc/rot/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (rot.tar.Z) = 12471f39805f0e4706d62233e5784f04367f8cac01f5779a29f2bc608714e208
-SIZE (rot.tar.Z) = 9807
diff --git a/textproc/rot/files/patch-rot.c b/textproc/rot/files/patch-rot.c
deleted file mode 100644
index 1d0025fa9c54..000000000000
--- a/textproc/rot/files/patch-rot.c
+++ /dev/null
@@ -1,27 +0,0 @@
---- rot.c.orig 1989-03-05 02:11:02.000000000 +0100
-+++ rot.c 2013-06-14 00:36:58.068387596 +0200
-@@ -244,10 +244,10 @@
- if (i2 >= 0L)
- {
- if (seekinput (sum + z + col, 1) == -1)
-- return;
-+ return 0;
-
- if ((c = getinput()) == EOF)
-- return; /* end of input */
-+ return 0; /* end of input */
-
- if (c == ' ' && !bflag)
- holdbl++;
-@@ -292,9 +292,9 @@
- if (i2 > 0L)
- {
- if (seekinput (- (sum + z + 2L), 1) == -1)
-- return;
-+ return 0;
- if ((c = getinput()) == EOF)
-- return; /* end of input */
-+ return 0; /* end of input */
-
- if (c == ' ' && !bflag)
- holdbl++;
diff --git a/textproc/rot/pkg-descr b/textproc/rot/pkg-descr
deleted file mode 100644
index 72edf668ff88..000000000000
--- a/textproc/rot/pkg-descr
+++ /dev/null
@@ -1,2 +0,0 @@
-Rot rotates a file so that lines become columns and vice versa. This allows
-line-oriented Unix filters like grep to operate on columns instead.