- Update to version 2.0.2: libkeymap: fix kmap on big-endian machines Add functions to get the total number of elements Add functions to convert ksyms eurlatgr - new Linux console font Hide syms array Add information about the total number of elements Add function to obtain items from the diacritical table Change the API for working with the diacritical table Change API for working with list of functions Add functions to check diacr/func existance Add pancyrillic font po: Update translations (from translationproject.org) vlock: implement PAM account and password management vlock: rename ERROR_TIMEOUT macro to LONG_DELAY vlock: introduce short delays after non-fatal PAM errors Added Latvian keymap (changelog taken from http://lists.altlinux.org/pipermail/kbd/2014-July/000476.html) - add kbd-2.0.2-comment-typo-qwerty.patch [bnc#825385] OBS-URL: https://build.opensuse.org/request/show/245715 OBS-URL: https://build.opensuse.org/package/show/Base:System/kbd?expand=0&rev=55
27 lines
493 B
Bash
27 lines
493 B
Bash
#! /bin/bash
|
|
#
|
|
# repackage kbd source tar ball,
|
|
# to remove fonts that forbid commercial distribution.
|
|
#
|
|
# 2005-07-11, jw@suse.de
|
|
|
|
tmpdir=`mktemp -d`
|
|
in="$1"
|
|
if [ -z $in ]; then
|
|
echo "usage: $0 <tarball>"
|
|
exit 1
|
|
fi
|
|
name="${in%.tar.*}"
|
|
|
|
# recent gnu tar can autodetect gzip / bzip2
|
|
if ! tar xf "$in" -C $tmpdir; then
|
|
rm -rf $tmpdir
|
|
exit 1
|
|
fi
|
|
|
|
echo removing files...
|
|
find $tmpdir -iname \*agafari\* | tee /dev/tty | xargs rm
|
|
tar jcf $name-repack.tar.bz2 -C $tmpdir $name
|
|
|
|
rm -rf $tmpdir
|