diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-12-24 03:48:10 +0800 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-12-24 03:48:10 +0800 |
commit | 57dec05429d0f0ffe7c8fc7274ad0c6f59fe780e (patch) | |
tree | e3695b3af307a2b5572f906fa944c7723dd88436 | |
parent | d0b9b9ab17a3a7753d5e748352c2e8e3f78665eb (diff) | |
download | freebsd-ports-gnome-57dec05429d0f0ffe7c8fc7274ad0c6f59fe780e.tar.gz freebsd-ports-gnome-57dec05429d0f0ffe7c8fc7274ad0c6f59fe780e.tar.zst freebsd-ports-gnome-57dec05429d0f0ffe7c8fc7274ad0c6f59fe780e.zip |
xtermcontrol enables dynamic control of xterm properties. It makes
it easy to change colors, titles, fonts, and the geometry of a
running xterm, as well as to report the current settings of the
properties. Window manipulations such as (de)iconify, raise and
lower, maximize and restore, and reset are also supported. It also
lets advanced users issue any xterm control sequence.
-rw-r--r-- | x11-toolkits/Makefile | 1 | ||||
-rw-r--r-- | x11-toolkits/xtermcontrol/Makefile | 28 | ||||
-rw-r--r-- | x11-toolkits/xtermcontrol/distinfo | 2 | ||||
-rw-r--r-- | x11-toolkits/xtermcontrol/pkg-descr | 8 |
4 files changed, 39 insertions, 0 deletions
diff --git a/x11-toolkits/Makefile b/x11-toolkits/Makefile index a26a724e738b..a21ef4f7344b 100644 --- a/x11-toolkits/Makefile +++ b/x11-toolkits/Makefile @@ -214,6 +214,7 @@ SUBDIR += xforms SUBDIR += xg SUBDIR += xmhtml + SUBDIR += xtermcontrol SUBDIR += xview SUBDIR += xview-clients diff --git a/x11-toolkits/xtermcontrol/Makefile b/x11-toolkits/xtermcontrol/Makefile new file mode 100644 index 000000000000..5fbc4e292dce --- /dev/null +++ b/x11-toolkits/xtermcontrol/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: xtermcontrol +# Date created: 23.12.2004 +# Whom: krion +# +# $FreeBSD$ +# + +PORTNAME= xtermcontrol +PORTVERSION= 2.7 +CATEGORIES= x11-toolkits +MASTER_SITES= http://www.thrysoee.dk/xtermcontrol/ + +MAINTAINER= krion@FreeBSD.org +COMMENT= Tool for dynamic control of xterm properties + +RUN_DEPENDS= xterm-static:${PORTSDIR}/x11/xterm + +USE_X_PREFIX= yes +USE_GETTEXT= yes +GNU_CONFIGURE= yes +CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} +CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include -I${LOCALBASE}/include" \ + LIBS="-L${X11BASE}/lib -L${LOCALBASE}/lib" + +PLIST_FILES= bin/xtermcontrol +MAN1= ${PORTNAME}.1 + +.include <bsd.port.mk> diff --git a/x11-toolkits/xtermcontrol/distinfo b/x11-toolkits/xtermcontrol/distinfo new file mode 100644 index 000000000000..ea5c65b31eda --- /dev/null +++ b/x11-toolkits/xtermcontrol/distinfo @@ -0,0 +1,2 @@ +MD5 (xtermcontrol-2.7.tar.gz) = eca58483a6f1ab6262350547a6d5681f +SIZE (xtermcontrol-2.7.tar.gz) = 129879 diff --git a/x11-toolkits/xtermcontrol/pkg-descr b/x11-toolkits/xtermcontrol/pkg-descr new file mode 100644 index 000000000000..b1eb6b0dc5a1 --- /dev/null +++ b/x11-toolkits/xtermcontrol/pkg-descr @@ -0,0 +1,8 @@ +xtermcontrol enables dynamic control of xterm properties. It makes +it easy to change colors, titles, fonts, and the geometry of a +running xterm, as well as to report the current settings of the +properties. Window manipulations such as (de)iconify, raise and +lower, maximize and restore, and reset are also supported. It also +lets advanced users issue any xterm control sequence. + +WWW: http://www.thrysoee.dk/xtermcontrol/ |