blob: 59dfaddf49781c0688b7dc03d9bf494b5eae6c13 (
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
34
35
36
37
38
39
|
# Copyright 1999-2003 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.21 2003/06/21 21:19:40 drobbins 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 amd64 ppc sparc alpha mips hppa arm"
SLOT="0"
LICENSE="GPL-2"
DEPEND="virtual/glibc nls? ( sys-devel/gettext )"
PROVIDE="sys-apps/console-tools"
src_compile() {
local myopts
# fixes makefile so that it uses the CFLAGS from portage. Fixes bug #21320
cp src/Makefile.in src/Makefile.in.orig
sed -e "s:-O2:${CFLAGS}:g" src/Makefile.in.orig > src/Makefile.in
# 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
}
|