diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2014-10-02 09:39:08 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2014-10-02 09:39:08 +0000 |
commit | 3b5a28e7ae72133a663256621ce8111c8755e17b (patch) | |
tree | 6feddbb538464874d40fb55f5b304851dfb00fa8 /sys-apps | |
parent | Version bump. Converted ebuild to EAPI-5 and added ~amd64 keyword (diff) | |
download | gentoo-2-3b5a28e7ae72133a663256621ce8111c8755e17b.tar.gz gentoo-2-3b5a28e7ae72133a663256621ce8111c8755e17b.tar.bz2 gentoo-2-3b5a28e7ae72133a663256621ce8111c8755e17b.zip |
Version bump
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/man-pages/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/man-pages/man-pages-3.73.ebuild | 52 |
2 files changed, 58 insertions, 1 deletions
diff --git a/sys-apps/man-pages/ChangeLog b/sys-apps/man-pages/ChangeLog index da6a7bccfe96..0453bf9fb8a4 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.227 2014/09/09 05:15:52 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/man-pages/ChangeLog,v 1.228 2014/10/02 09:39:08 polynomial-c Exp $ + +*man-pages-3.73 (02 Oct 2014) + + 02 Oct 2014; Lars Wendler <polynomial-c@gentoo.org> +man-pages-3.73.ebuild: + Version bump. *man-pages-3.72 (09 Sep 2014) diff --git a/sys-apps/man-pages/man-pages-3.73.ebuild b/sys-apps/man-pages/man-pages-3.73.ebuild new file mode 100644 index 000000000000..f49e2ea74413 --- /dev/null +++ b/sys-apps/man-pages/man-pages-3.73.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.73.ebuild,v 1.1 2014/10/02 09:39:08 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 +} |