Version bump.
authorMike Frysinger <vapier@gentoo.org>
Tue, 4 Oct 2011 17:55:28 +0000 (17:55 +0000)
committerMike Frysinger <vapier@gentoo.org>
Tue, 4 Oct 2011 17:55:28 +0000 (17:55 +0000)
Package-Manager: portage-2.2.0_alpha59/cvs/Linux x86_64

sys-apps/man-pages/ChangeLog
sys-apps/man-pages/man-pages-3.35.ebuild [new file with mode: 0644]

index cb37d62311cbf968094d01a57ca6694213aa39bd..974c748bbba9132f339432bb2b09562af66b46d5 100644 (file)
@@ -1,6 +1,11 @@
 # ChangeLog for sys-apps/man-pages
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.162 2011/09/25 19:25:01 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.163 2011/10/04 17:55:28 vapier Exp $
+
+*man-pages-3.35 (04 Oct 2011)
+
+  04 Oct 2011; Mike Frysinger <vapier@gentoo.org> +man-pages-3.35.ebuild:
+  Version bump.
 
   25 Sep 2011; Mike Frysinger <vapier@gentoo.org> man-pages-3.34.ebuild:
   Use elog rather than einfo #384337 by William Throwe.
diff --git a/sys-apps/man-pages/man-pages-3.35.ebuild b/sys-apps/man-pages/man-pages-3.35.ebuild
new file mode 100644 (file)
index 0000000..ee161f3
--- /dev/null
@@ -0,0 +1,57 @@
+# Copyright 1999-2011 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.35.ebuild,v 1.1 2011/10/04 17:55:28 vapier 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/manpages/Archive/${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="as-is GPL-2 BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
+IUSE_LINGUAS=" cs 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_cs? ( app-i18n/man-pages-cs )
+       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
+}
+
+pkg_postinst() {
+       elog "If you don't have a makewhatis cronjob, then you"
+       elog "should update the whatis database yourself:"
+       elog " # makewhatis -u"
+}