blob: 9e68d2530ee43313544cb1578d834407ee6ee88a (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/manpages-es/manpages-es-1.28.ebuild,v 1.2 2003/06/29 22:12:04 aliz Exp $
S1=${WORKDIR}/man-pages-es-1.28
S2=${WORKDIR}/man-pages-es-extra-0.8a
DESCRIPTION="A somewhat comprehensive collection of Linux spanish man page translations"
SRC_URI="http://ditec.um.es/~piernas/manpages-es/man-pages-es-1.28.tar.gz
http://ditec.um.es/~piernas/manpages-es/man-pages-es-extra-0.8a.tar.gz"
HOMEPAGE="http://ditec.um.es/~piernas/manpages-es/index.html"
KEYWORDS="x86"
DEPEND=""
RDEPEND="sys-apps/man"
LICENSE="GPL-2"
SLOT="0"
src_unpack() {
unpack ${A}
unpack ${B}
}
src_compile() {
cd ${S1}
make gz || die
cd ${S2}
make gz || die
}
src_install() {
cd ${S1}
make MANDIR=${D}/usr/share/man/es install || die
cd ${S2}
make MANDIR=${D}/usr/share/man/es install || die
}
|