summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-i18n/manpages-ja/manpages-ja-20040415.ebuild')
-rw-r--r--app-i18n/manpages-ja/manpages-ja-20040415.ebuild72
1 files changed, 0 insertions, 72 deletions
diff --git a/app-i18n/manpages-ja/manpages-ja-20040415.ebuild b/app-i18n/manpages-ja/manpages-ja-20040415.ebuild
deleted file mode 100644
index 1b14b682771d..000000000000
--- a/app-i18n/manpages-ja/manpages-ja-20040415.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/manpages-ja/manpages-ja-20040415.ebuild,v 1.7 2004/10/19 09:35:18 absinthe Exp $
-
-MY_P="man-pages-ja-${PV}"
-
-DESCRIPTION="A collection of manual pages translated into Japanese"
-HOMEPAGE="http://www.linux.or.jp/JM/ http://www.gentoo.gr.jp/jpmain/translation.xml"
-SRC_URI="http://www.linux.or.jp/JM/${MY_P}.tar.gz
- http://dev.gentoo.org/~usata/distfiles/portage-${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ppc ~sparc ~mips alpha hppa amd64"
-IUSE=""
-
-DEPEND=">=sys-apps/groff-1.18.1-r2
- =sys-apps/groff-1.18*
- sys-apps/man"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
- if ! groff -v -Tnippon >/dev/null 2>&1 ; then
- ewarn
- ewarn "You need to compile groff with multilingual support."
- ewarn "Please recompile sys-apps/groff with USE=\"cjk\"."
- ewarn
- die "groff m17n support disabled."
- fi
-}
-
-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
-
- cd ${WORKDIR}/man
- for y in man[1-9]/*.[1-9]; do
- einfo install ${y##*/}: /usr/share/man/ja/${y%%/*}/
- insinto /usr/share/man/ja/${y%%/*}
- doins $y
- done
- cd -
-
- 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
-}