summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2014-05-24 17:06:14 +0000
committerLars Wendler <polynomial-c@gentoo.org>2014-05-24 17:06:14 +0000
commit50de44563cd31cf869753c1b31635755c05b9921 (patch)
treed5443cdd483081396bd34d34d205f95f0a2344f3 /sys-apps/man-pages
parentstable for amd64 and x86 wrt #506918, rm old (diff)
downloadgentoo-2-50de44563cd31cf869753c1b31635755c05b9921.tar.gz
gentoo-2-50de44563cd31cf869753c1b31635755c05b9921.tar.bz2
gentoo-2-50de44563cd31cf869753c1b31635755c05b9921.zip
Version bump
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'sys-apps/man-pages')
-rw-r--r--sys-apps/man-pages/ChangeLog7
-rw-r--r--sys-apps/man-pages/man-pages-3.67.ebuild52
2 files changed, 58 insertions, 1 deletions
diff --git a/sys-apps/man-pages/ChangeLog b/sys-apps/man-pages/ChangeLog
index 8c5789917066..bbafcb031635 100644
--- a/sys-apps/man-pages/ChangeLog
+++ b/sys-apps/man-pages/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-apps/man-pages
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.217 2014/05/19 04:53:22 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.218 2014/05/24 17:06:14 polynomial-c Exp $
+
+*man-pages-3.67 (24 May 2014)
+
+ 24 May 2014; Lars Wendler <polynomial-c@gentoo.org> +man-pages-3.67.ebuild:
+ Version bump.
*man-pages-3.66 (19 May 2014)
diff --git a/sys-apps/man-pages/man-pages-3.67.ebuild b/sys-apps/man-pages/man-pages-3.67.ebuild
new file mode 100644
index 000000000000..7b17ca4051dc
--- /dev/null
+++ b/sys-apps/man-pages/man-pages-3.67.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/man-pages-3.67.ebuild,v 1.1 2014/05/24 17:06:14 polynomial-c Exp $
+
+EAPI=4
+
+GENTOO_PATCH=2
+
+DESCRIPTION="A somewhat comprehensive collection of Linux man pages"
+HOMEPAGE="http://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
+ http://man7.org/linux/man-pages/download/${P}.tar.xz
+ mirror://gentoo/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2
+ http://dev.gentoo.org/~cardoe/files/man-pages-gentoo-${GENTOO_PATCH}.tar.bz2"
+
+LICENSE="man-pages GPL-2+ BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux"
+IUSE_LINGUAS=" da de fr it ja nl pl ro ru zh_CN"
+IUSE="nls ${IUSE_LINGUAS// / linguas_}"
+RESTRICT="binchecks"
+
+RDEPEND="virtual/man
+ !<dev-libs/libaio-0.3.109-r2" #341953
+PDEPEND="nls? (
+ linguas_da? ( app-i18n/man-pages-da )
+ linguas_de? ( app-i18n/man-pages-de )
+ linguas_fr? ( app-i18n/man-pages-fr )
+ linguas_it? ( app-i18n/man-pages-it )
+ linguas_ja? ( app-i18n/man-pages-ja )
+ linguas_nl? ( app-i18n/man-pages-nl )
+ linguas_pl? ( app-i18n/man-pages-pl )
+ linguas_ro? ( app-i18n/man-pages-ro )
+ linguas_ru? ( app-i18n/man-pages-ru )
+ linguas_zh_CN? ( app-i18n/man-pages-zh_CN )
+ )
+ 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
+}