Port details |
- libxkbui The xkbui library
- 1.0.2_6 x11
=55 1.0.2_6Version of this port present on the latest quarterly branch.
- DEPRECATED: Deprecated upstream
This port expired on: 2019-10-15
- Maintainer: x11@FreeBSD.org
- Port Added: 2007-05-23 03:28:46
- Last Update: 2019-10-15 10:49:14
- SVN Revision: 514510
- People watching this port, also watch:: libXv, libX11, libXdamage, libXpm, libXtst
- License: not specified in port
- WWW:
- http://www.freedesktop.org/Software/xorg
- Description:
- This package contains the xkbui library.
WWW: http://www.freedesktop.org/Software/xorg
-
cgit ¦ GitHub ¦ GitHub ¦ GitLab ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- No installation instructions:
- This port has been deleted.
- PKGNAME: libxkbui
- Flavors: there is no flavor information for this port.
- distinfo:
- SHA256 (xorg/lib/libxkbui-1.0.2.tar.bz2) = 20c23101d63234ee5f6d696dfa069b29c6c58e39eff433bcd7705b50b3ffa214
SIZE (xorg/lib/libxkbui-1.0.2.tar.bz2) = 221435
No package information for this port in our database- Sometimes this happens. Not all ports have packages. Perhaps there is a build error. Check the fallout link:
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- pkgconf>=1.3.0_1 : devel/pkgconf
- xorgproto>=0 : x11/xorgproto
- xorg-macros.pc : devel/xorg-macros
- x11.pc : x11/libX11
- xt.pc : x11-toolkits/libXt
- xkbfile.pc : x11/libxkbfile
- Runtime dependencies:
-
- x11.pc : x11/libX11
- xt.pc : x11-toolkits/libXt
- xkbfile.pc : x11/libxkbfile
- There are no ports dependent upon this port
Configuration Options:
- No options to configure
- Options name:
- N/A
- USES:
- xorg xorg-cat:lib
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.0.2_6 15 Oct 2019 10:49:14 |
zeising |
Remove deprecated x11 ports
Remove deprecated ports owned by x11:
* x11/xsetmode
* x11/xsetpointer
* x11/libxkbui
* x11/xrx
* x11/libXevie
* x11/liboldX
* x11-fonts/font-bitstream-speedo
* x11-fonts/libXfontcache
* x11-drivers/xf86-input-hyperpen
* x11-drivers/xf86-input-mutouch
* x11-drivers/xf86-input-acecad
* x11-drivers/xf86-input-penmount
* x11-drivers/xf86-input-fpit
Remove libraries from the USES framework and Mk/Uses/xorg.mk as needed to
adjust for their removal.
Add entries to MOVED and remove from port categories makefiles. |
1.0.2_6 06 Sep 2019 22:31:53 |
zeising |
Adjust deprecation date. |
1.0.2_6 06 Sep 2019 21:09:17 |
zeising |
deprecate various xorg libraries
Deprecate various xorg libraries, as they have been deprecated upstream.
Remove them from xorg-libraries.
List of deprecated ports:
x11/libXevie
x11/liboldX
x11/libxkbui
x11-fonts/libXfontcache |
1.0.2_6 11 Sep 2018 18:34:28 |
zeising |
Change x11/xorgproto to become a build dep
Change x11/xorgproto to become a build time dependency when added to
USE_XORG. Change the dependency to be on the port, rather than a file the
port installs.
Fix fallout.
Bump portrevision on depending ports.
PR: 230909
Reviewed by: eadler
Approved by: portmgr (antoine)
Obtained
from: https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/xorgproto
exp-run: antoine
Differential Revision: https://reviews.freebsd.org/D16906 |
1.0.2_5 31 Jul 2018 18:41:30 |
zeising |
Switch to xorgproto instead of individual packages
Upstream used to distribute protocol headers as separate packages, but has
decided to merge those to a common package, named xorgproto. This update
tracks that change.
* Add a new port, x11/xorgproto, with are protocol headers for xorg.
* Hook the new protocol port to the build and to infrastructure in
bsd.xorg.mk.
* Update all ports with a dependency on any of the old *proto packages to
instead depend on xorgproto. Bump portrevision.
* Delete the old *proto packages, update MOVED.
PR: 230023
Submitted by: zeising
Approved by: portmgr (antoine)
exp-run by: antoine |
1.0.2_4 18 Apr 2015 15:34:37 |
kwm |
Misc X.org port updates:
Update gccmakedep to 1.0.3.
Update imake to 1.0.7.
Update libpciaccess to 0.13.3.
Update libdrm to 2.4.60.
Update bitmap to 1.0.8.
Update fstobdf to 1.0.6.
Update iceauth to 1.0.7.
Update libXdmcp to 1.1.2.
Update libXp to 1.0.3.
Update libXvMC to 1.0.9.
Update libXxf86vm to 1.1.4.
Update libxshmfence to 1.2.
Update randrproto to 1.4.1. (Only the first 15 lines of the commit message are shown above ) |
1.0.2_3 08 Dec 2014 21:05:07 |
bapt |
Cleanup plist |
1.0.2_3 23 Apr 2014 13:25:17 |
tijl |
When linking a library libA with a library libB using libtool, if libB.la
exists, libtool will add all libraries libB.la refers to (dependency_libs
field) to the linker command line and store them in the dependency_libs
field of libA.la. So everything that subsequently links with libA will also
link to these extra libraries. This causes too much overlinking.
This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs
field in .la libraries during staging. However, because .la libraries have
very limited use when dependency_libs is empty it makes sense to completely
remove them during staging.
So with this commit USES=libtool is modified to remove .la libraries and a
new form (USES=libtool:keepla) is introduced in case they need to be kept
(dependency_libs is still emptied).
(Only the first 15 lines of the commit message are shown above ) |
1.0.2_2 16 Apr 2014 18:28:50 |
zeising |
The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:
NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE
This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.
This patch also contains updates of libxcb and related ports, pixman, as well (Only the first 15 lines of the commit message are shown above ) |
1.0.2_1 15 Oct 2013 19:49:34 |
eadler |
Cleanup of the x11@ ports in the x11 directory
- Convert to staging |
1.0.2_1 20 Sep 2013 23:43:20 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
x11) |
1.0.2_1 25 May 2013 14:37:03 |
zeising |
The FreeBSD x11 team proudly presents
an zeising, kwm, miwi, bapt, eadler production:
Xorg 7.7
Starring:
xserver 1.12.4 (new xorg only)
Mesa 8.0.4, including libGL, libGLU and dri (new xorg only)
libX11 1.5.0
libxcb 1.9
libdrm 2.4.42 (new xorg only)
freeglut 2.8.1
Also starring:
Updates to drivers and other libraries and utilities
(Only the first 15 lines of the commit message are shown above ) |
1.0.2_1 09 Nov 2011 15:26:04 |
miwi |
- Remove WITH_FBSD10_FIX, is no longer needed |
1.0.2_1 28 Oct 2011 18:53:24 |
miwi |
- Fix build on FreeBSD 10 |
1.0.2_1 19 Mar 2011 12:38:54 |
miwi |
- Get Rid MD5 support |
1.0.2_1 25 Feb 2011 16:52:50 |
miwi |
- Please welcome Xorg 7.5.1
The X-Server has been patched to the latest 1.7.X series, drivers
and fonts have been updated to the latest versions. This update includes
some components from Xorg 7.6 with a lot of improvements, and it seems
that the performance is much better than the old version. Also this
Update fix build issues with clang and binutils 2.17.50 in current,
remove 6.X gruft and de-author pkg-descr.
I would like to thank:
Beat Gaetzi
Dima Panov
Koop Mast
Eitan Adler
and all Testers.
PR: ports/147646
ports/148035
ports/148744
ports/150223
ports/152889
ports/154457 |
1.0.2_1 13 Mar 2008 10:33:56 |
flz |
- Mark xtrans as a BUILD_DEPENDS only (unless specified otherwise with :both)
- Bump PORTREVISION on ports having xtrans in USE_XORG.
- Add some missing dependencies in various xorg libraries. |
1.0.2 04 Jun 2007 18:22:28 |
lesi |
Replace COMMENT and pkg-descr from another port with description from
pkg-config file.
Noticed by: marcus |
1.0.2 19 May 2007 20:32:57 |
flz |
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}. |