diff options
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/gnome-devel-docs/ChangeLog | 11 | ||||
-rw-r--r-- | dev-util/gnome-devel-docs/gnome-devel-docs-2.32.0.ebuild | 28 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-util/gnome-devel-docs/ChangeLog b/dev-util/gnome-devel-docs/ChangeLog index c193de16f482..7dc3fb703ddf 100644 --- a/dev-util/gnome-devel-docs/ChangeLog +++ b/dev-util/gnome-devel-docs/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for dev-util/gnome-devel-docs # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gnome-devel-docs/ChangeLog,v 1.3 2010/09/11 08:26:03 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gnome-devel-docs/ChangeLog,v 1.4 2010/10/29 21:45:16 pacho Exp $ + +*gnome-devel-docs-2.32.0 (29 Oct 2010) + + 29 Oct 2010; Pacho Ramos <pacho@gentoo.org> + +gnome-devel-docs-2.32.0.ebuild: + Version bump for Gnome 2.32, let it compile with python3 as main + interpreter, drop parallel install workaround since I am unable to find + any bug report downstream neither upstream and it works fine for me at + least since -j2 to -j7. 11 Sep 2010; <nixnut@gentoo.org> gnome-devel-docs-2.30.1.ebuild: ~ppc added diff --git a/dev-util/gnome-devel-docs/gnome-devel-docs-2.32.0.ebuild b/dev-util/gnome-devel-docs/gnome-devel-docs-2.32.0.ebuild new file mode 100644 index 000000000000..9bf988425e0e --- /dev/null +++ b/dev-util/gnome-devel-docs/gnome-devel-docs-2.32.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gnome-devel-docs/gnome-devel-docs-2.32.0.ebuild,v 1.1 2010/10/29 21:45:16 pacho Exp $ + +EAPI="3" +GCONF_DEBUG="no" +PYTHON_DEPEND="2" + +inherit gnome2 python + +DESCRIPTION="Documentation for developing for the GNOME desktop environment" +HOMEPAGE="http://www.gnome.org" + +LICENSE="FDL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="" +DEPEND="dev-util/pkgconfig + app-text/gnome-doc-utils + ~app-text/docbook-xml-dtd-4.2" + +pkg_setup() { + G2CONF="${G2CONF} --disable-scrollkeeper" + DOCS="AUTHORS ChangeLog NEWS README" + python_set_active_version 2 +} |