diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-11-15 10:51:21 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-11-15 11:30:00 +0100 |
commit | 9cbdf258e8ccde0a55c67c07b1f2d68ddcf4ec50 (patch) | |
tree | 06e48af5161918d8f9af42cf487c708cadcc2ddd /gnome-extra/gnome-user-docs | |
parent | gnome-extra/gnome-power-manager: Drop old (diff) | |
download | gentoo-9cbdf258e8ccde0a55c67c07b1f2d68ddcf4ec50.tar.gz gentoo-9cbdf258e8ccde0a55c67c07b1f2d68ddcf4ec50.tar.bz2 gentoo-9cbdf258e8ccde0a55c67c07b1f2d68ddcf4ec50.zip |
gnome-extra/gnome-user-docs: Version bump
Package-Manager: portage-2.2.24
Diffstat (limited to 'gnome-extra/gnome-user-docs')
-rw-r--r-- | gnome-extra/gnome-user-docs/Manifest | 1 | ||||
-rw-r--r-- | gnome-extra/gnome-user-docs/gnome-user-docs-3.18.1.ebuild | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/gnome-extra/gnome-user-docs/Manifest b/gnome-extra/gnome-user-docs/Manifest index ea3869df71ea..e0e0fc807871 100644 --- a/gnome-extra/gnome-user-docs/Manifest +++ b/gnome-extra/gnome-user-docs/Manifest @@ -1,2 +1,3 @@ DIST gnome-user-docs-3.14.2.tar.xz 14526736 SHA256 ee89e0891fcad30ceb9e93e57a40e59730e0fee7973be233e0c4992b1d5726f1 SHA512 a584fbc282fb167fb23a8b1a0327bcfe90450402241d0cfe510b90de3c2362f665e2ff25ac73fae10063ae23ffa03c8555118cc28a720e8e31646c732ea8b54e WHIRLPOOL 0a5b8d1f96c4aed2b315faaf3ac863ed1633665b6be7c10e1d297cb0f7ce1b1fbc859072b07db9712de05a0f5bf80a6603fa5cff59f9f89a229151181a863db1 DIST gnome-user-docs-3.16.1.tar.xz 14174340 SHA256 9678f8ec22f4ead58c0a6f1c8886d6ee5bda696962b393acc2e6ab742d4c9331 SHA512 4892daac35469a46551833f327f2a7ff5b2b8e7361d223300c6cea7ab1f710760d697aa6f5a524768aed1b10402d00c8a6df371a7aa5c1988bb8ac7b274f666f WHIRLPOOL 07525cce41000fff351bc466383c5baff09d1ffda469d5bd143fcdbf60cae3c5ac8a4b564307acb02a417b990ca18ecf8159e57150a25e6f21790d15269c29dd +DIST gnome-user-docs-3.18.1.tar.xz 14213948 SHA256 83e52528de6afe4412679d7fd8c7f8124b07770b4e291592f24e9e50657efae4 SHA512 161fd15f852d5cc2dbffec304d6ab09ae92cd7ff0d457194acd40e530ca34a3b49fa23a6b51542676b53045ea2c7726b2f328a11e295dbc0d13da60b1ff622e0 WHIRLPOOL 855ef6926c1ac89b59910d66a38afa48a6dcc34486bec1c441990e94e379a5d91b806c27ba58b5b116f840149c44fd8ab5743c20716f72422e2c2814d97cebcc diff --git a/gnome-extra/gnome-user-docs/gnome-user-docs-3.18.1.ebuild b/gnome-extra/gnome-user-docs/gnome-user-docs-3.18.1.ebuild new file mode 100644 index 000000000000..34dc73c7b5b3 --- /dev/null +++ b/gnome-extra/gnome-user-docs/gnome-user-docs-3.18.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +GCONF_DEBUG="no" + +inherit gnome2 + +DESCRIPTION="GNOME end user documentation" +HOMEPAGE="https://git.gnome.org/browse/gnome-user-docs" + +LICENSE="CC-BY-3.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="test" + +RDEPEND="" +DEPEND=" + test? ( dev-libs/libxml2 ) +" +# eautoreconf requires: +# app-text/yelp-tools +# rebuilding translations requires: +# app-text/yelp-tools +# dev-util/gettext + +# This ebuild does not install any binaries +RESTRICT="binchecks strip" + +src_configure() { + # itstool is only needed for rebuilding translations + # xmllint is only needed for tests + gnome2_src_configure \ + $(usex test "" XMLLINT=$(type -P true)) \ + ITSTOOL=$(type -P true) +} + +src_compile() { + # Do not compile; "make all" with unset LINGUAS rebuilds all translations, + # which can take > 2 hours on a Core i7. + return +} |