blob: f2d56d0ad39d1928b2bd3847fa8f6c36e4aa9c06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-1.06-r1.ebuild,v 1.15 2002/12/15 10:44:23 bjb Exp $
IUSE="nls"
S=${WORKDIR}/${P}
DESCRIPTION="Keyboard and console utilities"
SRC_URI="ftp://ftp.win.tue.nl/pub/home/aeb/linux-local/utils/kbd/${P}.tar.gz"
HOMEPAGE="http://freshmeat.net/projects/kbd/"
KEYWORDS="x86 ppc sparc alpha"
SLOT="0"
LICENSE="GPL-2"
DEPEND="virtual/glibc nls? ( sys-devel/gettext )"
PROVIDE="sys-apps/console-tools"
src_compile() {
local myopts
# non-standard configure script; --di to disable NLS, nothing to enable it.
use nls || myopts="--di"
./configure --mandir=/usr/share/man \
--datadir=/usr/share \
${myopts} || die
make || die
}
src_install() {
make \
DESTDIR=${D} \
DATADIR=${D}/usr/share \
MANDIR=${D}/usr/share/man \
install || die
}
|