diff options
author | Andrew Savchenko <bircoph@gentoo.org> | 2015-12-11 15:17:20 +0300 |
---|---|---|
committer | Andrew Savchenko <bircoph@gentoo.org> | 2015-12-11 15:17:20 +0300 |
commit | fcc5f0fe910ec73b41adf3120255571baf896d4c (patch) | |
tree | 0ae3621145cce2d50b94c3805acee6a8298b14fa /dev-cpp/gtkglextmm/gtkglextmm-1.2.0-r2.ebuild | |
parent | dev-tex/hevea: bump to 2.26 (diff) | |
download | gentoo-fcc5f0fe910ec73b41adf3120255571baf896d4c.tar.gz gentoo-fcc5f0fe910ec73b41adf3120255571baf896d4c.tar.bz2 gentoo-fcc5f0fe910ec73b41adf3120255571baf896d4c.zip |
dev-cpp/gtkglextmm: fix bug 552686
Fix underquoted aclocal definition.
Package-Manager: portage-2.2.26
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
Diffstat (limited to 'dev-cpp/gtkglextmm/gtkglextmm-1.2.0-r2.ebuild')
-rw-r--r-- | dev-cpp/gtkglextmm/gtkglextmm-1.2.0-r2.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-cpp/gtkglextmm/gtkglextmm-1.2.0-r2.ebuild b/dev-cpp/gtkglextmm/gtkglextmm-1.2.0-r2.ebuild new file mode 100644 index 000000000000..504827e25070 --- /dev/null +++ b/dev-cpp/gtkglextmm/gtkglextmm-1.2.0-r2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +GCONF_DEBUG="yes" + +inherit eutils gnome2 + +DESCRIPTION="C++ bindings for gtkglext" +HOMEPAGE="https://projects.gnome.org/gtkglext/" +SRC_URI="mirror://sourceforge/gtkglext/${P}.tar.bz2" + +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc" +SLOT="1.0" +LICENSE="GPL-2 LGPL-2.1" + +RDEPEND=" + >=x11-libs/gtkglext-1 + >=dev-libs/libsigc++-2.0 + >=dev-cpp/glibmm-2.4:2 + >=dev-cpp/gtkmm-2.4:2.4 + virtual/opengl +" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + # fix underquoted definition, bug 552686 + epatch "${FILESDIR}/${P}-aclocal.patch" + + # Remove docs from SUBDIRS so that docs are not installed, as + # we handle it in src_install. + sed -i -e 's|^\(SUBDIRS =.*\)docs\(.*\)|\1\2|' Makefile.in || \ + die "sed Makefile.in failed" + + gnome2_src_prepare +} + +src_install() { + gnome2_src_install + if use doc; then + dohtml -r docs/reference/html/* + fi +} |