You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/kbd/kbd-1.15.4.ebuild

46 lines
1.1 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-1.15.4.ebuild,v 1.1 2012/12/02 21:27:31 vapier Exp $
EAPI="4"
DESCRIPTION="Keyboard and console utilities"
HOMEPAGE="http://freshmeat.net/projects/kbd/"
SRC_URI="ftp://ftp.altlinux.org/pub/people/legion/kbd/${P}.tar.xz
mirror://gentoo/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="nls pam"
RDEPEND="pam? ( virtual/pam )"
DEPEND="${RDEPEND}"
src_unpack() {
default
cd "${S}"
# broken file ... upstream git punted it
rm po/es.po
# Rename conflicting keymaps to have unique names, bug #293228
cd "${S}"/data/keymaps/i386
mv dvorak/no.map dvorak/no-dvorak.map
mv fgGIod/trf.map fgGIod/trf-fgGIod.map
mv olpc/es.map olpc/es-olpc.map
mv olpc/pt.map olpc/pt-olpc.map
mv qwerty/cz.map qwerty/cz-qwerty.map
}
src_configure() {
econf \
$(use_enable nls) \
$(use_enable pam vlock)
}
src_install() {
default
dohtml doc/*.html
}