summaryrefslogtreecommitdiff
path: root/x11/libxklavier
AgeCommit message (Collapse)AuthorFilesLines
2009-08-09Update to 4.0:wiz4-12/+13
4.0 Support for "extras" in xkeyboard-config, small bugfixes and build fixes
2009-06-14Remove @dirrm entries from PLISTsjoerg1-3/+1
2009-05-19Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENTwiz1-2/+1
block). Uncomment some commented out LICENSE lines while here.
2009-05-13Update to 3.9. Set LICENSE to gnu-lgpl-v2.wiz4-57/+14
Several small bugs fixed, including memleak and crash under NX
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2008-12-20Pass proper path for xkb and xmodmap rules so you can select a non-USjmcneill1-1/+10
keyboard again. Bump PKGREVISION.
2008-11-24Update to 3.8.wiz3-12/+13
3.8 Added "new device" signal - for plugged keyboard (no need in the "device removed yet"
2008-10-24Update to libxklavier 3.7.jnemeth5-23/+21
3.7 A couple of essential bugfixes. Now all translated strings are in UTF-8 (even in 8-bit locales). 3.6 Added API for countries and languages
2008-07-14Mark as destdir ready.joerg1-1/+2
2008-04-30Drop maintainershipjmmv1-2/+2
Stop lying and drop maintainership of these packages. I have not maintained them for a very long time already, so leave room for fresh blood to take over them.
2008-04-16update to 3.5, necessary because 3.2 in not sufficient fordrochner5-21/+25
sysutils/gnome-settings-daemon, as reported by dieter roelants per PR pkg/38441 changes: -Processing "vendor" elements, bugfix -Updated translation scheme, based on xkeyboard-config 1.2 -Got rid of the fallback xml file (some code cleanup). Fixed a couple of bugs (one crasher)
2007-04-19Update to 3.2:wiz5-27/+29
3.2 Some bugfixes. 3.1 Straghten the licensing terms. Some bugfixes.
2007-01-15Modular Xorg support.joerg2-3/+4
2006-09-15Update to 3.0:jmmv8-71/+73
3.0 Some fixes in 2.91. Huge memory optimization 2.91 Absolutely new API based on glib.
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-04-22Fix typo or mispelling.reed1-1/+1
2006-04-12Aligned the last line of the buildlink3.mk files with the first line, sorillig1-2/+2
that they look nicer.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-3/+3
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-03-12Update to 2.2:jmmv4-34/+13
2.2 Bugfixes. XML processing improved. Better compatibility with modular X.org filesystem layout 2.1 Bugfixes. GCC 4.x compatibility patches.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg2-2/+4
2005-08-10Remove the abuse of buildlink that was pkg-config/buildlink3.mk. Thatjlam1-2/+2
file's sole purpose was to provide a dependency on pkg-config and set some environment variables. Instead, turn pkg-config into a "tool" in the tools framework, where the pkg-config wrapper automatically adds PKG_CONFIG_LIBDIR to the environment before invoking the real pkg-config. For all package Makefiles that included pkg-config/buildlink3.mk, remove that inclusion and replace it with USE_TOOLS+=pkg-config.
2005-07-21Change path from devel/pkgconfig to devel/pkg-config.wiz1-2/+2
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+2
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-04-07Added three patches needed for gcc-2.95. Approved by wiz.rillig4-1/+65
2005-03-24Disable build of tests, as they require an extra dependency (libgetopt) onjmmv3-4/+35
Solaris 8. Addresses part of PR pkg/26769 by Robert Lillack. While here, remove some more test(1) == constructions from the configure script (they were harmless).
2005-03-22Update to 2.0:jmmv6-72/+30
2.0 New stable release (for GNOME 2.10). Minor changes since 1.14: some optimization and cleanup. 1.14 Memory leaks nailed. Some minor restructuring. Bugfixing. A couple of XKL_*_DISABLE envvars introduced. 1.13 Some build process cleanup and fixes. One more "virtual function" introduced. 1.12 First version with real xmodmap support. Sure, bugs are possible. I did it again - broke API. Really hope no API changes in 1.1x series any more. 1.11 A lot of internal changes. VTable introduced (so now at some point there can be implemented xmodmap backend). Some bugs were fixed. 1.10 Some internal reorganization in the xklavier-config department. API/ABI are broken. All this stuff is going to be used in GNOME 2.9x. The environment variable XKL_DEBUG introduced in order to control the debug info more handy. Minor portability bug was fixed.
2005-02-23Add RMD160 checksums to the SHA1 ones.wiz1-1/+2
2004-11-03Remove some useless C99-isms that cause the build to fail with GCC 2.95.jmmv3-1/+45
Should fix the problem exposed by kristerw@'s NetBSD 1.6.2 bulk build.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-2/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-10-02Update to 1.04:jmmv3-10/+13
- Some memory leaks were nailed (thanks to kmaraas and valgrind). - Default ruleset for partially non-compliant servers introduced (though it still long way to go for AccelleratedX support). - A couple of small tests introduced. - Hopefully the last release in 1.0x series.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-5/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-06-27Fix a C99 variable definition, to make this build with older compilers.kristerw2-1/+18
2004-06-27Enable pkgviews installation.minskim1-1/+3
2004-06-26Update to 1.03: Mostly bugfix release (related to global and per-windowjmmv2-5/+5
group switching). Some minor code/debugging restructuring.
2004-04-14Update to 1.02:jmmv2-5/+5
Due to the high demand, libxklavier is now able to detect the default xkb rules set at runtime. The option --with-xkb-rules-set is not necessary any more.
2004-04-09Update to 1.01:jmmv2-5/+5
* configure.in, libxklavier/xklavier_config_xkb.c: I suppose now libxklavier should be able to live in xorg world - the name of the rules files is customizable at build-time.
2004-04-01Update to 1.00. Changes since 0.97 are small changes and fixes (mostlyjmmv3-7/+7
related to portability).
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-3/+2
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-16BUILDLINK_DEPENDS.<pkg> is appended to.jlam1-2/+2
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-9/+6
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-14Initial import of libxklavier, version 0.97:jmmv5-0/+71
libxklavier is a library providing high-level API for X Keyboard Extension known as XKB. This library is indended to support XFree86 and other commercial X servers. It is useful for creating XKB-related software (layout indicators etc). The current features are: * Reading XKB configuration registry information (for XFree86). * Configuring XKB. * Application-defined callbacks for many XKB-related events. * Support for per-window switching etc.