diff options
author | 2018-04-13 14:24:38 +0900 | |
---|---|---|
committer | 2018-04-25 21:29:18 +0200 | |
commit | 109c4cf3062242c1973358a335bf89ee6428dd6a (patch) | |
tree | 62acf13178671635f9b895f638f2fc6b2fa4c7f0 /app-i18n/man-pages-zh_CN/man-pages-zh_CN-1.6.3.2.ebuild | |
parent | media-libs/libmygpo-qt: x86 stable (bug #650692) (diff) | |
download | gentoo-109c4cf3062242c1973358a335bf89ee6428dd6a.tar.gz gentoo-109c4cf3062242c1973358a335bf89ee6428dd6a.tar.bz2 gentoo-109c4cf3062242c1973358a335bf89ee6428dd6a.zip |
app-i18n/man-pages-zh_CN: Version bump to 1.6.3.2, EAPI-6
Closes: https://github.com/gentoo/gentoo/pull/7966
Diffstat (limited to 'app-i18n/man-pages-zh_CN/man-pages-zh_CN-1.6.3.2.ebuild')
-rw-r--r-- | app-i18n/man-pages-zh_CN/man-pages-zh_CN-1.6.3.2.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/app-i18n/man-pages-zh_CN/man-pages-zh_CN-1.6.3.2.ebuild b/app-i18n/man-pages-zh_CN/man-pages-zh_CN-1.6.3.2.ebuild new file mode 100644 index 000000000000..571125909774 --- /dev/null +++ b/app-i18n/man-pages-zh_CN/man-pages-zh_CN-1.6.3.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="A somewhat comprehensive collection of Chinese Linux man pages" +HOMEPAGE="https://github.com/man-pages-zh/manpages-zh" +MY_PN="manpages-zh" +MY_P="${MY_PN}-${PV}" +SRC_URI="https://github.com/man-pages-zh/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="FDL-1.2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND="virtual/man" + +src_prepare() { + # remove man pages that are provided by other packages. + rm src/man1/groups.1 || die + + eapply_user +} + +src_configure() { + : +} + +src_compile() { + : +} + +src_install() { + doman -i18n=zh_CN src/man?/*.[1-9]* + dodoc README.md AUTHORS ChangeLog NEWS +} |