Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/gtkglext/
Date: Mon, 30 Oct 2017 22:26:23
Message-Id: 1509402334.05a4053956e2f8ce623ed1d56c30d31967609a3e.leio@gentoo
1 commit: 05a4053956e2f8ce623ed1d56c30d31967609a3e
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 30 21:21:44 2017 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 30 22:25:34 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05a40539
7
8 x11-libs/gtkglext: remove old
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.2
11
12 x11-libs/gtkglext/gtkglext-1.2.0-r3.ebuild | 65 ------------------------------
13 1 file changed, 65 deletions(-)
14
15 diff --git a/x11-libs/gtkglext/gtkglext-1.2.0-r3.ebuild b/x11-libs/gtkglext/gtkglext-1.2.0-r3.ebuild
16 deleted file mode 100644
17 index 3ecf3a25d4d..00000000000
18 --- a/x11-libs/gtkglext/gtkglext-1.2.0-r3.ebuild
19 +++ /dev/null
20 @@ -1,65 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="5"
25 -
26 -GNOME2_LA_PUNT="yes"
27 -inherit autotools gnome2 multilib-minimal
28 -
29 -DESCRIPTION="GL extensions for Gtk+ 2.0"
30 -HOMEPAGE="http://gtkglext.sourceforge.net/"
31 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
32 -
33 -LICENSE="GPL-2+ LGPL-2.1+"
34 -SLOT="0"
35 -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
36 -IUSE=""
37 -
38 -RDEPEND=">=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
39 - >=x11-libs/gtk+-2.24.23:2[${MULTILIB_USEDEP}]
40 - >=x11-libs/pango-1.36.3[X,${MULTILIB_USEDEP}]
41 - || (
42 - >=x11-libs/pangox-compat-0.0.2[${MULTILIB_USEDEP}]
43 - <x11-libs/pango-1.31[X,${MULTILIB_USEDEP}]
44 - )
45 - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
46 - >=x11-libs/libXmu-1.1.1-r1[${MULTILIB_USEDEP}]
47 - >=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
48 - >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]"
49 -DEPEND="${RDEPEND}
50 - >=sys-devel/autoconf-archive-2014.02.28
51 - >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]"
52 -
53 -src_prepare() {
54 - # Ancient configure.in with broken multilib gl detection (bug #543050)
55 - # Backport some configure updates from upstream git master to fix
56 - epatch "${FILESDIR}/${P}-gl-configure.patch"
57 - mv configure.{in,ac} || die "mv failed"
58 - eautoreconf
59 -
60 - gnome2_src_prepare
61 -
62 - # Remove development knobs, bug #308973
63 - sed -i 's:-D\(G.*DISABLE_DEPRECATED\):-D__\1__:g' \
64 - examples/Makefile.am examples/Makefile.in \
65 - gdk/Makefile.am gdk/Makefile.in \
66 - gdk/win32/Makefile.am gdk/win32/Makefile.in \
67 - gdk/x11/Makefile.am gdk/x11/Makefile.in \
68 - gtk/Makefile.am gtk/Makefile.in \
69 - || die "sed failed"
70 -}
71 -
72 -multilib_src_configure() {
73 - ECONF_SOURCE=${S} \
74 - gnome2_src_configure \
75 - --disable-static
76 -}
77 -
78 -multilib_src_install() {
79 - gnome2_src_install
80 -}
81 -
82 -multilib_src_install_all() {
83 - local DOCS="AUTHORS ChangeLog* NEWS README TODO"
84 - einstalldocs
85 -}