1
0
forked from pool/libxkbcommon

Accepting request 139276 from X11:XOrg

- Update to first tarball release 0.2.0 (forwarded request 139135 from jengelh)

OBS-URL: https://build.opensuse.org/request/show/139276
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libxkbcommon?expand=0&rev=4
This commit is contained in:
Stephan Kulow 2012-10-26 15:14:10 +00:00 committed by Git OBS Bridge
parent bd303e43fe
commit a33f8a1022
4 changed files with 47 additions and 23 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a37b5417264fc43d1f740a1ff0abe68a2a9f368fe18887055c4a29a73335b66a
size 101968

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:74eb0a121ca3998015fd687591426bb15c524645a72cf602831b2e729172fb42
size 715987

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 23 21:00:18 UTC 2012 - jengelh@inai.de
- Update to first tarball release 0.2.0
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Sep 25 06:57:19 UTC 2012 - sndirsch@suse.com Tue Sep 25 06:57:19 UTC 2012 - sndirsch@suse.com

View File

@ -18,60 +18,79 @@
Name: libxkbcommon Name: libxkbcommon
%define lname libxkbcommon0 %define lname libxkbcommon0
Version: 0.0.222 Version: 0.2.0
Release: 0 Release: 0
Summary: Wayland libxkbcommon library Summary: Library for handling xkb descriptions
License: MIT License: MIT
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
Url: http://wayland.freedesktop.org/ Url: http://xkbcommon.org/
#Git-Clone: git://anongit.freedesktop.org/xorg/lib/libxkbcommon #Git-Clone: git://anongit.freedesktop.org/xorg/lib/libxkbcommon
#Git-Web: http://cgit.freedesktop.org/xorg/lib/libxkbcommon/ #Git-Web: http://cgit.freedesktop.org/xorg/lib/libxkbcommon/
Source: %name-%version.tar.xz Source: %name-%version.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf >= 2.60 #git#BuildRequires: autoconf >= 2.62
BuildRequires: automake #git#BuildRequires: automake
BuildRequires: bison BuildRequires: bison
BuildRequires: flex BuildRequires: flex
BuildRequires: libtool #git#BuildRequires: libtool >= 2
BuildRequires: pkgconfig BuildRequires: pkgconfig
BuildRequires: xz BuildRequires: pkgconfig(xkeyboard-config)
BuildRequires: pkgconfig(kbproto) >= 1.0.4
BuildRequires: pkgconfig(xorg-macros) >= 1.8 BuildRequires: pkgconfig(xorg-macros) >= 1.8
BuildRequires: pkgconfig(xproto) BuildRequires: pkgconfig(xproto)
%description %description
(Upstream has not provided a description) xkbcommon is a keymap handling library, which can parse XKB
descriptions (e.g. from xkeyboard-config), and use this to help its
users make sense of their keyboard input. Unfortunately, X11's
requirements mean this is not actually usable for the X server, but it
should be perfectly usable for client toolkits, as well as alternative
windowing systems, compositors and system-level clients such as
Wayland and kmscon.
%package -n %lname %package -n %lname
Summary: Wayland libxkbcommon library Summary: Library for handling xkb descriptions
Group: System/Libraries Group: System/Libraries
%description -n %lname %description -n %lname
(Upstream has not provided a description) xkbcommon is a keymap handling library, which can parse XKB
descriptions (e.g. from xkeyboard-config), and use this to help its
users make sense of their keyboard input. Unfortunately, X11's
requirements mean this is not actually usable for the X server, but it
should be perfectly usable for client toolkits, as well as alternative
windowing systems, compositors and system-level clients such as
Wayland and kmscon.
%package devel %package devel
Summary: Development files for the Wayland libxkbcommon library Summary: Development files for the libxkbcommon library
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
Requires: %lname = %version Requires: %lname = %version
%description devel %description devel
(Upstream has not provided a description) xkbcommon is a keymap handling library, which can parse XKB
descriptions (e.g. from xkeyboard-config), and use this to help its
users make sense of their keyboard input. Unfortunately, X11's
requirements mean this is not actually usable for the X server, but it
should be perfectly usable for client toolkits, as well as alternative
windowing systems, compositors and system-level clients such as
Wayland and kmscon.
This package contains the development headers for the library found This package contains the development headers for the library found
in %lname. in %lname.
%prep %prep
%setup -qn %name %setup -q
%build %build
autoreconf -fi if [ ! -e configure ]; then
NOCONFIGURE=1 ./autogen.sh;
fi;
%configure --disable-static %configure --disable-static
make %{?_smp_mflags} make %{?_smp_mflags} V=1;
%install %install
%makeinstall make install DESTDIR="%buildroot";
rm -f "%buildroot/%_libdir"/*.la rm -f "%buildroot/%_libdir"/*.la;
%post -n %lname -p /sbin/ldconfig %post -n %lname -p /sbin/ldconfig
@ -83,7 +102,7 @@ rm -f "%buildroot/%_libdir"/*.la
%files devel %files devel
%defattr(-,root,root) %defattr(-,root,root)
%_includedir/X11/* %_includedir/xkbcommon
%_libdir/libxkbcommon.so %_libdir/libxkbcommon.so
%_libdir/pkgconfig/xkbcommon.pc %_libdir/pkgconfig/xkbcommon.pc