]> git.pld-linux.org Git - packages/xkeyboard-config.git/blame_incremental - xkeyboard-config.spec
- updated to 2.27
[packages/xkeyboard-config.git] / xkeyboard-config.spec
... / ...
CommitLineData
1Summary: X Keyboard Configuration Database
2Summary(pl.UTF-8): Baza danych konfiguracji klawiatury pod X
3Name: xkeyboard-config
4Version: 2.27
5Release: 1
6License: MIT
7Group: X11/Development/Libraries
8Source0: https://xorg.freedesktop.org/releases/individual/data/xkeyboard-config/%{name}-%{version}.tar.bz2
9# Source0-md5: 316753e35d3906d042c74230612eab9f
10URL: https://www.freedesktop.org/wiki/Software/XKeyboardConfig
11BuildRequires: autoconf >= 2.57
12BuildRequires: automake
13BuildRequires: gettext-tools >= 0.19.8
14BuildRequires: rpmbuild(macros) >= 1.446
15BuildRequires: xorg-util-util-macros >= 1.12
16# for sinhala layouts
17Requires: xorg-lib-libX11 >= 1.4.3
18Provides: xorg-data-xkbdata
19Obsoletes: xorg-data-xkbdata < 0.9
20# due to large maximum keycode handling
21Conflicts: xorg-app-xkbcomp < 1.4.2
22BuildArch: noarch
23BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25%description
26The non-arch keyboard configuration database for X Window System. The
27goal is to provide the consistent, well-structured, frequently
28released open source of X keyboard configuration data for X Window
29System implementations (free, open source and commercial). The project
30is targeted to XKB-based systems.
31
32%description -l pl.UTF-8
33Niezależna od architektury baza danych konfiguracji klawiatury dla
34systemu X Window. Celem jest dostarczenie spójnych, dobrze
35zbudowanych, często wydawanych danych konfiguracji klawiatury pod X z
36otwartymi źródłami dla implementacji X Window System (wolnodostępnych,
37mających otwarte źródła i komercyjnych). Projekt jest przeznaczony dla
38systemów opartych na XKB.
39
40%prep
41%setup -q
42
43%build
44%{__aclocal}
45%{__autoconf}
46%{__automake}
47%configure \
48%if "%{_gnu}" != "-gnux32"
49 --host=%{_host} \
50 --build=%{_host} \
51%endif
52 --disable-runtime-deps \
53 --enable-compat-rules \
54 --with-xkb-rules-symlink=xorg \
55 --with-xkb-base=%{_datadir}/X11/xkb
56
57%{__make}
58
59%install
60rm -rf $RPM_BUILD_ROOT
61
62%{__make} install \
63 DESTDIR=$RPM_BUILD_ROOT
64
65ln -s /var/lib/xkb $RPM_BUILD_ROOT%{_datadir}/X11/xkb/compiled
66
67%find_lang %{name}
68
69%clean
70rm -rf $RPM_BUILD_ROOT
71
72%pretrans
73# it used to be directory in xkbdata
74if [ -d %{_datadir}/X11/xkb/symbols/pc ]; then
75 mv -b %{_datadir}/X11/xkb/symbols/pc{,.dir}
76%banner -e %{name} <<EOF
77Check out %{_datadir}/X11/xkb/symbols/pc.dir
78for your own files and remove it when done.
79EOF
80fi
81if [ -d %{_datadir}/X11/xkb/compiled ]; then
82 rm -rf %{_datadir}/X11/xkb/compiled
83fi
84
85%files -f %{name}.lang
86%defattr(644,root,root,755)
87%doc AUTHORS COPYING ChangeLog NEWS README TODO docs/H* docs/R*
88%{_datadir}/X11/xkb
89%{_npkgconfigdir}/xkeyboard-config.pc
90%{_mandir}/man7/xkeyboard-config.7*
This page took 0.064197 seconds and 4 git commands to generate.