summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-12-01 14:10:29 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-12-01 14:10:29 +0000
commitbc0657f7159d0b01373ecb59afc426b98a172b1e (patch)
tree7fba1eb77eb1a2965fe5f3ed72cc77aa63d14f40 /extra
parentfd115d7057eb8243df6edfaf1ed440d6f3e70692 (diff)
Thu Dec 1 14:10:27 UTC 2011
Diffstat (limited to 'extra')
-rw-r--r--extra/camsource/PKGBUILD28
-rw-r--r--extra/camsource/mod_handle.c.patch14
-rw-r--r--extra/gpart/gpart-0.1h-PIC.patch20
-rw-r--r--extra/gpart/gpart-0.1h-no-_syscall.patch15
-rw-r--r--extra/gsf-sharp/PKGBUILD29
-rw-r--r--extra/gtk3/fix_crash_treeview.patch55
-rw-r--r--extra/htop/fix-segfault-small-terminal.patch24
-rw-r--r--extra/htop/fix-sort-key-bug.patch15
-rw-r--r--extra/muine/PKGBUILD39
-rw-r--r--extra/muine/muine.install25
-rw-r--r--extra/ocfs2-tools/PKGBUILD35
-rw-r--r--extra/ocfs2-tools/gcc45-ftbfs.patch21
-rw-r--r--extra/qrencode/libpng14.diff65
-rw-r--r--extra/telepathy-kde-accounts-kcm-plugins/PKGBUILD34
14 files changed, 0 insertions, 419 deletions
diff --git a/extra/camsource/PKGBUILD b/extra/camsource/PKGBUILD
deleted file mode 100644
index 5c6221769..000000000
--- a/extra/camsource/PKGBUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-# $Id: PKGBUILD 68022 2010-02-10 14:13:39Z giovanni $
-# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
-
-pkgname=camsource
-pkgver=0.7.0
-pkgrel=6
-pkgdesc="Grabs images from a v4l and v4l2 webcam devices"
-arch=('i686' 'x86_64')
-url="http://camsource.sourceforge.net/"
-license=('GPL')
-depends=('libxml2' 'libjpeg>=8')
-backup=('etc/camsource.conf')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2
- mod_handle.c.patch)
-md5sums=('ffd824f13f99011984399fc3b7526c71'
- 'a8fabaf271b6f575c6e957573908c529')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- patch -Np0 -i $srcdir/mod_handle.c.patch || return 1
- ./configure --prefix=/usr \
- --sysconfdir=/etc || return 1
- make || return 1
- make DESTDIR="${pkgdir}" install || return 1
- mv ${pkgdir}/etc/camsource.conf.example ${pkgdir}/etc/camsource.conf
-}
diff --git a/extra/camsource/mod_handle.c.patch b/extra/camsource/mod_handle.c.patch
deleted file mode 100644
index 25e2d52fc..000000000
--- a/extra/camsource/mod_handle.c.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/mod_handle.c.old 2005-01-31 11:16:10.000000000 +0000
-+++ src/mod_handle.c 2005-01-31 11:27:25.000000000 +0000
-@@ -303,10 +303,9 @@
- for (i = 0; i < MAX_MODULES; i++)
- {
- if (modules[i].dlhand == dlh)
-- goto inuse; /* break */
-+ break;
- }
- dlclose(dlh);
--inuse:
- }
- }
-
diff --git a/extra/gpart/gpart-0.1h-PIC.patch b/extra/gpart/gpart-0.1h-PIC.patch
deleted file mode 100644
index e810bd999..000000000
--- a/extra/gpart/gpart-0.1h-PIC.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- gpart-0.1h/src/l64seek.c
-+++ gpart-0.1h/src/l64seek.c
-@@ -26,7 +26,7 @@
- } ostck[OSTACKLEN];
- static int osptr = -1;
-
--#if defined(__linux__) && defined(__i386__)
-+#if defined(__linux__) && defined(__i386__) && ! defined(__PIC__)
- _syscall5(int,_llseek,uint,fd,ulong,hi,ulong,lo,loff_t *,res,uint,wh)
- #endif
-
-@@ -36,7 +36,7 @@
- {
- off64_t ret = (off64_t)-1;
-
--#if defined(__linux__) && defined(__i386__)
-+#if defined(__linux__) && defined(__i386__) && ! defined(__PIC__)
- int iret;
- unsigned long ohi, olo;
-
diff --git a/extra/gpart/gpart-0.1h-no-_syscall.patch b/extra/gpart/gpart-0.1h-no-_syscall.patch
deleted file mode 100644
index fe68d08b6..000000000
--- a/extra/gpart/gpart-0.1h-no-_syscall.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-use syscall() rather than _syscall#()
-
-http://bugs.gentoo.org/163800
-
---- src/l64seek.c
-+++ src/l64seek.c
-@@ -27,7 +27,7 @@
- static int osptr = -1;
-
- #if defined(__linux__) && defined(__i386__) && ! defined(__PIC__)
--_syscall5(int,_llseek,uint,fd,ulong,hi,ulong,lo,loff_t *,res,uint,wh)
-+#define _llseek(fd,hi,lo,res,wh) syscall(__NR__llseek,fd,hi,lo,res,wh)
- #endif
-
-
diff --git a/extra/gsf-sharp/PKGBUILD b/extra/gsf-sharp/PKGBUILD
deleted file mode 100644
index c0857719e..000000000
--- a/extra/gsf-sharp/PKGBUILD
+++ /dev/null
@@ -1,29 +0,0 @@
-# $Id: PKGBUILD 78202 2010-04-20 01:26:27Z dgriffiths $
-# Maintainer: Jan de Groot <jgc@archlinux.org>
-# Contributor: William Rea <sillywilly@gmail.com>
-
-pkgname=gsf-sharp
-pkgver=0.8.1
-pkgrel=3
-pkgdesc="libgsf .NET binding"
-arch=(i686 x86_64)
-url="http://go-mono.org/"
-license=('LGPL2')
-depends=('libgsf>=1.14.1' 'gtk-sharp-2>=2.10')
-makedepends=('pkgconfig')
-options=(!libtool)
-source=(http://primates.ximian.com/~joe/${pkgname}-${pkgver}.tar.gz)
-md5sums=('92bb68612bdcd8ca3c475b3fee097968')
-
-build() {
- export MONO_SHARED_DIR=${srcdir}/.wabi
- mkdir -p ${MONO_SHARED_DIR}
-
- cd ${srcdir}/${pkgname}-${pkgver}
- ./configure --prefix=/usr || return 1
- make || return 1
- make DESTDIR=${pkgdir} install || return 1
-
- rm -rf ${MONO_SHARED_DIR}
-}
-
diff --git a/extra/gtk3/fix_crash_treeview.patch b/extra/gtk3/fix_crash_treeview.patch
deleted file mode 100644
index 12c6372f1..000000000
--- a/extra/gtk3/fix_crash_treeview.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-From 456b19a35adbdc4b098e6da020c3a87cb62ae7f4 Mon Sep 17 00:00:00 2001
-From: Benjamin Otte <otte@redhat.com>
-Date: Thu, 10 Nov 2011 15:52:44 +0000
-Subject: a11y: Fix gcc warning
-
----
-diff --git a/gtk/a11y/gtktreeviewaccessible.c b/gtk/a11y/gtktreeviewaccessible.c
-index 663bb51..b2ca9ba 100644
---- a/gtk/a11y/gtktreeviewaccessible.c
-+++ b/gtk/a11y/gtktreeviewaccessible.c
-@@ -238,7 +238,7 @@ gtk_tree_view_accessible_initialize (AtkObject *obj,
- accessible->n_children_deleted = 0;
-
- accessible->cell_info_by_index = g_hash_table_new_full (g_int_hash,
-- g_int_equal, NULL, cell_info_free);
-+ g_int_equal, NULL, (GDestroyNotify) cell_info_free);
-
- widget = GTK_WIDGET (data);
- tree_view = GTK_TREE_VIEW (widget);
---
-cgit v0.9.0.2
-From b25621173734ad1c9cee83802f7ac32ab7df20e7 Mon Sep 17 00:00:00 2001
-From: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
-Date: Wed, 09 Nov 2011 13:32:32 +0000
-Subject: gtktreeviewaccessible: use a value_destroy_func with the cell_info_by_index hash
-
-This ensures that we don't leak any GtkTreeViewAccessibleCellInfo when
-re-inserting a new one with the same key.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=663694
----
-diff --git a/gtk/a11y/gtktreeviewaccessible.c b/gtk/a11y/gtktreeviewaccessible.c
-index 046e253..4ad323c 100644
---- a/gtk/a11y/gtktreeviewaccessible.c
-+++ b/gtk/a11y/gtktreeviewaccessible.c
-@@ -237,7 +237,8 @@ gtk_tree_view_accessible_initialize (AtkObject *obj,
- accessible->idle_expand_path = NULL;
- accessible->n_children_deleted = 0;
-
-- accessible->cell_info_by_index = g_hash_table_new (g_int_hash, g_int_equal);
-+ accessible->cell_info_by_index = g_hash_table_new_full (g_int_hash,
-+ g_int_equal, NULL, cell_info_free);
-
- widget = GTK_WIDGET (data);
- tree_view = GTK_TREE_VIEW (widget);
-@@ -2845,7 +2846,6 @@ garbage_collect_cell_data (gpointer data)
- {
- if (!cell_info->in_use)
- {
-- cell_info_free (cell_info);
- g_hash_table_iter_remove (&iter);
- }
- }
---
-cgit v0.9.0.2
diff --git a/extra/htop/fix-segfault-small-terminal.patch b/extra/htop/fix-segfault-small-terminal.patch
deleted file mode 100644
index c55146492..000000000
--- a/extra/htop/fix-segfault-small-terminal.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- trunk/Meter.c 2011/08/26 20:52:35 229
-+++ trunk/Meter.c 2011/08/26 20:55:09 230
-@@ -264,13 +264,19 @@
-
- w--;
- x++;
-- char bar[w];
-+
-+ if (w < 1) {
-+ attrset(CRT_colors[RESET_COLOR]);
-+ return;
-+ }
-+ char bar[w + 1];
-
- int blockSizes[10];
- for (int i = 0; i < w; i++)
- bar[i] = ' ';
-
-- sprintf(bar + (w-strlen(buffer)), "%s", buffer);
-+ const size_t barOffset = w - MIN(strlen(buffer), w);
-+ snprintf(bar + barOffset, w - barOffset + 1, "%s", buffer);
-
- // First draw in the bar[] buffer...
- double total = 0.0;
diff --git a/extra/htop/fix-sort-key-bug.patch b/extra/htop/fix-sort-key-bug.patch
deleted file mode 100644
index 41a2dd377..000000000
--- a/extra/htop/fix-sort-key-bug.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-From: Roman Kosenko <madkite@gmail.com>
-Date: Thu, 10 Mar 2011 16:23:53 +0200
-Subject: [PATCH] Fix stupid bug with --sort-key
-
---- htop.c.old 2010-11-24 20:45:38.000000000 +0200
-+++ htop.c 2011-03-10 16:32:18.473716667 +0200
-@@ -282,7 +282,7 @@
- printVersionFlag();
- break;
- case 's':
-- if (strcmp(optarg, "help")) {
-+ if (!strcmp(optarg, "help")) {
- for (int j = 1; j < LAST_PROCESSFIELD; j++)
- printf ("%s\n", Process_fieldNames[j]);
- exit(0);
diff --git a/extra/muine/PKGBUILD b/extra/muine/PKGBUILD
deleted file mode 100644
index b6cca9fe7..000000000
--- a/extra/muine/PKGBUILD
+++ /dev/null
@@ -1,39 +0,0 @@
-# $Id: PKGBUILD 58724 2009-11-12 19:57:50Z ibiru $
-# Maintainer: Jan de Groot <jgc@archlinux.org>
-# Contributor: Ben Mazer <blm@groknil.org>
-
-pkgname=muine
-pkgver=0.8.11
-pkgrel=1
-pkgdesc="A music player written in C#"
-arch=(i686 x86_64)
-license=('GPL')
-url="http://www.muine-player.org/"
-depends=('gconf>=2.28.0' 'gtk2>=2.18.3' 'gnome-icon-theme>=2.28.0' 'gstreamer0.10>=0.10.25' 'mono>=2.4.2.3' 'gnome-sharp>=2.24.1' 'taglib-sharp>=2.0.3.2' 'ndesk-dbus>=0.6.0' 'ndesk-dbus-glib>=0.4.1' 'gstreamer0.10-base-plugins>=0.10.25' 'gstreamer0.10-good-plugins>=0.10.16')
-makedepends=('intltool')
-optdepends=('gstreamer0.10-ugly-plugins: Extra media codecs'
- 'gstreamer0.10-bad-plugins: Extra media codecs'
- 'gstreamer0.10-ffmpeg: Extra media codecs')
-options=('!libtool' '!emptydirs' '!makeflags')
-install=muine.install
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.8/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('f2a74519d9e9c6c4fca9c5217a13964a')
-
-build() {
-
- export MONO_SHARED_DIR="${srcdir}/.wabi"
- mkdir -p "${MONO_SHARED_DIR}"
-
- cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
- --disable-static || return 1
- make || return 1
- make DESTDIR="${pkgdir}" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install || return 1
-
- install -m755 plugins/TrayIcon.{dll,xml} "${pkgdir}/usr/lib/muine/plugins/" || return 1
- install -m644 plugins/muine-tray-*.png "${pkgdir}/usr/lib/muine/plugins/" || return 1
-
- install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
- gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain muine ${pkgdir}/etc/gconf/schemas/*.schemas || return 1
- rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
-}
diff --git a/extra/muine/muine.install b/extra/muine/muine.install
deleted file mode 100644
index 968f6b185..000000000
--- a/extra/muine/muine.install
+++ /dev/null
@@ -1,25 +0,0 @@
-pkgname=muine
-
-post_install() {
- usr/sbin/gconfpkg --install ${pkgname}
- update-desktop-database -q
- gtk-update-icon-cache -f -t -q usr/share/icons/hicolor
-
-}
-
-pre_upgrade() {
- pre_remove $1
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- usr/sbin/gconfpkg --uninstall ${pkgname}
-}
-
-post_remove() {
- gtk-update-icon-cache -f -t -q /usr/share/icons/hicolor
- update-desktop-database -q
-}
diff --git a/extra/ocfs2-tools/PKGBUILD b/extra/ocfs2-tools/PKGBUILD
deleted file mode 100644
index 9db43e1e9..000000000
--- a/extra/ocfs2-tools/PKGBUILD
+++ /dev/null
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 90997 2010-09-20 13:54:14Z remy $
-# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
-pkgname=ocfs2-tools
-pkgver=1.4.3
-pkgrel=2
-pkgdesc="Oracle Cluster File System 2 utilities"
-arch=(i686 x86_64)
-url="http://oss.oracle.com/projects/ocfs2-tools/"
-depends=('e2fsprogs' 'glib2' 'readline>=6.0.00')
-license=('GPL2')
-source=(http://oss.oracle.com/projects/ocfs2-tools/dist/files/source/v1.4/$pkgname-$pkgver.tar.gz
-gcc45-ftbfs.patch)
-options=(!makeflags)
-optdepends=('python2: for using ocfs2console')
-md5sums=('7d8895ea41999ce8f468e2bc7dc55ddc'
- '5dba18ca5596b1de0f2eeb30f5ed1656')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- sed -i 's#/usr/bin/python#/usr/bin/python2#' ocfs2console/ocfs2console
- # Fix build with gcc 4.5
- # http://svn.debian.org/viewsvn/collab-maint?view=rev&revision=15814
- patch -p1 -i ${srcdir}/gcc45-ftbfs.patch
- ./configure --prefix=/usr --mandir=/usr/share/man
- make LDFLAGS=-L/usr/lib
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir install
- install -m 755 -D $srcdir/$pkgname-$pkgver/vendor/common/ocfs2.init \
- $pkgdir/etc/rc.d/ocfs2
- install -m 755 -D $srcdir/$pkgname-$pkgver/vendor/common/o2cb.init \
- $pkgdir/etc/rc.d/o2cb
-}
diff --git a/extra/ocfs2-tools/gcc45-ftbfs.patch b/extra/ocfs2-tools/gcc45-ftbfs.patch
deleted file mode 100644
index 0db24f49e..000000000
--- a/extra/ocfs2-tools/gcc45-ftbfs.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -urN ocfs2-tools-1.4.3.orig//mount.ocfs2/mount.ocfs2.c ocfs2-tools-1.4.3/mount.ocfs2/mount.ocfs2.c
---- ocfs2-tools-1.4.3.orig//mount.ocfs2/mount.ocfs2.c 2009-04-14 00:10:40.000000000 +0200
-+++ ocfs2-tools-1.4.3/mount.ocfs2/mount.ocfs2.c 2010-03-24 07:23:45.000000000 +0100
-@@ -261,7 +261,7 @@
- char *extra = NULL;
- int dev_ro = 0;
- char *hbstr = NULL;
-- char stackstr[strlen(OCFS2_CLUSTER_STACK_ARG) + OCFS2_STACK_LABEL_LEN + 1] = "";
-+ char stackstr[strlen(OCFS2_CLUSTER_STACK_ARG) + OCFS2_STACK_LABEL_LEN + 1];
- ocfs2_filesys *fs = NULL;
- struct o2cb_cluster_desc cluster;
- struct o2cb_region_desc desc;
-@@ -269,6 +269,8 @@
- int hb_started = 0;
- struct stat statbuf;
-
-+ stackstr[0] = '\0';
-+
- initialize_ocfs_error_table();
- initialize_o2dl_error_table();
- initialize_o2cb_error_table();
diff --git a/extra/qrencode/libpng14.diff b/extra/qrencode/libpng14.diff
deleted file mode 100644
index eadf68dde..000000000
--- a/extra/qrencode/libpng14.diff
+++ /dev/null
@@ -1,65 +0,0 @@
-diff -U 3 -H -d -r -N -- qrencode-3.1.1/configure qrencode-3.1.1-ok/configure
---- qrencode-3.1.1/configure 2010-02-02 19:43:16.000000000 -0500
-+++ qrencode-3.1.1-ok/configure 2010-02-03 21:41:43.205709796 -0500
-@@ -11445,12 +11445,12 @@
- pkg_cv_png_CFLAGS="$png_CFLAGS"
- else
- if test -n "$PKG_CONFIG" && \
-- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\"libpng12\"\""; } >&5
-- ($PKG_CONFIG --exists --print-errors ""libpng12"") 2>&5
-+ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\"libpng14\"\""; } >&5
-+ ($PKG_CONFIG --exists --print-errors ""libpng14"") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; }; then
-- pkg_cv_png_CFLAGS=`$PKG_CONFIG --cflags ""libpng12"" 2>/dev/null`
-+ pkg_cv_png_CFLAGS=`$PKG_CONFIG --cflags ""libpng14"" 2>/dev/null`
- else
- pkg_failed=yes
- fi
-@@ -11463,12 +11463,12 @@
- pkg_cv_png_LIBS="$png_LIBS"
- else
- if test -n "$PKG_CONFIG" && \
-- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\"libpng12\"\""; } >&5
-- ($PKG_CONFIG --exists --print-errors ""libpng12"") 2>&5
-+ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\"libpng14\"\""; } >&5
-+ ($PKG_CONFIG --exists --print-errors ""libpng14"") 2>&5
- ac_status=$?
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
- test $ac_status = 0; }; then
-- pkg_cv_png_LIBS=`$PKG_CONFIG --libs ""libpng12"" 2>/dev/null`
-+ pkg_cv_png_LIBS=`$PKG_CONFIG --libs ""libpng14"" 2>/dev/null`
- else
- pkg_failed=yes
- fi
-@@ -11487,14 +11487,14 @@
- _pkg_short_errors_supported=no
- fi
- if test $_pkg_short_errors_supported = yes; then
-- png_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors ""libpng12""`
-+ png_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors ""libpng14""`
- else
-- png_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors ""libpng12""`
-+ png_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors ""libpng14""`
- fi
- # Put the nasty error message in config.log where it belongs
- echo "$png_PKG_ERRORS" >&5
-
-- as_fn_error "Package requirements (\"libpng12\") were not met:
-+ as_fn_error "Package requirements (\"libpng14\") were not met:
-
- $png_PKG_ERRORS
-
-diff -U 3 -H -d -r -N -- qrencode-3.1.1/configure.ac qrencode-3.1.1-ok/configure.ac
---- qrencode-3.1.1/configure.ac 2010-02-02 19:42:12.000000000 -0500
-+++ qrencode-3.1.1-ok/configure.ac 2010-02-03 21:42:07.202419056 -0500
-@@ -36,7 +36,7 @@
- [build_tools=$withval], [build_tools=yes])
- AM_CONDITIONAL(BUILD_TOOLS, [test "x$build_tools" = "xyes" ])
- if test x$build_tools = xyes ; then
-- PKG_CHECK_MODULES(png, "libpng12")
-+ PKG_CHECK_MODULES(png, "libpng14")
- fi
-
- dnl --with-tests
diff --git a/extra/telepathy-kde-accounts-kcm-plugins/PKGBUILD b/extra/telepathy-kde-accounts-kcm-plugins/PKGBUILD
deleted file mode 100644
index 52c88c6b8..000000000
--- a/extra/telepathy-kde-accounts-kcm-plugins/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino <andrea@archlinux.org>
-# Contributor: Laurent Carlier <lordheavym@gmail.com>
-
-pkgname=telepathy-kde-accounts-kcm-plugins
-pkgver=0.1.0
-pkgrel=1
-pkgdesc="Plugins for protocol-specific UI's in the Telepathy Accounts KCM"
-arch=('i686' 'x86_64')
-url="http://www.kde.org"
-license=('GPL')
-depends=('telepathy-kde-accounts-kcm')
-makedepends=('cmake' 'automoc4')
-optdepends=('telepathy-gabble: XMPP/Jabber/GTalk support'
- 'telepathy-butterfly: MSN/Windows Live support'
- 'telepathy-haze: all protocols supported by libpurple')
-groups=('telepathy-kde')
-source=("http://download.kde.org/unstable/telepathy-kde/${pkgver}/src/${pkgname}_${pkgver}.tar.bz2")
-sha1sums=('340202386d0e0e8e0f18fb3cb856a9055fc200a5')
-
-build() {
- cd "${srcdir}"
- mkdir build
- cd build
- cmake ../${pkgname}_${pkgver} \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_BUILD_TYPE=Release
- make
-}
-
-package() {
- cd "${srcdir}"/build
- make DESTDIR="${pkgdir}" install
-}