diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-05-22 03:53:33 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-05-22 03:53:33 +0000 |
commit | 89230f041d5f40b5d91b23f1ea40187b287ea48a (patch) | |
tree | 06557694be662364ed2b3791f9d16166e020267a | |
parent | Version bump with completion improvements. (diff) | |
download | gentoo-2-89230f041d5f40b5d91b23f1ea40187b287ea48a.tar.gz gentoo-2-89230f041d5f40b5d91b23f1ea40187b287ea48a.tar.bz2 gentoo-2-89230f041d5f40b5d91b23f1ea40187b287ea48a.zip |
Version bump.
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
-rw-r--r-- | dev-cpp/gtksourceviewmm/ChangeLog | 8 | ||||
-rw-r--r-- | dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3.ebuild | 47 |
2 files changed, 54 insertions, 1 deletions
diff --git a/dev-cpp/gtksourceviewmm/ChangeLog b/dev-cpp/gtksourceviewmm/ChangeLog index eaad5f94257a..7a7fba9328da 100644 --- a/dev-cpp/gtksourceviewmm/ChangeLog +++ b/dev-cpp/gtksourceviewmm/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-cpp/gtksourceviewmm # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtksourceviewmm/ChangeLog,v 1.25 2012/05/04 03:44:57 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtksourceviewmm/ChangeLog,v 1.26 2012/05/22 03:53:33 tetromino Exp $ + +*gtksourceviewmm-2.10.3 (22 May 2012) + + 22 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org> + +gtksourceviewmm-2.10.3.ebuild: + Version bump. 04 May 2012; Jeff Horelick <jdhore@gentoo.org> gtksourceviewmm-2.10.2.ebuild, gtksourceviewmm-3.0.0.ebuild, gtksourceviewmm-3.2.0.ebuild: diff --git a/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3.ebuild b/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3.ebuild new file mode 100644 index 000000000000..f64a3d035043 --- /dev/null +++ b/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.3.ebuild,v 1.1 2012/05/22 03:53:33 tetromino Exp $ + +EAPI="4" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" + +inherit gnome2 + +DESCRIPTION="C++ bindings for gtksourceview" +HOMEPAGE="http://projects.gnome.org/gtksourceviewmm/" + +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc" +SLOT="2.0" +LICENSE="LGPL-2.1" + +RDEPEND=">=dev-cpp/gtkmm-2.12:2.4 + dev-cpp/atkmm + >=x11-libs/gtksourceview-2.10.0:2.0 + !>=dev-cpp/libgtksourceviewmm-1" + +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( app-doc/doxygen )" + +pkg_setup() { + DOCS="AUTHORS ChangeLog* NEWS README" + G2CONF="${G2CONF} + $(use_enable doc documentation) + --disable-static" +} + +src_prepare() { + gnome2_src_prepare + + # Remove docs from SUBDIRS so that docs are not installed, as + # we handle it in src_install. + sed -i -e 's|^\(SUBDIRS =.*\)$(doc_subdirs)\(.*\)|\1\2|' Makefile.in || \ + die "sed Makefile.in failed" +} + +src_install() { + gnome2_src_install + use doc && dohtml -r docs/reference/html/* +} |