aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--community/libglade/APKBUILD47
-rw-r--r--community/libglade/libglade-2.0.1-nowarning.patch39
-rw-r--r--community/libglade/libglade-gmodule.patch12
-rw-r--r--community/libglade/libglade.post-deinstall6
-rw-r--r--community/libglade/libglade.post-install13
l---------community/libglade/libglade.post-upgrade1
l---------community/libglade/libglade.pre-upgrade1
7 files changed, 0 insertions, 119 deletions
diff --git a/community/libglade/APKBUILD b/community/libglade/APKBUILD
deleted file mode 100644
index 8f0dfec2b4f..00000000000
--- a/community/libglade/APKBUILD
+++ /dev/null
@@ -1,47 +0,0 @@
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=libglade
-pkgver=2.6.4
-pkgrel=15
-pkgdesc="Allows you to load glade interface files in a program at runtime"
-url="http://www.gnome.org"
-arch="all"
-license="LGPL-2.0-or-later"
-subpackages="$pkgname-dev $pkgname-doc"
-depends="libxml2-utils"
-depends_dev="gtk+2.0-dev libxml2-dev"
-makedepends="$depends_dev autoconf automake libtool"
-install="$pkgname.post-install $pkgname.pre-upgrade $pkgname.post-upgrade
- $pkgname.post-deinstall"
-source="https://download.gnome.org/sources/libglade/2.6/libglade-$pkgver.tar.bz2
- $pkgname-2.0.1-nowarning.patch
- libglade-gmodule.patch
- "
-
-
-prepare() {
- default_prepare
- update_config_sub
- libtoolize --force && aclocal && autoheader && autoconf \
- && automake --add-missing
-}
-
-build() {
- sed -i '/DG_DISABLE_DEPRECATED/d' glade/Makefile.in
- ./configure \
- --build=$CBUILD \
- --host=$CHOST \
- --sysconfdir=/etc \
- --prefix=/usr \
- --disable-static \
- --localstatedir=/var
- make
-}
-
-package() {
- make DESTDIR="$pkgdir" install
- install -m755 libglade-convert "$pkgdir"/usr/bin/
-}
-
-sha512sums="b725842febaf4c1f0d305a629ae1c61ea2de24dd6f41937e806c078fada2cea483195ef40f5238ce2045e47130c92559e984f677de667b840dd7fff0f8559735 libglade-2.6.4.tar.bz2
-5ab9dfb85938fb7e9ec637a9d68f3db961f3986e1eb9eec0d684af4ce2361c83d6998283b2bd5b4e1bd7950ca456cc3ea7fae567ac52ae391f6c9d5456c6dd2e libglade-2.0.1-nowarning.patch
-8ab898ca484ebcf2fbb39a9f6e59f214f8c378f1b50c9abd1553a8dfb1e087f4bd7c90d74b5a02d2f92994707fcb3c351203669193b6511c493486e676023224 libglade-gmodule.patch"
diff --git a/community/libglade/libglade-2.0.1-nowarning.patch b/community/libglade/libglade-2.0.1-nowarning.patch
deleted file mode 100644
index fd071215fa0..00000000000
--- a/community/libglade/libglade-2.0.1-nowarning.patch
+++ /dev/null
@@ -1,39 +0,0 @@
---- libglade-2.0.1/glade/glade-gtk.c.nowarning 2003-08-29 14:50:10.000000000 -0400
-+++ libglade-2.0.1/glade/glade-gtk.c 2003-08-29 14:58:41.000000000 -0400
-@@ -639,9 +639,8 @@
- if (!strcmp (childinfo->properties[j].name, "label")) {
- label = childinfo->properties[j].value;
- break;
-- } else {
-- g_warning ("Unknown CList child property: %s", childinfo->properties[j].name);
- }
-+ /* Ignore all other properties */
- }
-
- if (label) {
-@@ -683,6 +682,7 @@
- char *icon = NULL;
- gboolean use_stock = FALSE, active = FALSE, new_group = FALSE;
- gboolean use_underline = FALSE;
-+ gboolean sensitive = TRUE;
- GtkWidget *iconw = NULL;
- int j;
-
-@@ -708,6 +708,8 @@
- group_name = value;
- } else if (!strcmp (name, "new_group")) {
- new_group = BOOL (value);
-+ } else if (!strcmp (name, "sensitive")) {
-+ sensitive = BOOL (value);
- } else if (!strcmp (name, "visible")) {
- /* ignore for now */
- } else if (!strcmp (name, "tooltip")) {
-@@ -785,6 +787,8 @@
- gtk_label_set_use_underline (GTK_LABEL (toolbar_child->label),
- TRUE);
- }
-+
-+ gtk_widget_set_sensitive (child, sensitive);
-
- glade_xml_set_common_params (xml, child, childinfo->child);
- } else {
diff --git a/community/libglade/libglade-gmodule.patch b/community/libglade/libglade-gmodule.patch
deleted file mode 100644
index 2bf5e37243a..00000000000
--- a/community/libglade/libglade-gmodule.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/configure.in 2009-03-17 07:19:01.000000000 -0700
-+++ b/configure.in 2013-02-20 14:27:10.000000000 -0800
-@@ -46,7 +46,8 @@
- libxml-2.0 >= required_libxml_version dnl
- atk >= required_atk_version dnl
- gtk+-2.0 >= required_gtk_version dnl
-- glib-2.0 >= required_glib_version])
-+ glib-2.0 >= required_glib_version dnl
-+ gmodule-2.0])
-
- AC_MSG_CHECKING([for native Win32])
- case "$host" in
diff --git a/community/libglade/libglade.post-deinstall b/community/libglade/libglade.post-deinstall
deleted file mode 100644
index bb4b3039a01..00000000000
--- a/community/libglade/libglade.post-deinstall
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-
-xmlcatalog --noout --del \
- /usr/share/xml/libglade/glade-2.0.dtd etc/xml/catalog
-
-exit 0
diff --git a/community/libglade/libglade.post-install b/community/libglade/libglade.post-install
deleted file mode 100644
index 82e58a85feb..00000000000
--- a/community/libglade/libglade.post-install
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-mkdir -p etc/xml
-
-if [ ! -e etc/xml/catalog ]; then
- xmlcatalog --noout --create etc/xml/catalog
-fi
-
-xmlcatalog --noout --add "system" \
- "http://glade.gnome.org/glade-2.0.dtd" \
- /usr/share/xml/libglade/glade-2.0.dtd etc/xml/catalog
-
-exit 0
diff --git a/community/libglade/libglade.post-upgrade b/community/libglade/libglade.post-upgrade
deleted file mode 120000
index 25d67c626e4..00000000000
--- a/community/libglade/libglade.post-upgrade
+++ /dev/null
@@ -1 +0,0 @@
-libglade.post-install \ No newline at end of file
diff --git a/community/libglade/libglade.pre-upgrade b/community/libglade/libglade.pre-upgrade
deleted file mode 120000
index 06b72fb37b8..00000000000
--- a/community/libglade/libglade.pre-upgrade
+++ /dev/null
@@ -1 +0,0 @@
-libglade.post-deinstall \ No newline at end of file