diff options
author | hubertf <hubertf@pkgsrc.org> | 2002-09-23 15:39:46 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2002-09-23 15:39:46 +0000 |
commit | c46615f8b7e1f65725fb055f894195eb4da44b1c (patch) | |
tree | eacef0110e2e2a4059943882d906dbc7ea7fb692 /x11/xkbset/patches | |
parent | d3024938402956b78cb3d78ea547a3f6f58194d2 (diff) | |
download | pkgsrc-c46615f8b7e1f65725fb055f894195eb4da44b1c.tar.gz |
Add xkbset 0.3:
xkbset is a program rather like xset in that it allows you to set
various features of the X window interface. It allows one to configure
most of the options connected with the XKB extensions. They are described
in Section 10 of XKBlib.ps.
XXX
With this program, X can be made to work on a Toshiba Portege 3000
wwwiiittthhhooouuuuttt key repeating. Just put this into your
.xinitrc / .xsession:
xkbset exp bo
xkbset bo
Thanks to erik.berglund@deployit.biz for this hint!
Diffstat (limited to 'x11/xkbset/patches')
-rw-r--r-- | x11/xkbset/patches/patch-aa | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/x11/xkbset/patches/patch-aa b/x11/xkbset/patches/patch-aa new file mode 100644 index 00000000000..ec39fddb49b --- /dev/null +++ b/x11/xkbset/patches/patch-aa @@ -0,0 +1,19 @@ +$NetBSD: patch-aa,v 1.1.1.1 2002/09/23 15:39:46 hubertf Exp $ + +--- Makefile.orig Sun May 13 06:09:39 2001 ++++ Makefile +@@ -1,10 +1,10 @@ + # The following are for XFree86 on FreeBSD +-INC_PATH=-I/usr/X11R6/include +-LIB_PATH=-L/usr/X11R6/lib ++INC_PATH=-I${X11BASE}/include ++LIB_PATH= -Wl,-R${X11BASE}/lib -L${X11BASE}/lib + LIBS=-lX11 + CC=cc ${INC_PATH} ${LIB_PATH} -Wall +-INSTALL_BIN=/usr/X11R6/bin +-INSTALL_MAN1=/usr/X11R6/man/man1 ++INSTALL_BIN=${X11BASE}/bin ++INSTALL_MAN1=${X11BASE}/man/man1 + + all: xkbset xkbset.1 + |