blob: 0ef26b093e4c544a1afc980e8b2e6054f7898fbc (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-i18n/manpages-ru/manpages-ru-0.7.ebuild,v 1.2 2002/11/02 07:26:36 agenkin Exp $
DESCRIPTION="A collection of Russian translations of Linux manual pages."
HOMEPAGE="http://alexm.here.ru/manpages-ru/"
LICENSE="GPL-2"
DEPEND=""
RDEPEND="sys-apps/man"
KEYWORDS="x86 ppc"
SLOT="0"
SRC_URI="ftp://ftp.win.tue.nl/pub/linux-local/manpages/translations/man-pages-ru-${PV}.tar.gz"
S=${WORKDIR}/${P}
src_unpack() {
unpack ${A}
patch -p0 < ${FILESDIR}/${P}-gentoo.diff || die
}
src_compile() {
make || die
}
src_install() {
make INSTALLPATH=${D}/usr/share/man LANG_SUBDIR=ru install || die
}
|