mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
x11-libs/mx: Remove last-rited package
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
@@ -307,10 +307,6 @@ net-libs/gsnmp
|
||||
# Bug 644344; Removal on 2021-10-07.
|
||||
net-analyzer/scli
|
||||
|
||||
# Andreas Sturmlechner <asturm@gentoo.org> (2021-09-04)
|
||||
# EAPI-5, dead, unused, bug 808213; Removal on 2021-10-04.
|
||||
x11-libs/mx
|
||||
|
||||
# David Seifert <soap@gentoo.org> (2021-09-04)
|
||||
# Last upstream release over 2.5 years ago, removed by Fedora,
|
||||
# unresponsive maintainer in Gentoo, broken with linux-headers-5.13,
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
DIST mx-1.4.7.tar.xz 939672 BLAKE2B 3f55018c6d282af95b80852748a6baa7a56ea1ea69e1b3740b6d936633818f3b18124f1bec2d5bc51596df75a5633d355362d1d22549c5a7e490e053fcca2bae SHA512 6870898548c947d43947ea6ded7c06d01d18aa721c81927fabf3ee0cfe20f65739e927d32277acce5c2e13968502828e29e043f9a8cf31af8f2bc20ec1ad0349
|
||||
@@ -1,53 +0,0 @@
|
||||
From 297b654133436c6ee5146fce31529da4e52dfe74 Mon Sep 17 00:00:00 2001
|
||||
From: Brian Pepple <bpepple@fedoraproject.org>
|
||||
Date: Sat, 25 Aug 2012 17:41:59 -0400
|
||||
Subject: [PATCH] Replace GL data types with equivalent glib types.
|
||||
|
||||
---
|
||||
mx/mx-deform-texture.c | 8 ++++----
|
||||
mx/mx-texture-frame.c | 2 +-
|
||||
2 files changed, 5 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/mx/mx-deform-texture.c b/mx/mx-deform-texture.c
|
||||
index 93c54d7..466cc9f 100644
|
||||
--- a/mx/mx-deform-texture.c
|
||||
+++ b/mx/mx-deform-texture.c
|
||||
@@ -493,9 +493,9 @@ mx_deform_texture_class_init (MxDeformTextureClass *klass)
|
||||
static void
|
||||
mx_deform_texture_init_arrays (MxDeformTexture *self)
|
||||
{
|
||||
- GLushort *idx, *bf_idx;
|
||||
+ gushort *idx, *bf_idx;
|
||||
gint x, y, direction;
|
||||
- GLushort *static_indices, *static_bf_indices;
|
||||
+ gushort *static_indices, *static_bf_indices;
|
||||
MxDeformTexturePrivate *priv = self->priv;
|
||||
|
||||
mx_deform_texture_free_arrays (self);
|
||||
@@ -503,8 +503,8 @@ mx_deform_texture_init_arrays (MxDeformTexture *self)
|
||||
priv->n_indices = (2 + 2 * priv->tiles_x) *
|
||||
priv->tiles_y +
|
||||
(priv->tiles_y - 1);
|
||||
- static_indices = g_new (GLushort, priv->n_indices);
|
||||
- static_bf_indices = g_new (GLushort, priv->n_indices);
|
||||
+ static_indices = g_new (gushort, priv->n_indices);
|
||||
+ static_bf_indices = g_new (gushort, priv->n_indices);
|
||||
|
||||
#define MESH_INDEX(X, Y) (Y) * (priv->tiles_x + 1) + (X)
|
||||
|
||||
diff --git a/mx/mx-texture-frame.c b/mx/mx-texture-frame.c
|
||||
index bde57ff..a88985f 100644
|
||||
--- a/mx/mx-texture-frame.c
|
||||
+++ b/mx/mx-texture-frame.c
|
||||
@@ -200,7 +200,7 @@ mx_texture_frame_paint (ClutterActor *self)
|
||||
|
||||
|
||||
{
|
||||
- GLfloat rectangles[] =
|
||||
+ gfloat rectangles[] =
|
||||
{
|
||||
/* top left corner */
|
||||
0, 0,
|
||||
--
|
||||
1.7.12
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>gnome@gentoo.org</email>
|
||||
<name>Gentoo GNOME Desktop</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">clutter-project/mx</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1,57 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
GCONF_DEBUG="yes"
|
||||
|
||||
inherit gnome2 epatch
|
||||
|
||||
DESCRIPTION="A widget toolkit using Clutter"
|
||||
HOMEPAGE="http://clutter-project.org/"
|
||||
SRC_URI="https://github.com/downloads/clutter-project/${PN}/${P}.tar.xz"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="1.0"
|
||||
KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
|
||||
IUSE="dbus +gtk +introspection startup-notification"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-libs/glib-2.28.0:2
|
||||
>=media-libs/clutter-1.7.91:1.0
|
||||
media-libs/cogl:=
|
||||
>=x11-apps/xrandr-1.2.0
|
||||
|
||||
x11-libs/gdk-pixbuf:2[introspection?]
|
||||
|
||||
dbus? ( >=dev-libs/dbus-glib-0.82 )
|
||||
gtk? ( >=x11-libs/gtk+-2.20:2[introspection?] )
|
||||
introspection? ( >=dev-libs/gobject-introspection-0.6.4:= )
|
||||
startup-notification? ( >=x11-libs/startup-notification-0.9 )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-util/glib-utils
|
||||
>=dev-util/gtk-doc-am-1.14
|
||||
>=dev-util/intltool-0.35.0
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
# Tests are interactive, no use for us
|
||||
sed -e 's/^\(SUBDIRS .*\)tests\(.*\)/\1 \2/g' \
|
||||
-i Makefile.am -i Makefile.in || die
|
||||
# In 1.4.8
|
||||
epatch "${FILESDIR}/${P}-gl-types.patch"
|
||||
|
||||
gnome2_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
gnome2_src_configure \
|
||||
--with-winsys=x11 \
|
||||
--without-glade \
|
||||
$(use_enable gtk gtk-widgets) \
|
||||
$(use_enable introspection) \
|
||||
$(use_with dbus) \
|
||||
$(use_with startup-notification)
|
||||
}
|
||||
Reference in New Issue
Block a user