summaryrefslogtreecommitdiff
path: root/misc/loop
diff options
context:
space:
mode:
Diffstat (limited to 'misc/loop')
-rw-r--r--misc/loop/Makefile18
-rw-r--r--misc/loop/distinfo2
-rw-r--r--misc/loop/files/patch-Makefile22
-rw-r--r--misc/loop/pkg-descr6
4 files changed, 0 insertions, 48 deletions
diff --git a/misc/loop/Makefile b/misc/loop/Makefile
deleted file mode 100644
index 99ab617bfd02..000000000000
--- a/misc/loop/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-# Created by: Murray Nesbitt <freebsd@nesbitt.ca>
-# $FreeBSD$
-
-PORTNAME= loop
-PORTVERSION= 1.0
-CATEGORIES= misc
-MASTER_SITES= http://www.nesbitt.ca/downloads/loop/
-
-MAINTAINER= freebsd@nesbitt.ca
-COMMENT= Prints to stdout a series of numbers from `start' to `end'
-
-BROKEN= unfetchable
-DEPRECATED= Broken for more than 6 months
-EXPIRATION_DATE= 2020-05-05
-
-PLIST_FILES= bin/loop man/man1/loop.1.gz
-
-.include <bsd.port.mk>
diff --git a/misc/loop/distinfo b/misc/loop/distinfo
deleted file mode 100644
index e6b0d4658f66..000000000000
--- a/misc/loop/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (loop-1.0.tar.gz) = 6cae60f7114f4d643ae6f2fa4a36e3ed96fa356dde22742d0969527f64a24b7f
-SIZE (loop-1.0.tar.gz) = 2007
diff --git a/misc/loop/files/patch-Makefile b/misc/loop/files/patch-Makefile
deleted file mode 100644
index e36c1e4e1cd8..000000000000
--- a/misc/loop/files/patch-Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
---- Makefile.orig 2005-11-02 16:44:21.000000000 +0800
-+++ Makefile 2014-06-19 23:50:39.847155161 +0800
-@@ -1,7 +1,7 @@
-
--CC = gcc
--CFLAGS = -Wall -O
--DESTDIR = /usr/local
-+CC ?= gcc
-+CFLAGS += -Wall
-+#DESTDIR = ${PREFIX}
-
- loop:
- ${CC} ${CFLAGS} -o loop loop.c
-@@ -17,6 +17,6 @@ clean:
- rm -f loop loop.1.gz
-
- install: loop man
-- install loop ${DESTDIR}/bin
-- install loop.1.gz $(DESTDIR)/man/man1
-+ install loop $(DESTDIR)${PREFIX}/bin
-+ install loop.1.gz $(DESTDIR)${PREFIX}/man/man1
-
diff --git a/misc/loop/pkg-descr b/misc/loop/pkg-descr
deleted file mode 100644
index da166bb5506a..000000000000
--- a/misc/loop/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-Prints to stdout a series of numbers from `start' to `end', with
-optional increment and zero-padded field width. Hex (-x) or octal
-(-o) output formats are available. Negative numbers are allowed,
-and a negative `increment' does the expected thing.
-
-WWW: http://www.nesbitt.ca/downloads/loop/