diff options
Diffstat (limited to 'misc/display')
-rw-r--r-- | misc/display/Makefile | 37 | ||||
-rw-r--r-- | misc/display/distinfo | 2 | ||||
-rw-r--r-- | misc/display/files/patch-Makefile.in | 30 | ||||
-rw-r--r-- | misc/display/files/patch-display.c | 51 | ||||
-rw-r--r-- | misc/display/pkg-descr | 7 |
5 files changed, 0 insertions, 127 deletions
diff --git a/misc/display/Makefile b/misc/display/Makefile deleted file mode 100644 index b20537d5a251..000000000000 --- a/misc/display/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# Created by: Stephen J. Roznowski <sjr@home.net> -# $FreeBSD$ - -PORTNAME= display -PORTVERSION= 1.2a -CATEGORIES= misc -MASTER_SITES= http://www.ipsmart.com/src/ -EXTRACT_SUFX= .tgz - -MAINTAINER= sjroz@verizon.net -COMMENT= Runs command repeatedly; shows output - -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2020-05-05 - -USES= ncurses -GNU_CONFIGURE= yes - -DISPLAY_PROGRAM_PREFIX?= - -.if empty(DISPLAY_PROGRAM_PREFIX) -pre-everything:: - @${ECHO_MSG} "NOTE: You may set DISPLAY_PROGRAM_PREFIX to change the name of the 'display'" - @${ECHO_MSG} "utility so that it does not conflict with similarly named files from" - @${ECHO_MSG} "the ImageMagick and goblin ports." - -CONFLICTS= ImageMagick-[0-9]* goblin-* -.endif - -PLIST_FILES= bin/${DISPLAY_PROGRAM_PREFIX}display man/man1/${DISPLAY_PROGRAM_PREFIX}display.1.gz - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/display ${STAGEDIR}${PREFIX}/bin/${DISPLAY_PROGRAM_PREFIX}display - ${INSTALL_MAN} ${WRKSRC}/display.man ${STAGEDIR}${MANPREFIX}/man/man1/${DISPLAY_PROGRAM_PREFIX}display.1 - -.include <bsd.port.mk> diff --git a/misc/display/distinfo b/misc/display/distinfo deleted file mode 100644 index 38ea87caa139..000000000000 --- a/misc/display/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (display-1.2a.tgz) = 14fe882abff0425d9bd4042894923d027088797667fbb6b905f868a396f39b60 -SIZE (display-1.2a.tgz) = 29636 diff --git a/misc/display/files/patch-Makefile.in b/misc/display/files/patch-Makefile.in deleted file mode 100644 index 4888b3600a14..000000000000 --- a/misc/display/files/patch-Makefile.in +++ /dev/null @@ -1,30 +0,0 @@ ---- Makefile.in.orig Wed Dec 14 05:50:47 2005 -+++ Makefile.in Thu Dec 15 14:49:37 2005 -@@ -2,10 +2,14 @@ - # vix 15dec86 [stolen from 'which'] - - # start changing --CFLAGS = -O --DEST_DIR = /usr/local/bin -+prefix = @prefix@ -+exec_prefix = @exec_prefix@ -+CFLAGS = @CFLAGS@ -+LDFLAGS = @LDFLAGS@ -+CC = @CC@ -+DEST_DIR = @bindir@ - CURSES_LIBS = -lncurses --MAN_DIR = /usr/local/man/man1 -+MAN_DIR = @mandir@/man1 - MAN_SUFFIX = 1 - SHAR_ARGS = -b -c -v - # stop changing -@@ -16,8 +20,7 @@ - all : display - - display : display.c -- cc $(CFLAGS) -o $@ display.c $(CURSES_LIBS) -- strip display -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ display.c $(CURSES_LIBS) - - install : all - mv display $(DEST_DIR) diff --git a/misc/display/files/patch-display.c b/misc/display/files/patch-display.c deleted file mode 100644 index f19be20822fa..000000000000 --- a/misc/display/files/patch-display.c +++ /dev/null @@ -1,51 +0,0 @@ ---- ./display.c.orig 2005-12-14 04:40:15.000000000 +0100 -+++ ./display.c 2014-03-20 01:01:07.000000000 +0100 -@@ -12,6 +12,10 @@ - #include <signal.h> - #include <ctype.h> - #include <time.h> -+#include <stdio.h> -+#include <unistd.h> -+#include <stdlib.h> -+#include <string.h> - - #define DEFAULT_DELAY 5 - #define DISPLAY_VERSION "1.2" -@@ -19,17 +23,16 @@ - static char *Command; - static int Delay; - -+static void die(), display(), parse_args(), usage(); -+ - char lt[128]; - int ntimes; - --main(argc, argv) -+int main(argc, argv) - int argc; - char *argv[]; - { - int i, c; -- extern void parse_args(), -- die(), -- display(); - - for(i = 0; i < 128; i++) - { -@@ -90,7 +93,7 @@ - - void display() - { -- FILE *fp, *popen(); -+ FILE *fp; - int ch; - char *dt; - time_t tnow; -@@ -133,7 +136,6 @@ - int argc; - char *argv[]; - { -- extern void usage(); - auto int argn, - delay_found; - diff --git a/misc/display/pkg-descr b/misc/display/pkg-descr deleted file mode 100644 index 1a4b95ffbb03..000000000000 --- a/misc/display/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Display runs a specified command over and over, printing the output -through curses(3X). The command can be compound and the delay -between executions is settable on the command line. The output -from the command had better fit on a single screen, of course. - -This can conflict with the application of the same name from the -graphics/ImageMagick port/package. |