diff options
author | Pacho Ramos <pacho@gentoo.org> | 2010-07-21 16:30:34 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2010-07-21 16:30:34 +0000 |
commit | 622d2992502e7bb51cb3920fcf1e806ea68db23e (patch) | |
tree | 97861a919ce2bb160e22df1373cdd6fd243f7478 /dev-cpp/gtksourceviewmm | |
parent | Version bump (diff) | |
download | gentoo-2-622d2992502e7bb51cb3920fcf1e806ea68db23e.tar.gz gentoo-2-622d2992502e7bb51cb3920fcf1e806ea68db23e.tar.bz2 gentoo-2-622d2992502e7bb51cb3920fcf1e806ea68db23e.zip |
Version bump (bug #266221 by Tim Harder), also update homepage, update license, fix doc configure options...
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-cpp/gtksourceviewmm')
-rw-r--r-- | dev-cpp/gtksourceviewmm/ChangeLog | 9 | ||||
-rw-r--r-- | dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.1.ebuild | 41 |
2 files changed, 49 insertions, 1 deletions
diff --git a/dev-cpp/gtksourceviewmm/ChangeLog b/dev-cpp/gtksourceviewmm/ChangeLog index 7f86bea01e73..8ac3429c09f0 100644 --- a/dev-cpp/gtksourceviewmm/ChangeLog +++ b/dev-cpp/gtksourceviewmm/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-cpp/gtksourceviewmm # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtksourceviewmm/ChangeLog,v 1.6 2010/07/20 16:35:05 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtksourceviewmm/ChangeLog,v 1.7 2010/07/21 16:30:34 pacho Exp $ + +*gtksourceviewmm-2.10.1 (21 Jul 2010) + + 21 Jul 2010; Pacho Ramos <pacho@gentoo.org> + +gtksourceviewmm-2.10.1.ebuild: + Version bump (bug #266221 by Tim Harder), also update homepage, update + license, fix doc configure options... 20 Jul 2010; Jeroen Roovers <jer@gentoo.org> gtksourceviewmm-2.2.0.ebuild: Drop HPPA keywording (bug #324511). diff --git a/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.1.ebuild b/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.1.ebuild new file mode 100644 index 000000000000..816fc979cc32 --- /dev/null +++ b/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.1.ebuild,v 1.1 2010/07/21 16:30:34 pacho Exp $ + +EAPI="2" + +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 + >=x11-libs/gtksourceview-2.10.0 + !>=dev-cpp/libgtksourceviewmm-1" + +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( app-doc/doxygen )" + +DOCS="AUTHORS ChangeLog* NEWS README" + +G2CONF="${G2CONF} $(use_enable doc documentation)" + +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/* +} |