pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/x11/xrootconsole xrootconsole is a small utility which...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5fd6f510e79c
branches:  trunk
changeset: 650301:5fd6f510e79c
user:      cheusov <cheusov%pkgsrc.org@localhost>
date:      Mon Apr 20 20:21:32 2015 +0000

description:
xrootconsole is a small utility which displays its input in a transparent
text box on X's root window.  It will read from any file listed on the
command line or, by default, from stdin.  It is most useful when it reads
from a FIFO; this allows you to redirect multiple commands to the FIFO
and monitor their output.

diffstat:

 x11/xrootconsole/DESCR            |   5 ++++
 x11/xrootconsole/Makefile         |  18 +++++++++++++++
 x11/xrootconsole/PLIST            |   3 ++
 x11/xrootconsole/TODO             |   1 +
 x11/xrootconsole/distinfo         |   6 +++++
 x11/xrootconsole/patches/patch-aa |  45 +++++++++++++++++++++++++++++++++++++++
 6 files changed, 78 insertions(+), 0 deletions(-)

diffs (102 lines):

diff -r 108375972959 -r 5fd6f510e79c x11/xrootconsole/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/xrootconsole/DESCR    Mon Apr 20 20:21:32 2015 +0000
@@ -0,0 +1,5 @@
+xrootconsole is a small utility which displays its input in a transparent
+text box on X's root window.  It will read from any file listed on the
+command line or, by default, from stdin.  It is most useful when it reads
+from a FIFO; this allows you to redirect multiple commands to the FIFO
+and monitor their output.
diff -r 108375972959 -r 5fd6f510e79c x11/xrootconsole/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/xrootconsole/Makefile Mon Apr 20 20:21:32 2015 +0000
@@ -0,0 +1,18 @@
+# $NetBSD: Makefile,v 1.1.1.1 2015/04/20 20:21:32 cheusov Exp $
+
+DISTNAME=      xrootconsole-0.6
+PKGREVISION=   2
+CATEGORIES=    x11
+MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=xrootconsole/}
+
+MAINTAINER=    inittab%unixdev.net@localhost
+HOMEPAGE=      http://xrootconsole.sourceforge.net/
+COMMENT=       Windowless XConsole
+LICENSE=       gnu-gpl-v2
+
+USE_TOOLS+=            gmake
+
+INSTALLATION_DIRS=     bin ${PKGMANDIR}/man1
+
+.include "../../x11/libX11/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 108375972959 -r 5fd6f510e79c x11/xrootconsole/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/xrootconsole/PLIST    Mon Apr 20 20:21:32 2015 +0000
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2015/04/20 20:21:32 cheusov Exp $
+bin/xrootconsole
+man/man1/xrootconsole.1
diff -r 108375972959 -r 5fd6f510e79c x11/xrootconsole/TODO
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/xrootconsole/TODO     Mon Apr 20 20:21:32 2015 +0000
@@ -0,0 +1,1 @@
+Done
diff -r 108375972959 -r 5fd6f510e79c x11/xrootconsole/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/xrootconsole/distinfo Mon Apr 20 20:21:32 2015 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2015/04/20 20:21:32 cheusov Exp $
+
+SHA1 (xrootconsole-0.6.tar.gz) = 6c4bdbe979ce15d00c2e1efde672a6a99228ceb4
+RMD160 (xrootconsole-0.6.tar.gz) = 3dd6058316fd72f428fbef9fd5385e75c82a9683
+Size (xrootconsole-0.6.tar.gz) = 15951 bytes
+SHA1 (patch-aa) = 50b6b87b2bb29bb3e6087082f5af84ad8cb29437
diff -r 108375972959 -r 5fd6f510e79c x11/xrootconsole/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/xrootconsole/patches/patch-aa Mon Apr 20 20:21:32 2015 +0000
@@ -0,0 +1,45 @@
+$NetBSD: patch-aa,v 1.1.1.1 2015/04/20 20:21:32 cheusov Exp $
+
+--- Makefile.orig      2004-02-20 21:53:28.000000000 +0000
++++ Makefile
+@@ -34,6 +34,9 @@
+ 
++PREFIX ?= /usr/local
++X11BASE ?= /usr/X11R7
++
+ EXEC = xrootconsole
+-BINDIR = /usr/local/bin
++BINDIR = $(PREFIX)/bin
+ MANFILE = xrootconsole.1
+-MANDIR = /usr/local/share/man/man1
++MANDIR = $(PREFIX)/man/man1
+ 
+@@ -46,15 +49,13 @@ VERSION = $(shell tag=$$(echo '$$Name: R
+ CC = gcc
+-CPPFLAGS =
++CPPFLAGS += -I $(X11BASE)/include
++LDFLAGS  += -L $(X11BASE)/lib
++LIBS     += -lX11 -lutil
+ 
+ # for production
+-CFLAGS = -O2 -DNDEBUG -Wall "-DXROOTCONSOLE_VERSION=\"$(VERSION)\"" \
+-    -I /usr/X11R6/include
+-LDFLAGS = -s
++CFLAGS += -O2 -DNDEBUG -Wall "-DXROOTCONSOLE_VERSION=\"$(VERSION)\""
++LDFLAGS += -s
+ 
+ # for testing
+-#CFLAGS = -g -Wall "-DXROOTCONSOLE_VERSION=\"$(VERSION) (debug build)\"" \
+-    -I /usr/X11R6/include
+-#LDFLAGS = 
+-
+-LIBS = -L/usr/X11R6/lib -lX11 -lutil
++#CFLAGS += -g -Wall "-DXROOTCONSOLE_VERSION=\"$(VERSION) (debug build)\""
++#LDFLAGS += 
+ 
+@@ -78,3 +79,3 @@ realclean:
+ install: $(EXEC)
+-      cp $(EXEC) $(BINDIR)
+-      cp $(MANFILE) $(MANDIR)
++      cp $(EXEC) $(DESTDIR)$(BINDIR)
++      cp $(MANFILE) $(DESTDIR)$(MANDIR)



Home | Main Index | Thread Index | Old Index