blob: 3514261b71dcbe2e65da77399f8062cd94da43a4 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/sys-apps/console-data/console-data-1999.08.29-r2.ebuild,v 1.4 2002/07/11 06:30:53 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Data (fonts, keymaps) for the consoletools package"
SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/keyboards/${P}.tar.gz"
HOMEPAGE="http://altern.org/ydirson/en/lct/data.html"
LICENSE="GPL-2"
src_compile() {
./configure --host=${CHOST} \
--prefix=/usr || die
# do not use pmake
make || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc ChangeLog
docinto txt
dodoc doc/README.*
docinto txt/fonts
dodoc doc/fonts/*
docinto txt/keymaps
dodoc doc/keymaps/*
}
|