dev-cpp/gtkglextmm: fix bug 552686
authorAndrew Savchenko <bircoph@gentoo.org>
Fri, 11 Dec 2015 12:17:20 +0000 (15:17 +0300)
committerAndrew Savchenko <bircoph@gentoo.org>
Fri, 11 Dec 2015 12:17:20 +0000 (15:17 +0300)
Fix underquoted aclocal definition.

Package-Manager: portage-2.2.26
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
dev-cpp/gtkglextmm/files/gtkglextmm-1.2.0-aclocal.patch [new file with mode: 0644]
dev-cpp/gtkglextmm/gtkglextmm-1.2.0-r2.ebuild [new file with mode: 0644]

diff --git a/dev-cpp/gtkglextmm/files/gtkglextmm-1.2.0-aclocal.patch b/dev-cpp/gtkglextmm/files/gtkglextmm-1.2.0-aclocal.patch
new file mode 100644 (file)
index 0000000..32fa489
--- /dev/null
@@ -0,0 +1,11 @@
+--- gtkglextmm-1.2.0/m4macros/gtkglextmm.m4.orig       2004-05-18 10:29:34.000000000 +0400
++++ gtkglextmm-1.2.0/m4macros/gtkglextmm.m4    2015-08-07 17:02:42.324065008 +0300
+@@ -222,7 +222,7 @@
+ dnl AC_GTKGLEXTMM_SUPPORTS_MULTIHEAD([ACTION-IF-SUPPORTED [, ACTION-IF-NOT-SUPPORTED]])
+ dnl Checks whether gtkglextmm supports multihead.
+ dnl
+-AC_DEFUN(AC_GTKGLEXTMM_SUPPORTS_MULTIHEAD,
++AC_DEFUN([AC_GTKGLEXTMM_SUPPORTS_MULTIHEAD],
+ [ AC_LANG_SAVE
+   AC_LANG_CPLUSPLUS
+   AC_CACHE_CHECK([whether gtkglextmm supports multihead],
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 (file)
index 0000000..504827e
--- /dev/null
@@ -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
+}