summaryrefslogtreecommitdiff
path: root/misc/loop
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-11-12 11:55:10 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-11-12 11:55:10 +0000
commit38f074d320f271fb5b15d85bf078f25acbeb963b (patch)
tree404a14560bd5d8302dd80df4e15b24d33653d7de /misc/loop
parentSud is a daemon to execute interactive and non-interactive processes with (diff)
A shell programming utility that prints to stdout a series of numbers from
`start' to `end' PR: ports/88391 Submitted by: Murray Nesbitt <freebsd@nesbitt.ca>
Notes
Notes: svn path=/head/; revision=148022
Diffstat (limited to 'misc/loop')
-rw-r--r--misc/loop/Makefile20
-rw-r--r--misc/loop/distinfo3
-rw-r--r--misc/loop/files/patch-Makefile13
-rw-r--r--misc/loop/pkg-descr6
4 files changed, 42 insertions, 0 deletions
diff --git a/misc/loop/Makefile b/misc/loop/Makefile
new file mode 100644
index 000000000000..ef5dacde0f6f
--- /dev/null
+++ b/misc/loop/Makefile
@@ -0,0 +1,20 @@
+# New ports collection makefile for: loop
+# Date created: 12 November 2005
+# Whom: 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'
+
+MAN1= loop.1
+MANCOMPRESSED= yes
+PLIST_FILES= bin/loop
+
+.include <bsd.port.mk>
diff --git a/misc/loop/distinfo b/misc/loop/distinfo
new file mode 100644
index 000000000000..f3c77fa7b75e
--- /dev/null
+++ b/misc/loop/distinfo
@@ -0,0 +1,3 @@
+MD5 (loop-1.0.tar.gz) = 4655feb51abfb082a06035a3e7e36d4a
+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
new file mode 100644
index 000000000000..419b416632e0
--- /dev/null
+++ b/misc/loop/files/patch-Makefile
@@ -0,0 +1,13 @@
+--- Makefile.orig Wed Nov 2 01:23:17 2005
++++ Makefile Wed Nov 2 01:18:17 2005
+@@ -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
diff --git a/misc/loop/pkg-descr b/misc/loop/pkg-descr
new file mode 100644
index 000000000000..da166bb5506a
--- /dev/null
+++ b/misc/loop/pkg-descr
@@ -0,0 +1,6 @@
+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/