summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2013-02-28 20:11:02 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2013-02-28 20:11:02 +0000
commitb70eb31e379bc0d6fe9df36f900c654580167c16 (patch)
tree55401f1debf079ac06c385992b505fe6eba5a52e
parentVersion bump, wrt bug #336501. Respect compiler (diff)
downloadgentoo-2-b70eb31e379bc0d6fe9df36f900c654580167c16.tar.gz
gentoo-2-b70eb31e379bc0d6fe9df36f900c654580167c16.tar.bz2
gentoo-2-b70eb31e379bc0d6fe9df36f900c654580167c16.zip
Verbump.
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, unsigned Manifest commit)
-rw-r--r--sys-apps/man-pages/ChangeLog7
-rw-r--r--sys-apps/man-pages/man-pages-3.47.ebuild51
2 files changed, 57 insertions, 1 deletions
diff --git a/sys-apps/man-pages/ChangeLog b/sys-apps/man-pages/ChangeLog
index d56acf1b9b69..601961c19783 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-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.189 2013/02/19 02:41:40 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.190 2013/02/28 20:11:02 robbat2 Exp $
+
+*man-pages-3.47 (28 Feb 2013)
+
+ 28 Feb 2013; Robin H. Johnson <robbat2@gentoo.org> +man-pages-3.47.ebuild:
+ Verbump.
19 Feb 2013; Zac Medico <zmedico@gentoo.org> man-pages-3.46.ebuild:
Add ~arm-linux keyword.
diff --git a/sys-apps/man-pages/man-pages-3.47.ebuild b/sys-apps/man-pages/man-pages-3.47.ebuild
new file mode 100644
index 000000000000..e2df39c6105c
--- /dev/null
+++ b/sys-apps/man-pages/man-pages-3.47.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2013 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.47.ebuild,v 1.1 2013/02/28 20:11:02 robbat2 Exp $
+
+EAPI=3
+
+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.gz
+ http://man7.org/linux/man-pages/download/${P}.tar.gz
+ 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 ~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}" || die
+ dodoc man-pages-*.Announce README Changes*
+
+ # Override with Gentoo specific or additional Gentoo pages
+ cd "${WORKDIR}"/man-pages-gentoo
+ doman */* || die
+ dodoc README.Gentoo
+}