diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-05-14 06:05:24 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-05-14 06:05:24 +0000 |
commit | fa94cc25cab2f105d70f7fd4c57811e2a362fc3b (patch) | |
tree | d033059c1dbfcb848dbc41396d52069c5634b0ef /gnome-extra | |
parent | Bump (diff) | |
download | gentoo-2-fa94cc25cab2f105d70f7fd4c57811e2a362fc3b.tar.gz gentoo-2-fa94cc25cab2f105d70f7fd4c57811e2a362fc3b.tar.bz2 gentoo-2-fa94cc25cab2f105d70f7fd4c57811e2a362fc3b.zip |
Version bump for gnome-3.4
(Portage version: 2.2.0_alpha104/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/gnome-user-docs/ChangeLog | 8 | ||||
-rw-r--r-- | gnome-extra/gnome-user-docs/gnome-user-docs-3.4.1.ebuild | 48 |
2 files changed, 55 insertions, 1 deletions
diff --git a/gnome-extra/gnome-user-docs/ChangeLog b/gnome-extra/gnome-user-docs/ChangeLog index 1b45dc07ecef..edb095ff456a 100644 --- a/gnome-extra/gnome-user-docs/ChangeLog +++ b/gnome-extra/gnome-user-docs/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/gnome-user-docs # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-user-docs/ChangeLog,v 1.58 2012/05/05 06:25:23 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-user-docs/ChangeLog,v 1.59 2012/05/14 06:05:24 tetromino Exp $ + +*gnome-user-docs-3.4.1 (14 May 2012) + + 14 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org> + +gnome-user-docs-3.4.1.ebuild: + Version bump for gnome-3.4 05 May 2012; Jeff Horelick <jdhore@gentoo.org> gnome-user-docs-2.32.0.ebuild: dev-util/pkgconfig -> virtual/pkgconfig diff --git a/gnome-extra/gnome-user-docs/gnome-user-docs-3.4.1.ebuild b/gnome-extra/gnome-user-docs/gnome-user-docs-3.4.1.ebuild new file mode 100644 index 000000000000..720e9fcebc2b --- /dev/null +++ b/gnome-extra/gnome-user-docs/gnome-user-docs-3.4.1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-user-docs/gnome-user-docs-3.4.1.ebuild,v 1.1 2012/05/14 06:05:24 tetromino Exp $ + +EAPI="4" +GCONF_DEBUG="no" + +inherit gnome2 + +DESCRIPTION="GNOME end user documentation" +HOMEPAGE="http://www.gnome.org/" + +LICENSE="CCPL-Attribution-3.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="test" + +# Newer gnome-doc-utils is needed for RNGs +# libxml2 needed for xmllint +# scrollkeeper is referenced in gnome-user-docs.spec, but is not used +RDEPEND="" +DEPEND="test? ( + >=app-text/gnome-doc-utils-0.20.5 + dev-libs/libxml2 )" +# eautoreconf requires: +# app-text/yelp-tools +# rebuilding translations requires: +# dev-libs/libxml2 +# dev-util/gettext +# dev-util/itstool + +# This ebuild does not install any binaries +RESTRICT="binchecks strip" + +DOCS="AUTHORS ChangeLog NEWS README" + +pkg_setup() { + # itstool is only needed for rebuilding translations + G2CONF="${G2CONF} ITSTOOL=$(type -P true)" + # xmllint is only needed for tests + use test || G2CONF="${G2CONF} XMLLINT=$(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 +} |