2017-01-30 09:33:18 +03:00
|
|
|
# Copyright 1999-2017 Gentoo Foundation
|
2016-03-15 16:30:50 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI="5"
|
|
|
|
|
|
|
|
GENTOO_PATCH=2
|
|
|
|
|
|
|
|
DESCRIPTION="A somewhat comprehensive collection of Linux man pages"
|
|
|
|
HOMEPAGE="https://www.kernel.org/doc/man-pages/"
|
|
|
|
SRC_URI="mirror://kernel/linux/docs/man-pages/Archive/${P}.tar.xz
|
|
|
|
mirror://kernel/linux/docs/man-pages/${P}.tar.xz
|
|
|
|
mirror://gentoo/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2
|
|
|
|
https://dev.gentoo.org/~cardoe/files/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2"
|
|
|
|
|
|
|
|
LICENSE="man-pages GPL-2+ BSD"
|
|
|
|
SLOT="0"
|
2017-03-15 15:25:52 +03:00
|
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
|
2016-06-23 13:29:54 +03:00
|
|
|
IUSE_L10N=" da de fr it ja nl pl ro ru zh-CN"
|
|
|
|
IUSE="nls ${IUSE_L10N// / l10n_}"
|
2016-03-15 16:30:50 +03:00
|
|
|
RESTRICT="binchecks"
|
|
|
|
|
2017-03-15 15:25:52 +03:00
|
|
|
# Block packages that used to install colliding man pages #341953 #548900 #612640
|
2016-03-15 16:30:50 +03:00
|
|
|
RDEPEND="virtual/man
|
2017-03-15 15:25:52 +03:00
|
|
|
!<sys-apps/keyutils-1.5.9-r3
|
2016-03-15 16:30:50 +03:00
|
|
|
!<sys-apps/attr-2.4.47-r2
|
|
|
|
!<dev-libs/libaio-0.3.109-r2"
|
|
|
|
PDEPEND="nls? (
|
2016-06-23 13:29:54 +03:00
|
|
|
l10n_da? ( app-i18n/man-pages-da )
|
|
|
|
l10n_de? ( app-i18n/man-pages-de )
|
|
|
|
l10n_fr? ( app-i18n/man-pages-fr )
|
|
|
|
l10n_it? ( app-i18n/man-pages-it )
|
|
|
|
l10n_ja? ( app-i18n/man-pages-ja )
|
|
|
|
l10n_nl? ( app-i18n/man-pages-nl )
|
|
|
|
l10n_pl? ( app-i18n/man-pages-pl )
|
|
|
|
l10n_ro? ( app-i18n/man-pages-ro )
|
|
|
|
l10n_ru? ( app-i18n/man-pages-ru )
|
|
|
|
l10n_zh-CN? ( app-i18n/man-pages-zh_CN )
|
2016-03-15 16:30:50 +03:00
|
|
|
)
|
|
|
|
sys-apps/man-pages-posix"
|
|
|
|
|
|
|
|
src_configure() { :; }
|
|
|
|
|
|
|
|
src_compile() { :; }
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake install prefix="${EPREFIX}/usr" DESTDIR="${D}"
|
|
|
|
dodoc man-pages-*.Announce README Changes*
|
|
|
|
|
|
|
|
# Override with Gentoo specific or additional Gentoo pages
|
|
|
|
cd "${WORKDIR}"/man-pages-gentoo
|
|
|
|
doman */*
|
|
|
|
dodoc README.Gentoo
|
|
|
|
}
|