blob: b61a877d4da99aeadb15dbff34ce6781f743f63f (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/manpages-ja/manpages-ja-20031115.ebuild,v 1.1 2003/11/16 20:02:05 usata Exp $
IUSE=""
MY_P="man-pages-ja-${PV}"
HOMEPAGE="http://www.linux.or.jp/JM/
http://www.gentoo.gr.jp/jpmain/translation.xml"
DESCRIPTION="A collection of manual pages translated into Japanese"
SRC_URI="http://www.linux.or.jp/JM/${MY_P}.tar.gz
http://dev.gentoo.org/~usata/distfiles/portage-${PN}-20031115.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~arm ~amd64 ~ia64"
SLOT="0"
S="${WORKDIR}/${MY_P}"
DEPEND=""
RDEPEND=">=sys-apps/groff-1.18.1-r2
sys-apps/man"
src_install () {
for x in $(grep '^[^#].*' script/pkgs.list | cut -f1 | sort)
do
for a in $(ls -d manual/$x/man* 2>/dev/null)
do
jmandir=$(echo $a | cut -d/ -f3)
einfo install $x: /usr/share/man/ja/$jmandir/
insinto /usr/share/man/ja/$jmandir
doins $a/*
done
done
insinto /usr/share/man/ja/man1
for y in ${WORKDIR}/portage/man/ja/*.1; do
einfo install $y: /usr/share/man/ja/man1
doins $y
done
insinto /usr/share/man/ja/man5
for z in ${WORKDIR}/portage/man/ja/*.5; do
einfo install $z: /usr/share/man/ja/man5
doins $z
done
dodoc ChangeLog INSTALL README
}
pkg_postinst () {
einfo
einfo "You need to set appropriate LANG and PAGER variables to use"
einfo "Japanese manpages."
einfo "e.g."
einfo "\tLANG=\"ja_JP.eucJP\""
einfo "\tPAGER=\"jless\""
einfo "\tJLESSCHARSET=\"ja\""
einfo "\texport LANG PAGER JLESSCHARSET"
einfo "or"
einfo "\tLANG=\"ja_JP.eucJP\""
einfo "\tPAGER=\"lv -c\""
einfo "\texport LANG PAGER"
einfo
}
|