Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/man-pages: man-pages-3.57.ebuild
Date: Thu, 30 Jan 2014 19:49:03
Message-Id: 20140130194859.6638E2004C@flycatcher.gentoo.org
1 robbat2 14/01/30 19:48:59
2
3 Added: man-pages-3.57.ebuild
4 Log:
5 Bump.
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.1 sys-apps/man-pages/man-pages-3.57.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/man-pages-3.57.ebuild?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/man-pages/man-pages-3.57.ebuild?rev=1.1&content-type=text/plain
14
15 Index: man-pages-3.57.ebuild
16 ===================================================================
17 # Copyright 1999-2014 Gentoo Foundation
18 # Distributed under the terms of the GNU General Public License v2
19 # $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/man-pages-3.57.ebuild,v 1.1 2014/01/30 19:48:59 robbat2 Exp $
20
21 EAPI=3
22
23 GENTOO_PATCH=2
24
25 DESCRIPTION="A somewhat comprehensive collection of Linux man pages"
26 HOMEPAGE="http://www.kernel.org/doc/man-pages/"
27 SRC_URI="mirror://kernel/linux/docs/man-pages/Archive/${P}.tar.xz
28 mirror://kernel/linux/docs/man-pages/${P}.tar.xz
29 http://man7.org/linux/man-pages/download/${P}.tar.xz
30 mirror://gentoo/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2
31 http://dev.gentoo.org/~cardoe/files/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2"
32
33 LICENSE="man-pages GPL-2+ BSD"
34 SLOT="0"
35 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
36 IUSE_LINGUAS=" da de fr it ja nl pl ro ru zh_CN"
37 IUSE="nls ${IUSE_LINGUAS// / linguas_}"
38 RESTRICT="binchecks"
39
40 RDEPEND="virtual/man
41 !<dev-libs/libaio-0.3.109-r2" #341953
42 PDEPEND="nls? (
43 linguas_da? ( app-i18n/man-pages-da )
44 linguas_de? ( app-i18n/man-pages-de )
45 linguas_fr? ( app-i18n/man-pages-fr )
46 linguas_it? ( app-i18n/man-pages-it )
47 linguas_ja? ( app-i18n/man-pages-ja )
48 linguas_nl? ( app-i18n/man-pages-nl )
49 linguas_pl? ( app-i18n/man-pages-pl )
50 linguas_ro? ( app-i18n/man-pages-ro )
51 linguas_ru? ( app-i18n/man-pages-ru )
52 linguas_zh_CN? ( app-i18n/man-pages-zh_CN )
53 )
54 sys-apps/man-pages-posix"
55
56 src_configure() { :; }
57
58 src_compile() { :; }
59
60 src_install() {
61 emake install prefix="${EPREFIX}/usr" DESTDIR="${D}" || die
62 dodoc man-pages-*.Announce README Changes*
63
64 # Override with Gentoo specific or additional Gentoo pages
65 cd "${WORKDIR}"/man-pages-gentoo
66 doman */* || die
67 dodoc README.Gentoo
68 }