diff options
| author | Natanael Copa <ncopa@alpinelinux.org> | 2013-06-06 08:07:44 +0000 |
|---|---|---|
| committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-06-06 08:07:44 +0000 |
| commit | e1bcf0f24072271fca72671f2f064fb40bf9d0ff (patch) | |
| tree | 9272a9b0fdfe22047d9da7b8b0d9d1834b40131f /testing | |
| parent | a3ec5f7b7b75b7d2cb7fb36c80e2c94f7c04f76e (diff) | |
| download | aports-e1bcf0f24072271fca72671f2f064fb40bf9d0ff.tar.bz2 aports-e1bcf0f24072271fca72671f2f064fb40bf9d0ff.tar.xz | |
main/spice-gtk: moved from testing
Diffstat (limited to 'testing')
| -rw-r--r-- | testing/spice-gtk/0001-build-fix-for-automake-1.13.patch | 28 | ||||
| -rw-r--r-- | testing/spice-gtk/APKBUILD | 86 | ||||
| -rw-r--r-- | testing/spice-gtk/codegendir.patch | 11 |
3 files changed, 0 insertions, 125 deletions
diff --git a/testing/spice-gtk/0001-build-fix-for-automake-1.13.patch b/testing/spice-gtk/0001-build-fix-for-automake-1.13.patch deleted file mode 100644 index e3c3e02f96..0000000000 --- a/testing/spice-gtk/0001-build-fix-for-automake-1.13.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 54fb45d0c744edda68a5f4f0ea31ba059023d973 Mon Sep 17 00:00:00 2001 -From: Natanael Copa <ncopa@alpinelinux.org> -Date: Mon, 4 Feb 2013 13:45:55 +0100 -Subject: [PATCH] build: fix for automake-1.13 - -Use AC_CONFIG_HEADER instead of deprecated AM_CONFIG_HEADER. - -Signed-off-by: Natanael Copa <ncopa@alpinelinux.org> ---- - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index e8a4ddd..2a5c72c 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -4,7 +4,7 @@ AC_INIT([spice-gtk], [m4_esyscmd(build-aux/git-version-gen .tarball-version)], - [spice-devel@lists.freedesktop.org]) - - AC_CONFIG_MACRO_DIR([m4]) --AM_CONFIG_HEADER([config.h]) -+AC_CONFIG_HEADER([config.h]) - AC_CONFIG_AUX_DIR([build-aux]) - - AM_INIT_AUTOMAKE([foreign dist-bzip2 -Wall -Werror]) --- -1.8.1.2 - diff --git a/testing/spice-gtk/APKBUILD b/testing/spice-gtk/APKBUILD deleted file mode 100644 index 3a3ba1b28d..0000000000 --- a/testing/spice-gtk/APKBUILD +++ /dev/null @@ -1,86 +0,0 @@ -# Contributor: Natanael Copa <ncopa@alpinelinux.org> -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=spice-gtk -pkgver=0.16 -pkgrel=1 -pkgdesc="A GTK+ widget for SPICE clients" -url="http://spice-space.org/page/Spice-Gtk" -arch="all" -license="LGPLv2+" -depends="" -depends_dev="gtk+2.0-dev celt051-dev polkit-dev libxrandr-dev openssl-dev - cyrus-sasl-dev gst-plugins-base-dev jpeg-dev zlib-dev" -makedepends="$depends_dev bash usbutils py-gtk-dev python-dev udev-dev - usbredir-dev - polkit-dev py-parsing py-gobject-dev gobject-introspection-dev - automake autoconf libtool - " -install="" -subpackages="$pkgname-dev $pkgname-doc $pkgname-lang $pkgname-tools - spice-glib:glib py-$pkgname:py" - -source="http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2 - 0001-build-fix-for-automake-1.13.patch - codegendir.patch" - -_builddir="$srcdir"/spice-gtk-$pkgver -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done - libtoolize --force && aclocal -I m4 && autoconf \ - && automake --add-missing || return 1 -} - -build() { - cd "$_builddir" - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --with-gtk=2.0 \ - --with-audio=gstreamer \ - --enable-smartcard=no \ - --enable-usbredir=yes \ - || return 1 - make || return 1 -} - -package() { - cd "$_builddir" - make -j1 DESTDIR="$pkgdir" install || return 1 - rm -f "$pkgdir"/usr/lib/*.la \ - "$pkgdir"//usr/lib/py*/site-packages/*.la -} - -tools() { - pkgdesc="" - mkdir -p "$subpkgdir"/usr - mv "$pkgdir"/usr/bin "$subpkgdir"/usr/ -} - -glib() { - pkgdesc="" - mkdir -p "$subpkgdir"/usr/lib - mv "$pkgdir"/usr/lib/*-glib-*.so* \ - "$pkgdir"/usr/lib/*controller.so.* \ - "$subpkgdir"/usr/lib/ || return 1 - cd "$pkgdir" - for i in $(find -name GLib*.typelib); do - mkdir -p "$subpkgdir"/${i%/*} - mv $i "$subpkgdir"/${i%/*} - done -} - -py() { - pkgdsec="" - mkdir -p "$subpkgdir"/usr/lib - mv "$pkgdir"/usr/lib/python* "$subpkgdir"/usr/lib/ -} - -md5sums="1b61697d643f1acc0e2950834dfa78f4 spice-gtk-0.16.tar.bz2 -72970a1cd51f4a42332e38981fd70ccb 0001-build-fix-for-automake-1.13.patch -e267f9505d0be143a308fb3b574fd153 codegendir.patch" diff --git a/testing/spice-gtk/codegendir.patch b/testing/spice-gtk/codegendir.patch deleted file mode 100644 index 13b9e4077a..0000000000 --- a/testing/spice-gtk/codegendir.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- ./gtk/Makefile.in.orig -+++ ./gtk/Makefile.in -@@ -895,7 +895,7 @@ - @WITH_PYTHON_TRUE@SpiceClientGtk_la_LDFLAGS = -module -avoid-version -fPIC - @WITH_PYTHON_TRUE@SpiceClientGtk_la_SOURCES = spice-client-gtk-module.c - @WITH_PYTHON_TRUE@nodist_SpiceClientGtk_la_SOURCES = spice-client-gtk-module.defs.c --@WITH_PYTHON_TRUE@CODEGENDIR = `pkg-config --variable=codegendir pygtk-2.0` -+@WITH_PYTHON_TRUE@CODEGENDIR = `pkg-config --variable=codegendir pygobject-2.0` - @WITH_PYTHON_TRUE@DEFSDIR = `pkg-config --variable=defsdir pygtk-2.0` - @G_IR_SCANNER_SYMBOL_PREFIX_FALSE@PREFIX_ARGS = --strip-prefix=Spice - @G_IR_SCANNER_SYMBOL_PREFIX_TRUE@PREFIX_ARGS = --symbol-prefix=spice --identifier-prefix=Spice |
