56c27c5563
libxkbcommon 0.8.0 - 2017-12-15 ================== - Added xkb_keysym_to_{upper,lower} to perform case-conversion directly on keysyms. This is useful in some odd cases, but working with the Unicode representations should be preferred when possible. - Added Unicode conversion rules for the signifblank and permille keysyms. - Fixed a bug in the parsing of XKB key type definitions where the number of levels were determined by the number of level *names*. Keymaps which omit level names were hence miscompiled. This regressed in version 0.4.3. Keymaps from xkeyboard-config were not affected since they don't omit level names. - New API: xkb_keysym_to_upper() xkb_keysym_to_lower()
30 lines
837 B
Makefile
30 lines
837 B
Makefile
# $NetBSD: Makefile,v 1.20 2018/01/10 10:43:27 wiz Exp $
|
|
|
|
DISTNAME= libxkbcommon-0.8.0
|
|
CATEGORIES= x11
|
|
MASTER_SITES= https://xkbcommon.org/download/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= https://xkbcommon.org/
|
|
COMMENT= Library to handle keyboard descriptions
|
|
LICENSE= mit
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= bison gmake pkg-config
|
|
USE_LIBTOOL= yes
|
|
|
|
PKGCONFIG_OVERRIDE+= xkbcommon.pc.in
|
|
|
|
.include "options.mk"
|
|
|
|
.if ${OPSYS} == "Darwin" || ${OPSYS} == "SunOS"
|
|
BUILDLINK_TRANSFORM+= rm:-Wl,--version-script=./xkbcommon.map
|
|
BUILDLINK_TRANSFORM+= rm:-Wl,--version-script=./xkbcommon-x11.map
|
|
.endif
|
|
|
|
.include "../../devel/xorg-util-macros/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.libxcb+= libxcb>=1.10
|
|
.include "../../x11/libxcb/buildlink3.mk"
|
|
.include "../../x11/xkeyboard-config/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|