diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2011-11-21 22:05:33 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2011-11-21 22:05:33 +0000 |
commit | ecfa93bd1f922ec91e98c6d0444c9267e582ed67 (patch) | |
tree | bf9cc9ac9b3b0686803388c807bc5ee6d5d48565 /dev-cpp | |
parent | Add patch for security bug #391283 (diff) | |
download | gentoo-2-ecfa93bd1f922ec91e98c6d0444c9267e582ed67.tar.gz gentoo-2-ecfa93bd1f922ec91e98c6d0444c9267e582ed67.tar.bz2 gentoo-2-ecfa93bd1f922ec91e98c6d0444c9267e582ed67.zip |
Version bump. Clean up old revision.
(Portage version: 2.2.0_alpha75/cvs/Linux x86_64)
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/gtksourceviewmm/ChangeLog | 8 | ||||
-rw-r--r-- | dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.1.ebuild | 42 | ||||
-rw-r--r-- | dev-cpp/gtksourceviewmm/gtksourceviewmm-3.2.0.ebuild | 33 |
3 files changed, 40 insertions, 43 deletions
diff --git a/dev-cpp/gtksourceviewmm/ChangeLog b/dev-cpp/gtksourceviewmm/ChangeLog index f2780bf84a1f..e52ebc8b01db 100644 --- a/dev-cpp/gtksourceviewmm/ChangeLog +++ b/dev-cpp/gtksourceviewmm/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-cpp/gtksourceviewmm # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtksourceviewmm/ChangeLog,v 1.20 2011/10/21 14:07:07 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtksourceviewmm/ChangeLog,v 1.21 2011/11/21 22:05:33 eva Exp $ + +*gtksourceviewmm-3.2.0 (21 Nov 2011) + + 21 Nov 2011; Gilles Dartiguelongue <eva@gentoo.org> + -gtksourceviewmm-2.10.1.ebuild, +gtksourceviewmm-3.2.0.ebuild: + Version bump. Clean up old revision. 21 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> gtksourceviewmm-2.10.2.ebuild: diff --git a/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.1.ebuild b/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.1.ebuild deleted file mode 100644 index af064f5b1956..000000000000 --- a/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2011 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.6 2011/01/24 16:22:47 eva 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:2.4 - >=x11-libs/gtksourceview-2.10.0:2.0 - !>=dev-cpp/libgtksourceviewmm-1" - -DEPEND="${RDEPEND} - dev-util/pkgconfig - doc? ( app-doc/doxygen )" - -pkg_setup() { - 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/* -} diff --git a/dev-cpp/gtksourceviewmm/gtksourceviewmm-3.2.0.ebuild b/dev-cpp/gtksourceviewmm/gtksourceviewmm-3.2.0.ebuild new file mode 100644 index 000000000000..5cb6a0897461 --- /dev/null +++ b/dev-cpp/gtksourceviewmm/gtksourceviewmm-3.2.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtksourceviewmm/gtksourceviewmm-3.2.0.ebuild,v 1.1 2011/11/21 22:05:33 eva 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="3.0" +LICENSE="LGPL-2.1" + +RDEPEND=">=dev-cpp/glibmm-2.28:2 + >=dev-cpp/gtkmm-3.2:3.0 + >=x11-libs/gtksourceview-3.2:3.0 + + dev-cpp/atkmm + dev-cpp/cairomm + dev-cpp/pangomm:1.4" +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( app-doc/doxygen )" + +pkg_setup() { + DOCS="AUTHORS ChangeLog* NEWS README" + G2CONF="${G2CONF} $(use_enable doc documentation)" +} |