summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/goobox/PKGBUILD35
-rw-r--r--community/goobox/fix-notifications.patch25
-rw-r--r--community/goobox/goobox.install13
-rw-r--r--community/gtkwave/PKGBUILD6
-rw-r--r--community/mygui/PKGBUILD5
-rw-r--r--community/mythplugins/PKGBUILD7
-rw-r--r--community/packagekit/PKGBUILD29
-rw-r--r--community/remmina/PKGBUILD10
8 files changed, 95 insertions, 35 deletions
diff --git a/community/goobox/PKGBUILD b/community/goobox/PKGBUILD
new file mode 100644
index 000000000..6a5d3a949
--- /dev/null
+++ b/community/goobox/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 69379 2012-04-15 01:54:25Z bgyorgy $
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=goobox
+pkgver=3.0.1
+pkgrel=1
+pkgdesc="CD player and ripper for GNOME"
+arch=('i686' 'x86_64')
+url="http://people.gnome.org/~paobac/goobox/"
+license=('GPL')
+depends=('brasero' 'libmusicbrainz3' 'libnotify' 'xdg-utils')
+makedepends=('gconf' 'intltool' 'gnome-doc-utils')
+optdepends=('gstreamer0.10-good-plugins: rip CDs into flac and wav format')
+install=$pkgname.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
+ fix-notifications.patch)
+sha256sums=('344351ab8a9aee9e1c7f490e84c972a0df57eec5b44d31247c7ef268bf4cb60e'
+ '41f1307c271ee003d2e7435d6e9a7c5f72d3668ce0cc50842769c34f97c7fe99')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ # https://bugzilla.gnome.org/show_bug.cgi?id=674121
+ patch -Np1 -i "$srcdir/fix-notifications.patch"
+
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-static --disable-scrollkeeper --disable-schemas-compile
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
+}
diff --git a/community/goobox/fix-notifications.patch b/community/goobox/fix-notifications.patch
new file mode 100644
index 000000000..6ca9c65cb
--- /dev/null
+++ b/community/goobox/fix-notifications.patch
@@ -0,0 +1,25 @@
+diff -Naur goobox-3.0.1.orig/src/main.c goobox-3.0.1/src/main.c
+--- goobox-3.0.1.orig/src/main.c 2011-08-22 19:55:45.000000000 +0200
++++ goobox-3.0.1/src/main.c 2012-04-15 02:59:34.476683867 +0200
+@@ -729,15 +729,15 @@
+ window,
+ NULL);
+
+- notify_notification_set_hint_byte (notification,
+- "action-icons",
+- TRUE);
++ notify_notification_set_hint (notification,
++ "action-icons",
++ g_variant_new_boolean (TRUE));
+ }
+
+ if (notification_supports_persistence)
+- notify_notification_set_hint_byte (notification,
+- "resident" /* "transient" */,
+- TRUE);
++ notify_notification_set_hint (notification,
++ "resident" /* "transient" */,
++ g_variant_new_boolean (TRUE));
+
+ notify_notification_show (notification, NULL);
+
diff --git a/community/goobox/goobox.install b/community/goobox/goobox.install
new file mode 100644
index 000000000..aa4c3e059
--- /dev/null
+++ b/community/goobox/goobox.install
@@ -0,0 +1,13 @@
+post_install() {
+ glib-compile-schemas usr/share/glib-2.0/schemas
+ update-desktop-database -q
+ xdg-icon-resource forceupdate
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+post_remove() {
+ post_install $1
+}
diff --git a/community/gtkwave/PKGBUILD b/community/gtkwave/PKGBUILD
index c0f29e5b2..1168091be 100644
--- a/community/gtkwave/PKGBUILD
+++ b/community/gtkwave/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 67842 2012-03-15 00:01:16Z kkeen $
+# $Id: PKGBUILD 69361 2012-04-14 14:13:25Z kkeen $
# Maintainer: Kyle Keen <keenerd@gmail.com>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: Jared Casper <jaredcasper@gmail.com>
pkgname=gtkwave
-pkgver=3.3.34
+pkgver=3.3.35
pkgrel=1
pkgdesc='A wave viewer which reads LXT, LXT2, VZT, GHW and VCD/EVCD files'
arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@ depends=('bzip2' 'xz' 'gtk2')
makedepends=('gperf')
install='gtkwave.install'
source=("http://gtkwave.sourceforge.net/gtkwave-${pkgver}.tar.gz")
-md5sums=('eef932f2e4826d10acb05d96d7a4e665')
+md5sums=('f7de1e24ca4e3c5396d38dc6232d1f91')
build() {
cd "${srcdir}/gtkwave-${pkgver}"
diff --git a/community/mygui/PKGBUILD b/community/mygui/PKGBUILD
index 6e5a79cb4..af888b341 100644
--- a/community/mygui/PKGBUILD
+++ b/community/mygui/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 67266 2012-03-06 06:11:36Z svenstaro $
+# $Id: PKGBUILD 69363 2012-04-14 17:09:46Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Andrew Belitsky <belitsky.a@gmail.com>
pkgbase=mygui
pkgname=('mygui' 'mygui-docs')
pkgver=3.2.0
-pkgrel=1
+pkgrel=2
pkgdesc="A multilayer and overlappable GUI System for OGRE"
arch=('i686' 'x86_64')
url="http://mygui.info/"
@@ -23,6 +23,7 @@ build() {
sed -i -e 's:../share:/usr/share:' \
-e 's:"bin":"../opt/MYGUI":' \
CMake/InstallResources.cmake
+ sed -i '71 i set(MYGUI_GCC_VISIBILITY_FLAGS "")' CMakeLists.txt
# get a clean build dir
[[ -d build ]] && rm -rf build
diff --git a/community/mythplugins/PKGBUILD b/community/mythplugins/PKGBUILD
index 29d9895a9..05e3c04f0 100644
--- a/community/mythplugins/PKGBUILD
+++ b/community/mythplugins/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 69264 2012-04-11 06:54:34Z jconder $
+# $Id: PKGBUILD 69346 2012-04-14 12:26:30Z jconder $
# Maintainer: Jonathan Conder <jonno.conder@gmail.com>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
@@ -14,7 +14,7 @@ pkgname=('mythplugins-mytharchive'
'mythplugins-mythweb'
'mythplugins-mythzoneminder')
pkgver=0.25
-pkgrel=1
+pkgrel=2
epoch=1
arch=('i686' 'x86_64')
url="http://www.mythtv.org"
@@ -33,7 +33,8 @@ build() {
cd "$srcdir/$pkgbase-$pkgver"
find . -name '*.py' -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@'
- sed -re 's@cstdio@cstdio>\n#include <unistd.h@' -i mythzoneminder/mythzmserver/zmserver.cpp
+ sed -re 's@/usr/local.*/usr/share@/usr/share@' -i 'mythweb/mythweb.php'
+ sed -re 's@cstdio@cstdio>\n#include <unistd.h@' -i 'mythzoneminder/mythzmserver/zmserver.cpp'
./configure --prefix=/usr \
--enable-all \
diff --git a/community/packagekit/PKGBUILD b/community/packagekit/PKGBUILD
index 950a3d992..d4068f9b6 100644
--- a/community/packagekit/PKGBUILD
+++ b/community/packagekit/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 69216 2012-04-10 05:27:08Z jconder $
+# $Id: PKGBUILD 69338 2012-04-14 09:48:38Z jconder $
# Maintainer: Jonathan Conder <jonno.conder@gmail.com>
pkgbase='packagekit'
-pkgname=('packagekit' 'packagekit-qt' 'packagekit-qt2' 'packagekit-python')
-pkgver=0.6.21
-pkgrel=3
+pkgname=('packagekit' 'packagekit-qt2' 'packagekit-python')
+pkgver=0.6.22
+pkgrel=1
pkgdesc="A system designed to make installation and updates of packages easier."
arch=('i686' 'x86_64')
url="http://www.packagekit.org"
@@ -12,23 +12,17 @@ makedepends=('dbus-glib' 'gobject-introspection' 'gtk-doc' 'intltool'
'networkmanager' 'pacman' 'pm-utils' 'polkit' 'python2' 'qt'
'shared-mime-info' 'sqlite' 'udev')
options=('!libtool')
-source=("http://www.packagekit.org/releases/PackageKit-$pkgver.tar.xz"
- 'alpm.patch')
-sha256sums=('68e5d4d07adf50b1fae6cbc0963555345ba7fc12d86d3e3387874547a5448b8e'
- 'ab6a9be1741aba6972f3327ac625b802e9404e21fe60ca0919a440e8ac9df965')
+source=("http://www.packagekit.org/releases/PackageKit-$pkgver.tar.xz")
+sha256sums=('b9f71721b0b16e106c0a1ce28c97b2277a34b0c15d1a171f4898f34117ebaa2d')
build() {
cd "$srcdir/PackageKit-$pkgver"
- patch -Np1 -i "$srcdir/alpm.patch"
-
sed -i 's@SUBDIRS = test@SUBDIRS =@' 'backends/Makefile.in'
sed -i 's@python @python2 @' 'lib/python/packagekit/Makefile.in'
sed -i 's@bin/python@bin/python2@' 'lib/python/packagekit/'*.py
export PYTHON=/usr/bin/python2
- # TODO: remove when upstream is patched
- autoreconf
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
@@ -48,7 +42,7 @@ build() {
--disable-dummy \
--enable-alpm \
--with-default-backend=alpm
- make -s
+ make -s CFLAGS='-D_FILE_OFFSET_BITS=64'
}
package_packagekit() {
@@ -78,15 +72,6 @@ package_packagekit() {
touch "$pkgdir/var/log/PackageKit"
}
-package_packagekit-qt() {
- depends=('packagekit' 'qt')
- pkgdesc=('Qt bindings for PackageKit')
-
- cd "$srcdir/PackageKit-$pkgver/lib/packagekit-qt"
-
- make DESTDIR="$pkgdir" install
-}
-
package_packagekit-qt2() {
depends=('packagekit' 'qt')
pkgdesc=('Qt bindings for PackageKit')
diff --git a/community/remmina/PKGBUILD b/community/remmina/PKGBUILD
index 8c01c6e1a..f2edde214 100644
--- a/community/remmina/PKGBUILD
+++ b/community/remmina/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 66273 2012-02-23 07:08:35Z spupykin $
+# $Id: PKGBUILD 69336 2012-04-14 04:21:10Z lcarlier $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=remmina
pkgver=1.0.0
-pkgrel=3
+pkgrel=4
pkgdesc="Remmina is a remote desktop client written in GTK+. "
arch=(i686 x86_64)
url="http://remmina.sourceforge.net/"
@@ -17,8 +17,8 @@ provides=("grdc" "grdc=$pkgver" 'remmina-plugins')
conflicts=("grdc")
install=remmina.install
source=(https://github.com/downloads/FreeRDP/Remmina/Remmina-$pkgver.tar.gz
- 'https://github.com/FreeRDP/Remmina/commit/569d9bb702d06c061dfbbf3c590d57ea83a04369.diff'
- 'https://github.com/FreeRDP/Remmina/commit/f7d1038ba358a295fb46c681db5c47e4ead97306.diff')
+ 'https://github.com/FreeRDP/Remmina/commit/569d9bb702d06c061dfbbf3c590d57ea83a04369.diff'
+ 'https://github.com/FreeRDP/Remmina/commit/f7d1038ba358a295fb46c681db5c47e4ead97306.diff')
md5sums=('701c540acaab961bc3adf130a2ddb8b1'
'a979c898d5e53446cec9d01912ad9243'
'b2a9c0e80ac7b0c8a26935bbe289aa3b')
@@ -27,7 +27,7 @@ build() {
cd ${srcdir}/FreeRDP-Remmina-*/
patch -p1 -i "${srcdir}/569d9bb702d06c061dfbbf3c590d57ea83a04369.diff"
patch -p1 -i "${srcdir}/f7d1038ba358a295fb46c681db5c47e4ead97306.diff"
- export LDFLAGS="-lX11 -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lpthread"
+ export LDFLAGS="-lX11 -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lpthread -lgnutls"
cmake -DWITH_APPINDICATOR=OFF -DCMAKE_INSTALL_PREFIX=/usr .
make
make DESTDIR=${pkgdir} install