From 553aa767554ad66acdd535fa6b736cdfb9daf7fe Mon Sep 17 00:00:00 2001 From: Daniel Molina García Date: Thu, 7 Jun 2012 23:16:05 +0200 Subject: Adding a patch for compiling with success supertux. The version of stable debian, probably with a lighter engine, runs much better. --- community/supertux/PKGBUILD | 9 +++++++-- community/supertux/squirrel.patch | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+), 2 deletions(-) create mode 100644 community/supertux/squirrel.patch (limited to 'community') diff --git a/community/supertux/PKGBUILD b/community/supertux/PKGBUILD index b6cc9368b..3497070cf 100644 --- a/community/supertux/PKGBUILD +++ b/community/supertux/PKGBUILD @@ -12,12 +12,17 @@ url="http://super-tux.sourceforge.net/" license=('GPL') depends=('sdl_image' 'curl' 'physfs' 'openal' 'libvorbis' 'libgl' 'glew') makedepends=('cmake' 'boost') -source=(http://download.berlios.de/supertux/${pkgname}-${pkgver}.tar.bz2) -md5sums=('f3f803e629ee51a9de0b366a036e393d') +source=("http://download.berlios.de/supertux/${pkgname}-${pkgver}.tar.bz2" + 'squirrel.patch') +md5sums=('f3f803e629ee51a9de0b366a036e393d' + 'eb06315514be4f200428f14b927beb66') build() { cd ${srcdir}/${pkgname}-${pkgver} + # The following patch was taken from .-.- + patch -Np1 -i "$srcdir/squirrel.patch" + sed -i '1i#include ' src/supertux/screen_manager.hpp sed -i '/types\.h/d' src/addon/addon_manager.cpp cmake -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_SUBDIR_BIN=bin . diff --git a/community/supertux/squirrel.patch b/community/supertux/squirrel.patch new file mode 100644 index 000000000..16781b610 --- /dev/null +++ b/community/supertux/squirrel.patch @@ -0,0 +1,36 @@ +diff -Naur supertux2-0.3.3.orig/external/squirrel/squirrel/sqmem.h supertux2-0.3.3/external/squirrel/squirrel/sqmem.h +--- supertux2-0.3.3.orig/external/squirrel/squirrel/sqmem.h 1970-01-01 01:00:00.000000000 +0100 ++++ supertux2-0.3.3/external/squirrel/squirrel/sqmem.h 2012-05-01 11:59:37.000000000 +0200 +@@ -0,0 +1,8 @@ ++/* see copyright notice in squirrel.h */ ++#ifndef _SQMEM_H_ ++#define _SQMEM_H_ ++ ++void *sq_vm_malloc(SQUnsignedInteger size); ++void *sq_vm_realloc(void *p,SQUnsignedInteger oldsize,SQUnsignedInteger size); ++void sq_vm_free(void *p,SQUnsignedInteger size); ++#endif //_SQMEM_H_ +diff -Naur supertux2-0.3.3.orig/external/squirrel/squirrel/sqstate.h supertux2-0.3.3/external/squirrel/squirrel/sqstate.h +--- supertux2-0.3.3.orig/external/squirrel/squirrel/sqstate.h 2010-03-01 13:40:58.000000000 +0100 ++++ supertux2-0.3.3/external/squirrel/squirrel/sqstate.h 2012-05-01 11:59:37.000000000 +0200 +@@ -136,8 +136,4 @@ + extern SQObjectPtr _minusone_; + + bool CompileTypemask(SQIntVec &res,const SQChar *typemask); +- +-void *sq_vm_malloc(SQUnsignedInteger size); +-void *sq_vm_realloc(void *p,SQUnsignedInteger oldsize,SQUnsignedInteger size); +-void sq_vm_free(void *p,SQUnsignedInteger size); + #endif //_SQSTATE_H_ +diff -Naur supertux2-0.3.3.orig/external/squirrel/squirrel/squtils.h supertux2-0.3.3/external/squirrel/squirrel/squtils.h +--- supertux2-0.3.3.orig/external/squirrel/squirrel/squtils.h 2010-03-01 13:40:58.000000000 +0100 ++++ supertux2-0.3.3/external/squirrel/squirrel/squtils.h 2012-05-01 11:59:37.000000000 +0200 +@@ -2,6 +2,8 @@ + #ifndef _SQUTILS_H_ + #define _SQUTILS_H_ + ++#include "sqmem.h" ++ + #define sq_new(__ptr,__type) {__ptr=(__type *)sq_vm_malloc(sizeof(__type));new (__ptr) __type;} + #define sq_delete(__ptr,__type) {__ptr->~__type();sq_vm_free(__ptr,sizeof(__type));} + #define SQ_MALLOC(__size) sq_vm_malloc((__size)); -- cgit v1.2.3-54-g00ecf From 3187d2ae8f540fd5f918eecc4d63b6f305bba632 Mon Sep 17 00:00:00 2001 From: Daniel Molina García Date: Fri, 8 Jun 2012 00:38:51 +0200 Subject: Including web page where I obtained the patch. Also increasing by 0.1 the pkgrel, what I forgot in previous pull. --- community/supertux/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'community') diff --git a/community/supertux/PKGBUILD b/community/supertux/PKGBUILD index 3497070cf..152a2d7da 100644 --- a/community/supertux/PKGBUILD +++ b/community/supertux/PKGBUILD @@ -5,7 +5,7 @@ pkgname=supertux pkgver=0.3.3 -pkgrel=5 +pkgrel=5.1 pkgdesc="A classic 2D jump'n run sidescroller game in a style similar to the original SuperMario games" arch=('i686' 'x86_64' 'mips64el') url="http://super-tux.sourceforge.net/" @@ -20,7 +20,7 @@ md5sums=('f3f803e629ee51a9de0b366a036e393d' build() { cd ${srcdir}/${pkgname}-${pkgver} - # The following patch was taken from .-.- + # The following patch was taken from https://supertux.lethargik.org/bugs/view.php?id=933&nbn=3 patch -Np1 -i "$srcdir/squirrel.patch" sed -i '1i#include ' src/supertux/screen_manager.hpp -- cgit v1.2.3-54-g00ecf From 7d11e9346ebd0f9c378952caee0c82d6ca815f4e Mon Sep 17 00:00:00 2001 From: root Date: Fri, 8 Jun 2012 00:01:46 +0000 Subject: Fri Jun 8 00:01:46 UTC 2012 --- community/chmsee/PKGBUILD | 12 +- community/elinks/PKGBUILD | 6 +- community/haveged/PKGBUILD | 13 +- community/haveged/haveged.service | 11 + community/ldc/PKGBUILD | 17 +- core/libusbx/PKGBUILD | 33 ++ core/pinentry/PKGBUILD | 21 +- core/pinentry/qt4-pinentry-window.patch | 28 ++ core/systemd/0001-Reinstate-TIMEOUT-handling.patch | 124 +++++ core/systemd/PKGBUILD | 213 +++++++++ core/systemd/initcpio-hook-udev | 20 + core/systemd/initcpio-install-timestamp | 14 + core/systemd/initcpio-install-udev | 28 ++ core/systemd/locale.sh | 60 +++ core/systemd/os-release | 5 + core/systemd/systemd-tools.install | 29 ++ core/systemd/systemd.install | 51 ++ extra/aspell-de/PKGBUILD | 6 +- extra/cups/PKGBUILD | 14 +- extra/cups/cups-systemd-socket.patch | 527 +++++++++++++++++++++ extra/dnsmasq/PKGBUILD | 6 +- extra/dovecot/PKGBUILD | 8 +- extra/fcitx/PKGBUILD | 13 +- extra/gnu-efi/PKGBUILD | 34 ++ extra/mod_perl/PKGBUILD | 16 +- extra/mx/PKGBUILD | 8 +- extra/quodlibet/PKGBUILD | 9 +- extra/vim/PKGBUILD | 12 +- kernels/linux-libre-rt/PKGBUILD | 15 +- kernels/linux-libre-rt/config.i686 | 7 +- kernels/linux-libre-rt/config.x86_64 | 7 +- kernels/linux-libre-rt/linux-libre-rt.install | 12 +- libre/apache-ant/PKGBUILD | 12 +- libre/apache-ant/apache-ant.csh | 3 +- libre/your-freedom/PKGBUILD | 5 +- multilib/lib32-libphobos-ldc/PKGBUILD | 57 +++ testing/psmisc/PKGBUILD | 25 + .../systemd/0001-Reinstate-TIMEOUT-handling.patch | 124 +++++ testing/systemd/PKGBUILD | 208 ++++++++ testing/systemd/initcpio-hook-udev | 20 + testing/systemd/initcpio-install-timestamp | 14 + testing/systemd/initcpio-install-udev | 28 ++ testing/systemd/locale.sh | 60 +++ testing/systemd/systemd-tools.install | 29 ++ testing/systemd/systemd.install | 51 ++ 45 files changed, 1907 insertions(+), 108 deletions(-) create mode 100644 community/haveged/haveged.service create mode 100644 core/libusbx/PKGBUILD create mode 100644 core/pinentry/qt4-pinentry-window.patch create mode 100644 core/systemd/0001-Reinstate-TIMEOUT-handling.patch create mode 100644 core/systemd/PKGBUILD create mode 100644 core/systemd/initcpio-hook-udev create mode 100644 core/systemd/initcpio-install-timestamp create mode 100644 core/systemd/initcpio-install-udev create mode 100644 core/systemd/locale.sh create mode 100644 core/systemd/os-release create mode 100644 core/systemd/systemd-tools.install create mode 100644 core/systemd/systemd.install create mode 100644 extra/cups/cups-systemd-socket.patch create mode 100644 extra/gnu-efi/PKGBUILD create mode 100644 multilib/lib32-libphobos-ldc/PKGBUILD create mode 100644 testing/psmisc/PKGBUILD create mode 100644 testing/systemd/0001-Reinstate-TIMEOUT-handling.patch create mode 100644 testing/systemd/PKGBUILD create mode 100644 testing/systemd/initcpio-hook-udev create mode 100644 testing/systemd/initcpio-install-timestamp create mode 100644 testing/systemd/initcpio-install-udev create mode 100644 testing/systemd/locale.sh create mode 100644 testing/systemd/systemd-tools.install create mode 100644 testing/systemd/systemd.install (limited to 'community') diff --git a/community/chmsee/PKGBUILD b/community/chmsee/PKGBUILD index 386876953..9a3937901 100644 --- a/community/chmsee/PKGBUILD +++ b/community/chmsee/PKGBUILD @@ -1,28 +1,28 @@ -# $Id: PKGBUILD 69903 2012-04-26 07:47:47Z lcarlier $ +# $Id: PKGBUILD 72043 2012-06-06 19:44:09Z lcarlier $ # Maintainer : Laurent Carlier # Contributor: dionydonny # Contributor: Ermanno pkgname=chmsee -pkgver=1.99.09 -pkgrel=2 +pkgver=1.99.10 +pkgrel=1 arch=('i686' 'x86_64') pkgdesc="A chm (MS HTML help file format) viewer based on xulrunner." url="http://chmsee.googlecode.com/" license=('GPL') -depends=('xulrunner>=11.0' 'chmlib' 'desktop-file-utils') +depends=('xulrunner>=13.0' 'chmlib' 'desktop-file-utils') makedepends=('python2') source=(chmsee-$pkgver.tar.gz::https://github.com/jungleji/chmsee/tarball/v$pkgver chmsee) install=chmsee.install -md5sums=('f0ee2a87ffd3f6667d88eb89c31387e4' +md5sums=('8d8a45f10fe68c08d2248ea1df62a697' '242a9390bc943cc38237fa71137fb26c') build() { cd ${srcdir}/jungleji-chmsee-*/src cp Makefile.arch Makefile - sed -i -e 's/11.*/12.*/g' ../application.ini + sed -i -e 's/12.*/13.*/g' ../application.ini make } diff --git a/community/elinks/PKGBUILD b/community/elinks/PKGBUILD index 57957d67c..3ed1b04bf 100644 --- a/community/elinks/PKGBUILD +++ b/community/elinks/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 54357 2011-08-17 12:23:10Z kkeen $ +# $Id: PKGBUILD 72041 2012-06-06 18:55:27Z kkeen $ # Maintainer: Kyle Keen # Maintainer: Sergej Pupykin # Maintainer: Andrea Scarpino @@ -7,8 +7,8 @@ pkgname=elinks pkgver=0.13 -_commit="30c485af4c4ba128d82171a6066594f3cfaeae5d" -pkgrel=9 +_commit="9313aae9062e1d9ff084858fa6844259cd8237d6" +pkgrel=10 pkgdesc="An advanced and well-established feature-rich text mode web browser." arch=("i686" "x86_64") url="http://elinks.or.cz" diff --git a/community/haveged/PKGBUILD b/community/haveged/PKGBUILD index 118750b7b..35087ea57 100644 --- a/community/haveged/PKGBUILD +++ b/community/haveged/PKGBUILD @@ -1,19 +1,21 @@ +# $Id: PKGBUILD 72028 2012-06-06 10:37:52Z heftig $ # Maintainer: Bartłomiej Piotrowski # Contributor: kfgz # Contributor: pootzko pkgname=haveged pkgver=1.4 -pkgrel=1 -pkgdesc="A simple entropy daemon." +pkgrel=3 +pkgdesc="Entropy harvesting daemon using CPU timings" arch=('i686' 'x86_64') url="http://www.issihosts.com/haveged" license=('GPL') -depends=('bash') +depends=('glibc') source=(${url}/${pkgname}-${pkgver}.tar.gz - haveged) + haveged haveged.service) md5sums=('39a03d4b8a4225706f78dbef3f623b0e' - '264b725be5271288b40f363d7cfc6b68') + '264b725be5271288b40f363d7cfc6b68' + 'fc62a480f520377364503aca9efff0b0') build() { cd "${srcdir}"/${pkgname}-${pkgver/a/} @@ -28,4 +30,5 @@ package() { cd "${srcdir}" install -D -m755 haveged "${pkgdir}"/etc/rc.d/haveged + install -D -m644 haveged.service "${pkgdir}"/usr/lib/systemd/system/haveged.service } diff --git a/community/haveged/haveged.service b/community/haveged/haveged.service new file mode 100644 index 000000000..6803a0dec --- /dev/null +++ b/community/haveged/haveged.service @@ -0,0 +1,11 @@ +[Unit] +Description=Entropy Harvesting Daemon +Documentation=man:haveged(8) + +[Service] +Type=forking +ExecStart=/usr/sbin/haveged -w 1024 -v 1 +PIDFile=/var/run/haveged.pid + +[Install] +WantedBy=multi-user.target diff --git a/community/ldc/PKGBUILD b/community/ldc/PKGBUILD index 3e29ab293..ba9552118 100644 --- a/community/ldc/PKGBUILD +++ b/community/ldc/PKGBUILD @@ -1,19 +1,24 @@ -# $Id: PKGBUILD 68277 2012-03-21 07:36:10Z svenstaro $ +# $Id: PKGBUILD 72035 2012-06-06 13:48:23Z svenstaro $ # Maintainer: Sven-Hendrik Haase pkgname=ldc -pkgver=20120321 -pkgrel=1 +pkgver=20120606 +pkgrel=2 pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D runtime and libphobos2" arch=('i686' 'x86_64') url="http://www.dsource.org/projects/ldc" license=('BSD') depends=('llvm' 'libconfig') makedepends=('git' 'cmake') +backup=('etc/ldc2.conf') source=() md5sums=() _gitroot=git://github.com/ldc-developers/ldc.git _gitname=ldc +_gitbranch=llvm-3.1 + +[[ $CARCH == "x86_64" ]] && _multilib="ON" +[[ $CARCH == "i686" ]] && _multilib="OFF" build() { cd "$srcdir" @@ -23,7 +28,7 @@ build() { cd "$_gitname" && git pull origin msg "The local files are updated." else - git clone "$_gitroot" "$_gitname" + git clone --branch "$_gitbranch" "$_gitroot" "$_gitname" fi msg "GIT checkout done or server timeout" @@ -37,6 +42,7 @@ build() { cmake \ -DCMAKE_INSTALL_PREFIX=/usr \ -DINCLUDE_INSTALL_DIR=/usr/include/d/std-ldc \ + -DMULTILIB=$_multilib \ .. make } @@ -52,4 +58,7 @@ package() { mv $pkgdir/etc/bash_completion.d $pkgdir/usr/share/bash-completion/completions install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE + + # We don't actually want the multilib libs in this package + rm -rf $pkgdir/usr/lib32 } diff --git a/core/libusbx/PKGBUILD b/core/libusbx/PKGBUILD new file mode 100644 index 000000000..ac1363119 --- /dev/null +++ b/core/libusbx/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 160804 2012-06-06 10:38:17Z tpowa $ +# Maintainer: Tobias Powalowski +pkgname=libusbx +pkgver=1.0.11 +pkgrel=2 +depends=('glibc') +pkgdesc="Library that provides generic access to USB device" +arch=(i686 x86_64) +url="http://libusbx.org" +license=('LGPL') +source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2) +options=(!libtool) +replaces=('libusb1' 'libusb') +provides=("libusb=$pkgver") +conflicts=("libusb") + +md5sums=('9aaab6aee72f65900cc731ecbffb4cf4') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +check() { + cd "${srcdir}/${pkgname}-${pkgver}" + make check +} + +package () { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} diff --git a/core/pinentry/PKGBUILD b/core/pinentry/PKGBUILD index c94625d29..072a2b244 100644 --- a/core/pinentry/PKGBUILD +++ b/core/pinentry/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 146747 2012-01-16 22:52:55Z dreisner $ +# $Id: PKGBUILD 160802 2012-06-06 10:36:53Z tpowa $ # Maintainer: Tobias Powalowski pkgname=pinentry pkgver=0.8.1 -pkgrel=3 +pkgrel=4 pkgdesc="a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol" arch=('i686' 'x86_64') license=('GPL') @@ -12,11 +12,13 @@ makedepends=('gtk2' 'qt') optdepends=('gtk2: for gtk2 backend' 'qt: for qt4 backend') source=(ftp://ftp.gnupg.org/gcrypt/$pkgname/$pkgname-$pkgver.tar.gz - gtk2-pinentry-segfault.patch) + qt4-pinentry-window.patch) install=pinentry.install build() { - cd $startdir/src/$pkgname-$pkgver + cd $srcdir/$pkgname-$pkgver + #fix: https://bugs.archlinux.org/task/29998 + patch -Np1 -i ../qt4-pinentry-window.patch for file in qt4/*.moc; do /usr/bin/moc ${file/.moc/.h} > ${file} done @@ -27,11 +29,12 @@ build() { --enable-pinentry-gtk2 \ --enable-pinentry-qt4 \ --enable-fallback-curses - make + make +} + +package() { + cd $srcdir/$pkgname-$pkgver make DESTDIR=${pkgdir} install - #rm ${pkgdir}/usr/share/info/dir - #rm ${pkgdir}/usr/bin/pinentry - #ln -s /usr/bin/pinentry-gtk-2 ${pkgdir}/usr/bin/pinentry } md5sums=('81f99904daee5331eb6738408bb024b6' - 'bd9888fafc56464b2c4deaad5b8edb07') + '450b8713fe42f1bd93311ef84767c3d8') diff --git a/core/pinentry/qt4-pinentry-window.patch b/core/pinentry/qt4-pinentry-window.patch new file mode 100644 index 000000000..8f9faae11 --- /dev/null +++ b/core/pinentry/qt4-pinentry-window.patch @@ -0,0 +1,28 @@ +From c2ab12b3742c929a225c3753439438edc27bfa81 Mon Sep 17 00:00:00 2001 +From: Stanislav Ochotnicky +Date: Tue, 1 Feb 2011 14:42:27 +0100 +Subject: [PATCH] Fix qt4 pinentry window created in the background + +This is probably just a workaround. Proper fix is being investigated. +See: +https://bugzilla.redhat.com/show_bug.cgi?id=589532 +http://stackoverflow.com/questions/2788518/calling-activatewindow-on-qdialog-sends-window-to-background +--- + qt4/pinentrydialog.cpp | 1 - + 1 files changed, 0 insertions(+), 1 deletions(-) + +diff --git a/qt4/pinentrydialog.cpp b/qt4/pinentrydialog.cpp +index 541baf4..d634eb6 100644 +--- a/qt4/pinentrydialog.cpp ++++ b/qt4/pinentrydialog.cpp +@@ -69,7 +69,6 @@ void raiseWindow( QWidget* w ) + SetForegroundWindow( w->winId() ); + #endif + w->raise(); +- w->activateWindow(); + } + + QPixmap icon( QStyle::StandardPixmap which ) +-- +1.7.3.5 + diff --git a/core/systemd/0001-Reinstate-TIMEOUT-handling.patch b/core/systemd/0001-Reinstate-TIMEOUT-handling.patch new file mode 100644 index 000000000..766dcb87f --- /dev/null +++ b/core/systemd/0001-Reinstate-TIMEOUT-handling.patch @@ -0,0 +1,124 @@ +From 2127f99fb43d2ef950e95329ce40bdd5da8b015c Mon Sep 17 00:00:00 2001 +From: Dave Reisner +Date: Fri, 25 May 2012 19:43:24 -0400 +Subject: [PATCH] Reinstate TIMEOUT= handling + +This is mostly to deal with ipw2?00 drivers which have yet to be fixed +in the kernel. +--- + src/libudev/libudev-device.c | 19 +++++++++++++++++++ + src/libudev/libudev-private.h | 1 + + src/udev/udevd.c | 13 ++++++++++--- + 3 files changed, 30 insertions(+), 3 deletions(-) + +diff --git a/src/libudev/libudev-device.c b/src/libudev/libudev-device.c +index a8277d1..5966189 100644 +--- a/src/libudev/libudev-device.c ++++ b/src/libudev/libudev-device.c +@@ -68,6 +68,7 @@ struct udev_device { + struct udev_list tags_list; + unsigned long long int seqnum; + unsigned long long int usec_initialized; ++ int timeout; + int devlink_priority; + int refcount; + dev_t devnum; +@@ -89,6 +90,21 @@ struct udev_device { + bool db_persist; + }; + ++int udev_device_get_timeout(struct udev_device *udev_device) ++{ ++ return udev_device->timeout; ++} ++ ++static int udev_device_set_timeout(struct udev_device *udev_device, int timeout) ++{ ++ char num[32]; ++ ++ udev_device->timeout = timeout; ++ snprintf(num, sizeof(num), "%u", timeout); ++ udev_device_add_property(udev_device, "TIMEOUT", num); ++ return 0; ++} ++ + /** + * udev_device_get_seqnum: + * @udev_device: udev device +@@ -362,6 +378,8 @@ void udev_device_add_property_from_string_parse(struct udev_device *udev_device, + + util_strscpyl(path, sizeof(path), TEST_PREFIX "/sys", &property[8], NULL); + udev_device_set_syspath(udev_device, path); ++ } else if (strncmp(property, "TIMEOUT=", 8) == 0) { ++ udev_device_set_timeout(udev_device, strtoull(&property[8], NULL, 10)); + } else if (startswith(property, "SUBSYSTEM=")) { + udev_device_set_subsystem(udev_device, &property[10]); + } else if (startswith(property, "DEVTYPE=")) { +@@ -605,6 +623,7 @@ struct udev_device *udev_device_new(struct udev *udev) + udev_list_init(udev, &udev_device->sysattr_value_list, true); + udev_list_init(udev, &udev_device->sysattr_list, false); + udev_list_init(udev, &udev_device->tags_list, true); ++ udev_device->timeout = -1; + udev_device->watch_handle = -1; + /* copy global properties */ + udev_list_entry_foreach(list_entry, udev_get_properties_list_entry(udev)) +diff --git a/src/libudev/libudev-private.h b/src/libudev/libudev-private.h +index 4eb4a59..99aefeb 100644 +--- a/src/libudev/libudev-private.h ++++ b/src/libudev/libudev-private.h +@@ -70,6 +70,7 @@ const char *udev_device_get_id_filename(struct udev_device *udev_device); + void udev_device_set_is_initialized(struct udev_device *udev_device); + int udev_device_add_tag(struct udev_device *udev_device, const char *tag); + void udev_device_cleanup_tags_list(struct udev_device *udev_device); ++int udev_device_get_timeout(struct udev_device *udev_device); + unsigned long long udev_device_get_usec_initialized(struct udev_device *udev_device); + void udev_device_set_usec_initialized(struct udev_device *udev_device, unsigned long long usec_initialized); + int udev_device_get_devlink_priority(struct udev_device *udev_device); +diff --git a/src/udev/udevd.c b/src/udev/udevd.c +index 0d85960..cd24462 100644 +--- a/src/udev/udevd.c ++++ b/src/udev/udevd.c +@@ -384,7 +384,7 @@ out: + } + } + +-static void event_run(struct event *event) ++static void event_run(struct event *event, bool force) + { + struct udev_list_node *loop; + +@@ -410,7 +410,7 @@ static void event_run(struct event *event) + return; + } + +- if (children >= children_max) { ++ if (!force && children >= children_max) { + if (children_max > 1) + log_debug("maximum number (%i) of children reached\n", children); + return; +@@ -444,6 +444,13 @@ static int event_queue_insert(struct udev_device *dev) + + event->state = EVENT_QUEUED; + udev_list_node_append(&event->node, &event_list); ++ ++ /* run all events with a timeout set immediately */ ++ if (udev_device_get_timeout(dev) > 0) { ++ event_run(event, true); ++ return 0; ++ } ++ + return 0; + } + +@@ -549,7 +556,7 @@ static void event_queue_start(struct udev *udev) + if (is_devpath_busy(event)) + continue; + +- event_run(event); ++ event_run(event, false); + } + } + +-- +1.7.10.2 + diff --git a/core/systemd/PKGBUILD b/core/systemd/PKGBUILD new file mode 100644 index 000000000..c21f77b8f --- /dev/null +++ b/core/systemd/PKGBUILD @@ -0,0 +1,213 @@ +# Maintainer: Dave Reisner +# Contributor: Tom Gundersen + +pkgbase=systemd +pkgname=('systemd' 'libsystemd' 'systemd-tools' 'systemd-sysvcompat') +pkgver=184 +pkgrel=2 +arch=('i686' 'x86_64') +url="http://www.freedesktop.org/wiki/Software/systemd" +license=('GPL2' 'LGPL2.1' 'MIT') +makedepends=('acl' 'cryptsetup' 'dbus-core' 'docbook-xsl' 'gobject-introspection' 'gperf' + 'gtk-doc' 'intltool' 'kmod' 'libcap' 'libxslt' 'linux-api-headers' 'pam' 'xz') +options=('!libtool') +source=("http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz" + 'initcpio-hook-udev' + 'initcpio-install-udev' + 'initcpio-install-timestamp' + '0001-Reinstate-TIMEOUT-handling.patch' + 'os-release' + 'locale.sh') +md5sums=('6be0a2519fd42b988a1a2a56e5bd40c1' + 'e99e9189aa2f6084ac28b8ddf605aeb8' + '59e91c4d7a69b7bf12c86a9982e37ced' + 'df69615503ad293c9ddf9d8b7755282d' + '5543be25f205f853a21fa5ee68e03f0d' + '752636def0db3c03f121f8b4f44a63cd' + 'f15956945052bb911e5df81cf5e7e5dc') + +build() { + cd "$pkgname-$pkgver" + + # still waiting on ipw2x00 to get fixed... + patch -Np1 <"$srcdir/0001-Reinstate-TIMEOUT-handling.patch" + + ./configure \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --sysconfdir=/etc \ + --enable-split-usr \ + --enable-introspection \ + --enable-gtk-doc \ + --disable-audit \ + --disable-ima \ + --with-pamlibdir=/usr/lib/security \ + --with-distro=arch \ + --with-usb-ids-path=/usr/share/hwdata/usb.ids \ + --with-pci-ids-path=/usr/share/hwdata/pci.ids \ + --with-firmware-path=/usr/lib/firmware/updates:/lib/firmware/updates:/usr/lib/firmware:/lib/firmware + + make +} + +package_systemd() { + pkgdesc="system and service manager" + depends=('acl' 'dbus-core' "libsystemd=$pkgver" 'kmod' 'libcap' 'pam' + "systemd-tools=$pkgver" 'util-linux' 'xz') + optdepends=('dbus-python: systemd-analyze' + 'initscripts: legacy support for hostname and vconsole setup' + 'initscripts-systemd: native boot and initialization scripts' + 'python2-cairo: systemd-analyze' + 'systemd-arch-units: collection of native unit files for Arch daemon/init scripts' + 'systemd-sysvcompat: symlink package to provide sysvinit binaries') + backup=(etc/dbus-1/system.d/org.freedesktop.systemd1.conf + etc/dbus-1/system.d/org.freedesktop.hostname1.conf + etc/dbus-1/system.d/org.freedesktop.login1.conf + etc/dbus-1/system.d/org.freedesktop.locale1.conf + etc/dbus-1/system.d/org.freedesktop.timedate1.conf + etc/systemd/system.conf + etc/systemd/user.conf + etc/systemd/logind.conf + etc/systemd/journald.conf) + install="systemd.install" + + cd "$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install + + install -Dm644 "$srcdir/os-release" "$pkgdir/etc/os-release" + printf "d /run/console 0755 root root\n" > "$pkgdir/usr/lib/tmpfiles.d/console.conf" + + install -dm755 "$pkgdir/bin" + ln -s ../usr/lib/systemd/systemd "$pkgdir/bin/systemd" + + # fix systemd-analyze for python2 + sed -i '1s/python$/python2/' "$pkgdir/usr/bin/systemd-analyze" + + # move bash-completion and symlink for loginctl + install -Dm644 "$pkgdir/etc/bash_completion.d/systemd-bash-completion.sh" \ + "$pkgdir/usr/share/bash-completion/completions/systemctl" + ln -s systemctl "$pkgdir/usr/share/bash-completion/completions/loginctl" + rm -rf "$pkgdir/etc/bash_completion.d" + + # don't write units to /etc by default -- we'll enable this on post_install + # as a sane default + rm "$pkgdir/etc/systemd/system/getty.target.wants/getty@tty1.service" + rmdir "$pkgdir/etc/systemd/system/getty.target.wants" + + ### split off libsystemd (libs, includes, pkgconfig, man3) + rm -rf "$srcdir/_libsystemd" + install -dm755 "$srcdir"/_libsystemd/usr/{include,lib/pkgconfig} + cd "$srcdir"/_libsystemd + mv "$pkgdir/usr/lib"/libsystemd-*.so* usr/lib + mv "$pkgdir/usr/include/systemd" usr/include + mv "$pkgdir/usr/lib/pkgconfig"/libsystemd-*.pc usr/lib/pkgconfig + + ### split out manpages for sysvcompat + rm -rf "$srcdir/_sysvcompat" + install -dm755 "$srcdir"/_sysvcompat/usr/share/man/man8/ + mv "$pkgdir"/usr/share/man/man8/{telinit,halt,reboot,poweroff,runlevel,shutdown}.8 \ + "$srcdir"/_sysvcompat/usr/share/man/man8 + + ### split out systemd-tools/udev + rm -rf "$srcdir/_tools" + install -dm755 \ + "$srcdir"/_tools/etc/udev \ + "$srcdir"/_tools/usr/bin \ + "$srcdir"/_tools/usr/include \ + "$srcdir"/_tools/usr/lib/{systemd/system,udev} \ + "$srcdir"/_tools/usr/lib/systemd/system/{sysinit,sockets}.target.wants \ + "$srcdir"/_tools/usr/lib/girepository-1.0 \ + "$srcdir"/_tools/usr/share/pkgconfig \ + "$srcdir"/_tools/usr/share/gir-1.0 \ + "$srcdir"/_tools/usr/share/gtk-doc/html/{g,lib}udev \ + "$srcdir"/_tools/usr/share/man/man{1,5,7,8} + + cd "$srcdir/_tools" + mv "$pkgdir"/etc/udev etc + mv "$pkgdir"/etc/{binfmt,modules-load,sysctl,tmpfiles}.d etc + mv "$pkgdir"/usr/bin/udevadm usr/bin + mv "$pkgdir"/usr/lib/pkgconfig usr/lib + mv "$pkgdir"/usr/lib/systemd/systemd-udevd usr/lib/systemd + mv "$pkgdir"/usr/lib/systemd/system/systemd-udev* usr/lib/systemd/system + mv "$pkgdir"/usr/lib/systemd/system/sysinit.target.wants/systemd-udev* usr/lib/systemd/system/sysinit.target.wants + mv "$pkgdir"/usr/lib/systemd/system/sockets.target.wants/systemd-udev* usr/lib/systemd/system/sockets.target.wants + mv "$pkgdir"/usr/lib/lib{,g}udev* usr/lib + mv "$pkgdir"/usr/lib/{binfmt,sysctl,modules-load,tmpfiles}.d usr/lib + mv "$pkgdir"/usr/lib/udev usr/lib + mv "$pkgdir"/usr/include/{libudev.h,gudev-1.0} usr/include + mv "$pkgdir"/usr/lib/girepository-1.0 usr/lib + mv "$pkgdir"/usr/share/pkgconfig/udev.pc usr/share/pkgconfig + mv "$pkgdir"/usr/share/gir-1.0 usr/share + mv "$pkgdir"/usr/share/gtk-doc/html/{g,lib}udev usr/share/gtk-doc/html + mv "$pkgdir"/usr/share/man/man7/udev.7 usr/share/man/man7 + mv "$pkgdir"/usr/share/man/man8/{systemd-udevd,udevadm}.8 usr/share/man/man8 + mv "$pkgdir"/usr/share/man/man1/systemd-{ask-password,delta,detect-virt}.1 usr/share/man/man1 + mv "$pkgdir"/usr/share/man/man5/{binfmt,modules-load,sysctl,tmpfiles}.d.5 usr/share/man/man5 + mv "$pkgdir"/usr/share/man/man5/{hostname,{vconsole,locale}.conf}.5 usr/share/man/man5 + mv "$pkgdir"/usr/bin/systemd-{ask-password,delta,detect-virt,tmpfiles,tty-ask-password-agent} usr/bin + mv "$pkgdir"/usr/lib/systemd/systemd-{ac-power,binfmt,cryptsetup,modules-load,random-seed,remount-fs,reply-password,sysctl,timestamp,vconsole-setup} usr/lib/systemd +} + +package_systemd-sysvcompat() { + pkgdesc="sysvinit compat for systemd" + conflicts=('sysvinit' 'initscripts') + + mv "$srcdir/_sysvcompat"/* "$pkgdir" + + install -dm755 "$pkgdir/sbin" + for tool in runlevel reboot shutdown poweroff halt telinit; do + ln -s '/usr/bin/systemctl' "$pkgdir/sbin/$tool" + done + + ln -s '../usr/lib/systemd/systemd' "$pkgdir/sbin/init" + + install -Dm755 "$srcdir/locale.sh" "$pkgdir/etc/profile.d/locale.sh" +} + +package_libsystemd() { + pkgdesc="systemd client libraries" + depends=('xz') + + mv "$srcdir/_libsystemd"/* "$pkgdir" +} + +package_systemd-tools() { + pkgdesc='standalone tools from systemd' + url='http://www.freedesktop.org/wiki/Software/systemd' + depends=('acl' 'bash' 'glibc' 'glib2' 'kmod' 'hwids' 'util-linux' 'kbd') + optdepends=('cryptsetup: required for encrypted block devices') + provides=("udev=$pkgver") + conflicts=('udev') + replaces=('udev') + install='systemd-tools.install' + + mv "$srcdir/_tools/"* "$pkgdir" + + # the path to udevadm is hardcoded in some places + install -d "$pkgdir/sbin" + ln -s ../usr/bin/udevadm "$pkgdir/sbin/udevadm" + + # udevd is no longer udevd because systemd. why isn't udevadm now udevctl? + ln -s ../lib/systemd/systemd-udevd "$pkgdir/usr/bin/udevd" + ln -s ../systemd/systemd-udevd "$pkgdir/usr/lib/udev/udevd" + + # Replace dialout/tape/cdrom group in rules with uucp/storage/optical group + sed -i 's#GROUP="dialout"#GROUP="uucp"#g; + s#GROUP="tape"#GROUP="storage"#g; + s#GROUP="cdrom"#GROUP="optical"#g' "$pkgdir"/usr/lib/udev/rules.d/*.rules + + # get rid of unneded lock directories + sed -ri '/\/run\/lock\/(subsys|lockdev)/d' "$pkgdir"/usr/lib/tmpfiles.d/legacy.conf + + # add mkinitcpio hooks + install -Dm644 "$srcdir/initcpio-install-udev" "$pkgdir/usr/lib/initcpio/install/udev" + install -Dm644 "$srcdir/initcpio-hook-udev" "$pkgdir/usr/lib/initcpio/hooks/udev" + install -Dm644 "$srcdir/initcpio-install-timestamp" "$pkgdir/usr/lib/initcpio/install/timestamp" + + # XXX: kill off coredump rule until the journal can recover coredumps + # this file needs to come back as part of systemd, not systemd-tools + rm "$pkgdir/usr/lib/sysctl.d/coredump.conf" +} + +# vim: ft=sh syn=sh et diff --git a/core/systemd/initcpio-hook-udev b/core/systemd/initcpio-hook-udev new file mode 100644 index 000000000..75da7e4a8 --- /dev/null +++ b/core/systemd/initcpio-hook-udev @@ -0,0 +1,20 @@ +#!/usr/bin/ash + +run_earlyhook() { + udevd --daemon --resolve-names=never + udevd_running=1 +} + +run_hook() { + msg ":: Triggering uevents..." + udevadm trigger --action=add --type=subsystems + udevadm trigger --action=add --type=devices + udevadm settle +} + +run_cleanuphook() { + udevadm control --exit + udevadm info --cleanup-db +} + +# vim: set ft=sh ts=4 sw=4 et: diff --git a/core/systemd/initcpio-install-timestamp b/core/systemd/initcpio-install-timestamp new file mode 100644 index 000000000..259cc705b --- /dev/null +++ b/core/systemd/initcpio-install-timestamp @@ -0,0 +1,14 @@ +#!/bin/bash + +build() { + add_binary /usr/lib/systemd/systemd-timestamp /usr/bin/systemd-timestamp +} + +help() { + cat < to /dev/0." + echo " * For security reasons, we no longer add devices to the 'storage' group. Use" + echo " udisks and friends, or add custom rules to /etc/udev.d/rules/, if you want" + echo " this functionality back." + echo " * We no longer create the static nodes on install needed for an initrd-less" + echo " boot where devtmpfs is not mounted by the kernel, this only affects fresh" + echo " installs." + fi + if [ "$(vercmp $2 175)" -lt 0 ]; then + echo " * devtmpfs support is now a hard requirement. Users of the official Arch" + echo " kernels have this enabled." + fi + if [ "$(vercmp $2 181)" -lt 0 ]; then + echo " * udev-compat has been removed, and should be uninstalled." + echo " * Framebuffers are no longer blacklisted by default." + echo " * binaries moved from /sbin to /usr/bin" + fi + if [ "$(vercmp $2 181-3)" -lt 0 ]; then + echo " * if your kernel does not provide /dev/loop-control, you need to manually" + echo " load the 'loop' module before using losetup" + fi +} diff --git a/core/systemd/systemd.install b/core/systemd/systemd.install new file mode 100644 index 000000000..0b10f9537 --- /dev/null +++ b/core/systemd/systemd.install @@ -0,0 +1,51 @@ +#!/bin/sh + +sd_booted() { + [ -e sys/fs/cgroup/systemd ] +} + +post_install() { + if [ ! -f etc/machine-id ]; then + systemd-machine-id-setup + fi + + # enable getty@tty1 by default, but don't track the file + systemctl enable getty@.service + + echo ":: Append 'init=/bin/systemd' to your kernel command line in your" + echo " bootloader to replace sysvinit with systemd" +} + +post_upgrade() { + if [ ! -f etc/machine-id ]; then + systemd-machine-id-setup + fi + + if sd_booted; then + # we moved the binary in 44-2 to /usr, so a reexec leads to a + # coredump. refuse this reexec and warn the user that they should + # reboot instead. + if [ "$(vercmp 44-2 "$2")" -eq 1 ]; then + echo "warning: refusing to reexec systemd. the system should be rebooted." + else + systemctl daemon-reload + systemctl daemon-reexec + fi + fi + + # getty@tty1.service is no longer enabled by default, but we don't want to break + # existing setups. + if [ "$(vercmp 183 "$2")" -eq 1 ]; then + # systemctl seems to be whiny on sysvinit. this will succeed unless something + # horrific happens, so just mask the error. + systemctl -q enable getty@.service || true + fi +} + +post_remove() { + if getent group lock >/dev/null; then + groupdel lock + fi +} + +# vim:set ts=2 sw=2 et: diff --git a/extra/aspell-de/PKGBUILD b/extra/aspell-de/PKGBUILD index 7d15c7fe8..65b775c23 100644 --- a/extra/aspell-de/PKGBUILD +++ b/extra/aspell-de/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 137818 2011-09-11 20:26:33Z pierre $ +# $Id: PKGBUILD 160921 2012-06-07 02:05:22Z pierre $ # Maintainer: # Contributor: Simo Leone # Contributor: Tobias Kieslich pkgname=aspell-de -pkgver=20110609 +pkgver=20120607 pkgrel=1 pkgdesc="German dictionary for aspell" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ url="http://j3e.de/ispell/igerman98/index.html" license=('GPL2') depends=('aspell') source=("http://j3e.de/ispell/igerman98/dict/igerman98-${pkgver}.tar.bz2") -md5sums=('6e7ea765b6188c08d470111e221cc91a') +md5sums=('9433d0ccd7db3c7681037980ece3f710') build() { cd "${srcdir}/igerman98-${pkgver}" diff --git a/extra/cups/PKGBUILD b/extra/cups/PKGBUILD index 3a0a56d26..7a7ec85d7 100644 --- a/extra/cups/PKGBUILD +++ b/extra/cups/PKGBUILD @@ -1,15 +1,15 @@ -# $Id: PKGBUILD 160061 2012-05-29 14:41:20Z andyrtr $ +# $Id: PKGBUILD 160812 2012-06-06 15:26:42Z andyrtr $ # Maintainer: Andreas Radke pkgbase="cups" pkgname=('libcups' 'cups') pkgver=1.5.3 -pkgrel=3 +pkgrel=4 arch=('i686' 'x86_64') license=('GPL') url="http://www.cups.org/" makedepends=('libtiff>=4.0.0' 'libpng>=1.5.7' 'acl' 'openslp' 'pam' 'xdg-utils' 'krb5' 'gnutls>=2.8.3' 'cups-filters' 'bc' - 'xinetd' 'gzip' 'autoconf' 'php' 'libusb' 'dbus-core' 'avahi' 'hicolor-icon-theme') + 'xinetd' 'gzip' 'autoconf' 'php' 'libusb' 'dbus-core' 'avahi' 'hicolor-icon-theme' 'systemd') source=(ftp://ftp.easysw.com/pub/cups/${pkgver}/cups-${pkgver}-source.tar.bz2 cups-avahi-1-config.patch cups-avahi-2-backend.patch @@ -19,6 +19,7 @@ source=(ftp://ftp.easysw.com/pub/cups/${pkgver}/cups-${pkgver}-source.tar.bz2 cups-no-export-ssllibs.patch cups-no-gcrypt.patch cups-no-gzip-man.patch + cups-systemd-socket.patch cups cups.logrotate cups.pam) #options=('!emptydirs') md5sums=('e1ad15257aa6f162414ea3beae0c5df8' @@ -30,6 +31,7 @@ md5sums=('e1ad15257aa6f162414ea3beae0c5df8' '9b8467a1e51d360096b70e2c3c081e6c' '3733c23e77eb503bd94cc368e02830dc' 'c9159ba1233902ba6ddbbe6885a46b72' + '4505b8b2c57a7c28ea79e08388bbbbb9' '9657daa21760bb0b5fa3d8b51d5e01a1' 'f861b18f4446c43918c8643dcbbd7f6d' '96f82c38f3f540b53f3e5144900acf17') @@ -44,6 +46,9 @@ build() { patch -Np1 -i ${srcdir}/cups-avahi-4-poll.patch patch -Np1 -i ${srcdir}/cups-avahi-5-services.patch + # add systemd socket support - Fedora patch, also used in Gentoo + patch -Np1 -i ${srcdir}/cups-systemd-socket.patch + # Do not export SSL libs in cups-config patch -Np1 -i "${srcdir}/cups-no-export-ssllibs.patch" @@ -57,6 +62,7 @@ build() { ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ --libdir=/usr/lib \ + --with-systemdsystemunitdir=/usr/lib/systemd/system \ --with-logdir=/var/log/cups \ --with-docdir=/usr/share/cups/doc \ --with-cups-user=daemon \ @@ -116,7 +122,7 @@ backup=(etc/cups/cupsd.conf etc/logrotate.d/cups etc/pam.d/cups etc/xinetd.d/cups-lpd) -depends=('acl' 'openslp' 'pam' "libcups>=${pkgver}" 'cups-filters' 'bc' 'libusb' 'dbus-core' 'hicolor-icon-theme') +depends=('acl' 'openslp' 'pam' "libcups>=${pkgver}" 'cups-filters' 'bc' 'libusb' 'dbus-core' 'libsystemd' 'hicolor-icon-theme') optdepends=('php: for included phpcups.so module' 'xdg-utils: xdg .desktop file support') diff --git a/extra/cups/cups-systemd-socket.patch b/extra/cups/cups-systemd-socket.patch new file mode 100644 index 000000000..09d17d415 --- /dev/null +++ b/extra/cups/cups-systemd-socket.patch @@ -0,0 +1,527 @@ +diff -up cups-1.5.2/config.h.in.systemd-socket cups-1.5.2/config.h.in +--- cups-1.5.2/config.h.in.systemd-socket 2012-03-16 14:50:57.089449755 +0000 ++++ cups-1.5.2/config.h.in 2012-03-16 14:50:57.146449787 +0000 +@@ -503,6 +503,13 @@ + + + /* ++ * Do we have systemd support? ++ */ ++ ++#undef HAVE_SYSTEMD ++ ++ ++/* + * Various scripting languages... + */ + +diff -up cups-1.5.2/config-scripts/cups-systemd.m4.systemd-socket cups-1.5.2/config-scripts/cups-systemd.m4 +--- cups-1.5.2/config-scripts/cups-systemd.m4.systemd-socket 2012-03-16 14:50:57.146449787 +0000 ++++ cups-1.5.2/config-scripts/cups-systemd.m4 2012-03-16 14:50:57.146449787 +0000 +@@ -0,0 +1,36 @@ ++dnl ++dnl "$Id$" ++dnl ++dnl systemd stuff for CUPS. ++ ++dnl Find whether systemd is available ++ ++SDLIBS="" ++AC_ARG_WITH([systemdsystemunitdir], ++ AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]), ++ [], [with_systemdsystemunitdir=$($PKGCONFIG --variable=systemdsystemunitdir systemd)]) ++if test "x$with_systemdsystemunitdir" != xno; then ++ AC_MSG_CHECKING(for libsystemd-daemon) ++ if $PKGCONFIG --exists libsystemd-daemon; then ++ AC_MSG_RESULT(yes) ++ SDCFLAGS=`$PKGCONFIG --cflags libsystemd-daemon` ++ SDLIBS=`$PKGCONFIG --libs libsystemd-daemon` ++ AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir]) ++ AC_DEFINE(HAVE_SYSTEMD) ++ else ++ AC_MSG_RESULT(no) ++ fi ++fi ++ ++if test -n "$with_systemdsystemunitdir" -a "x$with_systemdsystemunitdir" != xno ; then ++ SYSTEMD_UNITS="cups.service cups.socket cups.path" ++else ++ SYSTEMD_UNITS="" ++fi ++ ++AC_SUBST(SYSTEMD_UNITS) ++AC_SUBST(SDLIBS) ++ ++dnl ++dnl "$Id$" ++dnl +diff -up cups-1.5.2/configure.in.systemd-socket cups-1.5.2/configure.in +--- cups-1.5.2/configure.in.systemd-socket 2011-08-31 02:36:33.000000000 +0100 ++++ cups-1.5.2/configure.in 2012-03-16 14:50:57.146449787 +0000 +@@ -37,6 +37,7 @@ sinclude(config-scripts/cups-pam.m4) + sinclude(config-scripts/cups-largefile.m4) + sinclude(config-scripts/cups-dnssd.m4) + sinclude(config-scripts/cups-launchd.m4) ++sinclude(config-scripts/cups-systemd.m4) + sinclude(config-scripts/cups-defaults.m4) + sinclude(config-scripts/cups-pdf.m4) + sinclude(config-scripts/cups-scripting.m4) +@@ -71,6 +72,9 @@ AC_OUTPUT(Makedefs + conf/snmp.conf + cups-config + data/testprint ++ data/cups.service ++ data/cups.socket ++ data/cups.path + desktop/cups.desktop + doc/help/ref-cupsd-conf.html + doc/help/standard.html +diff -up cups-1.5.2/cups/usersys.c.systemd-socket cups-1.5.2/cups/usersys.c +--- cups-1.5.2/cups/usersys.c.systemd-socket 2012-03-16 14:50:57.054449734 +0000 ++++ cups-1.5.2/cups/usersys.c 2012-03-16 14:50:57.148449788 +0000 +@@ -778,7 +778,7 @@ cups_read_client_conf( + struct stat sockinfo; /* Domain socket information */ + + if (!stat(CUPS_DEFAULT_DOMAINSOCKET, &sockinfo) && +- (sockinfo.st_mode & S_IRWXO) == S_IRWXO) ++ (sockinfo.st_mode & (S_IROTH | S_IWOTH)) == (S_IROTH | S_IWOTH)) + cups_server = CUPS_DEFAULT_DOMAINSOCKET; + else + #endif /* CUPS_DEFAULT_DOMAINSOCKET */ +diff -up cups-1.5.2/data/cups.path.in.systemd-socket cups-1.5.2/data/cups.path.in +--- cups-1.5.2/data/cups.path.in.systemd-socket 2012-03-16 14:50:57.148449788 +0000 ++++ cups-1.5.2/data/cups.path.in 2012-03-16 14:50:57.148449788 +0000 +@@ -0,0 +1,8 @@ ++[Unit] ++Description=CUPS Printer Service Spool ++ ++[Path] ++PathExistsGlob=@CUPS_REQUESTS@/d* ++ ++[Install] ++WantedBy=multi-user.target +diff -up cups-1.5.2/data/cups.service.in.systemd-socket cups-1.5.2/data/cups.service.in +--- cups-1.5.2/data/cups.service.in.systemd-socket 2012-03-16 14:50:57.149449788 +0000 ++++ cups-1.5.2/data/cups.service.in 2012-03-16 14:50:57.149449788 +0000 +@@ -0,0 +1,10 @@ ++[Unit] ++Description=CUPS Printing Service ++ ++[Service] ++ExecStart=@sbindir@/cupsd -f ++PrivateTmp=true ++ ++[Install] ++Also=cups.socket cups.path ++WantedBy=printer.target +diff -up cups-1.5.2/data/cups.socket.in.systemd-socket cups-1.5.2/data/cups.socket.in +--- cups-1.5.2/data/cups.socket.in.systemd-socket 2012-03-16 14:50:57.150449788 +0000 ++++ cups-1.5.2/data/cups.socket.in 2012-03-16 14:50:57.150449788 +0000 +@@ -0,0 +1,11 @@ ++[Unit] ++Description=CUPS Printing Service Sockets ++ ++[Socket] ++ListenStream=@CUPS_DEFAULT_DOMAINSOCKET@ ++ListenStream=631 ++ListenDatagram=0.0.0.0:631 ++BindIPv6Only=ipv6-only ++ ++[Install] ++WantedBy=sockets.target +diff -up cups-1.5.2/data/Makefile.systemd-socket cups-1.5.2/data/Makefile +--- cups-1.5.2/data/Makefile.systemd-socket 2011-05-12 06:21:56.000000000 +0100 ++++ cups-1.5.2/data/Makefile 2012-03-16 14:50:57.151449789 +0000 +@@ -112,6 +112,12 @@ install-data: + $(INSTALL_DATA) $$file $(DATADIR)/ppdc; \ + done + $(INSTALL_DIR) -m 755 $(DATADIR)/profiles ++ if test "x$(SYSTEMD_UNITS)" != "x" ; then \ ++ $(INSTALL_DIR) -m 755 $(SYSTEMDUNITDIR); \ ++ for file in $(SYSTEMD_UNITS); do \ ++ $(INSTALL_DATA) $$file $(SYSTEMDUNITDIR); \ ++ done; \ ++ fi + + + # +@@ -159,6 +165,9 @@ uninstall: + -$(RMDIR) $(DATADIR)/charsets + -$(RMDIR) $(DATADIR)/banners + -$(RMDIR) $(DATADIR) ++ for file in $(SYSTEMD_UNITS); do \ ++ $(RM) $(SYSTEMDUNITDIR)/$$file; \ ++ done + + + # +diff -up cups-1.5.2/Makedefs.in.systemd-socket cups-1.5.2/Makedefs.in +--- cups-1.5.2/Makedefs.in.systemd-socket 2012-03-16 14:50:57.081449751 +0000 ++++ cups-1.5.2/Makedefs.in 2012-03-16 14:50:57.152449790 +0000 +@@ -143,6 +143,7 @@ CXXFLAGS = @CPPFLAGS@ @CXXFLAGS@ + CXXLIBS = @CXXLIBS@ + DBUS_NOTIFIER = @DBUS_NOTIFIER@ + DBUS_NOTIFIERLIBS = @DBUS_NOTIFIERLIBS@ ++SYSTEMD_UNITS = @SYSTEMD_UNITS@ + DNSSD_BACKEND = @DNSSD_BACKEND@ + DSOFLAGS = -L../cups @DSOFLAGS@ + DSOLIBS = @DSOLIBS@ $(COMMONLIBS) +@@ -151,6 +152,7 @@ FONTS = @FONTS@ + IMGLIBS = @IMGLIBS@ + IMGFILTERS = @IMGFILTERS@ + LAUNCHDLIBS = @LAUNCHDLIBS@ ++SDLIBS = @SDLIBS@ + LDFLAGS = -L../cgi-bin -L../cups -L../filter -L../ppdc \ + -L../scheduler @LDARCHFLAGS@ \ + @LDFLAGS@ @RELROFLAGS@ @PIEFLAGS@ $(OPTIM) +@@ -267,6 +269,7 @@ PAMFILE = @PAMFILE@ + + DEFAULT_LAUNCHD_CONF = @DEFAULT_LAUNCHD_CONF@ + DBUSDIR = @DBUSDIR@ ++SYSTEMDUNITDIR = $(BUILDROOT)@systemdsystemunitdir@ + + + # +diff -up cups-1.5.2/scheduler/client.h.systemd-socket cups-1.5.2/scheduler/client.h +--- cups-1.5.2/scheduler/client.h.systemd-socket 2011-03-25 21:25:38.000000000 +0000 ++++ cups-1.5.2/scheduler/client.h 2012-03-16 14:50:57.153449791 +0000 +@@ -75,6 +75,9 @@ typedef struct + int fd; /* File descriptor for this server */ + http_addr_t address; /* Bind address of socket */ + http_encryption_t encryption; /* To encrypt or not to encrypt... */ ++#ifdef HAVE_SYSTEMD ++ int is_systemd; /* Is this a systemd socket? */ ++#endif /* HAVE_SYSTEMD */ + } cupsd_listener_t; + + +diff -up cups-1.5.2/scheduler/dirsvc.c.systemd-socket cups-1.5.2/scheduler/dirsvc.c +--- cups-1.5.2/scheduler/dirsvc.c.systemd-socket 2012-03-16 14:50:57.112449768 +0000 ++++ cups-1.5.2/scheduler/dirsvc.c 2012-03-16 14:50:57.155449792 +0000 +@@ -1512,7 +1512,7 @@ cupsdStartBrowsing(void) + } + } + +- if (BrowseSocket >= 0) ++ if (BrowseSocket >= 0 && !BrowseSocketIsSystemd) + { + /* + * Bind the socket to browse port... +@@ -1556,13 +1556,17 @@ cupsdStartBrowsing(void) + cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to set broadcast mode - %s.", + strerror(errno)); + ++ if (!BrowseSocketIsSystemd) ++ { + #ifdef WIN32 +- closesocket(BrowseSocket); ++ closesocket(BrowseSocket); + #else +- close(BrowseSocket); ++ close(BrowseSocket); + #endif /* WIN32 */ + +- BrowseSocket = -1; ++ BrowseSocket = -1; ++ } ++ + BrowseLocalProtocols &= ~BROWSE_CUPS; + BrowseRemoteProtocols &= ~BROWSE_CUPS; + +@@ -1885,15 +1889,22 @@ cupsdStopBrowsing(void) + if (((BrowseLocalProtocols | BrowseRemoteProtocols) & BROWSE_CUPS) && + BrowseSocket >= 0) + { +- /* +- * Close the socket and remove it from the input selection set. +- */ ++ if (!BrowseSocketIsSystemd) ++ { ++ /* ++ * Close the socket. ++ */ + + #ifdef WIN32 +- closesocket(BrowseSocket); ++ closesocket(BrowseSocket); + #else +- close(BrowseSocket); ++ close(BrowseSocket); + #endif /* WIN32 */ ++ } ++ ++ /* ++ * Remove it from the input selection set. ++ */ + + cupsdRemoveSelect(BrowseSocket); + BrowseSocket = -1; +@@ -5693,11 +5704,14 @@ update_cups_browse(void) + strerror(errno)); + cupsdLogMessage(CUPSD_LOG_ERROR, "CUPS browsing turned off."); + ++ if (!BrowseSocketIsSystemd) ++ { + #ifdef WIN32 +- closesocket(BrowseSocket); ++ closesocket(BrowseSocket); + #else +- close(BrowseSocket); ++ close(BrowseSocket); + #endif /* WIN32 */ ++ } + + cupsdRemoveSelect(BrowseSocket); + BrowseSocket = -1; +diff -up cups-1.5.2/scheduler/dirsvc.h.systemd-socket cups-1.5.2/scheduler/dirsvc.h +--- cups-1.5.2/scheduler/dirsvc.h.systemd-socket 2012-03-16 14:50:57.113449769 +0000 ++++ cups-1.5.2/scheduler/dirsvc.h 2012-03-16 14:50:57.157449792 +0000 +@@ -100,6 +100,8 @@ VAR int Browsing VALUE(TRUE), + /* Short names for remote printers? */ + BrowseSocket VALUE(-1), + /* Socket for browsing */ ++ BrowseSocketIsSystemd VALUE(0), ++ /* BrowseSocket is systemd-provided? */ + BrowsePort VALUE(IPP_PORT), + /* Port number for broadcasts */ + BrowseInterval VALUE(DEFAULT_INTERVAL), +diff -up cups-1.5.2/scheduler/listen.c.systemd-socket cups-1.5.2/scheduler/listen.c +--- cups-1.5.2/scheduler/listen.c.systemd-socket 2011-04-16 00:38:13.000000000 +0100 ++++ cups-1.5.2/scheduler/listen.c 2012-03-16 14:50:57.158449792 +0000 +@@ -401,7 +401,11 @@ cupsdStopListening(void) + lis; + lis = (cupsd_listener_t *)cupsArrayNext(Listeners)) + { +- if (lis->fd != -1) ++ if (lis->fd != -1 ++#ifdef HAVE_SYSTEMD ++ && !lis->is_systemd ++#endif /* HAVE_SYSTEMD */ ++ ) + { + #ifdef WIN32 + closesocket(lis->fd); +diff -up cups-1.5.2/scheduler/main.c.systemd-socket cups-1.5.2/scheduler/main.c +--- cups-1.5.2/scheduler/main.c.systemd-socket 2012-03-16 14:50:57.121449773 +0000 ++++ cups-1.5.2/scheduler/main.c 2012-03-16 14:51:55.409483636 +0000 +@@ -26,6 +26,8 @@ + * launchd_checkin() - Check-in with launchd and collect the listening + * fds. + * launchd_checkout() - Update the launchd KeepAlive file as needed. ++ * systemd_checkin() - Check-in with systemd and collect the ++ * listening fds. + * parent_handler() - Catch USR1/CHLD signals... + * process_children() - Process all dead children... + * select_timeout() - Calculate the select timeout value. +@@ -62,6 +64,10 @@ + # endif /* !LAUNCH_JOBKEY_SERVICEIPC */ + #endif /* HAVE_LAUNCH_H */ + ++#ifdef HAVE_SYSTEMD ++#include ++#endif /* HAVE_SYSTEMD */ ++ + #if defined(HAVE_MALLOC_H) && defined(HAVE_MALLINFO) + # include + #endif /* HAVE_MALLOC_H && HAVE_MALLINFO */ +@@ -78,6 +84,9 @@ + static void launchd_checkin(void); + static void launchd_checkout(void); + #endif /* HAVE_LAUNCHD */ ++#ifdef HAVE_SYSTEMD ++static void systemd_checkin(void); ++#endif /* HAVE_SYSTEMD */ + static void parent_handler(int sig); + static void process_children(void); + static void sigchld_handler(int sig); +@@ -537,6 +546,13 @@ main(int argc, /* I - Number of comm + } + #endif /* HAVE_LAUNCHD */ + ++#ifdef HAVE_SYSTEMD ++ /* ++ * If we were started by systemd get the listen sockets file descriptors... ++ */ ++ systemd_checkin(); ++#endif /* HAVE_SYSTEMD */ ++ + /* + * Startup the server... + */ +@@ -759,6 +775,15 @@ main(int argc, /* I - Number of comm + } + #endif /* HAVE_LAUNCHD */ + ++#ifdef HAVE_SYSTEMD ++ /* ++ * If we were started by systemd get the listen sockets file ++ * descriptors... ++ */ ++ ++ systemd_checkin(); ++#endif /* HAVE_SYSTEMD */ ++ + /* + * Startup the server... + */ +@@ -1584,6 +1609,139 @@ launchd_checkout(void) + } + #endif /* HAVE_LAUNCHD */ + ++#ifdef HAVE_SYSTEMD ++static void ++systemd_checkin(void) ++{ ++ int n, fd; ++ ++ n = sd_listen_fds(0); ++ if (n < 0) ++ { ++ cupsdLogMessage(CUPSD_LOG_ERROR, ++ "systemd_checkin: Failed to acquire sockets from systemd - %s", ++ strerror(-n)); ++ exit(EXIT_FAILURE); ++ return; ++ } ++ ++ if (n == 0) ++ return; ++ ++ for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd ++) ++ { ++ http_addr_t addr; ++ socklen_t addrlen = sizeof (addr); ++ int r; ++ cupsd_listener_t *lis; ++ char s[256]; ++ ++ r = sd_is_socket(fd, AF_UNSPEC, SOCK_STREAM, 1); ++ if (r < 0) ++ { ++ cupsdLogMessage(CUPSD_LOG_ERROR, ++ "systemd_checkin: Unable to verify socket type - %s", ++ strerror(-r)); ++ continue; ++ } ++ ++ if (!r) ++ { ++ if (Browsing && ++ ((BrowseLocalProtocols | BrowseRemoteProtocols) & BROWSE_CUPS)) ++ { ++ r = sd_is_socket(fd, AF_UNSPEC, SOCK_DGRAM, 0); ++ if (r < 0) ++ { ++ cupsdLogMessage(CUPSD_LOG_ERROR, ++ "systemd_checkin: Unable to verify socket type - %s", ++ strerror(-r)); ++ continue; ++ } ++ ++ if (r) ++ { ++ /* ++ * This is the browse socket. ++ */ ++ ++ char addrstr[256]; ++ if (getsockname(fd, (struct sockaddr*) &addr, &addrlen)) ++ { ++ cupsdLogMessage(CUPSD_LOG_ERROR, ++ "systemd_checkin: Unable to get local address - %s", ++ strerror(errno)); ++ continue; ++ } ++ ++ httpAddrString (&addr, addrstr, sizeof (addrstr)); ++ BrowseSocket = fd; ++ BrowseSocketIsSystemd = 1; ++ cupsdLogMessage(CUPSD_LOG_DEBUG, ++ "systemd_checkin: Matched browse (port %d) with fd %d:%s...", ++ BrowsePort, fd, addrstr); ++ continue; ++ } ++ ++ } ++ cupsdLogMessage(CUPSD_LOG_ERROR, ++ "systemd_checkin: Socket not of the right type"); ++ continue; ++ } ++ ++ if (getsockname(fd, (struct sockaddr*) &addr, &addrlen)) ++ { ++ cupsdLogMessage(CUPSD_LOG_ERROR, ++ "systemd_checkin: Unable to get local address - %s", ++ strerror(errno)); ++ continue; ++ } ++ ++ /* ++ * Try to match the systemd socket address to one of the listeners... ++ */ ++ ++ for (lis = (cupsd_listener_t *)cupsArrayFirst(Listeners); ++ lis; ++ lis = (cupsd_listener_t *)cupsArrayNext(Listeners)) ++ if (httpAddrEqual(&lis->address, &addr)) ++ break; ++ ++ if (lis) ++ { ++ cupsdLogMessage(CUPSD_LOG_DEBUG, ++ "systemd_checkin: Matched existing listener %s with fd %d...", ++ httpAddrString(&(lis->address), s, sizeof(s)), fd); ++ } ++ else ++ { ++ cupsdLogMessage(CUPSD_LOG_DEBUG, ++ "systemd_checkin: Adding new listener %s with fd %d...", ++ httpAddrString(&addr, s, sizeof(s)), fd); ++ ++ if ((lis = calloc(1, sizeof(cupsd_listener_t))) == NULL) ++ { ++ cupsdLogMessage(CUPSD_LOG_ERROR, ++ "systemd_checkin: Unable to allocate listener - " ++ "%s.", strerror(errno)); ++ exit(EXIT_FAILURE); ++ } ++ ++ cupsArrayAdd(Listeners, lis); ++ ++ memcpy(&lis->address, &addr, sizeof(lis->address)); ++ } ++ ++ lis->fd = fd; ++ lis->is_systemd = 1; ++ ++# ifdef HAVE_SSL ++ if (_httpAddrPort(&(lis->address)) == 443) ++ lis->encryption = HTTP_ENCRYPT_ALWAYS; ++# endif /* HAVE_SSL */ ++ } ++} ++#endif /* HAVE_SYSTEMD */ + + /* + * 'parent_handler()' - Catch USR1/CHLD signals... +diff -up cups-1.5.2/scheduler/Makefile.systemd-socket cups-1.5.2/scheduler/Makefile +--- cups-1.5.2/scheduler/Makefile.systemd-socket 2012-03-16 14:50:57.130449778 +0000 ++++ cups-1.5.2/scheduler/Makefile 2012-03-16 14:50:57.160449794 +0000 +@@ -382,7 +382,7 @@ cupsd: $(CUPSDOBJS) $(LIBCUPSMIME) ../cu + $(CC) $(LDFLAGS) -o cupsd $(CUPSDOBJS) -L. -lcupsmime \ + $(LIBZ) $(SSLLIBS) $(LIBSLP) $(LIBLDAP) $(PAMLIBS) \ + $(LIBPAPER) $(LIBMALLOC) $(SERVERLIBS) $(DNSSDLIBS) $(LIBS) \ +- $(LIBGSSAPI) $(LIBWRAP) ++ $(LIBGSSAPI) $(LIBWRAP) $(SDLIBS) + + cupsd-static: $(CUPSDOBJS) libcupsmime.a ../cups/$(LIBCUPSSTATIC) + echo Linking $@... +@@ -390,7 +390,7 @@ cupsd-static: $(CUPSDOBJS) libcupsmime.a + $(LIBZ) $(SSLLIBS) $(LIBSLP) $(LIBLDAP) $(PAMLIBS) \ + ../cups/$(LIBCUPSSTATIC) $(COMMONLIBS) $(LIBZ) $(LIBPAPER) \ + $(LIBMALLOC) $(SERVERLIBS) $(DNSSDLIBS) $(LIBGSSAPI) \ +- $(LIBWRAP) ++ $(LIBWRAP) $(SDLIBS) + + + # diff --git a/extra/dnsmasq/PKGBUILD b/extra/dnsmasq/PKGBUILD index ed2ec4c1e..1fd617dbe 100644 --- a/extra/dnsmasq/PKGBUILD +++ b/extra/dnsmasq/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 157810 2012-04-30 00:00:31Z dreisner $ +# $Id: PKGBUILD 160917 2012-06-07 00:05:24Z dreisner $ # Maintainer: Dave Reisner # Contributor: Paul Mattal # Contributor: Tom Newsom pkgname=dnsmasq -pkgver=2.61 +pkgver=2.62 pkgrel=1 pkgdesc="Lightweight, easy to configure DNS forwarder and DHCP server" url="http://www.thekelleys.org.uk/dnsmasq/doc.html" @@ -18,7 +18,7 @@ source=("http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.gz" 'dnsmasq.confd' 'rc.dnsmasq' 'dnsmasq.service') -md5sums=('6ed0a5c2524dfc3a74ef494ee2469f09' +md5sums=('f47e5cb8f5bac6343f24b2dbe317ab40' '66479e99123faeab83ebaed709ef95b5' '819fbdf6440d710616e6df5f8ca9cdba' '631d8349acbed1b01d4e11d9f42fdb7d') diff --git a/extra/dovecot/PKGBUILD b/extra/dovecot/PKGBUILD index 8f0256e4f..447c5564a 100644 --- a/extra/dovecot/PKGBUILD +++ b/extra/dovecot/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 160790 2012-06-05 20:25:07Z andyrtr $ +# $Id: PKGBUILD 160808 2012-06-06 13:17:41Z andyrtr $ # Maintainer: Andreas Radke # Contributor: Paul Mattal # Contributor: Federico Quagliata (quaqo) @@ -6,7 +6,7 @@ pkgname=dovecot pkgver=2.1.7 -pkgrel=2 +pkgrel=3 pkgdesc="An IMAP and POP3 server written with security primarily in mind" arch=('i686' 'x86_64') url="http://dovecot.org/" @@ -70,6 +70,6 @@ package() { rm ${pkgdir}/etc/dovecot/README # systemd tmpfile - install -d -m755 ${pkgdir}/etc/tmpfiles.d - install -m 644 ${srcdir}/dovecot.tmpfilesd ${pkgdir}/etc/tmpfiles.d/dovecot.conf + install -d -m755 ${pkgdir}/usr/lib/tmpfiles.d + install -m 644 ${srcdir}/dovecot.tmpfilesd ${pkgdir}/usr/lib/tmpfiles.d/dovecot.conf } diff --git a/extra/fcitx/PKGBUILD b/extra/fcitx/PKGBUILD index 7b1b688aa..fdd4caf00 100644 --- a/extra/fcitx/PKGBUILD +++ b/extra/fcitx/PKGBUILD @@ -1,17 +1,18 @@ -# $Id: PKGBUILD 158796 2012-05-10 06:10:24Z eric $ +# $Id: PKGBUILD 160913 2012-06-06 22:50:26Z eric $ # Maintainer: Andrea Scarpino # Contributor: csslayer pkgbase=fcitx pkgname=('fcitx' 'fcitx-gtk2' 'fcitx-gtk3' 'fcitx-qt') -pkgver=4.2.3 +pkgver=4.2.4 pkgrel=1 arch=('i686' 'x86_64') url="http://code.google.com/p/fcitx/" license=('GPL') -makedepends=('cmake' 'intltool' 'doxygen' 'gtk2' 'gtk3' 'qt' 'icu') +makedepends=('cmake' 'intltool' 'doxygen' 'gtk2' 'gtk3' 'qt' 'icu' \ + 'iso-codes' 'gobject-introspection' 'libxkbfile' 'enchant') source=(http://fcitx.googlecode.com/files/${pkgbase}-${pkgver}.tar.xz) -sha1sums=('8cd33487d1d6ad9c9c63743af8d76e667de4b859') +sha1sums=('68aaf220d3f7e9bfe34062379e22388a44250fc2') build() { cd "${srcdir}" @@ -34,8 +35,8 @@ check() { package_fcitx() { pkgdesc="Free Chinese Input Toy of X - Input Method Server for X window system" - depends=('dbus-core' 'pango' 'libxinerama' 'gtk-update-icon-cache' \ - 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils') + depends=('pango' 'libxinerama' 'gtk-update-icon-cache' 'shared-mime-info' \ + 'hicolor-icon-theme' 'desktop-file-utils' 'libxkbfile' 'enchant') install=fcitx.install cd "${srcdir}"/build diff --git a/extra/gnu-efi/PKGBUILD b/extra/gnu-efi/PKGBUILD new file mode 100644 index 000000000..35e433aaf --- /dev/null +++ b/extra/gnu-efi/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 160800 2012-06-06 10:29:37Z tpowa $ +# Maintainer: Tobias Powalowski +# Maintainer : Keshav P R <(the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) (ccoomm)> +# Contributor: Alessio 'mOLOk' Bolognino + +_pkgname="gnu-efi" +_ver="3.0" +_pkgver="${_ver}q" +pkgname="${_pkgname}" +pkgver="${_pkgver}" +pkgrel=1 +pkgdesc="Library for building UEFI Applications using GNU toolchain" +url="http://sourceforge.net/projects/gnu-efi/" +license=('GPL') +arch=('i686' 'x86_64') +makedepends=() +depends=('pciutils') +source=("http://download.sourceforge.net/gnu-efi/gnu-efi_${pkgver}.orig.tar.gz") +options=(!strip !makeflags) + +build() { + cd "${srcdir}/gnu-efi-${_ver}" + sed 's|-fno-strict-aliasing|-fno-strict-aliasing -fno-stack-protector|g' -i "${srcdir}/gnu-efi-${_ver}/Make.defaults" || true + CFLAGS="" make + make -C apps clean all +} + +package() { + cd "${srcdir}/gnu-efi-${_ver}" + make INSTALLROOT="${pkgdir}/usr/" install + install -d "${pkgdir}/usr/share/gnu-efi/" + install -D -m0644 "${srcdir}/gnu-efi-${_ver}/apps"/*.efi "${pkgdir}/usr/share/gnu-efi/" +} +md5sums=('698d93490e0c0171aa0e2a8eda44209f') diff --git a/extra/mod_perl/PKGBUILD b/extra/mod_perl/PKGBUILD index f333c0aeb..dd9d26bc2 100644 --- a/extra/mod_perl/PKGBUILD +++ b/extra/mod_perl/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 160497 2012-06-02 10:26:43Z bluewind $ +# $Id: PKGBUILD 160911 2012-06-06 19:20:20Z foutrelis $ # Maintainer: # Contributor: Firmicus # Contributor: Tom K pkgname=mod_perl -pkgver=2.0.6 +pkgver=2.0.7 pkgrel=1 pkgdesc="Apache module that embeds the Perl interpreter within the server" arch=('i686' 'x86_64') @@ -13,11 +13,9 @@ license=('APACHE') depends=('perl' 'apache' 'db' 'apr-util' 'perl-linux-pid') options=('!emptydirs') source=(http://perl.apache.org/dist/$pkgname-$pkgver.tar.gz - mod_perl-2.0.6-nolfs.patch - mod_perl-2.0.6-perl-5.16-fixes.patch) -sha256sums=('8cf768d2c55291e10542ef8d9a4f4ebe835365e43b4584771e654079405827dc' - '5d1b6a051d847108b23b5dc06ea5885c37dd81d3a9156b69d179d95b5cf92f08' - 'c6cde22806b1b2d919545b21c49536c8c377c8d1f921e8948e1289bb2ab413d9') + mod_perl-2.0.6-nolfs.patch) +sha256sums=('53414be9db843054b927f23a35edb7b82d99e32e031b3cd81d5ff2473f51e3c6' + '5d1b6a051d847108b23b5dc06ea5885c37dd81d3a9156b69d179d95b5cf92f08') build() { cd "$srcdir/$pkgname-$pkgver" @@ -28,10 +26,6 @@ build() { # structures to be invalid if only the apache flags are used patch -Np1 -i "$srcdir/mod_perl-2.0.6-nolfs.patch" - # Fix build with Perl 5.16 - # http://search.cpan.org/dist/perl-5.16.0/pod/perldelta.pod#$%3C,_$%3E,_$%28_and_$%29_are_no_longer_cached - patch -Np1 -i "$srcdir/mod_perl-2.0.6-perl-5.16-fixes.patch" - # install module in vendor directories. perl Makefile.PL INSTALLDIRS=vendor MP_APXS=/usr/sbin/apxs make diff --git a/extra/mx/PKGBUILD b/extra/mx/PKGBUILD index 380fe3732..176ca7f69 100644 --- a/extra/mx/PKGBUILD +++ b/extra/mx/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 156936 2012-04-23 09:09:25Z ibiru $ +# $Id: PKGBUILD 160919 2012-06-07 00:15:28Z heftig $ # Contributor: Andrea Scarpino # Contributor: Guenther Wutz pkgname=mx -pkgver=1.4.3 -pkgrel=2 +pkgver=1.4.6 +pkgrel=1 pkgdesc="A widget toolkit using Clutter" arch=('i686' 'x86_64') url="http://www.clutter-project.org" @@ -13,7 +13,7 @@ depends=('clutter' 'libxrandr' 'dbus-glib' 'gtk2' 'startup-notification') makedepends=('intltool' 'gobject-introspection' 'gtk-doc') options=('!libtool') source=("http://source.clutter-project.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz") -sha256sums=('d0c259a7bcaf130a17cef00ed4c7118287f05790a6b50bcffa02668130336eb5') +sha256sums=('20fd8e1463d84c791c20dd1e021bc18041b05ad095a1acbaace7bf0dd43d09f2') build() { cd ${pkgname}-${pkgver} diff --git a/extra/quodlibet/PKGBUILD b/extra/quodlibet/PKGBUILD index c2341188c..c1dadacce 100644 --- a/extra/quodlibet/PKGBUILD +++ b/extra/quodlibet/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 153859 2012-03-20 06:20:55Z eric $ +# $Id: PKGBUILD 160925 2012-06-07 02:14:07Z eric $ # Maintainer: Eric Bélanger pkgname=quodlibet pkgver=2.4 -pkgrel=1 +pkgrel=2 pkgdesc="An audio player written in pygtk" arch=('i686' 'x86_64') license=('GPL2') @@ -13,10 +13,10 @@ depends=('gstreamer0.10-python' 'gstreamer0.10-base-plugins' 'gstreamer0.10-good makedepends=('intltool') optdepends=('gstreamer0.10-ffmpeg: for ffmpeg (ASF/WMA) support ' 'gstreamer0.10-bad-plugins: for MPEG-4 (AAC) and Musepack support' - 'dbus-python: for dbus support' + 'python2-dbus: for dbus support' 'notification-daemon: for notification support' 'libgpod: for ipod support' - 'python-feedparser: for audio feeds (podcast) support' + 'python2-feedparser: for audio feeds (podcast) support' 'udisks: for media devices support' 'media-player-info: for media devices support') options=('!makeflags') @@ -26,6 +26,7 @@ sha1sums=('7e11cda2827bb0d04b7d2b7854b8a2854ed074c8') build() { cd "${srcdir}/${pkgname}-${pkgver}" sed -i 's#env python#env python2#' *.py quodlibet/util/fmps.py + sed -i 's#libudev.so.0#libudev.so.1#' quodlibet/devices/__init__.py ./setup.py build } diff --git a/extra/vim/PKGBUILD b/extra/vim/PKGBUILD index cbc430fb4..507eaed33 100644 --- a/extra/vim/PKGBUILD +++ b/extra/vim/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 160579 2012-06-02 10:29:06Z bluewind $ +# $Id: PKGBUILD 160931 2012-06-07 03:39:59Z tdziedzic $ # Contributor: Jan "heftig" Steffens # Maintainer: tobias [ tobias at archlinux org ] # Maintainer: Daniel J Griffiths @@ -6,11 +6,11 @@ pkgbase=vim pkgname=('vim' 'gvim' 'vim-runtime') _topver=7.3 -_patchlevel=515 -__hgrev=8201108e9cf0 +_patchlevel=547 +__hgrev=6f2497d0c277 _versiondir="vim${_topver//./}" pkgver=${_topver}.${_patchlevel} -pkgrel=2 +pkgrel=1 arch=('i686' 'x86_64') license=('custom:vim') url="http://www.vim.org" @@ -21,8 +21,8 @@ source=("ftp://ftp.archlinux.org/other/vim/vim-${pkgver}.tar.xz" 'vimrc' 'archlinux.vim' 'gvim.desktop') -sha1sums=('10d7642d5062effdb51f53952622f9338003bbbf' - '0c1c584c1a2a2a279507f793cd5eff82863c625b' +sha1sums=('2c4f78a66b6ad7a759122d1f66c74079b678f39c' + '999f527d82a4c7818d017e3b8230e27950e87718' '4d9dcfb32874aa5467e6f06e418aeb4e675daaf2' '3494baf53a63581ba69f86a81293640ff681c5c5' '25dd3c2ce436e73a367c8f73b68f7f6889682437' diff --git a/kernels/linux-libre-rt/PKGBUILD b/kernels/linux-libre-rt/PKGBUILD index 7c4870f1a..9c07ee16c 100644 --- a/kernels/linux-libre-rt/PKGBUILD +++ b/kernels/linux-libre-rt/PKGBUILD @@ -13,8 +13,8 @@ pkgname=('linux-libre-rt' 'linux-libre-rt-headers') # Build stock -LIBRE kernel # pkgname=linux-custom # Build kernel with a different name _kernelname=-LIBRE-RT _basekernel=3.2 -_releasever=16 -_rtpatchver=rt27 +_releasever=19 +_rtpatchver=rt30 _pkgver=${_basekernel}.${_releasever} pkgver=${_basekernel}.${_releasever}_${_rtpatchver} pkgrel=1 @@ -35,10 +35,10 @@ source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/${_basekernel}-gn 'i915-fix-ghost-tv-output.patch' 'ext4-options.patch') md5sums=('65c669b6e4888db84a80882461851867' - '88427253e35474302c40ab1d4843a9aa' - 'f003895eb0231f829f74f93921568d53' - '6141ab0cb60a5cf9e6ee3bdf8c8c79b1' - 'c2f3423d7c7d8e5776e961b75a52a3fc' + '87d9a426bda3bdc58fcb5f002c459adb' + 'bb7b98d1186edd0544cefc7499d3740b' + '824bb5f926d00d499f3a2a68f06d9760' + '84d96cded290680ec2b875e2223deff9' '82496e68851d1960543a07ba51cdb44a' '04b21c79df0a952c22d681dd4f4562df' '9d3c56a4b999c8bfbd4018089a62f662' @@ -53,7 +53,7 @@ build() { fi # add realtime patch - patch -Np1 -i "${srcdir}/patch-${_pkgver}-${_rtpatchver}.patch" + patch -p1 -i "${srcdir}/patch-${_pkgver}-${_rtpatchver}.patch" # Add freedo as boot logo patch -Np1 -i "${srcdir}/boot-logo.patch" @@ -67,6 +67,7 @@ build() { # needed. patch -Np1 -i "${srcdir}/i915-fix-ghost-tv-output.patch" + # Patch submitted upstream, waiting for inclusion: # set DEFAULT_CONSOLE_LOGLEVEL to 4 (same value as the 'quiet' kernel param) # remove this when a Kconfig knob is made available by upstream # (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227) diff --git a/kernels/linux-libre-rt/config.i686 b/kernels/linux-libre-rt/config.i686 index 749ad1e09..7ae7c1d78 100644 --- a/kernels/linux-libre-rt/config.i686 +++ b/kernels/linux-libre-rt/config.i686 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/i386 3.2.2 Kernel Configuration +# Linux/i386 3.2.18 Kernel Configuration # # CONFIG_64BIT is not set CONFIG_X86_32=y @@ -106,7 +106,6 @@ CONFIG_SPARSE_IRQ=y # # RCU Subsystem # -# CONFIG_TREE_RCU is not set CONFIG_TREE_PREEMPT_RCU=y CONFIG_PREEMPT_RCU=y # CONFIG_RCU_TRACE is not set @@ -186,7 +185,6 @@ CONFIG_VM_EVENT_COUNTERS=y CONFIG_PCI_QUIRKS=y # CONFIG_COMPAT_BRK is not set CONFIG_SLAB=y -# CONFIG_SLUB is not set CONFIG_PROFILING=y CONFIG_TRACEPOINTS=y CONFIG_HAVE_OPROFILE=y @@ -419,8 +417,6 @@ CONFIG_KSM=y CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y CONFIG_MEMORY_FAILURE=y -# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set -# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set CONFIG_CLEANCACHE=y # CONFIG_HIGHPTE is not set CONFIG_X86_CHECK_BIOS_CORRUPTION=y @@ -5048,7 +5044,6 @@ CONFIG_R8187SE=m CONFIG_RTL8192U=m CONFIG_RTL8192E=m CONFIG_R8712U=m -CONFIG_R8712_AP=y CONFIG_RTS_PSTOR=m # CONFIG_RTS_PSTOR_DEBUG is not set CONFIG_RTS5139=m diff --git a/kernels/linux-libre-rt/config.x86_64 b/kernels/linux-libre-rt/config.x86_64 index 13386d7f3..57f66119a 100644 --- a/kernels/linux-libre-rt/config.x86_64 +++ b/kernels/linux-libre-rt/config.x86_64 @@ -1,6 +1,6 @@ # # Automatically generated file; DO NOT EDIT. -# Linux/x86_64 3.2.2 Kernel Configuration +# Linux/x86_64 3.2.18 Kernel Configuration # CONFIG_64BIT=y # CONFIG_X86_32 is not set @@ -108,7 +108,6 @@ CONFIG_SPARSE_IRQ=y # # RCU Subsystem # -# CONFIG_TREE_RCU is not set CONFIG_TREE_PREEMPT_RCU=y CONFIG_PREEMPT_RCU=y # CONFIG_RCU_TRACE is not set @@ -188,7 +187,6 @@ CONFIG_VM_EVENT_COUNTERS=y CONFIG_PCI_QUIRKS=y # CONFIG_COMPAT_BRK is not set CONFIG_SLAB=y -# CONFIG_SLUB is not set CONFIG_PROFILING=y CONFIG_TRACEPOINTS=y CONFIG_HAVE_OPROFILE=y @@ -405,8 +403,6 @@ CONFIG_KSM=y CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y CONFIG_MEMORY_FAILURE=y -# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set -# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set CONFIG_CLEANCACHE=y CONFIG_X86_CHECK_BIOS_CORRUPTION=y CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y @@ -4809,7 +4805,6 @@ CONFIG_R8187SE=m CONFIG_RTL8192U=m CONFIG_RTL8192E=m CONFIG_R8712U=m -CONFIG_R8712_AP=y CONFIG_RTS_PSTOR=m # CONFIG_RTS_PSTOR_DEBUG is not set CONFIG_RTS5139=m diff --git a/kernels/linux-libre-rt/linux-libre-rt.install b/kernels/linux-libre-rt/linux-libre-rt.install index 5f73fb8fb..407bf32c1 100644 --- a/kernels/linux-libre-rt/linux-libre-rt.install +++ b/kernels/linux-libre-rt/linux-libre-rt.install @@ -2,7 +2,7 @@ # arg 2: the old package version KERNEL_NAME=-rt -KERNEL_VERSION=3.2.16-1-rt27-LIBRE-RT +KERNEL_VERSION=3.2.19-1-rt30-LIBRE-RT post_install () { # updating module dependencies @@ -28,7 +28,7 @@ post_install () { post_upgrade() { pacman -Q grub &>/dev/null hasgrub=$? - pacman -Q grub2 &>/dev/null + pacman -Q grub2-common &>/dev/null hasgrub2=$? pacman -Q lilo &>/dev/null haslilo=$? @@ -44,12 +44,8 @@ post_upgrade() { echo ">>>" fi - if grep "^[^#]*[[:space:]]/boot" etc/fstab 2>&1 >/dev/null; then - if ! grep "[[:space:]]/boot" etc/mtab 2>&1 >/dev/null; then - echo "WARNING: /boot appears to be a seperate partition but is not mounted" - echo " This is most likely not what you want. Please mount your /boot" - echo " partition and reinstall the kernel unless you are sure this is OK" - fi + if findmnt --fstab -uno SOURCE /boot &>/dev/null && ! mountpoint -q /boot; then + echo "WARNING: /boot appears to be a separate partition but is not mounted." fi # updating module dependencies diff --git a/libre/apache-ant/PKGBUILD b/libre/apache-ant/PKGBUILD index b6b429442..77e0dfe94 100644 --- a/libre/apache-ant/PKGBUILD +++ b/libre/apache-ant/PKGBUILD @@ -3,13 +3,13 @@ # Contributor: Andrew Wright pkgname=apache-ant -pkgver=1.8.2 +pkgver=1.8.4 provides=("apache-ant-libre=$pkgver") replaces=("apache-ant-libre") conflicts=("apache-ant-libre") -pkgrel=4.2 +pkgrel=1.1 pkgdesc="A Java-based build tool" arch=('any') license=('Apache') @@ -64,12 +64,14 @@ build() { ln -sf ${jar%::*} lib/optional/`basename ${jar/*::}` done # Build + source "/etc/profile.d/jdk.sh" # Get the JAVA_HOME env var sh build.sh -Ddist.dir="${srcdir}"/${pkgname}-${pkgver}-bin dist } package() { cd "${srcdir}"/${pkgname}-${pkgver}-bin - source "${srcdir}"/${pkgname}.sh # Get the ANT_HOME env var + source "${srcdir}"/${pkgname}.sh # Get the ANT_HOME env var + source "/etc/profile.d/jdk.sh" # Get the JAVA_HOME env var ## Install profile.d script install -d "${pkgdir}"/etc/profile.d @@ -103,6 +105,6 @@ package() { ln -sf ${ANT_HOME}/{LICENSE,NOTICE} "${pkgdir}"/usr/share/licenses/${pkgname} } -md5sums=('0d9e108afcd15b820150b8085c96d2b1' +md5sums=('c474fa9d0c35a24037c23b6e476862c1' 'bd63c881be406f515fc4d22635e8326a' - '298e8ba2e99ccda7706113ea37e030f2') + 'aaa615512cbe1ed7f3b62c1ff46802f8') diff --git a/libre/apache-ant/apache-ant.csh b/libre/apache-ant/apache-ant.csh index 490a17b65..fdc04b2f8 100644 --- a/libre/apache-ant/apache-ant.csh +++ b/libre/apache-ant/apache-ant.csh @@ -1,3 +1,2 @@ #!/bin/csh -setenv ANT_HOME /usr/share/java/apache-ant -setenv PATH ${PATH}:${ANT_HOME}/bin +setenv ANT_HOME /opt/apache-ant diff --git a/libre/your-freedom/PKGBUILD b/libre/your-freedom/PKGBUILD index 84a6f47fa..840a7f922 100644 --- a/libre/your-freedom/PKGBUILD +++ b/libre/your-freedom/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Parabola Project pkgname=your-freedom pkgver=$(LC_ALL=C date -u +%Y%m%d) -pkgrel=1 +pkgrel=3 pkgdesc="This package conflicts with every unfree package known to date to ensure your system is free." arch=('any') url="https://parabolagnulinux.org" @@ -23,4 +23,5 @@ package() { sort -u )) } -md5sums=('0025025765e754425e381e8e2d136740') + +md5sums=('e2527b2b2bada2b4115f72bccef281c3') diff --git a/multilib/lib32-libphobos-ldc/PKGBUILD b/multilib/lib32-libphobos-ldc/PKGBUILD new file mode 100644 index 000000000..949ed5e59 --- /dev/null +++ b/multilib/lib32-libphobos-ldc/PKGBUILD @@ -0,0 +1,57 @@ +# $Id: PKGBUILD 72029 2012-06-06 11:58:40Z svenstaro $ +# Maintainer: Sven-Hendrik Haase +pkgname=lib32-libphobos-ldc +pkgver=20120606 +pkgrel=1 +pkgdesc="libphobos for ldc (32-bit)" +arch=('x86_64') +url="http://www.dsource.org/projects/ldc" +license=('BSD') +depends=('llvm' 'libconfig') +makedepends=('git' 'cmake') +source=() +md5sums=() + +_gitroot=git://github.com/ldc-developers/ldc.git +_gitname=ldc +_gitbranch=llvm-3.1 + +build() { + cd "$srcdir" + msg "Connecting to GIT server...." + + if [[ -d "$_gitname" ]]; then + cd "$_gitname" && git pull origin + msg "The local files are updated." + else + git clone --branch "$_gitbranch" "$_gitroot" "$_gitname" + fi + + msg "GIT checkout done or server timeout" + msg "Starting build..." + + rm -rf "$srcdir/$_gitname-build" + git clone --recursive "$srcdir/$_gitname" "$srcdir/$_gitname-build" + cd "$srcdir/$_gitname-build" + + mkdir build && cd build + cmake \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DINCLUDE_INSTALL_DIR=/usr/include/d/std-ldc \ + -DMULTILIB=ON \ + .. + make +} + +package() { + cd "$srcdir/$_gitname-build" + + cd build + make DESTDIR=$pkgdir install + cd .. + + # We don't want anything but the 32-bit libs + rm -rf $pkgdir/usr/{share,lib,include,bin} $pkgdir/etc + + install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE +} diff --git a/testing/psmisc/PKGBUILD b/testing/psmisc/PKGBUILD new file mode 100644 index 000000000..9d560be15 --- /dev/null +++ b/testing/psmisc/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 160929 2012-06-07 03:03:32Z eric $ +# Maintainer: Eric Bélanger + +pkgname=psmisc +pkgver=22.17 +pkgrel=1 +pkgdesc="Miscellaneous procfs tools" +arch=('i686' 'x86_64') +url="http://psmisc.sourceforge.net/index.html" +license=('GPL') +groups=('base') +depends=('ncurses') +source=(http://downloads.sourceforge.net/psmisc/${pkgname}-${pkgver}.tar.gz) +sha1sums=('5d400710cf030bf7396aec40f53e933942ec8b4a') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} diff --git a/testing/systemd/0001-Reinstate-TIMEOUT-handling.patch b/testing/systemd/0001-Reinstate-TIMEOUT-handling.patch new file mode 100644 index 000000000..766dcb87f --- /dev/null +++ b/testing/systemd/0001-Reinstate-TIMEOUT-handling.patch @@ -0,0 +1,124 @@ +From 2127f99fb43d2ef950e95329ce40bdd5da8b015c Mon Sep 17 00:00:00 2001 +From: Dave Reisner +Date: Fri, 25 May 2012 19:43:24 -0400 +Subject: [PATCH] Reinstate TIMEOUT= handling + +This is mostly to deal with ipw2?00 drivers which have yet to be fixed +in the kernel. +--- + src/libudev/libudev-device.c | 19 +++++++++++++++++++ + src/libudev/libudev-private.h | 1 + + src/udev/udevd.c | 13 ++++++++++--- + 3 files changed, 30 insertions(+), 3 deletions(-) + +diff --git a/src/libudev/libudev-device.c b/src/libudev/libudev-device.c +index a8277d1..5966189 100644 +--- a/src/libudev/libudev-device.c ++++ b/src/libudev/libudev-device.c +@@ -68,6 +68,7 @@ struct udev_device { + struct udev_list tags_list; + unsigned long long int seqnum; + unsigned long long int usec_initialized; ++ int timeout; + int devlink_priority; + int refcount; + dev_t devnum; +@@ -89,6 +90,21 @@ struct udev_device { + bool db_persist; + }; + ++int udev_device_get_timeout(struct udev_device *udev_device) ++{ ++ return udev_device->timeout; ++} ++ ++static int udev_device_set_timeout(struct udev_device *udev_device, int timeout) ++{ ++ char num[32]; ++ ++ udev_device->timeout = timeout; ++ snprintf(num, sizeof(num), "%u", timeout); ++ udev_device_add_property(udev_device, "TIMEOUT", num); ++ return 0; ++} ++ + /** + * udev_device_get_seqnum: + * @udev_device: udev device +@@ -362,6 +378,8 @@ void udev_device_add_property_from_string_parse(struct udev_device *udev_device, + + util_strscpyl(path, sizeof(path), TEST_PREFIX "/sys", &property[8], NULL); + udev_device_set_syspath(udev_device, path); ++ } else if (strncmp(property, "TIMEOUT=", 8) == 0) { ++ udev_device_set_timeout(udev_device, strtoull(&property[8], NULL, 10)); + } else if (startswith(property, "SUBSYSTEM=")) { + udev_device_set_subsystem(udev_device, &property[10]); + } else if (startswith(property, "DEVTYPE=")) { +@@ -605,6 +623,7 @@ struct udev_device *udev_device_new(struct udev *udev) + udev_list_init(udev, &udev_device->sysattr_value_list, true); + udev_list_init(udev, &udev_device->sysattr_list, false); + udev_list_init(udev, &udev_device->tags_list, true); ++ udev_device->timeout = -1; + udev_device->watch_handle = -1; + /* copy global properties */ + udev_list_entry_foreach(list_entry, udev_get_properties_list_entry(udev)) +diff --git a/src/libudev/libudev-private.h b/src/libudev/libudev-private.h +index 4eb4a59..99aefeb 100644 +--- a/src/libudev/libudev-private.h ++++ b/src/libudev/libudev-private.h +@@ -70,6 +70,7 @@ const char *udev_device_get_id_filename(struct udev_device *udev_device); + void udev_device_set_is_initialized(struct udev_device *udev_device); + int udev_device_add_tag(struct udev_device *udev_device, const char *tag); + void udev_device_cleanup_tags_list(struct udev_device *udev_device); ++int udev_device_get_timeout(struct udev_device *udev_device); + unsigned long long udev_device_get_usec_initialized(struct udev_device *udev_device); + void udev_device_set_usec_initialized(struct udev_device *udev_device, unsigned long long usec_initialized); + int udev_device_get_devlink_priority(struct udev_device *udev_device); +diff --git a/src/udev/udevd.c b/src/udev/udevd.c +index 0d85960..cd24462 100644 +--- a/src/udev/udevd.c ++++ b/src/udev/udevd.c +@@ -384,7 +384,7 @@ out: + } + } + +-static void event_run(struct event *event) ++static void event_run(struct event *event, bool force) + { + struct udev_list_node *loop; + +@@ -410,7 +410,7 @@ static void event_run(struct event *event) + return; + } + +- if (children >= children_max) { ++ if (!force && children >= children_max) { + if (children_max > 1) + log_debug("maximum number (%i) of children reached\n", children); + return; +@@ -444,6 +444,13 @@ static int event_queue_insert(struct udev_device *dev) + + event->state = EVENT_QUEUED; + udev_list_node_append(&event->node, &event_list); ++ ++ /* run all events with a timeout set immediately */ ++ if (udev_device_get_timeout(dev) > 0) { ++ event_run(event, true); ++ return 0; ++ } ++ + return 0; + } + +@@ -549,7 +556,7 @@ static void event_queue_start(struct udev *udev) + if (is_devpath_busy(event)) + continue; + +- event_run(event); ++ event_run(event, false); + } + } + +-- +1.7.10.2 + diff --git a/testing/systemd/PKGBUILD b/testing/systemd/PKGBUILD new file mode 100644 index 000000000..06b3ac5f0 --- /dev/null +++ b/testing/systemd/PKGBUILD @@ -0,0 +1,208 @@ +# Maintainer: Dave Reisner +# Contributor: Tom Gundersen + +pkgbase=systemd +pkgname=('systemd' 'libsystemd' 'systemd-tools' 'systemd-sysvcompat') +pkgver=185 +pkgrel=1 +arch=('i686' 'x86_64') +url="http://www.freedesktop.org/wiki/Software/systemd" +license=('GPL2' 'LGPL2.1' 'MIT') +makedepends=('acl' 'cryptsetup' 'dbus-core' 'docbook-xsl' 'gobject-introspection' 'gperf' + 'gtk-doc' 'intltool' 'kmod' 'libcap' 'libxslt' 'linux-api-headers' 'pam' 'xz') +options=('!libtool') +source=("http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz" + 'initcpio-hook-udev' + 'initcpio-install-udev' + 'initcpio-install-timestamp' + '0001-Reinstate-TIMEOUT-handling.patch' + 'locale.sh') +md5sums=('a7dbbf05986eb0d2c164ec8e570eb78f' + 'e99e9189aa2f6084ac28b8ddf605aeb8' + '59e91c4d7a69b7bf12c86a9982e37ced' + 'df69615503ad293c9ddf9d8b7755282d' + '5543be25f205f853a21fa5ee68e03f0d' + 'f15956945052bb911e5df81cf5e7e5dc') + +build() { + cd "$pkgname-$pkgver" + + # still waiting on ipw2x00 to get fixed... + patch -Np1 <"$srcdir/0001-Reinstate-TIMEOUT-handling.patch" + + ./configure \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --sysconfdir=/etc \ + --enable-split-usr \ + --enable-introspection \ + --enable-gtk-doc \ + --disable-audit \ + --disable-ima \ + --with-pamlibdir=/usr/lib/security \ + --with-distro=arch \ + --with-usb-ids-path=/usr/share/hwdata/usb.ids \ + --with-pci-ids-path=/usr/share/hwdata/pci.ids \ + --with-firmware-path=/usr/lib/firmware/updates:/lib/firmware/updates:/usr/lib/firmware:/lib/firmware + + make +} + +package_systemd() { + pkgdesc="system and service manager" + depends=('acl' 'dbus-core' "libsystemd=$pkgver" 'kmod' 'libcap' 'pam' + "systemd-tools=$pkgver" 'util-linux' 'xz') + optdepends=('dbus-python: systemd-analyze' + 'initscripts: legacy support for hostname and vconsole setup' + 'initscripts-systemd: native boot and initialization scripts' + 'python2-cairo: systemd-analyze' + 'systemd-arch-units: collection of native unit files for Arch daemon/init scripts' + 'systemd-sysvcompat: symlink package to provide sysvinit binaries') + backup=(etc/dbus-1/system.d/org.freedesktop.systemd1.conf + etc/dbus-1/system.d/org.freedesktop.hostname1.conf + etc/dbus-1/system.d/org.freedesktop.login1.conf + etc/dbus-1/system.d/org.freedesktop.locale1.conf + etc/dbus-1/system.d/org.freedesktop.timedate1.conf + etc/systemd/system.conf + etc/systemd/user.conf + etc/systemd/logind.conf + etc/systemd/journald.conf) + install="systemd.install" + + make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install + + printf "d /run/console 0755 root root\n" > "$pkgdir/usr/lib/tmpfiles.d/console.conf" + + install -dm755 "$pkgdir/bin" + ln -s ../usr/lib/systemd/systemd "$pkgdir/bin/systemd" + + # fix systemd-analyze for python2 + sed -i '1s/python$/python2/' "$pkgdir/usr/bin/systemd-analyze" + + # move bash-completion and symlink for loginctl + install -Dm644 "$pkgdir/etc/bash_completion.d/systemd-bash-completion.sh" \ + "$pkgdir/usr/share/bash-completion/completions/systemctl" + ln -s systemctl "$pkgdir/usr/share/bash-completion/completions/loginctl" + rm -rf "$pkgdir/etc/bash_completion.d" + + # don't write units to /etc by default -- we'll enable this on post_install + # as a sane default + rm "$pkgdir/etc/systemd/system/getty.target.wants/getty@tty1.service" + rmdir "$pkgdir/etc/systemd/system/getty.target.wants" + + ### split off libsystemd (libs, includes, pkgconfig, man3) + rm -rf "$srcdir/_libsystemd" + install -dm755 "$srcdir"/_libsystemd/usr/{include,lib/pkgconfig} + cd "$srcdir"/_libsystemd + mv "$pkgdir/usr/lib"/libsystemd-*.so* usr/lib + mv "$pkgdir/usr/include/systemd" usr/include + mv "$pkgdir/usr/lib/pkgconfig"/libsystemd-*.pc usr/lib/pkgconfig + + ### split out manpages for sysvcompat + rm -rf "$srcdir/_sysvcompat" + install -dm755 "$srcdir"/_sysvcompat/usr/share/man/man8/ + mv "$pkgdir"/usr/share/man/man8/{telinit,halt,reboot,poweroff,runlevel,shutdown}.8 \ + "$srcdir"/_sysvcompat/usr/share/man/man8 + + ### split out systemd-tools/udev + rm -rf "$srcdir/_tools" + install -dm755 \ + "$srcdir"/_tools/etc/udev \ + "$srcdir"/_tools/usr/bin \ + "$srcdir"/_tools/usr/include \ + "$srcdir"/_tools/usr/lib/udev \ + "$srcdir"/_tools/usr/lib/systemd/system/{sysinit,sockets}.target.wants \ + "$srcdir"/_tools/usr/lib/girepository-1.0 \ + "$srcdir"/_tools/usr/share/pkgconfig \ + "$srcdir"/_tools/usr/share/gir-1.0 \ + "$srcdir"/_tools/usr/share/gtk-doc/html/{g,lib}udev \ + "$srcdir"/_tools/usr/share/man/man{1,5,7,8} + + cd "$srcdir/_tools" + mv "$pkgdir"/etc/udev etc + mv "$pkgdir"/etc/{binfmt,modules-load,sysctl,tmpfiles}.d etc + mv "$pkgdir"/usr/bin/udevadm usr/bin + mv "$pkgdir"/usr/lib/pkgconfig usr/lib + mv "$pkgdir"/usr/lib/systemd/systemd-udevd usr/lib/systemd + mv "$pkgdir"/usr/lib/systemd/system/systemd-udev* usr/lib/systemd/system + mv "$pkgdir"/usr/lib/systemd/system/sysinit.target.wants/systemd-udev* usr/lib/systemd/system/sysinit.target.wants + mv "$pkgdir"/usr/lib/systemd/system/sockets.target.wants/systemd-udev* usr/lib/systemd/system/sockets.target.wants + mv "$pkgdir"/usr/lib/lib{,g}udev* usr/lib + mv "$pkgdir"/usr/lib/{binfmt,sysctl,modules-load,tmpfiles}.d usr/lib + mv "$pkgdir"/usr/lib/udev usr/lib + mv "$pkgdir"/usr/include/{libudev.h,gudev-1.0} usr/include + mv "$pkgdir"/usr/lib/girepository-1.0 usr/lib + mv "$pkgdir"/usr/share/pkgconfig/udev.pc usr/share/pkgconfig + mv "$pkgdir"/usr/share/gir-1.0 usr/share + mv "$pkgdir"/usr/share/gtk-doc/html/{g,lib}udev usr/share/gtk-doc/html + mv "$pkgdir"/usr/share/man/man7/udev.7 usr/share/man/man7 + mv "$pkgdir"/usr/share/man/man8/{systemd-udevd,udevadm}.8 usr/share/man/man8 + mv "$pkgdir"/usr/share/man/man1/systemd-{ask-password,delta,detect-virt}.1 usr/share/man/man1 + mv "$pkgdir"/usr/share/man/man5/{binfmt,modules-load,sysctl,tmpfiles}.d.5 usr/share/man/man5 + mv "$pkgdir"/usr/share/man/man5/{hostname,{vconsole,locale}.conf}.5 usr/share/man/man5 + mv "$pkgdir"/usr/bin/systemd-{ask-password,delta,detect-virt,tmpfiles,tty-ask-password-agent} usr/bin + mv "$pkgdir"/usr/lib/systemd/systemd-{ac-power,binfmt,cryptsetup,modules-load,random-seed,remount-fs,reply-password,sysctl,timestamp,vconsole-setup} usr/lib/systemd +} + +package_systemd-sysvcompat() { + pkgdesc="sysvinit compat for systemd" + conflicts=('sysvinit' 'initscripts') + + mv "$srcdir/_sysvcompat"/* "$pkgdir" + + install -dm755 "$pkgdir/sbin" + for tool in runlevel reboot shutdown poweroff halt telinit; do + ln -s '/usr/bin/systemctl' "$pkgdir/sbin/$tool" + done + + ln -s '../usr/lib/systemd/systemd' "$pkgdir/sbin/init" + + install -Dm755 "$srcdir/locale.sh" "$pkgdir/etc/profile.d/locale.sh" +} + +package_libsystemd() { + pkgdesc="systemd client libraries" + depends=('xz') + + mv "$srcdir/_libsystemd"/* "$pkgdir" +} + +package_systemd-tools() { + pkgdesc='standalone tools from systemd' + url='http://www.freedesktop.org/wiki/Software/systemd' + depends=('acl' 'bash' 'glibc' 'glib2' 'kmod' 'hwids' 'util-linux' 'kbd') + optdepends=('cryptsetup: required for encrypted block devices') + provides=("udev=$pkgver") + conflicts=('udev') + replaces=('udev') + install='systemd-tools.install' + + mv "$srcdir/_tools/"* "$pkgdir" + + # the path to udevadm is hardcoded in some places + install -d "$pkgdir/sbin" + ln -s ../usr/bin/udevadm "$pkgdir/sbin/udevadm" + + # udevd is no longer udevd because systemd. why isn't udevadm now udevctl? + ln -s ../lib/systemd/systemd-udevd "$pkgdir/usr/bin/udevd" + ln -s ../systemd/systemd-udevd "$pkgdir/usr/lib/udev/udevd" + + # Replace dialout/tape/cdrom group in rules with uucp/storage/optical group + sed -i 's#GROUP="dialout"#GROUP="uucp"#g; + s#GROUP="tape"#GROUP="storage"#g; + s#GROUP="cdrom"#GROUP="optical"#g' "$pkgdir"/usr/lib/udev/rules.d/*.rules + + # get rid of unneded lock directories + sed -ri '/\/run\/lock\/(subsys|lockdev)/d' "$pkgdir"/usr/lib/tmpfiles.d/legacy.conf + + # add mkinitcpio hooks + install -Dm644 "$srcdir/initcpio-install-udev" "$pkgdir/usr/lib/initcpio/install/udev" + install -Dm644 "$srcdir/initcpio-hook-udev" "$pkgdir/usr/lib/initcpio/hooks/udev" + install -Dm644 "$srcdir/initcpio-install-timestamp" "$pkgdir/usr/lib/initcpio/install/timestamp" + + # XXX: kill off coredump rule until the journal can recover coredumps + # this file needs to come back as part of systemd, not systemd-tools + rm "$pkgdir/usr/lib/sysctl.d/coredump.conf" +} + +# vim: ft=sh syn=sh et diff --git a/testing/systemd/initcpio-hook-udev b/testing/systemd/initcpio-hook-udev new file mode 100644 index 000000000..75da7e4a8 --- /dev/null +++ b/testing/systemd/initcpio-hook-udev @@ -0,0 +1,20 @@ +#!/usr/bin/ash + +run_earlyhook() { + udevd --daemon --resolve-names=never + udevd_running=1 +} + +run_hook() { + msg ":: Triggering uevents..." + udevadm trigger --action=add --type=subsystems + udevadm trigger --action=add --type=devices + udevadm settle +} + +run_cleanuphook() { + udevadm control --exit + udevadm info --cleanup-db +} + +# vim: set ft=sh ts=4 sw=4 et: diff --git a/testing/systemd/initcpio-install-timestamp b/testing/systemd/initcpio-install-timestamp new file mode 100644 index 000000000..259cc705b --- /dev/null +++ b/testing/systemd/initcpio-install-timestamp @@ -0,0 +1,14 @@ +#!/bin/bash + +build() { + add_binary /usr/lib/systemd/systemd-timestamp /usr/bin/systemd-timestamp +} + +help() { + cat < to /dev/0." + echo " * For security reasons, we no longer add devices to the 'storage' group. Use" + echo " udisks and friends, or add custom rules to /etc/udev.d/rules/, if you want" + echo " this functionality back." + echo " * We no longer create the static nodes on install needed for an initrd-less" + echo " boot where devtmpfs is not mounted by the kernel, this only affects fresh" + echo " installs." + fi + if [ "$(vercmp $2 175)" -lt 0 ]; then + echo " * devtmpfs support is now a hard requirement. Users of the official Arch" + echo " kernels have this enabled." + fi + if [ "$(vercmp $2 181)" -lt 0 ]; then + echo " * udev-compat has been removed, and should be uninstalled." + echo " * Framebuffers are no longer blacklisted by default." + echo " * binaries moved from /sbin to /usr/bin" + fi + if [ "$(vercmp $2 181-3)" -lt 0 ]; then + echo " * if your kernel does not provide /dev/loop-control, you need to manually" + echo " load the 'loop' module before using losetup" + fi +} diff --git a/testing/systemd/systemd.install b/testing/systemd/systemd.install new file mode 100644 index 000000000..0b10f9537 --- /dev/null +++ b/testing/systemd/systemd.install @@ -0,0 +1,51 @@ +#!/bin/sh + +sd_booted() { + [ -e sys/fs/cgroup/systemd ] +} + +post_install() { + if [ ! -f etc/machine-id ]; then + systemd-machine-id-setup + fi + + # enable getty@tty1 by default, but don't track the file + systemctl enable getty@.service + + echo ":: Append 'init=/bin/systemd' to your kernel command line in your" + echo " bootloader to replace sysvinit with systemd" +} + +post_upgrade() { + if [ ! -f etc/machine-id ]; then + systemd-machine-id-setup + fi + + if sd_booted; then + # we moved the binary in 44-2 to /usr, so a reexec leads to a + # coredump. refuse this reexec and warn the user that they should + # reboot instead. + if [ "$(vercmp 44-2 "$2")" -eq 1 ]; then + echo "warning: refusing to reexec systemd. the system should be rebooted." + else + systemctl daemon-reload + systemctl daemon-reexec + fi + fi + + # getty@tty1.service is no longer enabled by default, but we don't want to break + # existing setups. + if [ "$(vercmp 183 "$2")" -eq 1 ]; then + # systemctl seems to be whiny on sysvinit. this will succeed unless something + # horrific happens, so just mask the error. + systemctl -q enable getty@.service || true + fi +} + +post_remove() { + if getent group lock >/dev/null; then + groupdel lock + fi +} + +# vim:set ts=2 sw=2 et: -- cgit v1.2.3-54-g00ecf From 491c8a0453839dd6b235b3e1f959e233c4313744 Mon Sep 17 00:00:00 2001 From: Omar Vega Ramos Date: Fri, 8 Jun 2012 07:56:29 -0500 Subject: Add mips64el in arch() in packages of community and extra repos --- community/0ad/PKGBUILD | 2 +- community/acpi/PKGBUILD | 2 +- community/acpid/PKGBUILD | 2 +- community/afpfs-ng/PKGBUILD | 2 +- community/alex/PKGBUILD | 2 +- community/allegro/PKGBUILD | 2 +- community/alleyoop/PKGBUILD | 2 +- community/almanah/PKGBUILD | 2 +- community/alsa-tools/PKGBUILD | 2 +- community/apper/PKGBUILD | 2 +- community/arm-elf-binutils/PKGBUILD | 2 +- community/arm-elf-gcc-base/PKGBUILD | 2 +- community/arm-wince-cegcc-binutils/PKGBUILD | 2 +- community/arm-wince-cegcc-gcc-base/PKGBUILD | 2 +- community/arm-wince-cegcc-gcc/PKGBUILD | 2 +- community/arptables/PKGBUILD | 2 +- community/assimp/PKGBUILD | 2 +- community/audit/PKGBUILD | 2 +- community/avifile/PKGBUILD | 2 +- community/avr-binutils/PKGBUILD | 2 +- community/avr-gcc/PKGBUILD | 2 +- community/awesome/PKGBUILD | 2 +- community/bam/PKGBUILD | 2 +- community/bcg729/PKGBUILD | 2 +- community/bitcoin/PKGBUILD | 2 +- community/blender/PKGBUILD | 2 +- community/c++-gtk-utils/PKGBUILD | 2 +- community/cdrtools/PKGBUILD | 2 +- community/chromaprint/PKGBUILD | 2 +- community/chromium-bsu/PKGBUILD | 2 +- community/cl/PKGBUILD | 2 +- community/clinica/PKGBUILD | 2 +- community/cmus/PKGBUILD | 2 +- community/conntrack-tools/PKGBUILD | 2 +- community/contacts/PKGBUILD | 2 +- community/converseen/PKGBUILD | 2 +- community/dates/PKGBUILD | 2 +- community/dcron/PKGBUILD | 2 +- community/dee/PKGBUILD | 2 +- community/desmume/PKGBUILD | 2 +- community/dmd/PKGBUILD | 2 +- community/dos2unix/PKGBUILD | 2 +- community/doublecmd/PKGBUILD | 2 +- community/drbd/PKGBUILD | 2 +- community/e3/PKGBUILD | 2 +- community/e4rat/PKGBUILD | 2 +- community/ebtables/PKGBUILD | 2 +- community/ecryptfs-utils/PKGBUILD | 2 +- community/efax-gtk/PKGBUILD | 2 +- community/erlang/PKGBUILD | 2 +- community/esdl/PKGBUILD | 2 +- community/ettercap/PKGBUILD | 2 +- community/exfat-utils/PKGBUILD | 2 +- community/ext4magic/PKGBUILD | 2 +- community/flightgear/PKGBUILD | 2 +- community/freeorion/PKGBUILD | 2 +- community/fuse-exfat/PKGBUILD | 2 +- community/fwbuilder/PKGBUILD | 2 +- community/galculator/PKGBUILD | 2 +- community/gdesklets/PKGBUILD | 2 +- community/gdlmm/PKGBUILD | 2 +- community/gendesk/PKGBUILD | 2 +- community/gftp/PKGBUILD | 2 +- community/gigi/PKGBUILD | 2 +- community/gimp-refocus/PKGBUILD | 2 +- community/glabels/PKGBUILD | 2 +- community/glfw/PKGBUILD | 2 +- community/gmime24/PKGBUILD | 2 +- community/gmtk/PKGBUILD | 2 +- community/gnac/PKGBUILD | 2 +- community/gnome-subtitles/PKGBUILD | 2 +- community/gnome-web-photo/PKGBUILD | 2 +- community/go/PKGBUILD | 2 +- community/goobox/PKGBUILD | 2 +- community/grafx2/PKGBUILD | 2 +- community/gtk-engine-unico/PKGBUILD | 2 +- community/gtksourceviewmm/PKGBUILD | 2 +- community/gtkspell3/PKGBUILD | 2 +- community/gupnp-dlna/PKGBUILD | 2 +- community/gwget/PKGBUILD | 2 +- community/gwibber/PKGBUILD | 2 +- community/happy/PKGBUILD | 2 +- community/hardlink/PKGBUILD | 2 +- community/haskell-bytestring-show/PKGBUILD | 2 +- community/haskell-cairo/PKGBUILD | 2 +- community/haskell-glib/PKGBUILD | 2 +- community/haskell-gtk/PKGBUILD | 2 +- community/haskell-html/PKGBUILD | 2 +- community/haskell-pango/PKGBUILD | 2 +- community/haskell-quickcheck/PKGBUILD | 2 +- community/haskell-regex-base/PKGBUILD | 2 +- community/haskell-regex-compat/PKGBUILD | 2 +- community/haskell-regex-posix/PKGBUILD | 2 +- community/haskell-stm/PKGBUILD | 2 +- community/haskell-syb/PKGBUILD | 2 +- community/haskell-xhtml/PKGBUILD | 2 +- community/hitori/PKGBUILD | 2 +- community/httperf/PKGBUILD | 2 +- community/i7z/PKGBUILD | 2 +- community/icewm-utils/PKGBUILD | 2 +- community/iec16022/PKGBUILD | 2 +- community/iptstate/PKGBUILD | 2 +- community/ipvsadm/PKGBUILD | 2 +- community/keepalived/PKGBUILD | 2 +- community/kovpn/PKGBUILD | 2 +- community/kpartsplugin/PKGBUILD | 2 +- community/ksniffer/PKGBUILD | 2 +- community/ktechlab/PKGBUILD | 2 +- community/kwalletcli/PKGBUILD | 2 +- community/lash/PKGBUILD | 2 +- community/ldc/PKGBUILD | 2 +- community/leptonica/PKGBUILD | 2 +- community/libalkimia/PKGBUILD | 2 +- community/libcec/PKGBUILD | 2 +- community/libcgns2/PKGBUILD | 2 +- community/libcryptui/PKGBUILD | 2 +- community/libgda4/PKGBUILD | 2 +- community/libircclient/PKGBUILD | 2 +- community/libmilter/PKGBUILD | 2 +- community/libnet/PKGBUILD | 2 +- community/libnfs/PKGBUILD | 2 +- community/liboggz/PKGBUILD | 2 +- community/libshairport/PKGBUILD | 2 +- community/libsmf/PKGBUILD | 2 +- community/libuser/PKGBUILD | 2 +- community/libwebp/PKGBUILD | 2 +- community/libzdb/PKGBUILD | 2 +- community/linux-tools/PKGBUILD | 2 +- community/lksctp-tools/PKGBUILD | 2 +- community/log4cpp/PKGBUILD | 2 +- community/lomoco/PKGBUILD | 2 +- community/lorcon/PKGBUILD | 2 +- community/lout/PKGBUILD | 2 +- community/love/PKGBUILD | 2 +- community/lrzip/PKGBUILD | 2 +- community/lsscsi/PKGBUILD | 2 +- community/luajit/PKGBUILD | 2 +- community/lxinput/PKGBUILD | 2 +- community/lxmusic/PKGBUILD | 2 +- community/madman/PKGBUILD | 2 +- community/mailman/PKGBUILD | 2 +- community/mandvd/PKGBUILD | 2 +- community/mariadb/PKGBUILD | 2 +- community/mcelog/PKGBUILD | 2 +- community/mdf2iso/PKGBUILD | 2 +- community/midori/PKGBUILD | 2 +- community/milkytracker/PKGBUILD | 2 +- community/mingetty/PKGBUILD | 2 +- community/minitube/PKGBUILD | 2 +- community/mksh/PKGBUILD | 2 +- community/mosh/PKGBUILD | 2 +- community/mythtv/PKGBUILD | 2 +- community/nautilus-sound-converter/PKGBUILD | 2 +- community/nemiver/PKGBUILD | 2 +- community/nestopia/PKGBUILD | 2 +- community/netcf/PKGBUILD | 2 +- community/netselect/PKGBUILD | 2 +- community/nmon/PKGBUILD | 2 +- community/notion/PKGBUILD | 2 +- community/oath-toolkit/PKGBUILD | 2 +- community/odt2txt/PKGBUILD | 2 +- community/onboard/PKGBUILD | 2 +- community/open-vm-tools/PKGBUILD | 2 +- community/opencollada/PKGBUILD | 2 +- community/opendkim/PKGBUILD | 2 +- community/openimageio/PKGBUILD | 2 +- community/openocd/PKGBUILD | 2 +- community/opensc/PKGBUILD | 2 +- community/openscenegraph/PKGBUILD | 2 +- community/openthreads/PKGBUILD | 2 +- community/os-prober/PKGBUILD | 2 +- community/packeth/PKGBUILD | 2 +- community/par2cmdline/PKGBUILD | 2 +- community/parole/PKGBUILD | 2 +- community/pdfedit/PKGBUILD | 2 +- community/perl-file-rsyncp/PKGBUILD | 2 +- community/perl-io-dirent/PKGBUILD | 2 +- community/perl-package-stash-xs/PKGBUILD | 2 +- community/perl-params-classify/PKGBUILD | 2 +- community/perl-params-util/PKGBUILD | 2 +- community/picocom/PKGBUILD | 2 +- community/pidgin-gfire/PKGBUILD | 2 +- community/pidgin-talkfilters/PKGBUILD | 2 +- community/pidgin-toobars/PKGBUILD | 2 +- community/pigz/PKGBUILD | 2 +- community/pion-net/PKGBUILD | 2 +- community/premake/PKGBUILD | 2 +- community/premake3/PKGBUILD | 2 +- community/pwgen/PKGBUILD | 2 +- community/pwmanager/PKGBUILD | 2 +- community/pyqt3/PKGBUILD | 2 +- community/python-psutil/PKGBUILD | 2 +- community/python-pyproj/PKGBUILD | 2 +- community/python-pyxattr/PKGBUILD | 2 +- community/python-pyzmq/PKGBUILD | 2 +- community/python-sqlalchemy/PKGBUILD | 2 +- community/python2-gevent/PKGBUILD | 2 +- community/python2-greenlet/PKGBUILD | 2 +- community/python2-pychm/PKGBUILD | 2 +- community/python2-pyzmq/PKGBUILD | 2 +- community/python2-virtkey/PKGBUILD | 2 +- community/qcad/PKGBUILD | 2 +- community/qconf/PKGBUILD | 2 +- community/qgo/PKGBUILD | 2 +- community/qscintilla-qt3/PKGBUILD | 2 +- community/qsynergy/PKGBUILD | 2 +- community/qt4pas/PKGBUILD | 2 +- community/qtcurve-gtk2/PKGBUILD | 2 +- community/qtcurve-kde3/PKGBUILD | 2 +- community/qtcurve-kde4/PKGBUILD | 2 +- community/qtspim/PKGBUILD | 2 +- community/quagga/PKGBUILD | 2 +- community/qucs/PKGBUILD | 2 +- community/qupzilla/PKGBUILD | 2 +- community/r8168-lts/PKGBUILD | 2 +- community/ragel/PKGBUILD | 2 +- community/regexxer/PKGBUILD | 2 +- community/ruby-ncurses/PKGBUILD | 2 +- community/rxvt/PKGBUILD | 2 +- community/rygel/PKGBUILD | 2 +- community/sdcv/PKGBUILD | 2 +- community/seahorse-nautilus/PKGBUILD | 2 +- community/sensors-applet/PKGBUILD | 2 +- community/sfk/PKGBUILD | 2 +- community/simgear/PKGBUILD | 2 +- community/spacefm/PKGBUILD | 2 +- community/spectrwm/PKGBUILD | 2 +- community/sshpass/PKGBUILD | 2 +- community/start-stop-daemon/PKGBUILD | 2 +- community/sylpheed/PKGBUILD | 2 +- community/sysvbanner/PKGBUILD | 2 +- community/talkfilters/PKGBUILD | 2 +- community/tcc/PKGBUILD | 2 +- community/tightvnc/PKGBUILD | 2 +- community/tinyxml/PKGBUILD | 2 +- community/ubuntuone-client-gnome/PKGBUILD | 2 +- community/ubuntuone-client/PKGBUILD | 2 +- community/ucarp/PKGBUILD | 2 +- community/uget/PKGBUILD | 2 +- community/ulogd/PKGBUILD | 2 +- community/unhide/PKGBUILD | 2 +- community/uriparser/PKGBUILD | 2 +- community/vdrift/PKGBUILD | 2 +- community/vlan/PKGBUILD | 2 +- community/volumeicon/PKGBUILD | 2 +- community/vyqchat/PKGBUILD | 2 +- community/wesnoth/PKGBUILD | 2 +- community/wings3d/PKGBUILD | 2 +- community/wxcam/PKGBUILD | 2 +- community/xautomation/PKGBUILD | 2 +- community/xml2/PKGBUILD | 2 +- community/xmlstarlet/PKGBUILD | 2 +- community/xonotic/PKGBUILD | 2 +- community/yaml-cpp/PKGBUILD | 2 +- community/zathura-pdf-poppler/PKGBUILD | 2 +- community/zathura-ps/PKGBUILD | 2 +- community/zynaddsubfx/PKGBUILD | 2 +- extra/anjuta-extras/PKGBUILD | 2 +- extra/appmenu-qt/PKGBUILD | 2 +- extra/bin86/PKGBUILD | 2 +- extra/bootchart/PKGBUILD | 2 +- extra/burp/PKGBUILD | 2 +- extra/calligra/PKGBUILD | 2 +- extra/caribou/PKGBUILD | 2 +- extra/ccrtp/PKGBUILD | 2 +- extra/cups/PKGBUILD | 2 +- extra/dmidecode/PKGBUILD | 2 +- extra/efibootmgr/PKGBUILD | 2 +- extra/evolution-ews/PKGBUILD | 2 +- extra/evolution-groupwise/PKGBUILD | 2 +- extra/fprintd/PKGBUILD | 2 +- extra/gettext-mono/PKGBUILD | 2 +- extra/ggz-gtk-client/PKGBUILD | 2 +- extra/gnome-desktop-sharp/PKGBUILD | 2 +- extra/gnome-dictionary/PKGBUILD | 2 +- extra/gnome-font-viewer/PKGBUILD | 2 +- extra/gnome-keyring-sharp/PKGBUILD | 2 +- extra/gnome-screenshot/PKGBUILD | 2 +- extra/gnome-search-tool/PKGBUILD | 2 +- extra/gnome-sharp/PKGBUILD | 2 +- extra/gnu-efi/PKGBUILD | 2 +- extra/grilo-plugins/PKGBUILD | 2 +- extra/gtk-sharp-2/PKGBUILD | 2 +- extra/gupnp-av/PKGBUILD | 2 +- extra/gupnp-igd/PKGBUILD | 2 +- extra/gupnp/PKGBUILD | 2 +- extra/haskell-random/PKGBUILD | 2 +- extra/herqq/PKGBUILD | 2 +- extra/hpoj/PKGBUILD | 2 +- extra/icedtea-web-java7/PKGBUILD | 2 +- extra/isapnptools/PKGBUILD | 2 +- extra/java7-openjdk/PKGBUILD | 2 +- extra/kdeaccessibility-jovie/PKGBUILD | 2 +- extra/kdeaccessibility-kaccessible/PKGBUILD | 2 +- extra/kdeaccessibility-kmag/PKGBUILD | 2 +- extra/kdeaccessibility-kmousetool/PKGBUILD | 2 +- extra/kdeaccessibility-kmouth/PKGBUILD | 2 +- extra/kdebindings-kimono/PKGBUILD | 2 +- extra/kdeedu-analitza/PKGBUILD | 2 +- extra/kdelibs3/PKGBUILD | 2 +- extra/kdeutils-filelight/PKGBUILD | 2 +- extra/kdeutils-kcalc/PKGBUILD | 2 +- extra/kdeutils-kcharselect/PKGBUILD | 2 +- extra/kdeutils-kdf/PKGBUILD | 2 +- extra/kdeutils-kfloppy/PKGBUILD | 2 +- extra/kdeutils-kgpg/PKGBUILD | 2 +- extra/kdeutils-kremotecontrol/PKGBUILD | 2 +- extra/kdeutils-ksecrets/PKGBUILD | 2 +- extra/kdeutils-ktimer/PKGBUILD | 2 +- extra/kdeutils-kwallet/PKGBUILD | 2 +- extra/kdeutils-superkaramba/PKGBUILD | 2 +- extra/kdeutils-sweeper/PKGBUILD | 2 +- extra/lame/PKGBUILD | 2 +- extra/libdrm-new/PKGBUILD | 2 +- extra/libfprint/PKGBUILD | 2 +- extra/libkgoogle/PKGBUILD | 2 +- extra/libmusicbrainz4/PKGBUILD | 2 +- extra/libsrtp/PKGBUILD | 2 +- extra/libunistring/PKGBUILD | 2 +- extra/libva-driver-intel/PKGBUILD | 2 +- extra/libva/PKGBUILD | 2 +- extra/libvdpau/PKGBUILD | 2 +- extra/libzrtpcpp/PKGBUILD | 2 +- extra/lv2/PKGBUILD | 2 +- extra/misdnuser/PKGBUILD | 2 +- extra/mod_mono/PKGBUILD | 2 +- extra/mono-addins/PKGBUILD | 2 +- extra/mono-basic/PKGBUILD | 2 +- extra/mono-debugger/PKGBUILD | 2 +- extra/mono-tools/PKGBUILD | 2 +- extra/mono-upnp/PKGBUILD | 2 +- extra/mono/PKGBUILD | 2 +- extra/monodevelop-debugger-gdb/PKGBUILD | 2 +- extra/monodevelop/PKGBUILD | 2 +- extra/mutter/PKGBUILD | 2 +- extra/nawk/PKGBUILD | 2 +- extra/nx/PKGBUILD | 2 +- extra/oxygen-gtk2/PKGBUILD | 2 +- extra/oxygen-gtk3/PKGBUILD | 2 +- extra/perl-async-interrupt/PKGBUILD | 2 +- extra/perl-crypt-openssl-bignum/PKGBUILD | 2 +- extra/perl-crypt-openssl-random/PKGBUILD | 2 +- extra/perl-crypt-openssl-rsa/PKGBUILD | 2 +- extra/perl-guard/PKGBUILD | 2 +- extra/perl-list-moreutils/PKGBUILD | 2 +- extra/php-xcache/PKGBUILD | 2 +- extra/qt3/PKGBUILD | 2 +- extra/spandsp/PKGBUILD | 2 +- extra/sushi/PKGBUILD | 2 +- extra/taglib-sharp/PKGBUILD | 2 +- extra/telepathy-kde-common-internals/PKGBUILD | 2 +- extra/telepathy-kde-contact-applet/PKGBUILD | 2 +- extra/telepathy-kde-presence-applet/PKGBUILD | 2 +- extra/ucommon/PKGBUILD | 2 +- extra/valgrind/PKGBUILD | 2 +- extra/vdpau-video/PKGBUILD | 2 +- extra/webkit-sharp/PKGBUILD | 2 +- extra/wildmidi/PKGBUILD | 2 +- extra/x11-ssh-askpass/PKGBUILD | 2 +- extra/xbase/PKGBUILD | 2 +- extra/xf86-input-keyboard/PKGBUILD | 2 +- extra/xf86-input-mouse/PKGBUILD | 2 +- extra/xf86-video-apm/PKGBUILD | 2 +- extra/xf86-video-ark/PKGBUILD | 2 +- extra/xf86-video-ast/PKGBUILD | 2 +- extra/xf86-video-ati/PKGBUILD | 2 +- extra/xf86-video-chips/PKGBUILD | 2 +- extra/xf86-video-cirrus/PKGBUILD | 2 +- extra/xf86-video-glint/PKGBUILD | 2 +- extra/xf86-video-i128/PKGBUILD | 2 +- extra/xf86-video-i740/PKGBUILD | 2 +- extra/xf86-video-intel/PKGBUILD | 2 +- extra/xf86-video-mach64/PKGBUILD | 2 +- extra/xf86-video-mga/PKGBUILD | 2 +- extra/xf86-video-neomagic/PKGBUILD | 2 +- extra/xf86-video-nouveau/PKGBUILD | 2 +- extra/xf86-video-nv/PKGBUILD | 2 +- extra/xf86-video-openchrome/PKGBUILD | 2 +- extra/xf86-video-r128/PKGBUILD | 2 +- extra/xf86-video-rendition/PKGBUILD | 2 +- extra/xf86-video-s3/PKGBUILD | 2 +- extra/xf86-video-s3virge/PKGBUILD | 2 +- extra/xf86-video-savage/PKGBUILD | 2 +- extra/xf86-video-sisimedia/PKGBUILD | 2 +- extra/xf86-video-sisusb/PKGBUILD | 2 +- extra/xf86-video-tdfx/PKGBUILD | 2 +- extra/xf86-video-trident/PKGBUILD | 2 +- extra/xf86-video-tseng/PKGBUILD | 2 +- extra/xf86-video-unichrome/PKGBUILD | 2 +- extra/xf86-video-v4l/PKGBUILD | 2 +- extra/xf86-video-vesa/PKGBUILD | 2 +- extra/xf86-video-voodoo/PKGBUILD | 2 +- extra/zeitgeist/PKGBUILD | 2 +- 393 files changed, 393 insertions(+), 393 deletions(-) (limited to 'community') diff --git a/community/0ad/PKGBUILD b/community/0ad/PKGBUILD index 00f34cdc7..a0fee19cf 100644 --- a/community/0ad/PKGBUILD +++ b/community/0ad/PKGBUILD @@ -6,7 +6,7 @@ pkgver=a10 _pkgver=r11863-alpha pkgrel=2 pkgdesc="Cross-platform, 3D and historically-based real-time strategy game" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wildfiregames.com/0ad" license=('GPL2' 'CCPL') depends=('binutils' 'boost-libs' 'curl' 'enet>=1.3' 'gamin' 'libogg' 'libpng' 'libvorbis' 'libxml2' 'openal' 'openexr' 'python2' 'sdl' 'wxgtk' 'zip' 'zlib' 'libgl' '0ad-data') diff --git a/community/acpi/PKGBUILD b/community/acpi/PKGBUILD index 634c26b0f..f4eb265c2 100644 --- a/community/acpi/PKGBUILD +++ b/community/acpi/PKGBUILD @@ -5,7 +5,7 @@ pkgname=acpi pkgver=1.6 pkgrel=1 pkgdesc="Linux ACPI client providing battery, AC power, and thermal readings" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/acpiclient" depends=('glibc') source=(http://downloads.sourceforge.net/acpiclient/$pkgname-$pkgver.tar.gz) diff --git a/community/acpid/PKGBUILD b/community/acpid/PKGBUILD index a4d931af5..bf89aec57 100644 --- a/community/acpid/PKGBUILD +++ b/community/acpid/PKGBUILD @@ -8,7 +8,7 @@ pkgname=acpid pkgver=2.0.16 pkgrel=3 pkgdesc='A daemon for delivering ACPI power management events with netlink support' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://tedfelix.com/linux/acpid-netlink.html' license=('GPL') depends=('bash') diff --git a/community/afpfs-ng/PKGBUILD b/community/afpfs-ng/PKGBUILD index f8dc2d6fc..4435ea05d 100644 --- a/community/afpfs-ng/PKGBUILD +++ b/community/afpfs-ng/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="A client for the Apple Filing Protocol (AFP)" url="http://alexthepuffin.googlepages.com/" license=('GPL') depends=('gmp' 'fuse' 'libgcrypt') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=(!libtool) source=( "http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2" diff --git a/community/alex/PKGBUILD b/community/alex/PKGBUILD index 4f078a8ca..d65b9b49a 100644 --- a/community/alex/PKGBUILD +++ b/community/alex/PKGBUILD @@ -7,7 +7,7 @@ pkgname=alex pkgver=3.0.1 pkgrel=1 pkgdesc='a lexical analyser generator for Haskell' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.haskell.org/alex/' license=('custom:BSD3') depends=('gmp') diff --git a/community/allegro/PKGBUILD b/community/allegro/PKGBUILD index 3269d92ac..7d196d76a 100644 --- a/community/allegro/PKGBUILD +++ b/community/allegro/PKGBUILD @@ -8,7 +8,7 @@ pkgname=allegro pkgver=5.0.6 pkgrel=3 pkgdesc="Portable library mainly aimed at video game and multimedia programming" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://alleg.sourceforge.net/" license=('custom') depends=('jack' 'libxpm' 'libxxf86dga' 'libgl' 'physfs' 'gtk2' 'libpulse') diff --git a/community/alleyoop/PKGBUILD b/community/alleyoop/PKGBUILD index 6d8ebdaf8..453a91793 100644 --- a/community/alleyoop/PKGBUILD +++ b/community/alleyoop/PKGBUILD @@ -7,7 +7,7 @@ pkgname=alleyoop pkgver=0.9.8 pkgrel=2 pkgdesc="Valgrind front-end for the GNOME environment" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://alleyoop.sourceforge.net/" license=('GPL2') depends=('valgrind' 'libgnomeui' 'hicolor-icon-theme') diff --git a/community/almanah/PKGBUILD b/community/almanah/PKGBUILD index d42dafb35..dcc6ef819 100644 --- a/community/almanah/PKGBUILD +++ b/community/almanah/PKGBUILD @@ -5,7 +5,7 @@ pkgname=almanah pkgver=0.9.0 pkgrel=1 pkgdesc="Small GTK+ application to allow you to keep a diary of your life" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/Almanah_Diary" license=('GPL') depends=('evolution-data-server>=3.4.0' 'gtkspell3' 'libcryptui' 'xdg-utils') diff --git a/community/alsa-tools/PKGBUILD b/community/alsa-tools/PKGBUILD index c49246f5d..dbb3334a1 100644 --- a/community/alsa-tools/PKGBUILD +++ b/community/alsa-tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=alsa-tools pkgver=1.0.25 pkgrel=1 pkgdesc='ALSA tools package' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://alsa-project.org/' license=('GPL2') depends=('fltk' 'alsa-lib' 'gtk2') diff --git a/community/apper/PKGBUILD b/community/apper/PKGBUILD index 1f5df85bb..a280cd363 100644 --- a/community/apper/PKGBUILD +++ b/community/apper/PKGBUILD @@ -8,7 +8,7 @@ _pkgmainver=0.7 pkgver=0.7.2 pkgrel=1 pkgdesc="KDE tools for PackageKit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kde-apps.org/content/show.php/Apper?content=84745" license=('GPL') depends=('kdebase-workspace' 'packagekit-qt2>=0.6.17') diff --git a/community/arm-elf-binutils/PKGBUILD b/community/arm-elf-binutils/PKGBUILD index ac242c134..06b81f00e 100644 --- a/community/arm-elf-binutils/PKGBUILD +++ b/community/arm-elf-binutils/PKGBUILD @@ -6,7 +6,7 @@ pkgver=2.22 pkgrel=1 _xprefix=/usr pkgdesc="A set of programs to assemble and manipulate binary and object files" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=(GPL) options=(!libtool) url="http://sources.redhat.com/binutils" diff --git a/community/arm-elf-gcc-base/PKGBUILD b/community/arm-elf-gcc-base/PKGBUILD index c3847cddf..f05d12e4e 100644 --- a/community/arm-elf-gcc-base/PKGBUILD +++ b/community/arm-elf-gcc-base/PKGBUILD @@ -5,7 +5,7 @@ pkgname=arm-elf-gcc-base pkgver=4.7.0 pkgrel=1 pkgdesc="The GNU Compiler Collection" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL' 'LGPL') url="http://gcc.gnu.org" depends=('arm-elf-binutils' 'libmpc' 'libelf') diff --git a/community/arm-wince-cegcc-binutils/PKGBUILD b/community/arm-wince-cegcc-binutils/PKGBUILD index edd8f46df..54d657183 100644 --- a/community/arm-wince-cegcc-binutils/PKGBUILD +++ b/community/arm-wince-cegcc-binutils/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.59.1 pkgrel=1 _prefix=/opt/cegcc pkgdesc="CE GCC bundle - cross compilation tools for WinCE" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=(GPL) options=(!libtool) url="http://cegcc.sf.net" diff --git a/community/arm-wince-cegcc-gcc-base/PKGBUILD b/community/arm-wince-cegcc-gcc-base/PKGBUILD index 50d765ac0..7f8d17053 100644 --- a/community/arm-wince-cegcc-gcc-base/PKGBUILD +++ b/community/arm-wince-cegcc-gcc-base/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.59.1 pkgrel=3 _prefix=/opt/cegcc pkgdesc="CE GCC bundle - cross compilation tools for WinCE" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=(GPL) options=(!libtool) url="http://cegcc.sf.net" diff --git a/community/arm-wince-cegcc-gcc/PKGBUILD b/community/arm-wince-cegcc-gcc/PKGBUILD index 8787f4b46..94d673d23 100644 --- a/community/arm-wince-cegcc-gcc/PKGBUILD +++ b/community/arm-wince-cegcc-gcc/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.59.1 pkgrel=4 _prefix=/opt/cegcc pkgdesc="CE GCC bundle - cross compilation tools for WinCE" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL') options=(!libtool !strip) url="http://cegcc.sf.net" diff --git a/community/arptables/PKGBUILD b/community/arptables/PKGBUILD index 40eba2685..21023214b 100644 --- a/community/arptables/PKGBUILD +++ b/community/arptables/PKGBUILD @@ -7,7 +7,7 @@ pkgname=arptables pkgver=0.0.3_4 pkgrel=3 pkgdesc='ARP filtering utility' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://ebtables.sourceforge.net/' license=('GPL') backup=("etc/$pkgname.conf" "etc/conf.d/$pkgname") diff --git a/community/assimp/PKGBUILD b/community/assimp/PKGBUILD index 8dc5bff69..8f5965695 100644 --- a/community/assimp/PKGBUILD +++ b/community/assimp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=assimp pkgver=2.0.863 pkgrel=1 pkgdesc="Portable Open Source library to import various well-known 3D model formats in an uniform manner" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('BSD') makedepends=('cmake' 'boost') url=('http://assimp.sourceforge.net/index.html') diff --git a/community/audit/PKGBUILD b/community/audit/PKGBUILD index 91d738d59..fe854547f 100644 --- a/community/audit/PKGBUILD +++ b/community/audit/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.2.1 pkgrel=1 pkgdesc='User space utilities for storing and searching the audit records generated by the audit subsystem in the Linux kernel.' url=http://people.redhat.com/sgrubb/$pkgname -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) depends=(krb5 libcap-ng) makedepends=(libldap swig linux-headers python2) license=(GPL) diff --git a/community/avifile/PKGBUILD b/community/avifile/PKGBUILD index e38f7fb94..01a3fb809 100644 --- a/community/avifile/PKGBUILD +++ b/community/avifile/PKGBUILD @@ -7,7 +7,7 @@ pkgname=avifile pkgver=0.7.45 pkgrel=8 pkgdesc="A library that allows you to read and write compressed AVI files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('qt' 'sdl' 'freetype2' 'libpng' 'libjpeg' 'libvorbis' 'xvidcore' 'libxxf86dga' 'libxi' 'libxv') makedepends=('lame' 'qt3' 'v4l-utils' 'chrpath') diff --git a/community/avr-binutils/PKGBUILD b/community/avr-binutils/PKGBUILD index 18ef8f9e6..c5a99cd29 100644 --- a/community/avr-binutils/PKGBUILD +++ b/community/avr-binutils/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=3 _pkgname=binutils _date=20120323 pkgdesc="A set of programs to assemble and manipulate binary and object files for the avr architecture" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/binutils/" license=('GPL') depends=('glibc>=2.15' 'zlib') diff --git a/community/avr-gcc/PKGBUILD b/community/avr-gcc/PKGBUILD index e09943802..fc3f36923 100644 --- a/community/avr-gcc/PKGBUILD +++ b/community/avr-gcc/PKGBUILD @@ -9,7 +9,7 @@ _pkgname=gcc pkgver=4.7.0 pkgrel=1 pkgdesc="The GNU avr Compiler Collection" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'custom') url="http://gcc.gnu.org/" depends=('avr-binutils>=2.22-3' 'cloog' 'ppl' 'gcc-libs>=4.7.0' 'libmpc') diff --git a/community/awesome/PKGBUILD b/community/awesome/PKGBUILD index ee6427335..7509a241b 100644 --- a/community/awesome/PKGBUILD +++ b/community/awesome/PKGBUILD @@ -8,7 +8,7 @@ pkgname=awesome pkgver=3.4.11 pkgrel=5 pkgdesc='Highly configurable framework window manager' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://awesome.naquadah.org/' license=('GPL2') depends=( diff --git a/community/bam/PKGBUILD b/community/bam/PKGBUILD index fb6384301..849bd6271 100644 --- a/community/bam/PKGBUILD +++ b/community/bam/PKGBUILD @@ -4,7 +4,7 @@ pkgname=bam pkgver=0.4.0 pkgrel=1 pkgdesc="A fast and flexible build system using Lua" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url=http://github.com/matricks/bam license=('ZLIB') source=("https://github.com/downloads/matricks/bam/${pkgname}-${pkgver}.tar.gz") diff --git a/community/bcg729/PKGBUILD b/community/bcg729/PKGBUILD index 23cb66cf3..2e5613459 100644 --- a/community/bcg729/PKGBUILD +++ b/community/bcg729/PKGBUILD @@ -5,7 +5,7 @@ pkgname=bcg729 pkgver=1.0.0 pkgrel=2 pkgdesc="g729 codec" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.linphone.org/eng/documentation/dev/bcg729.html" license=('GPL') depends=('mediastreamer') diff --git a/community/bitcoin/PKGBUILD b/community/bitcoin/PKGBUILD index fc1930db8..c1c04dabc 100644 --- a/community/bitcoin/PKGBUILD +++ b/community/bitcoin/PKGBUILD @@ -7,7 +7,7 @@ pkgname=('bitcoin-daemon' 'bitcoin-qt') pkgver=0.6.2 _commit=06d764e pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.bitcoin.org/" makedepends=('boost' 'automoc4' 'miniupnpc') conflicts=('bitcoin' 'bitcoin-bin' 'bitcoin-git') diff --git a/community/blender/PKGBUILD b/community/blender/PKGBUILD index 79bbbdae8..9b29914cb 100644 --- a/community/blender/PKGBUILD +++ b/community/blender/PKGBUILD @@ -17,7 +17,7 @@ pkgver=2.63a pkgrel=1 epoch=4 pkgdesc="A fully integrated 3D graphics creation suite" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.blender.org" depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' diff --git a/community/c++-gtk-utils/PKGBUILD b/community/c++-gtk-utils/PKGBUILD index 51ed71635..80e289533 100644 --- a/community/c++-gtk-utils/PKGBUILD +++ b/community/c++-gtk-utils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=c++-gtk-utils pkgver=2.0.9 pkgrel=1 pkgdesc="Classes and functions for programming in GTK+" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cxx-gtk-utils.sourceforge.net/" license=('LGPL2.1') depends=('gtk3') diff --git a/community/cdrtools/PKGBUILD b/community/cdrtools/PKGBUILD index 66e433311..82d8f1fc2 100644 --- a/community/cdrtools/PKGBUILD +++ b/community/cdrtools/PKGBUILD @@ -4,7 +4,7 @@ pkgname=cdrtools pkgver=3.01a07 pkgrel=3 pkgdesc="Original cdrtools supporting CD, DVD and BluRay burning" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cdrecord.berlios.de/private/cdrecord.html" license=('CDDL') depends=('acl') diff --git a/community/chromaprint/PKGBUILD b/community/chromaprint/PKGBUILD index ea7e1ef90..8b0f2fff5 100644 --- a/community/chromaprint/PKGBUILD +++ b/community/chromaprint/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.6 pkgrel=2 pkgdesc='Library that implements a custom algorithm for extracting fingerprints from any audio source' url='http://acoustid.org/chromaprint/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('ffmpeg') makedepends=('cmake') diff --git a/community/chromium-bsu/PKGBUILD b/community/chromium-bsu/PKGBUILD index 3f1b30386..a01abed95 100644 --- a/community/chromium-bsu/PKGBUILD +++ b/community/chromium-bsu/PKGBUILD @@ -6,7 +6,7 @@ pkgname=chromium-bsu pkgver=0.9.15 pkgrel=2 pkgdesc="A fast paced top scrolling shooter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://chromium-bsu.sourceforge.net/" license=('custom:artistic') depends=('freeglut' 'sdl' 'openal' 'freealut' 'glpng' 'ftgl' 'fontconfig' 'sdl_image') diff --git a/community/cl/PKGBUILD b/community/cl/PKGBUILD index 714f8dd28..91f5d8496 100644 --- a/community/cl/PKGBUILD +++ b/community/cl/PKGBUILD @@ -5,7 +5,7 @@ pkgname=cl pkgver=1.0 pkgrel=1 -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') pkgdesc="OpenCL binding for the Erlang programming language" url="http://github.com/tonyrog/cl" license=('custom:unknown') diff --git a/community/clinica/PKGBUILD b/community/clinica/PKGBUILD index 85bd9b258..489c0aea2 100644 --- a/community/clinica/PKGBUILD +++ b/community/clinica/PKGBUILD @@ -6,7 +6,7 @@ pkgname=clinica pkgver=0.2.1 pkgrel=4 pkgdesc="Simple medical records manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/clinica-project" license=('GPL3') depends=('libgee' 'python' 'libpeas' 'dconf') diff --git a/community/cmus/PKGBUILD b/community/cmus/PKGBUILD index e0ca36e41..513b73d62 100644 --- a/community/cmus/PKGBUILD +++ b/community/cmus/PKGBUILD @@ -7,7 +7,7 @@ pkgname=cmus pkgver=2.4.3 pkgrel=2 pkgdesc="A very feature-rich ncurses-based music player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cmus.sourceforge.net/" license=('GPL') depends=('ncurses') diff --git a/community/conntrack-tools/PKGBUILD b/community/conntrack-tools/PKGBUILD index 006e17429..ea18a0367 100644 --- a/community/conntrack-tools/PKGBUILD +++ b/community/conntrack-tools/PKGBUILD @@ -8,7 +8,7 @@ pkgname=conntrack-tools pkgver=1.0.1 pkgrel=2 pkgdesc='Userspace tools to interact with the Netfilter connection tracking system' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.netfilter.org/projects/conntrack-tools' license=('GPL2') depends=('libnetfilter_conntrack') diff --git a/community/contacts/PKGBUILD b/community/contacts/PKGBUILD index 638c9866d..f0c26da9e 100644 --- a/community/contacts/PKGBUILD +++ b/community/contacts/PKGBUILD @@ -5,7 +5,7 @@ pkgname=contacts pkgver=0.12 pkgrel=6 pkgdesc="Small, lightweight GTK+ address book app" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pimlico-project.org/contacts.html" license=('GPL') depends=('gtk2' 'evolution-data-server' 'desktop-file-utils' 'xdg-utils') diff --git a/community/converseen/PKGBUILD b/community/converseen/PKGBUILD index 7b44ecc55..fd45f1343 100644 --- a/community/converseen/PKGBUILD +++ b/community/converseen/PKGBUILD @@ -6,7 +6,7 @@ pkgname=converseen pkgver=0.5 pkgrel=1 pkgdesc="The batch image converter and resizer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://converseen.sourceforge.net/" license=('GPL3') depends=('imagemagick' 'qt' 'libwmf' 'openexr') diff --git a/community/dates/PKGBUILD b/community/dates/PKGBUILD index 8c512cb21..be21590ff 100644 --- a/community/dates/PKGBUILD +++ b/community/dates/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dates pkgver=0.4.11 pkgrel=5 pkgdesc="Small, lightweight GTK+ calendar app" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pimlico-project.org/dates.html" license=('GPL') depends=('gtk2' 'evolution-data-server' 'xdg-utils') diff --git a/community/dcron/PKGBUILD b/community/dcron/PKGBUILD index a84c051f3..c426b3825 100644 --- a/community/dcron/PKGBUILD +++ b/community/dcron/PKGBUILD @@ -4,7 +4,7 @@ pkgname=dcron pkgver=4.5 pkgrel=2 pkgdesc="dillon's lightweight cron daemon" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.jimpryor.net/linux/dcron.html" backup=('var/spool/cron/root' 'etc/conf.d/crond') diff --git a/community/dee/PKGBUILD b/community/dee/PKGBUILD index a116b0f00..0db88a375 100644 --- a/community/dee/PKGBUILD +++ b/community/dee/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dee pkgver=1.0.10 pkgrel=1 pkgdesc="Library to provide objects allowing to create Model-View-Controller type programs across DBus" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/dee" license=('LGPL') depends=('glib2' 'icu') diff --git a/community/desmume/PKGBUILD b/community/desmume/PKGBUILD index 187177a00..fa25a9607 100644 --- a/community/desmume/PKGBUILD +++ b/community/desmume/PKGBUILD @@ -14,7 +14,7 @@ pkgname=desmume pkgver=0.9.8 pkgrel=1 pkgdesc="Nintendo DS emulator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://desmume.org/" license=('GPL') depends=('agg' 'gtkglext' 'libglade' 'desktop-file-utils' 'libpcap' diff --git a/community/dmd/PKGBUILD b/community/dmd/PKGBUILD index 840f9311c..69bc1c1ce 100644 --- a/community/dmd/PKGBUILD +++ b/community/dmd/PKGBUILD @@ -9,7 +9,7 @@ pkgname=('dmd' 'libphobos') pkgbase=dmd pkgver=2.059 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.digitalmars.com/d/2.0/" source=(http://ftp.digitalmars.com/$pkgname.$pkgver.zip tools-${pkgver}.tar.gz::https://github.com/D-Programming-Language/tools/tarball/v${pkgver}) diff --git a/community/dos2unix/PKGBUILD b/community/dos2unix/PKGBUILD index 0a8bbf17f..d23448fdc 100644 --- a/community/dos2unix/PKGBUILD +++ b/community/dos2unix/PKGBUILD @@ -7,7 +7,7 @@ pkgname=dos2unix pkgver=6.0 pkgrel=1 pkgdesc='Text file format converter' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://waterlan.home.xs4all.nl/dos2unix.html' license=('BSD') depends=('glibc') diff --git a/community/doublecmd/PKGBUILD b/community/doublecmd/PKGBUILD index ade9c7dae..067c5120d 100644 --- a/community/doublecmd/PKGBUILD +++ b/community/doublecmd/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.5.4 _helpver=0.5.1 pkgrel=2.1 url="http://doublecmd.sourceforge.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') install="$pkgbase.install" provides=("$pkgbase") diff --git a/community/drbd/PKGBUILD b/community/drbd/PKGBUILD index 970a0d180..bff899504 100644 --- a/community/drbd/PKGBUILD +++ b/community/drbd/PKGBUILD @@ -4,7 +4,7 @@ pkgname=drbd pkgver=8.3.11 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc='Userland tools for drbd block devices' url='http://www.drbd.org' license=('GPL2') diff --git a/community/e3/PKGBUILD b/community/e3/PKGBUILD index 542a0c649..87ad8da78 100644 --- a/community/e3/PKGBUILD +++ b/community/e3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=e3 pkgver=2.8 pkgrel=3 pkgdesc="Editor written in assembly. Tiny, with no library dependencies." -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://sites.google.com/site/e3editor/" license=('GPL2') makedepends=('nasm') diff --git a/community/e4rat/PKGBUILD b/community/e4rat/PKGBUILD index 3bc3a883b..894c27259 100644 --- a/community/e4rat/PKGBUILD +++ b/community/e4rat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=e4rat pkgver=0.2.3 pkgrel=1 pkgdesc="Toolset to accelerate the boot process and application startups for systems with ext4 root partitions." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://e4rat.sourceforge.net/" license=('GPL') depends=('e2fsprogs') diff --git a/community/ebtables/PKGBUILD b/community/ebtables/PKGBUILD index ffc3b451b..19acd60f5 100644 --- a/community/ebtables/PKGBUILD +++ b/community/ebtables/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ebtables pkgver=2.0.10_4 pkgrel=2 pkgdesc='Ethernet bridge filtering utilities' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://ebtables.sourceforge.net/' license=('GPL2') backup=("etc/$pkgname.conf" "etc/conf.d/$pkgname") diff --git a/community/ecryptfs-utils/PKGBUILD b/community/ecryptfs-utils/PKGBUILD index f6fbf591c..d5eb3440e 100644 --- a/community/ecryptfs-utils/PKGBUILD +++ b/community/ecryptfs-utils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ecryptfs-utils pkgver=96 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="Enterprise-class stacked cryptographic filesystem for Linux" url="https://launchpad.net/ecryptfs" license=('GPL') diff --git a/community/efax-gtk/PKGBUILD b/community/efax-gtk/PKGBUILD index c9363d1a5..24b3ee4db 100644 --- a/community/efax-gtk/PKGBUILD +++ b/community/efax-gtk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=efax-gtk pkgver=3.2.9 pkgrel=2 pkgdesc="A GUI front end for the 'efax' fax program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://efax-gtk.sourceforge.net/" license=('GPL') depends=('dbus-glib' 'ghostscript' 'c++-gtk-utils') diff --git a/community/erlang/PKGBUILD b/community/erlang/PKGBUILD index 933865d51..dc683bf24 100644 --- a/community/erlang/PKGBUILD +++ b/community/erlang/PKGBUILD @@ -8,7 +8,7 @@ pkgname=erlang pkgver=R15B01 pkgrel=1 pkgdesc='A small concurrent functional programming language developed by Ericsson.' -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url='http://www.erlang.org/index.html' license=('custom') depends=('ncurses' 'glibc') diff --git a/community/esdl/PKGBUILD b/community/esdl/PKGBUILD index 76b5be9d6..f9ce99d8e 100644 --- a/community/esdl/PKGBUILD +++ b/community/esdl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=esdl pkgver=1.2 pkgrel=1 epoch=2 -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') pkgdesc="SDL and OpenGL bindings for the Erlang programming language" url="http://esdl.sourceforge.net/" license=('custom') diff --git a/community/ettercap/PKGBUILD b/community/ettercap/PKGBUILD index fb32aa935..d23dd0e97 100644 --- a/community/ettercap/PKGBUILD +++ b/community/ettercap/PKGBUILD @@ -7,7 +7,7 @@ pkgname=('ettercap' 'ettercap-gtk') pkgver=NG_0.7.4.2 _origver=${pkgver/_/-} pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ettercap.sourceforge.net/" license=('GPL') makedepends=('libpcap' 'libltdl' 'libnet' 'gtk2' 'hicolor-icon-theme') diff --git a/community/exfat-utils/PKGBUILD b/community/exfat-utils/PKGBUILD index b5436156e..cce282aca 100644 --- a/community/exfat-utils/PKGBUILD +++ b/community/exfat-utils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=exfat-utils pkgver=0.9.7 pkgrel=1 pkgdesc="Utilities for exFAT file system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/exfat/" license=('GPL3') depends=('glibc') diff --git a/community/ext4magic/PKGBUILD b/community/ext4magic/PKGBUILD index d229cb03f..0dc2b9683 100644 --- a/community/ext4magic/PKGBUILD +++ b/community/ext4magic/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ext4magic pkgver=0.3.0 pkgrel=1 pkgdesc='Linux admin tool, can help to recover deleted or overwritten files on ext3 and ext4 filesystems' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://developer.berlios.de/projects/ext4magic/' license=('GPL2') depends=('bzip2' 'file' 'util-linux' 'e2fsprogs') diff --git a/community/flightgear/PKGBUILD b/community/flightgear/PKGBUILD index 50ddaec16..62e95dbce 100644 --- a/community/flightgear/PKGBUILD +++ b/community/flightgear/PKGBUILD @@ -7,7 +7,7 @@ pkgname=flightgear pkgver=2.6.0 pkgrel=5 pkgdesc="An open-source, multi-platform flight simulator" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) depends=('simgear' 'libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion') makedepends=('boost' 'cmake') license=("GPL") diff --git a/community/freeorion/PKGBUILD b/community/freeorion/PKGBUILD index ad30d215f..57c75780a 100644 --- a/community/freeorion/PKGBUILD +++ b/community/freeorion/PKGBUILD @@ -10,7 +10,7 @@ pkgver=0.4 _fixedrevision=4635 pkgrel=5 pkgdesc="Turn-based galactic conquest game inspired by Master of Orion" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://www.freeorion.org/" license=('GPL') if [ "$CARCH" == "x86_64" ] diff --git a/community/fuse-exfat/PKGBUILD b/community/fuse-exfat/PKGBUILD index 8df8a4d10..a58cad0e8 100644 --- a/community/fuse-exfat/PKGBUILD +++ b/community/fuse-exfat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fuse-exfat pkgver=0.9.7 pkgrel=1 pkgdesc="Free exFAT file system implementation" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/exfat/" license=('GPL3') depends=('fuse') diff --git a/community/fwbuilder/PKGBUILD b/community/fwbuilder/PKGBUILD index ae559607c..f1cd6f800 100644 --- a/community/fwbuilder/PKGBUILD +++ b/community/fwbuilder/PKGBUILD @@ -7,7 +7,7 @@ pkgver=5.1.0.3599 pkgrel=1 pkgdesc="Object-oriented GUI and set of compilers for various firewall platforms" url="http://www.fwbuilder.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libxslt' 'net-snmp' 'qt') conflicts=('libfwbuilder') diff --git a/community/galculator/PKGBUILD b/community/galculator/PKGBUILD index e2c37b07c..aa61c2a5e 100644 --- a/community/galculator/PKGBUILD +++ b/community/galculator/PKGBUILD @@ -6,7 +6,7 @@ pkgname=galculator pkgver=1.3.4 pkgrel=2 pkgdesc="GTK+ based scientific calculator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://galculator.sourceforge.net/" license=('GPL') depends=('libglade') diff --git a/community/gdesklets/PKGBUILD b/community/gdesklets/PKGBUILD index 197781d7c..959b9d38a 100644 --- a/community/gdesklets/PKGBUILD +++ b/community/gdesklets/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gdesklets pkgver=0.36.3 pkgrel=4 pkgdesc="System for bringing mini programs (desklets) onto your desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gdesklets.de/" license=('GPL') depends=('libgtop' 'librsvg' 'pygtk' 'desktop-file-utils' 'gnome-icon-theme' 'xdg-utils') diff --git a/community/gdlmm/PKGBUILD b/community/gdlmm/PKGBUILD index 3c5d0091f..68b56b12c 100644 --- a/community/gdlmm/PKGBUILD +++ b/community/gdlmm/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gdlmm pkgver=3.3.2 pkgrel=2 pkgdesc="C++ bindings for the gdl library" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://git.gnome.org/browse/gdlmm/" depends=('gdl' 'gtkmm3') options=(!libtool !emptydirs) diff --git a/community/gendesk/PKGBUILD b/community/gendesk/PKGBUILD index 1559f9465..a067317a8 100644 --- a/community/gendesk/PKGBUILD +++ b/community/gendesk/PKGBUILD @@ -8,7 +8,7 @@ pkgname=gendesk pkgver=0.4.2 pkgrel=1 pkgdesc="Utility to generate .desktop files and download icons" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://roboticoverlords.org/gendesk/" license=('MIT') depends=('glibc') diff --git a/community/gftp/PKGBUILD b/community/gftp/PKGBUILD index ecf7042e2..96c352d86 100644 --- a/community/gftp/PKGBUILD +++ b/community/gftp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gftp pkgver=2.0.19 pkgrel=4 pkgdesc="A multithreaded ftp client for X Windows" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gftp.org/" license=('GPL2') depends=('gtk2' 'openssl' 'readline') diff --git a/community/gigi/PKGBUILD b/community/gigi/PKGBUILD index db11176b4..80d7748ec 100644 --- a/community/gigi/PKGBUILD +++ b/community/gigi/PKGBUILD @@ -11,7 +11,7 @@ pkgrel=10 _fixedrevision=1074 pkgdesc="Small, efficient and feature rich GUI for C++ and OpenGL" url="http://gigi.sourceforge.net/" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') license=('LGPL') depends=('boost' 'mesa' 'libpng' 'libjpeg' 'libtiff' 'freetype2' 'ogre' 'sdl' 'ois' 'python') makedepends=('subversion' 'cmake' 'setconf' 'doxygen') diff --git a/community/gimp-refocus/PKGBUILD b/community/gimp-refocus/PKGBUILD index 5cc3b5703..6c031e39c 100644 --- a/community/gimp-refocus/PKGBUILD +++ b/community/gimp-refocus/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gimp-refocus pkgver=0.9.0 pkgrel=3 pkgdesc="A sharpen plugin for gimp using FIR Wiener filtering" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://refocus.sourceforge.net/" license=('GPL2') depends=('gimp') diff --git a/community/glabels/PKGBUILD b/community/glabels/PKGBUILD index 37d4a74fb..7aa5d16f3 100644 --- a/community/glabels/PKGBUILD +++ b/community/glabels/PKGBUILD @@ -7,7 +7,7 @@ pkgname=glabels pkgver=3.0.0 pkgrel=3 pkgdesc="Creating labels and business cards the very easy way" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://glabels.sourceforge.net/" license=('GPL' 'LGPL') depends=('librsvg' 'evolution-data-server>=3.4.0' 'qrencode' 'iec16022' 'dconf' 'desktop-file-utils' 'xdg-utils') diff --git a/community/glfw/PKGBUILD b/community/glfw/PKGBUILD index dda84c6ff..db6073db4 100644 --- a/community/glfw/PKGBUILD +++ b/community/glfw/PKGBUILD @@ -10,7 +10,7 @@ pkgname=glfw pkgver=2.7.5 pkgrel=1 pkgdesc="A free, open source, portable framework for OpenGL application development" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.glfw.org/" license=('custom:ZLIB') depends=('libgl' 'libxrandr') diff --git a/community/gmime24/PKGBUILD b/community/gmime24/PKGBUILD index d72951ccf..48573dffa 100644 --- a/community/gmime24/PKGBUILD +++ b/community/gmime24/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gmime24 pkgver=2.4.32 pkgrel=1 pkgdesc="Core mime parsing library" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL') url="http://spruce.sourceforge.net/gmime/" depends=('glib2' 'zlib') diff --git a/community/gmtk/PKGBUILD b/community/gmtk/PKGBUILD index 8141da27f..11d89fe2b 100644 --- a/community/gmtk/PKGBUILD +++ b/community/gmtk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gmtk pkgver=1.0.6 pkgrel=1 pkgdesc='Common functions for gnome-mplayer and gecko-mediaplay.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://gmtk.googlecode.com/' license=('GPL') depends=('glib2' 'gtk3' 'dconf') diff --git a/community/gnac/PKGBUILD b/community/gnac/PKGBUILD index 42cb76b7f..9b70a49ff 100644 --- a/community/gnac/PKGBUILD +++ b/community/gnac/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnac pkgver=0.2.4.1 pkgrel=1 pkgdesc="Audio converter for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gnac.sourceforge.net/" license=('GPL') depends=('libnotify' 'libunique3' 'gstreamer0.10-base-plugins' 'dconf' 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/gnome-subtitles/PKGBUILD b/community/gnome-subtitles/PKGBUILD index b2f9fc5d9..99ff8b9a6 100644 --- a/community/gnome-subtitles/PKGBUILD +++ b/community/gnome-subtitles/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-subtitles pkgver=1.2 pkgrel=3 pkgdesc="Video subtitle editor for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gnomesubtitles.org/" license=('GPL') depends=('gstreamer0.10-base-plugins' 'gconf-sharp' 'gtkspell' 'desktop-file-utils') diff --git a/community/gnome-web-photo/PKGBUILD b/community/gnome-web-photo/PKGBUILD index ee29c7b08..42cd5b9f2 100644 --- a/community/gnome-web-photo/PKGBUILD +++ b/community/gnome-web-photo/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gnome-web-photo pkgver=0.10.6 pkgrel=1 pkgdesc="Generate full-size image files and thumbnails from HTML files and web pages" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://git.gnome.org/browse/gnome-web-photo/" license=('LGPL') depends=('libwebkit3') diff --git a/community/go/PKGBUILD b/community/go/PKGBUILD index ab6e73e97..7218df886 100644 --- a/community/go/PKGBUILD +++ b/community/go/PKGBUILD @@ -13,7 +13,7 @@ pkgver=1.0.1 pkgrel=5 epoch=2 pkgdesc='Google Go compiler and tools (release version)' -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://golang.org/" license=('custom') depends=('perl' 'gawk') diff --git a/community/goobox/PKGBUILD b/community/goobox/PKGBUILD index 6a5d3a949..322e0ed15 100644 --- a/community/goobox/PKGBUILD +++ b/community/goobox/PKGBUILD @@ -5,7 +5,7 @@ pkgname=goobox pkgver=3.0.1 pkgrel=1 pkgdesc="CD player and ripper for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://people.gnome.org/~paobac/goobox/" license=('GPL') depends=('brasero' 'libmusicbrainz3' 'libnotify' 'xdg-utils') diff --git a/community/grafx2/PKGBUILD b/community/grafx2/PKGBUILD index d7756ee14..208874d32 100644 --- a/community/grafx2/PKGBUILD +++ b/community/grafx2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=grafx2 pkgver=2.3 pkgrel=3 pkgdesc="Pixelart-oriented painting program" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://code.google.com/p/grafx2/" license=('GPL2') install=grafx2.install diff --git a/community/gtk-engine-unico/PKGBUILD b/community/gtk-engine-unico/PKGBUILD index 3fd503843..5f2341d1d 100644 --- a/community/gtk-engine-unico/PKGBUILD +++ b/community/gtk-engine-unico/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtk-engine-unico pkgver=1.0.2 pkgrel=1 pkgdesc="Unico GTK3 theme engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/unico" license=('GPL') depends=("gtk3") diff --git a/community/gtksourceviewmm/PKGBUILD b/community/gtksourceviewmm/PKGBUILD index ad2c08025..020dae4da 100644 --- a/community/gtksourceviewmm/PKGBUILD +++ b/community/gtksourceviewmm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gtksourceviewmm pkgver=3.2.0 pkgrel=1 pkgdesc="provides C++ bindings for gtksourceview library" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://gnome.org" license=('LGPL2.1') depends=('gtkmm3' 'gtksourceview3') diff --git a/community/gtkspell3/PKGBUILD b/community/gtkspell3/PKGBUILD index 35929803e..a7dcee2f6 100644 --- a/community/gtkspell3/PKGBUILD +++ b/community/gtkspell3/PKGBUILD @@ -10,7 +10,7 @@ _pkgver=3.0.0~hg20110814 pkgrel=1 url="http://gtkspell.sourceforge.net/" pkgdesc="Provides word-processor-style highlighting and replacement of misspelled words in a GtkTextView widget" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gtk3' 'enchant') makedepends=('intltool') diff --git a/community/gupnp-dlna/PKGBUILD b/community/gupnp-dlna/PKGBUILD index cbb30c5ef..dba60702f 100644 --- a/community/gupnp-dlna/PKGBUILD +++ b/community/gupnp-dlna/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gupnp-dlna pkgver=0.6.6 pkgrel=1 pkgdesc="Library to ease DLNA-related bits for applications using gupnp" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gupnp.org/" license=('LGPL') depends=('gstreamer0.10-base-plugins') diff --git a/community/gwget/PKGBUILD b/community/gwget/PKGBUILD index ff888ec34..f14aa9a4d 100644 --- a/community/gwget/PKGBUILD +++ b/community/gwget/PKGBUILD @@ -9,7 +9,7 @@ pkgname=gwget pkgver=1.0.4 pkgrel=5 pkgdesc="Download manager for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://projects.gnome.org/gwget/" license=('GPL') depends=('gtk2' 'gconf' 'libnotify') diff --git a/community/gwibber/PKGBUILD b/community/gwibber/PKGBUILD index 6d1c905b5..459d8e45d 100644 --- a/community/gwibber/PKGBUILD +++ b/community/gwibber/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gwibber pkgver=3.4.1 pkgrel=1 pkgdesc="Microblogging client for GNOME, which supports Twitter, Identi.ca, StatusNet, Facebook, Flickr, Digg, FriendFeed and Qaiku" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gwibber.com/" license=('GPL') depends=('libgee' 'libnotify' 'dee>=1.0.0' 'json-glib' 'gtkspell3' 'python2-gobject' 'libwnck3' 'libwebkit3' 'libgnome-keyring>=3.3' 'dbus-python' 'python2-httplib2' 'python-egenix-mx-base' 'python2-oauth' 'python-imaging' 'pyxdg' 'dconf' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/happy/PKGBUILD b/community/happy/PKGBUILD index 783bb51d6..34dde4777 100644 --- a/community/happy/PKGBUILD +++ b/community/happy/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.18.9 pkgrel=4 pkgdesc="The Parser Generator for Haskell" url="http://www.haskell.org/happy/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=("custom:BSD3") depends=('gmp') makedepends=('ghc=7.4.1' 'haskell-mtl=2.0.1.0-4') diff --git a/community/hardlink/PKGBUILD b/community/hardlink/PKGBUILD index edf5d6973..018471415 100644 --- a/community/hardlink/PKGBUILD +++ b/community/hardlink/PKGBUILD @@ -5,7 +5,7 @@ pkgname=hardlink pkgver=0.2.0 pkgrel=1 pkgdesc='Replace file copies using hardlinks' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://jak-linux.org/projects/hardlink/' license=('custom: MIT') depends=('glibc' 'pcre') diff --git a/community/haskell-bytestring-show/PKGBUILD b/community/haskell-bytestring-show/PKGBUILD index 576ac74a3..70be95153 100644 --- a/community/haskell-bytestring-show/PKGBUILD +++ b/community/haskell-bytestring-show/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Efficient conversion of values into readable byte strings." url="http://code.haskell.org/~dolio/" license=("BSD3") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=() depends=("ghc=7.4.1-2") install="${pkgname}.install" diff --git a/community/haskell-cairo/PKGBUILD b/community/haskell-cairo/PKGBUILD index 9af4c4cd4..efc2d5b4f 100644 --- a/community/haskell-cairo/PKGBUILD +++ b/community/haskell-cairo/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Binding to the cairo library for Gtk2Hs." url="http://hackage.haskell.org/package/cairo" license=('LGPL2.1') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc' 'cairo' 'haskell-mtl') makedepends=("gtk2hs-buildtools") options=('strip') diff --git a/community/haskell-glib/PKGBUILD b/community/haskell-glib/PKGBUILD index 0b74ceec2..9af16ea0b 100644 --- a/community/haskell-glib/PKGBUILD +++ b/community/haskell-glib/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Binding to the GLIB library for Gtk2Hs." url="http://hackage.haskell.org/package/glib" license=('LGPL2.1') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc' 'glib2') makedepends=("gtk2hs-buildtools") options=('strip') diff --git a/community/haskell-gtk/PKGBUILD b/community/haskell-gtk/PKGBUILD index 060c24cd4..8b0821189 100644 --- a/community/haskell-gtk/PKGBUILD +++ b/community/haskell-gtk/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Binding to the gtk library for Gtk2Hs." url="http://hackage.haskell.org/package/gtk" license=('LGPL2.1') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc' 'gtk2' "haskell-pango=$pkgver" 'haskell-mtl=2.0.1.0') makedepends=("gtk2hs-buildtools") provides=('gtk2hs-gtk') diff --git a/community/haskell-html/PKGBUILD b/community/haskell-html/PKGBUILD index 44a3ea50b..3c00810ba 100644 --- a/community/haskell-html/PKGBUILD +++ b/community/haskell-html/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=10 pkgdesc="HTML combinator library" url="http://hackage.haskell.org/package/html" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.4.1-2' sh) source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) install=${pkgname}.install diff --git a/community/haskell-pango/PKGBUILD b/community/haskell-pango/PKGBUILD index bf74c6d06..db3c6b403 100644 --- a/community/haskell-pango/PKGBUILD +++ b/community/haskell-pango/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Binding to the pango library for Gtk2Hs." url="http://hackage.haskell.org/package/pango" license=('LGPL2.1') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc' 'pango' 'haskell-glib' 'haskell-cairo') makedepends=("gtk2hs-buildtools") provides=('gtk2hs-pango') diff --git a/community/haskell-quickcheck/PKGBUILD b/community/haskell-quickcheck/PKGBUILD index 7b27cfb0c..e9975e93d 100644 --- a/community/haskell-quickcheck/PKGBUILD +++ b/community/haskell-quickcheck/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc="Automatic testing of Haskell programs" url="http://hackage.haskell.org/package/QuickCheck" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.4.1-2' 'haskell-mtl=2.0.1.0-4' 'haskell-random=1.0.1.1-1' 'sh') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) install=${pkgname}.install diff --git a/community/haskell-regex-base/PKGBUILD b/community/haskell-regex-base/PKGBUILD index 3b8ecb4bb..791cee2ca 100644 --- a/community/haskell-regex-base/PKGBUILD +++ b/community/haskell-regex-base/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=5 pkgdesc="Interface API for regex-posix,pcre,parsec,tdfa,dfa" url="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/regex-base" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.4.1-2' sh 'haskell-mtl=2.0.1.0-4') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) install=${pkgname}.install diff --git a/community/haskell-regex-compat/PKGBUILD b/community/haskell-regex-compat/PKGBUILD index c880ff4f2..1d77e99a6 100644 --- a/community/haskell-regex-compat/PKGBUILD +++ b/community/haskell-regex-compat/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Replaces and enhances Text.Regex" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.4.1-2' 'sh' 'haskell-regex-base=0.93.2-5' 'haskell-regex-posix=0.95.1-1') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) install=${pkgname}.install diff --git a/community/haskell-regex-posix/PKGBUILD b/community/haskell-regex-posix/PKGBUILD index 1bed15490..2bf21e05a 100644 --- a/community/haskell-regex-posix/PKGBUILD +++ b/community/haskell-regex-posix/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="The posix regex backend for regex-base" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.4.1-2' 'sh' 'haskell-regex-base=0.93.2-5') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) install=${pkgname}.install diff --git a/community/haskell-stm/PKGBUILD b/community/haskell-stm/PKGBUILD index fa9819d51..d639a65fa 100644 --- a/community/haskell-stm/PKGBUILD +++ b/community/haskell-stm/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3 pkgdesc="A modular composable concurrency abstraction." url="http://hackage.haskell.org/package/stm" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.4.1' 'sh') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) install=${pkgname}.install diff --git a/community/haskell-syb/PKGBUILD b/community/haskell-syb/PKGBUILD index 9223379b2..4e9fc0ed0 100644 --- a/community/haskell-syb/PKGBUILD +++ b/community/haskell-syb/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A library for client-side HTTP" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.4.1' sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/community/haskell-xhtml/PKGBUILD b/community/haskell-xhtml/PKGBUILD index b3762851d..02701ec4b 100644 --- a/community/haskell-xhtml/PKGBUILD +++ b/community/haskell-xhtml/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=2 pkgdesc="Combinators for producing XHTML 1.0, including the Strict, Transitional and Frameset variants." url="http://hackage.haskell.org/package/xhtml" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.4.1-2' 'sh') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) install=${pkgname}.install diff --git a/community/hitori/PKGBUILD b/community/hitori/PKGBUILD index 99afb9dd3..a4a8ed903 100644 --- a/community/hitori/PKGBUILD +++ b/community/hitori/PKGBUILD @@ -5,7 +5,7 @@ pkgname=hitori pkgver=0.3.2 pkgrel=1 pkgdesc="GTK+ application to generate and let you play games of Hitori" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://live.gnome.org/Hitori" license=('GPL') depends=('gtk3' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/httperf/PKGBUILD b/community/httperf/PKGBUILD index c9b072988..99320a4df 100644 --- a/community/httperf/PKGBUILD +++ b/community/httperf/PKGBUILD @@ -7,7 +7,7 @@ pkgname=httperf pkgver=0.9.0 pkgrel=5 pkgdesc='A tool for measuring web server performance.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url='http://code.google.com/p/httperf' depends=('openssl') diff --git a/community/i7z/PKGBUILD b/community/i7z/PKGBUILD index f573fc123..20edefaf3 100644 --- a/community/i7z/PKGBUILD +++ b/community/i7z/PKGBUILD @@ -5,7 +5,7 @@ pkgname=i7z pkgver=0.27.1 pkgrel=1 pkgdesc="A better i7 (and now i3, i5) reporting tool for Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') depends=('ncurses') makedepends=('qt') diff --git a/community/icewm-utils/PKGBUILD b/community/icewm-utils/PKGBUILD index aed8df1b0..443357c20 100644 --- a/community/icewm-utils/PKGBUILD +++ b/community/icewm-utils/PKGBUILD @@ -19,7 +19,7 @@ _mergeprefsver=0.5 pkgrel=6 pkgdesc="Suite of tools for IceWM" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=("GPL") url="http://icecc.sourceforge.net/" depends=('qt3' 'python2') diff --git a/community/iec16022/PKGBUILD b/community/iec16022/PKGBUILD index 0924cbbce..18f1015fd 100644 --- a/community/iec16022/PKGBUILD +++ b/community/iec16022/PKGBUILD @@ -5,7 +5,7 @@ pkgname=iec16022 pkgver=0.2.4 pkgrel=1 pkgdesc="Produce 2D barcodes often also referenced as DataMatrix" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://datenfreihafen.org/projects/iec16022.html" license=('GPL') depends=('popt' 'zlib') diff --git a/community/iptstate/PKGBUILD b/community/iptstate/PKGBUILD index 9f1321bbe..4b4450916 100644 --- a/community/iptstate/PKGBUILD +++ b/community/iptstate/PKGBUILD @@ -6,7 +6,7 @@ pkgname=iptstate pkgver=2.2.5 pkgrel=1 pkgdesc='top-like interface to netfilter connection-tracking table' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.phildev.net/iptstate/' license=('custom') depends=('gcc-libs' 'ncurses' 'libnetfilter_conntrack') diff --git a/community/ipvsadm/PKGBUILD b/community/ipvsadm/PKGBUILD index 42132b7b6..f516be986 100644 --- a/community/ipvsadm/PKGBUILD +++ b/community/ipvsadm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ipvsadm pkgver=1.26 pkgrel=5 pkgdesc='The IP Virtual Server administration utility' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.linuxvirtualserver.org/software/ipvs.html' license=('GPL2') depends=('libnl1' 'popt') diff --git a/community/keepalived/PKGBUILD b/community/keepalived/PKGBUILD index 0652947d2..821958cae 100644 --- a/community/keepalived/PKGBUILD +++ b/community/keepalived/PKGBUILD @@ -6,7 +6,7 @@ pkgname=keepalived pkgver=1.2.2 pkgrel=4 pkgdesc='Failover and monitoring daemon for LVS clusters' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.keepalived.org/' license=('GPL2') backup=('etc/keepalived/keepalived.conf' 'etc/conf.d/keepalived') diff --git a/community/kovpn/PKGBUILD b/community/kovpn/PKGBUILD index 20b76bfc4..ce524aa08 100644 --- a/community/kovpn/PKGBUILD +++ b/community/kovpn/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.3pre7 _pkgver=0.3.pre7 pkgrel=6 pkgdesc="An OpenVPN client management interface for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde-apps.org/content/show.php?content=37043" license=('GPL') depends=('openvpn' 'kdelibs3' 'xdg-utils') diff --git a/community/kpartsplugin/PKGBUILD b/community/kpartsplugin/PKGBUILD index 14460add9..7b883f2a7 100644 --- a/community/kpartsplugin/PKGBUILD +++ b/community/kpartsplugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kpartsplugin pkgver=20120529 pkgrel=1 pkgdesc="This plugin uses KDE's KParts to embed file viewers into non-KDE browsers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.unix-ag.uni-kl.de/~fischer/kpartsplugin/" license=('GPL3' 'BSD') depends=('kdelibs') diff --git a/community/ksniffer/PKGBUILD b/community/ksniffer/PKGBUILD index 9e538ebfa..71179bf86 100644 --- a/community/ksniffer/PKGBUILD +++ b/community/ksniffer/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ksniffer pkgver=0.3.2 pkgrel=6 pkgdesc="A sniffing application for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ksniffer.org" license=('GPL2') depends=('libpcap' 'kdelibs3') diff --git a/community/ktechlab/PKGBUILD b/community/ktechlab/PKGBUILD index ac59910d6..04662f644 100644 --- a/community/ktechlab/PKGBUILD +++ b/community/ktechlab/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ktechlab pkgver=0.3.7 pkgrel=3 pkgdesc="IDE for electronic circuits and microcontrollers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/ktechlab" license=("GPL") depends=('kdelibs3' 'gputils' 'gpsim') diff --git a/community/kwalletcli/PKGBUILD b/community/kwalletcli/PKGBUILD index 803b85750..252337319 100644 --- a/community/kwalletcli/PKGBUILD +++ b/community/kwalletcli/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Command-Line Interface for the KDE Wallet" url="http://www.mirbsd.org/kwalletcli.htm" license=('custom:MirOS' 'LGPL3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('kdebase-runtime' 'mksh') optdepends=('gnupg2' 'openssh' 'pinentry') source=("http://www.mirbsd.org/MirOS/dist/hosted/${pkgname}/${pkgname}-${pkgver}.tar.gz") diff --git a/community/lash/PKGBUILD b/community/lash/PKGBUILD index 16390c3ec..162c39e46 100644 --- a/community/lash/PKGBUILD +++ b/community/lash/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.6.0~rc2 _relver=0.6.0.594 pkgrel=6 pkgdesc="A session management system for JACK and ALSA" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!libtool') #url="http://lash-audio.org" url="http://lash.nongnu.org/" diff --git a/community/ldc/PKGBUILD b/community/ldc/PKGBUILD index ba9552118..f8e7e38e0 100644 --- a/community/ldc/PKGBUILD +++ b/community/ldc/PKGBUILD @@ -4,7 +4,7 @@ pkgname=ldc pkgver=20120606 pkgrel=2 pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D runtime and libphobos2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.dsource.org/projects/ldc" license=('BSD') depends=('llvm' 'libconfig') diff --git a/community/leptonica/PKGBUILD b/community/leptonica/PKGBUILD index 9aaa55a76..f632d2d27 100644 --- a/community/leptonica/PKGBUILD +++ b/community/leptonica/PKGBUILD @@ -6,7 +6,7 @@ pkgname=leptonica pkgver=1.68 pkgrel=3 pkgdesc="Software that is broadly useful for image processing and image analysis applications" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.leptonica.com/" license=('custom') depends=('glibc') diff --git a/community/libalkimia/PKGBUILD b/community/libalkimia/PKGBUILD index 004c8d6fa..fd6c170ac 100644 --- a/community/libalkimia/PKGBUILD +++ b/community/libalkimia/PKGBUILD @@ -10,7 +10,7 @@ depends=('kdelibs') makedepends=('cmake' 'automoc4' 'doxygen') url=('http://kde-apps.org/content/show.php/libalkimia?content=137323') license=('LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=("http://kde-apps.org/CONTENT/content-files/137323-libalkimia-$pkgver.tar.bz2") md5sums=('8d7b529c7be5f72ae1cbb02e818e9b79') diff --git a/community/libcec/PKGBUILD b/community/libcec/PKGBUILD index e14ac932e..0e41ea549 100644 --- a/community/libcec/PKGBUILD +++ b/community/libcec/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libcec pkgver=1.6.3 pkgrel=1 pkgdesc="Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://github.com/Pulse-Eight/libcec" license=('GPL') depends=('udev' 'lockdev') diff --git a/community/libcgns2/PKGBUILD b/community/libcgns2/PKGBUILD index 590181b1f..d92b0e76e 100644 --- a/community/libcgns2/PKGBUILD +++ b/community/libcgns2/PKGBUILD @@ -7,7 +7,7 @@ _relver=5 pkgver=${_basever}.${_relver} pkgrel=2 pkgdesc='General purpose library for the storage and retrieval of computational fluid dynamics analysis data by CGNS standard' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.cgns.org' license=('custom') conflicts=('libcgns') diff --git a/community/libcryptui/PKGBUILD b/community/libcryptui/PKGBUILD index cae4d802c..160bdd7fd 100644 --- a/community/libcryptui/PKGBUILD +++ b/community/libcryptui/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libcryptui pkgver=3.4.1 pkgrel=1 pkgdesc="Library for OpenPGP prompts" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://git.gnome.org/browse/libcryptui/" license=('GPL') depends=('gtk3' 'libsm' 'gpgme' 'dbus-glib' 'libnotify' 'libgnome-keyring' 'dconf') diff --git a/community/libgda4/PKGBUILD b/community/libgda4/PKGBUILD index 080555e83..4f024e8e8 100644 --- a/community/libgda4/PKGBUILD +++ b/community/libgda4/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libgda4 pkgver=4.2.10 pkgrel=1 pkgdesc="Data abstraction layer with mysql, pgsql, xml, sqlite providers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gtksourceview2' 'libunique' 'libxslt' 'libsoup' 'libmysqlclient' 'postgresql-libs' 'python2' 'libgnome-keyring' diff --git a/community/libircclient/PKGBUILD b/community/libircclient/PKGBUILD index 72a698e73..c79fc7208 100644 --- a/community/libircclient/PKGBUILD +++ b/community/libircclient/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libircclient pkgver=1.6 pkgrel=1 pkgdesc="A small but powerful library, which implements client-server IRC protocol." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ulduzsoft.com/libircclient/" depends=('glibc') license=('GPL') diff --git a/community/libmilter/PKGBUILD b/community/libmilter/PKGBUILD index 3d842fb77..7a929fd6a 100644 --- a/community/libmilter/PKGBUILD +++ b/community/libmilter/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libmilter pkgver=8.14.5 pkgrel=1 pkgdesc="libmilter" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.postfix.org/MILTER_README.html" license=('custom:Sendmail open source license') source="ftp://ftp.sendmail.org/pub/sendmail/sendmail.${pkgver}.tar.gz" diff --git a/community/libnet/PKGBUILD b/community/libnet/PKGBUILD index b113033fc..420d437f7 100644 --- a/community/libnet/PKGBUILD +++ b/community/libnet/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libnet pkgver=1.1.5 pkgrel=2 pkgdesc="A library which provides API for commonly used low-level net functions" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/libnet-dev/" license=('BSD') depends=('glibc' 'sh') diff --git a/community/libnfs/PKGBUILD b/community/libnfs/PKGBUILD index eaef7ac71..6f3bbd140 100644 --- a/community/libnfs/PKGBUILD +++ b/community/libnfs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libnfs pkgver=1.3.0 pkgrel=1 pkgdesc="client library for accessing NFS shares" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://github.com/sahlberg/libnfs" license=('GPL') depends=('glibc') diff --git a/community/liboggz/PKGBUILD b/community/liboggz/PKGBUILD index 01aec1fc9..ac73928d6 100644 --- a/community/liboggz/PKGBUILD +++ b/community/liboggz/PKGBUILD @@ -8,7 +8,7 @@ pkgname=liboggz pkgver=1.1.1 pkgrel=3 pkgdesc="A simple programming interface for reading and writing Ogg files and streams" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xiph.org/oggz/" license=('custom:BSD') depends=('libogg' 'sh') diff --git a/community/libshairport/PKGBUILD b/community/libshairport/PKGBUILD index d6e406c41..0e1b81faa 100644 --- a/community/libshairport/PKGBUILD +++ b/community/libshairport/PKGBUILD @@ -8,7 +8,7 @@ _commithash='aeb4987' pkgver=${_version} pkgrel=2 pkgdesc="emulates an AirPort Express" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='https://github.com/amejia1/libshairport' license=('GPL') depends=('openssl' 'libao') diff --git a/community/libsmf/PKGBUILD b/community/libsmf/PKGBUILD index 62f77a96a..d85f7045d 100644 --- a/community/libsmf/PKGBUILD +++ b/community/libsmf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libsmf pkgver=1.3 pkgrel=3 pkgdesc='A BSD-licensed C library for handling SMF ("*.mid") files.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/libsmf/" license=('BSD') depends=('glib2' 'readline') diff --git a/community/libuser/PKGBUILD b/community/libuser/PKGBUILD index 639eade30..84963ea83 100644 --- a/community/libuser/PKGBUILD +++ b/community/libuser/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libuser pkgver=0.57.6 pkgrel=1 pkgdesc='A standardized interface for manipulating and administering user and group accounts.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url='https://fedorahosted.org/libuser/' depends=('python2' 'glib2' 'popt') diff --git a/community/libwebp/PKGBUILD b/community/libwebp/PKGBUILD index eb5dbca25..3343279fe 100644 --- a/community/libwebp/PKGBUILD +++ b/community/libwebp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libwebp pkgver=0.1.3 pkgrel=2 pkgdesc="WebP library and conversion tools" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://code.google.com/intl/en/speed/webp/" license=('BSD') depends=('libpng' 'libjpeg') diff --git a/community/libzdb/PKGBUILD b/community/libzdb/PKGBUILD index 71f6b12fd..dcb242f03 100644 --- a/community/libzdb/PKGBUILD +++ b/community/libzdb/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libzdb pkgver=2.10.1 pkgrel=1 pkgdesc="Zild Database Library" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.tildeslash.com/libzdb/" license=('GPL') depends=('postgresql-libs' 'sqlite3' 'libmysqlclient') diff --git a/community/linux-tools/PKGBUILD b/community/linux-tools/PKGBUILD index b44f8cf38..e89d03730 100644 --- a/community/linux-tools/PKGBUILD +++ b/community/linux-tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=('perf' 'cpupower') pkgver=3.4 pkgrel=2 license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kernel.org' options=('!strip') makedepends=('asciidoc' 'xmlto') diff --git a/community/lksctp-tools/PKGBUILD b/community/lksctp-tools/PKGBUILD index 7751723cb..658a7565e 100644 --- a/community/lksctp-tools/PKGBUILD +++ b/community/lksctp-tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lksctp-tools pkgver=1.0.11 pkgrel=1 pkgdesc='An implementation of the SCTP protocol' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://lksctp.sourceforge.net/' license=('GPL2') depends=('bash') diff --git a/community/log4cpp/PKGBUILD b/community/log4cpp/PKGBUILD index 21bfddf37..8bfe31720 100644 --- a/community/log4cpp/PKGBUILD +++ b/community/log4cpp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=log4cpp pkgver=1.0 pkgrel=6 pkgdesc="A library of C++ classes for flexible logging to files, syslog, IDSA and other destinations." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://log4cpp.hora-obscura.de/" license=('LGPL') depends=('gcc-libs') diff --git a/community/lomoco/PKGBUILD b/community/lomoco/PKGBUILD index fc8ca5598..806e93064 100644 --- a/community/lomoco/PKGBUILD +++ b/community/lomoco/PKGBUILD @@ -10,7 +10,7 @@ pkgdesc="Logitech USB mouse configuration program" license=('GPL') depends=('libusb-compat') replaces=('lmctl') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=(!libtool) backup=(etc/udev/lomoco_mouse.conf) source=(http://www.lomoco.org/${pkgname}-${pkgver}.tar.gz diff --git a/community/lorcon/PKGBUILD b/community/lorcon/PKGBUILD index 3f821cb23..9f749da53 100644 --- a/community/lorcon/PKGBUILD +++ b/community/lorcon/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=2 pkgdesc="Loss Of Radio CONnectivity: A generic library for injecting 802.11 frames" url='http://802.11ninja.net/' license=('GPL') -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') depends=('libpcap') makedepends=('subversion') replaces=('lorcon-old-svn') diff --git a/community/lout/PKGBUILD b/community/lout/PKGBUILD index 71aa6f957..3abe6c2a6 100644 --- a/community/lout/PKGBUILD +++ b/community/lout/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lout pkgver=3.39 pkgrel=1 pkgdesc="A lightweight document formatting system." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lout.wiki.sourceforge.net/" license=('GPL') depends=('glibc') diff --git a/community/love/PKGBUILD b/community/love/PKGBUILD index 0fc743ccc..1fad127f9 100644 --- a/community/love/PKGBUILD +++ b/community/love/PKGBUILD @@ -5,7 +5,7 @@ pkgname=love pkgver=0.8.0 pkgrel=2 pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting language to create dynamic gaming experiences" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://love2d.org/" license=('zlib') depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 'libmodplug' 'sdl' 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils') diff --git a/community/lrzip/PKGBUILD b/community/lrzip/PKGBUILD index ced3afecb..30994a924 100644 --- a/community/lrzip/PKGBUILD +++ b/community/lrzip/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=3 pkgdesc="Multi-threaded compression using the rzip/lzma, lzo, and zpaq algorithms" url="http://lrzip.kolivas.org/" license=('GPL') -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') depends=('lzo2' 'bzip2' 'zlib' 'bash' 'gcc-libs') if [ "$CARCH" != "x86_64" ] then diff --git a/community/lsscsi/PKGBUILD b/community/lsscsi/PKGBUILD index e8d5251d9..556c01d4c 100644 --- a/community/lsscsi/PKGBUILD +++ b/community/lsscsi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lsscsi pkgver=0.26 pkgrel=1 pkgdesc='A tool that lists devices connected via SCSI and its transports' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sg.danny.cz/scsi/lsscsi.html" license=('GPL') depends=('sysfsutils') diff --git a/community/luajit/PKGBUILD b/community/luajit/PKGBUILD index 7a9480d86..3e56a034b 100644 --- a/community/luajit/PKGBUILD +++ b/community/luajit/PKGBUILD @@ -8,7 +8,7 @@ pkgname=luajit pkgver=2.0.0b10 pkgrel=1 pkgdesc="A Just-In-Time Compiler for Lua" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://luajit.org/" license=('MIT') depends=('gcc-libs') diff --git a/community/lxinput/PKGBUILD b/community/lxinput/PKGBUILD index 7ed91636f..145d298d7 100644 --- a/community/lxinput/PKGBUILD +++ b/community/lxinput/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lxinput pkgver=0.3.2 pkgrel=2 pkgdesc="A small program to configure keyboard and mouse for LXDE." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lxde.org/" license=('GPL') groups=('lxde') diff --git a/community/lxmusic/PKGBUILD b/community/lxmusic/PKGBUILD index 197adf4ec..5bb12620b 100644 --- a/community/lxmusic/PKGBUILD +++ b/community/lxmusic/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lxmusic pkgver=0.4.5 pkgrel=1 pkgdesc='Lightweight XMMS2 client' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lxde.org/" license=('GPL') groups=('lxde') diff --git a/community/madman/PKGBUILD b/community/madman/PKGBUILD index 22f3a5697..2a6cc72c7 100644 --- a/community/madman/PKGBUILD +++ b/community/madman/PKGBUILD @@ -8,7 +8,7 @@ pkgname=madman pkgver=0.94beta1.20060611 pkgrel=3 pkgdesc="I-tunes like music player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://madman.sourceforge.net/" license=('GPL') depends=('qt3' 'xmms' 'gtk' 'taglib') diff --git a/community/mailman/PKGBUILD b/community/mailman/PKGBUILD index 975b3cb96..dfb07e6d1 100644 --- a/community/mailman/PKGBUILD +++ b/community/mailman/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mailman pkgver=2.1.14 pkgrel=4 pkgdesc="Mailing list manager with built in web access" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.list.org/" depends=('python2' 'smtp-server') diff --git a/community/mandvd/PKGBUILD b/community/mandvd/PKGBUILD index 4c5abc0cc..7214ee11f 100644 --- a/community/mandvd/PKGBUILD +++ b/community/mandvd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mandvd pkgver=2.6 pkgrel=2 pkgdesc="A program to simply create DVD Video" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde-apps.org/content/show.php/ManDVD?content=83906" license=('GPL') depends=('dvd+rw-tools>=5.21.4' 'dvd-slideshow>=0.7.5' 'mjpegtools>=1.8.0' 'mplayer' 'qt3' 'xine-ui>=0.99.4') diff --git a/community/mariadb/PKGBUILD b/community/mariadb/PKGBUILD index 586761908..c9065f546 100644 --- a/community/mariadb/PKGBUILD +++ b/community/mariadb/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=mariadb pkgname=('libmariadbclient' 'mariadb-clients' 'mariadb') pkgver=5.5.24 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://mariadb.org/" makedepends=('cmake' 'openssl' 'zlib') diff --git a/community/mcelog/PKGBUILD b/community/mcelog/PKGBUILD index dae948032..27302f56d 100644 --- a/community/mcelog/PKGBUILD +++ b/community/mcelog/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=3 pkgdesc="Print machine check event log from x86-64 kernel" url="http://freshmeat.net/projects/mcelog/" license=("GPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('docs') #source=("ftp://ftp.kernel.org/pub/linux/utils/cpu/mce/${pkgname}-${pkgver}.tar.gz" source=("ftp://ftp.archlinux.org/other/community/${pkgname}/${pkgname}-${pkgver}.tar.gz" diff --git a/community/mdf2iso/PKGBUILD b/community/mdf2iso/PKGBUILD index b58c51413..26762014a 100644 --- a/community/mdf2iso/PKGBUILD +++ b/community/mdf2iso/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mdf2iso pkgver=0.3.0 pkgrel=5 pkgdesc="Converts Alcohol 120% .mdf files to .iso files" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://mdf2iso.berlios.de/" license=('GPL') depends=('glibc') diff --git a/community/midori/PKGBUILD b/community/midori/PKGBUILD index 64fdaf822..a36de8fce 100644 --- a/community/midori/PKGBUILD +++ b/community/midori/PKGBUILD @@ -8,7 +8,7 @@ pkgname=midori pkgver=0.4.6 pkgrel=1 pkgdesc="Lightweight web browser based on Gtk WebKit" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://www.twotoasts.de/index.php?/pages/midori_summary.html" license=('LGPL2.1') install=midori.install diff --git a/community/milkytracker/PKGBUILD b/community/milkytracker/PKGBUILD index e8e54ee08..68f8a61a0 100644 --- a/community/milkytracker/PKGBUILD +++ b/community/milkytracker/PKGBUILD @@ -6,7 +6,7 @@ pkgname=milkytracker pkgver=0.90.85 pkgrel=5 pkgdesc="Fast Tracker II inspired music tracker" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://www.milkytracker.org/" license=('GPL3') depends=('sdl>=1.2.0' 'alsa-lib' 'zlib' 'gcc-libs') diff --git a/community/mingetty/PKGBUILD b/community/mingetty/PKGBUILD index 12836d08c..494728ee0 100644 --- a/community/mingetty/PKGBUILD +++ b/community/mingetty/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mingetty pkgver=1.08 pkgrel=3 pkgdesc="A minimal getty which allows automatic logins." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/mingetty" license=('GPL') depends=('glibc') diff --git a/community/minitube/PKGBUILD b/community/minitube/PKGBUILD index 4cdeafce2..20951519e 100644 --- a/community/minitube/PKGBUILD +++ b/community/minitube/PKGBUILD @@ -5,7 +5,7 @@ pkgname=minitube pkgver=1.7.1 pkgrel=3 pkgdesc="A native YouTube client in QT. Watch YouTube videos without Flash Player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://flavio.tordini.org/minitube' license=('GPL') depends=('phonon') diff --git a/community/mksh/PKGBUILD b/community/mksh/PKGBUILD index 342b5fd7b..aeb555ecc 100644 --- a/community/mksh/PKGBUILD +++ b/community/mksh/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="The MirBSD Korn Shell - an enhanced version of the public domain ksh" url="http://mirbsd.de/mksh" license=("custom") makedepends=('cpio') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') install=mksh.install source=("https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$pkgver.cpio.gz" "https://www.mirbsd.org/TaC-mksh.txt") diff --git a/community/mosh/PKGBUILD b/community/mosh/PKGBUILD index 4d9aa7fbd..13b222184 100644 --- a/community/mosh/PKGBUILD +++ b/community/mosh/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mosh pkgver=1.2.1 pkgrel=2 pkgdesc='Mobile shell, surviving disconnects with local echo and line editing' -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://mosh.mit.edu/" license=('GPL3') depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty') diff --git a/community/mythtv/PKGBUILD b/community/mythtv/PKGBUILD index 824e33225..4729f6459 100644 --- a/community/mythtv/PKGBUILD +++ b/community/mythtv/PKGBUILD @@ -10,7 +10,7 @@ pkgver=0.25 pkgrel=3 epoch=1 pkgdesc="A Homebrew PVR project" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.mythtv.org/" license=('GPL') depends=('avahi' 'fftw' 'lame' 'libass' 'libavc1394' 'libcdio' 'libiec61883' diff --git a/community/nautilus-sound-converter/PKGBUILD b/community/nautilus-sound-converter/PKGBUILD index c4b6f142c..51702f449 100644 --- a/community/nautilus-sound-converter/PKGBUILD +++ b/community/nautilus-sound-converter/PKGBUILD @@ -5,7 +5,7 @@ pkgname=nautilus-sound-converter pkgver=3.0.2 pkgrel=1 pkgdesc="Nautilus extension to convert audio files formats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/nautilus-sound-converter/" license=('GPL') depends=('nautilus' 'libgnome-media-profiles') diff --git a/community/nemiver/PKGBUILD b/community/nemiver/PKGBUILD index 1bcf9cf0a..bbc2c6ee2 100644 --- a/community/nemiver/PKGBUILD +++ b/community/nemiver/PKGBUILD @@ -6,7 +6,7 @@ pkgname=nemiver pkgver=0.9.2 pkgrel=2 pkgdesc="C/C++ debugger for GNOME" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') license=('GPL') url="http://www.gnome.org/projects/nemiver/" depends=('gdlmm' 'gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 'dconf' 'gsettings-desktop-schemas') diff --git a/community/nestopia/PKGBUILD b/community/nestopia/PKGBUILD index c73ddbce7..b40842763 100644 --- a/community/nestopia/PKGBUILD +++ b/community/nestopia/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=5 pkgdesc='An NES emulator featuring cycle exact emulation, a ridiculous number of mappers, and lots of custom sound chips.' url='http://rbelmont.mameworld.info/?page_id=200' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('sdl>=1.2.12' 'alsa-lib' 'gtk2>=2.4' 'mesa') makedepends=('unzip') # rbelmont.mameworld.info blocks some user-agents diff --git a/community/netcf/PKGBUILD b/community/netcf/PKGBUILD index 9c26ba270..7ae560ff5 100644 --- a/community/netcf/PKGBUILD +++ b/community/netcf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=netcf pkgver=0.1.9 pkgrel=2 pkgdesc="A library for configuring network interfaces" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="https://fedorahosted.org/netcf/" depends=('augeas>=0.7.4' 'netcfg' 'libxslt' 'libxml2' 'libnl') diff --git a/community/netselect/PKGBUILD b/community/netselect/PKGBUILD index 14aab1bbe..5ca09e1fd 100644 --- a/community/netselect/PKGBUILD +++ b/community/netselect/PKGBUILD @@ -7,7 +7,7 @@ pkgname=netselect pkgver=0.3 pkgrel=2 pkgdesc="An ultrafast intelligent parallelizing binary-search implementation of ping" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://alumnit.ca/~apenwarr/netselect/index.html" license=('custom') depends=('glibc') diff --git a/community/nmon/PKGBUILD b/community/nmon/PKGBUILD index 6420dedb8..c17e268d8 100644 --- a/community/nmon/PKGBUILD +++ b/community/nmon/PKGBUILD @@ -5,7 +5,7 @@ pkgname=nmon pkgver=14g pkgrel=3 pkgdesc="AIX & Linux Performance Monitoring tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://nmon.sourceforge.net" license=('GPL') depends=('ncurses') diff --git a/community/notion/PKGBUILD b/community/notion/PKGBUILD index c29a0054a..a9e3d436d 100644 --- a/community/notion/PKGBUILD +++ b/community/notion/PKGBUILD @@ -8,7 +8,7 @@ pkgver=20120504 pkgrel=1 pkgdesc="Tabbed tiling, window manager. Fork of Ion3" url="http://sourceforge.net/projects/notion/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom:LGPL') depends=('glib2' 'gettext' 'lua' 'libxext' 'libsm') optdepends=('libxinerama' 'libxrandr') diff --git a/community/oath-toolkit/PKGBUILD b/community/oath-toolkit/PKGBUILD index 82ee965fe..b2b66184a 100644 --- a/community/oath-toolkit/PKGBUILD +++ b/community/oath-toolkit/PKGBUILD @@ -7,7 +7,7 @@ pkgname=oath-toolkit pkgver=1.12.3 pkgrel=1 pkgdesc='OATH one-time password toolkit' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.nongnu.org/oath-toolkit/' license=('GPL3') depends=('pam') diff --git a/community/odt2txt/PKGBUILD b/community/odt2txt/PKGBUILD index 8ff16fba4..c0d4af2f4 100644 --- a/community/odt2txt/PKGBUILD +++ b/community/odt2txt/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="extracts the text out of OpenDocument Texts" url="http://stosberg.net/odt2txt/" license=("GPL2") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('zlib') source=(http://stosberg.net/odt2txt/$pkgname-$pkgver.tar.gz) md5sums=('6fe3bd261ce2dde2810244bbe969bbc5') diff --git a/community/onboard/PKGBUILD b/community/onboard/PKGBUILD index 1a39cbbdf..c905b34e0 100644 --- a/community/onboard/PKGBUILD +++ b/community/onboard/PKGBUILD @@ -5,7 +5,7 @@ pkgname=onboard pkgver=0.97.1 pkgrel=1 pkgdesc="On-screen keyboard useful on tablet PCs or for mobility impaired users" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/onboard" license=('GPL') depends=('python2-cairo' 'dbus-python' 'python2-gobject' 'libwnck3' 'python2-virtkey' 'desktop-file-utils' 'dconf' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/open-vm-tools/PKGBUILD b/community/open-vm-tools/PKGBUILD index 47a5061e5..5d4bd2c8c 100644 --- a/community/open-vm-tools/PKGBUILD +++ b/community/open-vm-tools/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2012.03.13 _pkgsubver=651368 pkgrel=5 pkgdesc="The Open Virtual Machine Tools (open-vm-tools) are the open source implementation of VMware Tools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://open-vm-tools.sourceforge.net/" license=('LGPL') depends=('open-vm-tools-modules' 'libdnet' 'icu' 'procps-ng' 'uriparser' 'libsigc++' 'libxss') diff --git a/community/opencollada/PKGBUILD b/community/opencollada/PKGBUILD index 7a1344c65..568e1ebaa 100644 --- a/community/opencollada/PKGBUILD +++ b/community/opencollada/PKGBUILD @@ -5,7 +5,7 @@ pkgname=opencollada pkgver=869 pkgrel=1 pkgdesc="Stream based reader and writer library for COLLADA files" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="https://code.google.com/p/opencollada/" license=('GPL') depends=('libxml2') diff --git a/community/opendkim/PKGBUILD b/community/opendkim/PKGBUILD index bc1001946..f0a1f0238 100644 --- a/community/opendkim/PKGBUILD +++ b/community/opendkim/PKGBUILD @@ -6,7 +6,7 @@ pkgname=opendkim pkgver=2.5.2 pkgrel=1 pkgdesc="An open source implementation of the DKIM sender authentication system. Based on a fork of dkim-milter." -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.opendkim.org/" license=('BSD' 'custom:Sendmail') depends=("db" "openssl") diff --git a/community/openimageio/PKGBUILD b/community/openimageio/PKGBUILD index f0ca5cfa1..c7b8e1ce7 100644 --- a/community/openimageio/PKGBUILD +++ b/community/openimageio/PKGBUILD @@ -6,7 +6,7 @@ pkgname=openimageio pkgver=1.0.4 pkgrel=1 pkgdesc="A library for reading and writing images, including classes, utilities, and applications." -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.openimageio.org/" license=('custom') depends=('openexr' 'boost-libs' 'jasper' 'glew') diff --git a/community/openocd/PKGBUILD b/community/openocd/PKGBUILD index 889755cbc..c774eae9c 100644 --- a/community/openocd/PKGBUILD +++ b/community/openocd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=openocd pkgver=0.5.0 pkgrel=2 pkgdesc="Debugging, in-system programming and boundary-scan testing for embedded target devices" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://openocd.berlios.de" license=('GPL') depends=('libftdi') diff --git a/community/opensc/PKGBUILD b/community/opensc/PKGBUILD index 1da03752e..b7e56b5a2 100644 --- a/community/opensc/PKGBUILD +++ b/community/opensc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=opensc pkgver=0.12.2 pkgrel=3 pkgdesc='Access smart cards that support cryptographic operations' -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url='http://www.opensc-project.org/opensc/' license=('LGPL') backup=('etc/opensc.conf') diff --git a/community/openscenegraph/PKGBUILD b/community/openscenegraph/PKGBUILD index 4bf29d281..4f1383dd6 100644 --- a/community/openscenegraph/PKGBUILD +++ b/community/openscenegraph/PKGBUILD @@ -8,7 +8,7 @@ pkgname=openscenegraph pkgver=3.0.1 pkgrel=5 pkgdesc="An Open Source, high performance real-time graphics toolkit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom:OSGPL') url="http://www.openscenegraph.org" depends=('giflib' 'jasper' 'librsvg' 'xine-lib' 'curl' 'pth') diff --git a/community/openthreads/PKGBUILD b/community/openthreads/PKGBUILD index ff94915c2..ab5bf7bf7 100644 --- a/community/openthreads/PKGBUILD +++ b/community/openthreads/PKGBUILD @@ -6,7 +6,7 @@ pkgname=openthreads pkgver=2.3.0 pkgrel=2 pkgdesc="A minimal & complete Object-Oriented thread interface for C++ programmers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://openthreads.sourceforge.net" license=("LGPL") depends=('gcc-libs') diff --git a/community/os-prober/PKGBUILD b/community/os-prober/PKGBUILD index 60969d142..a8b76f03f 100644 --- a/community/os-prober/PKGBUILD +++ b/community/os-prober/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.53 pkgrel=1 pkgdesc="Utility to detect other OSes on a set of drives" url="http://joey.kitenet.net/code/os-prober/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') depends=('sh') source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz) diff --git a/community/packeth/PKGBUILD b/community/packeth/PKGBUILD index 041f3f71b..0bc4bb223 100644 --- a/community/packeth/PKGBUILD +++ b/community/packeth/PKGBUILD @@ -10,7 +10,7 @@ depends=(gtk2) source=("http://downloads.sourceforge.net/packeth/packETH-$pkgver.tar.bz2") url="http://packeth.sourceforge.net/" md5sums=('38403ec01072f13ba7f0145abf15b12d') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') build() { diff --git a/community/par2cmdline/PKGBUILD b/community/par2cmdline/PKGBUILD index 127c4256a..bf5f1d59f 100644 --- a/community/par2cmdline/PKGBUILD +++ b/community/par2cmdline/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc='A PAR 2.0 compatible file verification and repair tool' url='https://github.com/BlackIkeEagle/par2cmdline' license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=("https://github.com/downloads/BlackIkeEagle/$pkgname/$pkgname-$pkgver.tar.xz") md5sums=('96b4fb91859c0214d2c562636abea3af') diff --git a/community/parole/PKGBUILD b/community/parole/PKGBUILD index e2215d8f2..8370127ab 100644 --- a/community/parole/PKGBUILD +++ b/community/parole/PKGBUILD @@ -6,7 +6,7 @@ pkgname=parole pkgver=0.2.0.6 pkgrel=2 pkgdesc="A modern media player based on the GStreamer framework" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://goodies.xfce.org/projects/applications/parole/" license=('GPL') depends=('gstreamer0.10-base>=0.10.11' 'hicolor-icon-theme' 'libnotify>=0.4.1' diff --git a/community/pdfedit/PKGBUILD b/community/pdfedit/PKGBUILD index 4da652f91..47e6293fa 100644 --- a/community/pdfedit/PKGBUILD +++ b/community/pdfedit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pdfedit pkgver=0.4.5 pkgrel=2 pkgdesc='Full featured editor for manipulating PDF documents' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://pdfedit.petricek.net/index_e.html' license=('GPL') depends=('qt3' 't1lib' 'gsfonts') diff --git a/community/perl-file-rsyncp/PKGBUILD b/community/perl-file-rsyncp/PKGBUILD index 29af9c1a1..f963baba7 100644 --- a/community/perl-file-rsyncp/PKGBUILD +++ b/community/perl-file-rsyncp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-file-rsyncp pkgver=0.70 pkgrel=2 pkgdesc='Perl interface to rsync file list encoding and decoding' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'PerlArtistic') options=('!emptydirs' '!makeflags') url='http://search.cpan.org/dist/File-RsyncP' diff --git a/community/perl-io-dirent/PKGBUILD b/community/perl-io-dirent/PKGBUILD index 4dbd3d576..d27c607e0 100644 --- a/community/perl-io-dirent/PKGBUILD +++ b/community/perl-io-dirent/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-io-dirent pkgver=0.05 pkgrel=2 pkgdesc='Perl IO::Dirent module - Access to dirent structs returned by readdir' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'PerlArtistic') url='http://search.cpan.org/~scottw/IO-Dirent/' options=('!emptydirs') diff --git a/community/perl-package-stash-xs/PKGBUILD b/community/perl-package-stash-xs/PKGBUILD index ee83389a2..ef6b27703 100644 --- a/community/perl-package-stash-xs/PKGBUILD +++ b/community/perl-package-stash-xs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-package-stash-xs pkgver=0.25 pkgrel=2 pkgdesc="faster and more correct implementation of the Package::Stash API" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=(PerlArtistic GPL) options=(!emptydirs) depends=('perl>=5.8.1') diff --git a/community/perl-params-classify/PKGBUILD b/community/perl-params-classify/PKGBUILD index d0dae4a7d..a36037d54 100644 --- a/community/perl-params-classify/PKGBUILD +++ b/community/perl-params-classify/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-params-classify pkgver=0.013 pkgrel=2 pkgdesc="argument type classification" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('PerlArtistic') url="http://search.cpan.org/~zefram/Params-Classify" options=(!emptydirs) diff --git a/community/perl-params-util/PKGBUILD b/community/perl-params-util/PKGBUILD index 231c569ee..300f74506 100644 --- a/community/perl-params-util/PKGBUILD +++ b/community/perl-params-util/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-params-util pkgver=1.04 pkgrel=2 pkgdesc="Simple, compact and correct param-checking functions" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=(PerlArtistic GPL) options=(!emptydirs) depends=('perl>=5.5.30' 'perl-scalar-list-utils') diff --git a/community/picocom/PKGBUILD b/community/picocom/PKGBUILD index bb4296597..9ff4e0148 100644 --- a/community/picocom/PKGBUILD +++ b/community/picocom/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc='Minimal dumb-terminal emulation program, very much like minicom' url='http://code.google.com/p/picocom/' license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glibc') source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz") sha1sums=('bde6e36af71db845913f9d61f28dee1b485218fa') diff --git a/community/pidgin-gfire/PKGBUILD b/community/pidgin-gfire/PKGBUILD index 9abfa1f83..a40a5dcf2 100644 --- a/community/pidgin-gfire/PKGBUILD +++ b/community/pidgin-gfire/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pidgin-gfire pkgver=0.9.4 pkgrel=3 pkgdesc="Gfire is an Plugin for the Pidgin IM client which allows you to connect the Xfire network." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gfireproject.org/" license=('GPL') depends=('glib2' 'libpurple' 'libnotify' 'gtk2') diff --git a/community/pidgin-talkfilters/PKGBUILD b/community/pidgin-talkfilters/PKGBUILD index 39a171c78..5ac864306 100644 --- a/community/pidgin-talkfilters/PKGBUILD +++ b/community/pidgin-talkfilters/PKGBUILD @@ -4,7 +4,7 @@ pkgname=pidgin-talkfilters pkgver=2.7.0 pkgrel=1 pkgdesc="Implements GNU Talkfilters in pidgin chats" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.guifications.org/projects/purple-plugin-pack" license=('GPL') depends=('pidgin' 'talkfilters') diff --git a/community/pidgin-toobars/PKGBUILD b/community/pidgin-toobars/PKGBUILD index a9d052011..1b31da37f 100644 --- a/community/pidgin-toobars/PKGBUILD +++ b/community/pidgin-toobars/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pidgin-toobars pkgver=1.14 pkgrel=1 pkgdesc="Pidgin plugin that adds a toolbar and status bar to the buddy list" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://vayurik.ru/wordpress/en/toobars/" license=('GPL') depends=('pidgin') diff --git a/community/pigz/PKGBUILD b/community/pigz/PKGBUILD index 6a80d70cb..404b821fb 100755 --- a/community/pigz/PKGBUILD +++ b/community/pigz/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pigz pkgver=2.2.4 pkgrel=1 pkgdesc="Parallel implementation of the gzip file compressor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.zlib.net/pigz/" license=('custom') depends=('zlib') diff --git a/community/pion-net/PKGBUILD b/community/pion-net/PKGBUILD index fd362da67..138cea7fc 100644 --- a/community/pion-net/PKGBUILD +++ b/community/pion-net/PKGBUILD @@ -7,7 +7,7 @@ pkgver=4.0.11 pkgrel=1 pkgdesc="A C++ development library for implementing lightweight HTTP interfaces" url="http://www.pion.org/projects/pion-network-library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom:Boost') depends=('boost-libs' 'openssl' 'log4cpp') makedepends=('boost') diff --git a/community/premake/PKGBUILD b/community/premake/PKGBUILD index 20b85f40e..7aef66f4b 100644 --- a/community/premake/PKGBUILD +++ b/community/premake/PKGBUILD @@ -7,7 +7,7 @@ pkgname=premake pkgver=4.3 pkgrel=3 pkgdesc="A simple build configuration and project generation tool using lua" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://industriousone.com/premake" license=('BSD') provides=("premake4") diff --git a/community/premake3/PKGBUILD b/community/premake3/PKGBUILD index 12820716c..846091eed 100644 --- a/community/premake3/PKGBUILD +++ b/community/premake3/PKGBUILD @@ -8,7 +8,7 @@ pkgname=premake3 pkgver=3.7 pkgrel=2 pkgdesc="A simple build configuration and project generation tool using lua" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://premake.sourceforge.net" license=('GPL') makedepends=() diff --git a/community/pwgen/PKGBUILD b/community/pwgen/PKGBUILD index 863c8c4b2..06f091e56 100644 --- a/community/pwgen/PKGBUILD +++ b/community/pwgen/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pwgen pkgver=2.06 pkgrel=3 pkgdesc="Pwgen is a small password generator which creates passwords which can be easily memorized by a human" -arch=("i686" "x86_64") +arch=("i686" "x86_64" "mips64el") url="http://sourceforge.net/projects/pwgen/" license=('GPL') depends=('glibc') diff --git a/community/pwmanager/PKGBUILD b/community/pwmanager/PKGBUILD index c13ce266a..e0bafdeb5 100644 --- a/community/pwmanager/PKGBUILD +++ b/community/pwmanager/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pwmanager pkgver=1.2.4 pkgrel=5 pkgdesc="With PwManager you can easily manage your passwords" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://passwordmanager.sourceforge.net/" license=('GPL') depends=('kdelibs3') diff --git a/community/pyqt3/PKGBUILD b/community/pyqt3/PKGBUILD index 990cec25f..5eef4d472 100644 --- a/community/pyqt3/PKGBUILD +++ b/community/pyqt3/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pyqt3 pkgver=3.18.1 pkgrel=10 pkgdesc="A set of Python bindings for the Qt3 toolkit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.riverbankcomputing.com/software/pyqt/intro" depends=('python2-sip' 'qscintilla-qt3') license=('GPL') diff --git a/community/python-psutil/PKGBUILD b/community/python-psutil/PKGBUILD index 0d96246c0..a836922a3 100644 --- a/community/python-psutil/PKGBUILD +++ b/community/python-psutil/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=python-psutil pkgname=('python-psutil' 'python2-psutil') pkgver=0.4.1 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://code.google.com/p/psutil/' license=('custom: BSD') makedepends=('python' 'python-distribute' 'python2' 'python2-distribute') diff --git a/community/python-pyproj/PKGBUILD b/community/python-pyproj/PKGBUILD index c066a372d..3dde51d62 100644 --- a/community/python-pyproj/PKGBUILD +++ b/community/python-pyproj/PKGBUILD @@ -6,7 +6,7 @@ pkgname=('python-pyproj' 'python2-pyproj') pkgver=1.9.0 pkgrel=1 pkgdesc="Python interfaces to PROJ.4 library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/pyproj" license=('custom') source=(http://pyproj.googlecode.com/files/pyproj-${pkgver}.tar.gz) diff --git a/community/python-pyxattr/PKGBUILD b/community/python-pyxattr/PKGBUILD index 996d8d6b4..27afaaeab 100644 --- a/community/python-pyxattr/PKGBUILD +++ b/community/python-pyxattr/PKGBUILD @@ -8,7 +8,7 @@ _pkgname=pyxattr pkgver=0.5.0 pkgrel=3 pkgdesc='A python extension module that allows you to manipulate the extended attributes.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://pyxattr.sourceforge.net/' license=('GPL') makedepends=('python2' 'python' 'python2-distribute' 'python-distribute') diff --git a/community/python-pyzmq/PKGBUILD b/community/python-pyzmq/PKGBUILD index 78ff87669..724e6c770 100644 --- a/community/python-pyzmq/PKGBUILD +++ b/community/python-pyzmq/PKGBUILD @@ -4,7 +4,7 @@ pkgname=python-pyzmq pkgver=2.2.0 pkgrel=1 pkgdesc="Python3 bindings for zeromq, written in Cython" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.zeromq.org/bindings:python" license=('LGPL') depends=(zeromq python) diff --git a/community/python-sqlalchemy/PKGBUILD b/community/python-sqlalchemy/PKGBUILD index 8668fa654..fa38a8e53 100644 --- a/community/python-sqlalchemy/PKGBUILD +++ b/community/python-sqlalchemy/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=python-sqlalchemy pkgname=('python-sqlalchemy' 'python2-sqlalchemy') pkgver=0.7.6 pkgrel=1 -arch=('i686' 'x86_64') # python2 package contain .so +arch=('i686' 'x86_64' 'mips64el') # python2 package contain .so url="http://www.sqlalchemy.org/" license=('custom: MIT') makedepends=('python' 'python2' 'python-distribute' 'python2-distribute') diff --git a/community/python2-gevent/PKGBUILD b/community/python2-gevent/PKGBUILD index c35d3ac2b..e6707920c 100644 --- a/community/python2-gevent/PKGBUILD +++ b/community/python2-gevent/PKGBUILD @@ -5,7 +5,7 @@ pkgname=python2-gevent pkgver=0.13.7 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="Python network library that uses greenlet and libevent for easy and scalable concurrency" license=("MIT") url="http://www.gevent.org/" diff --git a/community/python2-greenlet/PKGBUILD b/community/python2-greenlet/PKGBUILD index 38546a68d..1cb84491d 100644 --- a/community/python2-greenlet/PKGBUILD +++ b/community/python2-greenlet/PKGBUILD @@ -10,7 +10,7 @@ license=("MIT") url="http://pypi.python.org/pypi/greenlet" depends=('python2') source=(http://pypi.python.org/packages/source/g/greenlet/greenlet-$pkgver.zip) -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') md5sums=('530a69acebbb0d66eb5abd83523d8272') sha1sums=('1bff62c43e179d3f4866f31a8258a259c82b4803') diff --git a/community/python2-pychm/PKGBUILD b/community/python2-pychm/PKGBUILD index 3b53d9005..c7c4b06ba 100644 --- a/community/python2-pychm/PKGBUILD +++ b/community/python2-pychm/PKGBUILD @@ -8,7 +8,7 @@ pkgname=python2-pychm pkgver=0.8.4 pkgrel=1 pkgdesc="Python bindings for chmlib" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://gnochm.sourceforge.net/" license=('GPL') depends=('chmlib' 'python2') diff --git a/community/python2-pyzmq/PKGBUILD b/community/python2-pyzmq/PKGBUILD index 32fd23136..d0f18eb55 100644 --- a/community/python2-pyzmq/PKGBUILD +++ b/community/python2-pyzmq/PKGBUILD @@ -4,7 +4,7 @@ pkgname=python2-pyzmq pkgver=2.2.0 pkgrel=1 pkgdesc="Python2 bindings for zeromq, written in Cython" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.zeromq.org/bindings:python" license=('LGPL') depends=(zeromq python2) diff --git a/community/python2-virtkey/PKGBUILD b/community/python2-virtkey/PKGBUILD index 237f64857..086355031 100644 --- a/community/python2-virtkey/PKGBUILD +++ b/community/python2-virtkey/PKGBUILD @@ -7,7 +7,7 @@ _pkgname=python-virtkey pkgver=0.60.0 pkgrel=3 pkgdesc="Python extension for emulating keypresses and getting layout information from the X server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/python-virtkey" license=('LGPL') depends=('python2' 'libxtst' 'gtk2') diff --git a/community/qcad/PKGBUILD b/community/qcad/PKGBUILD index 28cacf696..c3da355f9 100644 --- a/community/qcad/PKGBUILD +++ b/community/qcad/PKGBUILD @@ -8,7 +8,7 @@ pkgname=qcad pkgver=2.0.5.0 pkgrel=9 pkgdesc="A 2D CAD package based upon Qt" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ribbonsoft.com/qcad.html" license=('GPL2') depends=('qt3') diff --git a/community/qconf/PKGBUILD b/community/qconf/PKGBUILD index 771a74430..967c18dd4 100644 --- a/community/qconf/PKGBUILD +++ b/community/qconf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qconf pkgver=1.4 pkgrel=2 pkgdesc="QConf allows you to have a nice configure script for your qmake-based project." -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://delta.affinix.com/qconf/" license=('GPL') depends=('qt') diff --git a/community/qgo/PKGBUILD b/community/qgo/PKGBUILD index 88a1c96f0..6d4acf8ba 100644 --- a/community/qgo/PKGBUILD +++ b/community/qgo/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qgo pkgver=1.5.4 pkgrel=5 pkgdesc="Go client and full featured SGF editor" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://qgo.sourceforge.net/" license=('GPL') depends=('qt3' 'libsm') diff --git a/community/qscintilla-qt3/PKGBUILD b/community/qscintilla-qt3/PKGBUILD index 97da30f58..8de84ddb2 100644 --- a/community/qscintilla-qt3/PKGBUILD +++ b/community/qscintilla-qt3/PKGBUILD @@ -7,7 +7,7 @@ pkgname=qscintilla-qt3 pkgver=1.7.1 pkgrel=4 pkgdesc="A port to Qt3 of Neil Hodgson's Scintilla C++ editor class" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.riverbankcomputing.co.uk/software/qscintilla/intro/" license=('GPL2') depends=('qt3') diff --git a/community/qsynergy/PKGBUILD b/community/qsynergy/PKGBUILD index ce7985113..e8a5fb71b 100644 --- a/community/qsynergy/PKGBUILD +++ b/community/qsynergy/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Qt gui for Synergy which lets you remotely control other computers." url="http://www.volker-lanz.de/en/software/qsynergy/" license=(GPL) -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('qt' 'synergy') source=("http://sourceforge.net/projects/$pkgname/files/$pkgver/$pkgname-$pkgver.tar.gz") md5sums=('17d8989668016185b859332aacf9e7df') diff --git a/community/qt4pas/PKGBUILD b/community/qt4pas/PKGBUILD index f8711f222..4b1cd4bb6 100644 --- a/community/qt4pas/PKGBUILD +++ b/community/qt4pas/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qt4pas pkgver=2.5 pkgrel=1 pkgdesc="Free Pascal Qt4 Binding Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://users.telenet.be/Jan.Van.hijfte/qtforfpc/fpcqt4.html" license=('LGPL') depends=('qtwebkit') diff --git a/community/qtcurve-gtk2/PKGBUILD b/community/qtcurve-gtk2/PKGBUILD index 6c8399cb9..7e4d603ad 100644 --- a/community/qtcurve-gtk2/PKGBUILD +++ b/community/qtcurve-gtk2/PKGBUILD @@ -7,7 +7,7 @@ pkgname=qtcurve-gtk2 pkgver=1.8.15 pkgrel=1 pkgdesc="A configurable set of widget styles for KDE and Gtk" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde-look.org/content/show.php?content=40492" license=('GPL') depends=('gtk2') diff --git a/community/qtcurve-kde3/PKGBUILD b/community/qtcurve-kde3/PKGBUILD index f5e057cfb..b5691d7f6 100644 --- a/community/qtcurve-kde3/PKGBUILD +++ b/community/qtcurve-kde3/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qtcurve-kde3 pkgver=1.8.5 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('qtcurve') license=('GPL') pkgdesc='A configurable set of widget styles for KDE and Gtk' diff --git a/community/qtcurve-kde4/PKGBUILD b/community/qtcurve-kde4/PKGBUILD index 2210a507d..0207a58d7 100644 --- a/community/qtcurve-kde4/PKGBUILD +++ b/community/qtcurve-kde4/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qtcurve-kde4 pkgver=1.8.12 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('qtcurve') license=('GPL') pkgdesc='A configurable set of widget styles for KDE and Gtk' diff --git a/community/qtspim/PKGBUILD b/community/qtspim/PKGBUILD index 1769c6e41..1c09b8d3a 100644 --- a/community/qtspim/PKGBUILD +++ b/community/qtspim/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qtspim pkgver=9.1.7 pkgrel=1 pkgdesc="New user interface for spim, a MIPS simulator." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://spimsimulator.sourceforge.net/" license=('BSD') depends=('qt') diff --git a/community/quagga/PKGBUILD b/community/quagga/PKGBUILD index 0e4ead5f6..89d495e05 100644 --- a/community/quagga/PKGBUILD +++ b/community/quagga/PKGBUILD @@ -5,7 +5,7 @@ pkgname=quagga pkgver=0.99.20.1 pkgrel=1 pkgdesc='BGP/OSPF/ISIS/RIP/RIPNG routing daemon suite' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.quagga.net' license=('GPL2') depends=('libcap' 'net-snmp' 'readline' 'ncurses') diff --git a/community/qucs/PKGBUILD b/community/qucs/PKGBUILD index 128762693..9ab19a4c7 100644 --- a/community/qucs/PKGBUILD +++ b/community/qucs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qucs pkgver=0.0.16 pkgrel=2 pkgdesc="An integrated circuit simulator with a graphical user interface" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qucs.sourceforge.net" license=('GPL') depends=('qt3') diff --git a/community/qupzilla/PKGBUILD b/community/qupzilla/PKGBUILD index 0e19921fc..068f33d4e 100644 --- a/community/qupzilla/PKGBUILD +++ b/community/qupzilla/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qupzilla pkgver=1.2.0 pkgrel=1 pkgdesc="Cross-platform QtWebKit browser" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.qupzilla.com/" license=('GPL3') depends=('qtwebkit' 'gtk-update-icon-cache') diff --git a/community/r8168-lts/PKGBUILD b/community/r8168-lts/PKGBUILD index 867bc44b1..7fbd5b276 100644 --- a/community/r8168-lts/PKGBUILD +++ b/community/r8168-lts/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts" url="http://www.realtek.com.tw" license=("GPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glibc' "linux-lts>=3.0" "linux-lts<3.1") makedepends=("linux-lts-headers>=3.0" "linux-lts-headers<3.1") source=(http://r8168.googlecode.com/files/$_pkgname-$pkgver.tar.bz2) diff --git a/community/ragel/PKGBUILD b/community/ragel/PKGBUILD index fbff09e27..f904348bc 100644 --- a/community/ragel/PKGBUILD +++ b/community/ragel/PKGBUILD @@ -10,7 +10,7 @@ pkgname=ragel pkgver=6.7 pkgrel=1 pkgdesc="Compiles finite state machines from regular languages into executable C, C++, Objective-C, or D code." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.complang.org/ragel/" license=('GPL') depends=('gcc-libs') diff --git a/community/regexxer/PKGBUILD b/community/regexxer/PKGBUILD index c570f654d..9beef2635 100644 --- a/community/regexxer/PKGBUILD +++ b/community/regexxer/PKGBUILD @@ -5,7 +5,7 @@ pkgname=regexxer pkgver=0.10 pkgrel=3 pkgdesc="Interactive search and replace tool for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://regexxer.sourceforge.net/" license=('GPL') depends=('gtksourceviewmm' 'dconf' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/ruby-ncurses/PKGBUILD b/community/ruby-ncurses/PKGBUILD index f3434fe32..bd3664892 100644 --- a/community/ruby-ncurses/PKGBUILD +++ b/community/ruby-ncurses/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ruby-ncurses pkgver=1.3.1 pkgrel=3 pkgdesc="Module for interactive text console applications (ncurses)" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://ncurses-ruby.berlios.de/" license=('GPL') depends=('ruby') diff --git a/community/rxvt/PKGBUILD b/community/rxvt/PKGBUILD index 8ca75017c..e8c3a8f62 100644 --- a/community/rxvt/PKGBUILD +++ b/community/rxvt/PKGBUILD @@ -10,7 +10,7 @@ pkgname=rxvt pkgver=2.7.10 pkgrel=6 pkgdesc='A colour vt102 terminal emulator' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://rxvt.sourceforge.net/' license=('GPL') depends=('libx11') diff --git a/community/rygel/PKGBUILD b/community/rygel/PKGBUILD index 3ae85986e..04e0a384a 100644 --- a/community/rygel/PKGBUILD +++ b/community/rygel/PKGBUILD @@ -5,7 +5,7 @@ pkgname=rygel pkgver=0.14.1 pkgrel=1 pkgdesc="UPnP AV MediaServer and MediaRenderer that allows you to easily share audio, video and pictures, and control of media player on your home network" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/Rygel" license=('LGPL') depends=('gupnp-av' 'gupnp-dlna' 'libgee' 'gtk3' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/sdcv/PKGBUILD b/community/sdcv/PKGBUILD index dd1d87971..72f54e6c0 100644 --- a/community/sdcv/PKGBUILD +++ b/community/sdcv/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sdcv pkgver=0.4.2 pkgrel=6 pkgdesc="StarDict Console Version" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sdcv.sourceforge.net/" license=('GPL') depends=('glib2' 'readline' 'zlib') diff --git a/community/seahorse-nautilus/PKGBUILD b/community/seahorse-nautilus/PKGBUILD index 884840d1f..dae741987 100644 --- a/community/seahorse-nautilus/PKGBUILD +++ b/community/seahorse-nautilus/PKGBUILD @@ -5,7 +5,7 @@ pkgname=seahorse-nautilus pkgver=3.4.0 pkgrel=1 pkgdesc="PGP encryption and signing for nautilus" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://git.gnome.org/browse/seahorse-nautilus/" license=('GPL') depends=('gconf' 'libcryptui' 'nautilus') diff --git a/community/sensors-applet/PKGBUILD b/community/sensors-applet/PKGBUILD index 3c9da15c1..1a19269ab 100644 --- a/community/sensors-applet/PKGBUILD +++ b/community/sensors-applet/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sensors-applet pkgver=3.0.0 pkgrel=2 pkgdesc="Applet for GNOME Panel to display readings from hardware sensors, including CPU temperature, fan speeds and voltage readings" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sensors-applet.sourceforge.net/" license=('GPL') depends=('gnome-panel' 'libatasmart' 'lm_sensors' 'xdg-utils') diff --git a/community/sfk/PKGBUILD b/community/sfk/PKGBUILD index 10e7381bf..92a5ef187 100644 --- a/community/sfk/PKGBUILD +++ b/community/sfk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sfk pkgver=1.6.5 pkgrel=1 pkgdesc='Swiss File Knife - A Command Line Tools Collection' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://stahlforce.com/dev/?tool=sfk' license=('custom: BSD') depends=('gcc-libs') diff --git a/community/simgear/PKGBUILD b/community/simgear/PKGBUILD index ae67781d2..e26063d87 100644 --- a/community/simgear/PKGBUILD +++ b/community/simgear/PKGBUILD @@ -7,7 +7,7 @@ pkgname=simgear pkgver=2.6.0 pkgrel=2 pkgdesc="A set of open-source libraries designed to be used as building blocks for quickly assembling 3d simulations, games, and visualization applications." -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) depends=('glut' 'freealut' 'plib' 'openscenegraph') makedepends=('boost' 'cmake') license=("GPL") diff --git a/community/spacefm/PKGBUILD b/community/spacefm/PKGBUILD index ca7635fde..b161a78bb 100644 --- a/community/spacefm/PKGBUILD +++ b/community/spacefm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=spacefm pkgver=0.7.7 pkgrel=1 pkgdesc="A multi-panel tabbed file manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ignorantguru.github.com/spacefm/" license=('GPL2') install=$pkgname.install diff --git a/community/spectrwm/PKGBUILD b/community/spectrwm/PKGBUILD index b97b60386..7eb5e367b 100644 --- a/community/spectrwm/PKGBUILD +++ b/community/spectrwm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=spectrwm pkgver=1.0.0 pkgrel=3 pkgdesc="A minimalistic dynamic tiling window manager that tries to stay out of the way." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.spectrwm.org" license=('custom:ISC') depends=('dmenu' 'libxrandr' 'libxtst' 'profont') diff --git a/community/sshpass/PKGBUILD b/community/sshpass/PKGBUILD index 3f18e8e76..ad071a7b6 100644 --- a/community/sshpass/PKGBUILD +++ b/community/sshpass/PKGBUILD @@ -7,7 +7,7 @@ pkgname=sshpass pkgver=1.05 pkgrel=1 pkgdesc='Fool ssh into accepting an interactive password non-interactively' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://sourceforge.net/projects/sshpass/' license=('GPL') depends=('openssh') diff --git a/community/start-stop-daemon/PKGBUILD b/community/start-stop-daemon/PKGBUILD index a9ba3f285..a884da84b 100644 --- a/community/start-stop-daemon/PKGBUILD +++ b/community/start-stop-daemon/PKGBUILD @@ -7,7 +7,7 @@ pkgname=start-stop-daemon pkgver=1.15.8.12 pkgrel=1 pkgdesc='Start and stop system daemon programs' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url='http://packages.qa.debian.org/d/dpkg.html' depends=('glibc') diff --git a/community/sylpheed/PKGBUILD b/community/sylpheed/PKGBUILD index e9bb68bf9..860005633 100644 --- a/community/sylpheed/PKGBUILD +++ b/community/sylpheed/PKGBUILD @@ -7,7 +7,7 @@ pkgname=sylpheed pkgver=3.1.4 pkgrel=1 pkgdesc="Lightweight and user-friendly e-mail client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sylpheed.sraoss.jp/en/" license=('GPL') depends=('gpgme' 'gtkspell' 'desktop-file-utils') diff --git a/community/sysvbanner/PKGBUILD b/community/sysvbanner/PKGBUILD index 44304f42a..dbaaa5543 100644 --- a/community/sysvbanner/PKGBUILD +++ b/community/sysvbanner/PKGBUILD @@ -4,7 +4,7 @@ pkgname=sysvbanner pkgver=1.0.15 pkgrel=1 pkgdesc='System-V banner clone' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://packages.qa.debian.org/s/sysvbanner.html' conflicts=('bsd-games') license=('custom') diff --git a/community/talkfilters/PKGBUILD b/community/talkfilters/PKGBUILD index 8d8917ac3..3ff55d919 100644 --- a/community/talkfilters/PKGBUILD +++ b/community/talkfilters/PKGBUILD @@ -4,7 +4,7 @@ pkgname=talkfilters pkgver=2.3.8 pkgrel=2 pkgdesc="Filters to translate text into dialects that GNU finds funny" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.hyperrealm.com/main.php?s=talkfilters" options=('!libtool') depends=('glibc') diff --git a/community/tcc/PKGBUILD b/community/tcc/PKGBUILD index c5cc9d845..8ed553e65 100644 --- a/community/tcc/PKGBUILD +++ b/community/tcc/PKGBUILD @@ -9,7 +9,7 @@ pkgname=tcc pkgver=0.9.25 pkgrel=2 pkgdesc="Tiny C Compiler" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://bellard.org/tcc/" license=('LGPL') makedepends=('gcc') diff --git a/community/tightvnc/PKGBUILD b/community/tightvnc/PKGBUILD index 9d680a1ae..0646875b3 100644 --- a/community/tightvnc/PKGBUILD +++ b/community/tightvnc/PKGBUILD @@ -7,7 +7,7 @@ pkgname=tightvnc pkgver=1.3.10 pkgrel=8 pkgdesc="VNC Unix server && viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.tightvnc.com" depends=('libjpeg' 'zlib' 'libxaw' 'libxp' 'xorg-xauth' 'perl') diff --git a/community/tinyxml/PKGBUILD b/community/tinyxml/PKGBUILD index 4c93beb72..9826a68d9 100644 --- a/community/tinyxml/PKGBUILD +++ b/community/tinyxml/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2.6.2 pkgrel=1 pkgdesc="A simple, small, C++ XML parser that can be easily integrated into other programs." url='http://www.grinninglizard.com/tinyxml/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('zlib') depends=('gcc-libs') source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}_${pkgver//./_}.tar.gz" diff --git a/community/ubuntuone-client-gnome/PKGBUILD b/community/ubuntuone-client-gnome/PKGBUILD index 6e277f729..c6b8a5ff8 100644 --- a/community/ubuntuone-client-gnome/PKGBUILD +++ b/community/ubuntuone-client-gnome/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ubuntuone-client-gnome pkgver=3.0.1 pkgrel=1 pkgdesc="Some plug-ins, extensions, and data for integrating Ubuntu One features in some core parts of GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/ubuntuone-client-gnome" license=('GPL') depends=('nautilus' 'evolution-data-server' 'ubuntuone-client') diff --git a/community/ubuntuone-client/PKGBUILD b/community/ubuntuone-client/PKGBUILD index 6f849987f..c6140ac08 100644 --- a/community/ubuntuone-client/PKGBUILD +++ b/community/ubuntuone-client/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ubuntuone-client pkgver=3.0.1 pkgrel=3 pkgdesc="Ubuntu One helps you store, sync and share files between your computers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/ubuntuone-client" license=('GPL') depends=('dbus-glib' 'python2-configglue' 'python2-distribute' 'python2-gobject' 'libnotify' 'python2-gobject2' 'python2-pyinotify' 'python-simplejson' 'ubuntu-sso-client' 'python2-ubuntuone-storageprotocol' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/ucarp/PKGBUILD b/community/ucarp/PKGBUILD index 90158ebc1..a1996e1d6 100644 --- a/community/ucarp/PKGBUILD +++ b/community/ucarp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ucarp pkgver=1.5.2 pkgrel=3 pkgdesc='UCARP is a portable implementation of the CARP protocol' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.ucarp.org/project/ucarp' license=('GPL2') depends=('libpcap') diff --git a/community/uget/PKGBUILD b/community/uget/PKGBUILD index 73c1ba391..41876c618 100644 --- a/community/uget/PKGBUILD +++ b/community/uget/PKGBUILD @@ -5,7 +5,7 @@ pkgname=uget pkgver=1.8.2 pkgrel=1 pkgdesc="GTK+ download manager featuring download classification and HTML import" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://urlget.sourceforge.net/" license=('LGPL') depends=('libnotify' 'gtk3' 'gstreamer0.10' 'curl' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/ulogd/PKGBUILD b/community/ulogd/PKGBUILD index b002d8e49..1a16aca0c 100644 --- a/community/ulogd/PKGBUILD +++ b/community/ulogd/PKGBUILD @@ -8,7 +8,7 @@ pkgname=ulogd pkgver=1.24 pkgrel=8 pkgdesc='Userspace Packet Logging for netfilter' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.netfilter.org/projects/ulogd/index.html' license=('GPL2') makedepends=('mysql' 'postgresql' 'sqlite3' 'libpcap') diff --git a/community/unhide/PKGBUILD b/community/unhide/PKGBUILD index a8b35e112..598623562 100644 --- a/community/unhide/PKGBUILD +++ b/community/unhide/PKGBUILD @@ -5,7 +5,7 @@ pkgname=unhide pkgver=20110113 pkgrel=3 pkgdesc='A forensic tool to find processes hidden by rootkits, LKMs or by other techniques.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.unhide-forensics.info/' license=('GPL3') source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver}.tgz") diff --git a/community/uriparser/PKGBUILD b/community/uriparser/PKGBUILD index 8f78d72e2..a1433e81b 100644 --- a/community/uriparser/PKGBUILD +++ b/community/uriparser/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="uriparser is a strictly RFC 3986 compliant URI parsing library. uripars url="http://sourceforge.net/projects/uriparser/" depends=(glibc) makedepends=(doxygen) -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=("custom") source=(http://downloads.sourceforge.net/sourceforge/uriparser/$pkgname-$pkgver.tar.bz2) md5sums=('4f4349085fe5de33bcae8d0f26649593') diff --git a/community/vdrift/PKGBUILD b/community/vdrift/PKGBUILD index a85ea7973..489feda28 100644 --- a/community/vdrift/PKGBUILD +++ b/community/vdrift/PKGBUILD @@ -7,7 +7,7 @@ pkgname=vdrift pkgver=2011.10.22 pkgrel=6 pkgdesc="Open source driving simulation made with drift racing in mind" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://vdrift.net/" license=('GPL') depends=('bullet' 'curl' 'sdl_gfx' 'sdl_image' 'glew' 'libvorbis' 'vdrift-data') diff --git a/community/vlan/PKGBUILD b/community/vlan/PKGBUILD index 8cdaddd47..11ca16a78 100644 --- a/community/vlan/PKGBUILD +++ b/community/vlan/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vlan pkgver=1.9 pkgrel=1 pkgdesc='Virtual LAN configuration utility' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.candelatech.com/~greear/vlan.html' license=('GPL') source=("http://www.candelatech.com/~greear/vlan/vlan.${pkgver}.tar.gz") diff --git a/community/volumeicon/PKGBUILD b/community/volumeicon/PKGBUILD index 574ebfbde..24abc2b05 100644 --- a/community/volumeicon/PKGBUILD +++ b/community/volumeicon/PKGBUILD @@ -6,7 +6,7 @@ pkgname=volumeicon pkgver=0.4.6 pkgrel=4 pkgdesc="Volume control for your system tray" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://softwarebakery.com/maato/volumeicon.html" license=('GPL3') depends=('gtk2>=2.16.0' 'alsa-lib' 'libnotify') diff --git a/community/vyqchat/PKGBUILD b/community/vyqchat/PKGBUILD index 9e8a0dc5a..fc504490d 100644 --- a/community/vyqchat/PKGBUILD +++ b/community/vyqchat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vyqchat pkgver=0.2.8 pkgrel=4 pkgdesc="vypress compatible qt chat (can work without server)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://linux.bydg.org/~yogin/" license=('GPL') depends=('qt3' 'libao' 'libxi') diff --git a/community/wesnoth/PKGBUILD b/community/wesnoth/PKGBUILD index 2ff3f497d..7b1e090f6 100644 --- a/community/wesnoth/PKGBUILD +++ b/community/wesnoth/PKGBUILD @@ -9,7 +9,7 @@ pkgname=wesnoth pkgver=1.10.3 pkgrel=1 pkgdesc="A turn-based strategy game on a fantasy world" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.wesnoth.org/" depends=('sdl_ttf' 'sdl_net' 'sdl_mixer' 'sdl_image' 'fribidi' 'boost-libs' 'pango' 'lua' "wesnoth-data" 'dbus-core' 'python2') diff --git a/community/wings3d/PKGBUILD b/community/wings3d/PKGBUILD index 3fa7ea7a3..884ecf115 100644 --- a/community/wings3d/PKGBUILD +++ b/community/wings3d/PKGBUILD @@ -7,7 +7,7 @@ _pkgname=wings pkgver=1.4.1 pkgrel=8 pkgdesc="3D modeling program" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://www.wings3d.com/" license=('GPL') depends=('esdl' 'bash' 'desktop-file-utils' 'cl') diff --git a/community/wxcam/PKGBUILD b/community/wxcam/PKGBUILD index 4364dd27a..974971d91 100644 --- a/community/wxcam/PKGBUILD +++ b/community/wxcam/PKGBUILD @@ -2,7 +2,7 @@ pkgname=wxcam pkgver=1.1 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=(GPL) pkgdesc="Webcam application for linux" # version of CImg library needed to compile wxcam - diff --git a/community/xautomation/PKGBUILD b/community/xautomation/PKGBUILD index 39472db42..b295b6e28 100644 --- a/community/xautomation/PKGBUILD +++ b/community/xautomation/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.05 pkgrel=2 pkgdesc='Controls X from the command line and does "visual scraping".' url='http://hoopajoo.net/projects/xautomation.html' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libpng' 'libxtst') source=("http://hoopajoo.net/static/projects/${pkgname}-${pkgver}.tar.gz" diff --git a/community/xml2/PKGBUILD b/community/xml2/PKGBUILD index ab1fdd7fc..409334ff4 100644 --- a/community/xml2/PKGBUILD +++ b/community/xml2/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xml2 pkgver=0.4 pkgrel=2 pkgdesc="XML/Unix Processing Tools to convert XML and HTML to and from a line-oriented format more amenable to processing by classic Unix pipeline processing tools" -arch=("i686" "x86_64") +arch=("i686" "x86_64" "mips64el") url="http://www.ofb.net/~egnor/xml2/" license=("GPL") depends=("libxml2") diff --git a/community/xmlstarlet/PKGBUILD b/community/xmlstarlet/PKGBUILD index b81f4a552..74067d1a6 100644 --- a/community/xmlstarlet/PKGBUILD +++ b/community/xmlstarlet/PKGBUILD @@ -8,7 +8,7 @@ pkgname=xmlstarlet pkgver=1.3.1 pkgrel=1 pkgdesc="A set of tools to transform, query, validate, and edit XML documents" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xmlstar.sourceforge.net/" license=('MIT') depends=('libxslt>=1.1.9') diff --git a/community/xonotic/PKGBUILD b/community/xonotic/PKGBUILD index 1aa1927d9..e32186003 100644 --- a/community/xonotic/PKGBUILD +++ b/community/xonotic/PKGBUILD @@ -4,7 +4,7 @@ pkgname=xonotic pkgver=0.6.0 pkgrel=2 pkgdesc="A free, fast-paced crossplatform first-person shooter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xonotic.org" license=('GPL') depends=('alsa-lib' 'curl' 'libjpeg>=8' 'libmodplug' 'libvorbis' 'libxpm' 'libxxf86dga' 'libxxf86vm' 'sdl' 'libpng>=1.4.0' 'xonotic-data') diff --git a/community/yaml-cpp/PKGBUILD b/community/yaml-cpp/PKGBUILD index c14cb52c8..ee79f87fb 100644 --- a/community/yaml-cpp/PKGBUILD +++ b/community/yaml-cpp/PKGBUILD @@ -5,7 +5,7 @@ pkgver=0.3.0 pkgrel=1 pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec" url="http://code.google.com/p/yaml-cpp/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('MIT') makedepends=('cmake') source=(http://yaml-cpp.googlecode.com/files/$pkgname-$pkgver.tar.gz) diff --git a/community/zathura-pdf-poppler/PKGBUILD b/community/zathura-pdf-poppler/PKGBUILD index e35f9315e..25c1222d3 100644 --- a/community/zathura-pdf-poppler/PKGBUILD +++ b/community/zathura-pdf-poppler/PKGBUILD @@ -6,7 +6,7 @@ pkgname=zathura-pdf-poppler pkgver=0.1.1 pkgrel=2 pkgdesc="Adds pdf support to zathura by using the poppler engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://pwmt.org/projects/zathura/plugins/zathura-pdf-poppler/" license=('custom') depends=('poppler-glib' 'zathura') diff --git a/community/zathura-ps/PKGBUILD b/community/zathura-ps/PKGBUILD index 7be83cdf7..1eb3740ee 100644 --- a/community/zathura-ps/PKGBUILD +++ b/community/zathura-ps/PKGBUILD @@ -6,7 +6,7 @@ pkgname=zathura-ps pkgver=0.1.0 pkgrel=2 pkgdesc="Adds ps support to zathura by using the libspectre library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://pwmt.org/projects/zathura/plugins/zathura-ps/" license=('custom') depends=('libspectre' 'zathura') diff --git a/community/zynaddsubfx/PKGBUILD b/community/zynaddsubfx/PKGBUILD index 5469f3265..3d83018fa 100644 --- a/community/zynaddsubfx/PKGBUILD +++ b/community/zynaddsubfx/PKGBUILD @@ -8,7 +8,7 @@ pkgname=zynaddsubfx pkgver=2.4.2 pkgrel=1 pkgdesc="Opensource software synthesizer capable of making a countless number of instruments." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://zynaddsubfx.sourceforge.net" license=('GPL') depends=('fltk' 'libgl' 'fftw' 'lash' 'mxml') diff --git a/extra/anjuta-extras/PKGBUILD b/extra/anjuta-extras/PKGBUILD index 1fee6da87..2444a97d6 100644 --- a/extra/anjuta-extras/PKGBUILD +++ b/extra/anjuta-extras/PKGBUILD @@ -6,7 +6,7 @@ pkgname=anjuta-extras pkgver=3.4.0 pkgrel=2 pkgdesc="Anjuta Integrated Development Environment extra plugins" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('anjuta') makedepends=('intltool' 'gnome-doc-utils') diff --git a/extra/appmenu-qt/PKGBUILD b/extra/appmenu-qt/PKGBUILD index 8a18170b7..079fff115 100644 --- a/extra/appmenu-qt/PKGBUILD +++ b/extra/appmenu-qt/PKGBUILD @@ -5,7 +5,7 @@ pkgname=appmenu-qt pkgver=0.2.6 pkgrel=1 pkgdesc="Allows Qt applications to export menus over DBus to a menu applet" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='https://launchpad.net/appmenu-qt' license=('GPL') depends=('libdbusmenu-qt') diff --git a/extra/bin86/PKGBUILD b/extra/bin86/PKGBUILD index a5dbd1c25..bcb85cbf0 100644 --- a/extra/bin86/PKGBUILD +++ b/extra/bin86/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bin86 pkgver=0.16.18 pkgrel=3 pkgdesc="A complete 8086 assembler and loader" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.debath.co.uk/" depends=('glibc') diff --git a/extra/bootchart/PKGBUILD b/extra/bootchart/PKGBUILD index 9a48b1b01..bbfec3844 100644 --- a/extra/bootchart/PKGBUILD +++ b/extra/bootchart/PKGBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A 'startup' graphing tool" url="https://meego.gitorious.org/meego-developer-tools/bootchart" license=('GPL2') -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) depends=('glibc') source=("http://foo-projects.org/~sofar/${pkgname}/${pkgname}-${pkgver}.tar.gz" 'build.patch') diff --git a/extra/burp/PKGBUILD b/extra/burp/PKGBUILD index 4851bf32c..f4bfea4a6 100644 --- a/extra/burp/PKGBUILD +++ b/extra/burp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=burp pkgver=1.6.8 pkgrel=1 pkgdesc="A simple AUR uploader" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://github.com/falconindy/burp" license=('GPL') depends=('glibc' 'curl') diff --git a/extra/calligra/PKGBUILD b/extra/calligra/PKGBUILD index 3eca5fab7..ca1e15d2d 100644 --- a/extra/calligra/PKGBUILD +++ b/extra/calligra/PKGBUILD @@ -24,7 +24,7 @@ pkgname=('calligra-filters' 'calligra-flow') pkgver=2.4.2 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.calligra-suite.org/' license=('FDL1.2' 'GPL2' 'LGPL') makedepends=('cmake' 'automoc4' 'boost ' 'eigen2' diff --git a/extra/caribou/PKGBUILD b/extra/caribou/PKGBUILD index 83b4b65f6..21751d929 100644 --- a/extra/caribou/PKGBUILD +++ b/extra/caribou/PKGBUILD @@ -6,7 +6,7 @@ pkgname=caribou pkgver=0.4.2 pkgrel=1 pkgdesc="A text entry and UI navigation application being developed as an alternative to the Gnome On-screen Keyboard." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/Caribou" license=('LGPL') depends=('at-spi2-atk' 'pyatspi' 'dbus-python' 'python2-gobject' 'gtk3' 'libxklavier' 'libgee' 'clutter' 'dconf') diff --git a/extra/ccrtp/PKGBUILD b/extra/ccrtp/PKGBUILD index 5901e29ed..273657f28 100644 --- a/extra/ccrtp/PKGBUILD +++ b/extra/ccrtp/PKGBUILD @@ -9,7 +9,7 @@ pkgname=ccrtp pkgver=2.0.3 pkgrel=2 pkgdesc="An implementation of RTP, the real-time transport protocol from the IETF" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/ccrtp/" license=('GPL' 'custom') depends=('ucommon' 'libgcrypt') diff --git a/extra/cups/PKGBUILD b/extra/cups/PKGBUILD index 7a7ec85d7..e292b2c4a 100644 --- a/extra/cups/PKGBUILD +++ b/extra/cups/PKGBUILD @@ -5,7 +5,7 @@ pkgbase="cups" pkgname=('libcups' 'cups') pkgver=1.5.3 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.cups.org/" makedepends=('libtiff>=4.0.0' 'libpng>=1.5.7' 'acl' 'openslp' 'pam' 'xdg-utils' 'krb5' 'gnutls>=2.8.3' 'cups-filters' 'bc' diff --git a/extra/dmidecode/PKGBUILD b/extra/dmidecode/PKGBUILD index 6f5e9ceba..0fa067a16 100644 --- a/extra/dmidecode/PKGBUILD +++ b/extra/dmidecode/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dmidecode pkgver=2.11 pkgrel=2 pkgdesc="Desktop Management Interface table related utilities" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nongnu.org/dmidecode" license=('GPL') depends=('glibc') diff --git a/extra/efibootmgr/PKGBUILD b/extra/efibootmgr/PKGBUILD index 0fd7bb248..9d8a8b145 100755 --- a/extra/efibootmgr/PKGBUILD +++ b/extra/efibootmgr/PKGBUILD @@ -7,7 +7,7 @@ pkgname=efibootmgr pkgver=0.5.4 pkgrel=3 pkgdesc="Tool to modify UEFI Firmware Boot Manager Variables." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://linux.dell.com/efibootmgr/" license=('GPL2') depends=('zlib' 'pciutils') diff --git a/extra/evolution-ews/PKGBUILD b/extra/evolution-ews/PKGBUILD index 4ecbd6dfe..b4fd429be 100644 --- a/extra/evolution-ews/PKGBUILD +++ b/extra/evolution-ews/PKGBUILD @@ -5,7 +5,7 @@ pkgname=evolution-ews pkgver=3.4.2 pkgrel=1 pkgdesc="MS Exchange integration through Exchange Web Services" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL2.1') url="http://www.gnome.org" depends=('evolution-data-server' 'gtkhtml4' 'gnome-desktop') diff --git a/extra/evolution-groupwise/PKGBUILD b/extra/evolution-groupwise/PKGBUILD index d03a37c2c..4f3561a61 100644 --- a/extra/evolution-groupwise/PKGBUILD +++ b/extra/evolution-groupwise/PKGBUILD @@ -6,7 +6,7 @@ pkgname=evolution-groupwise pkgver=3.4.2 pkgrel=1 pkgdesc="GroupWise connector for evolution" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://projects.gnome.org/evolution/" license=(LGPL) depends=('evolution-data-server' 'gtkhtml4') diff --git a/extra/fprintd/PKGBUILD b/extra/fprintd/PKGBUILD index 292af2d28..d47fc56e6 100644 --- a/extra/fprintd/PKGBUILD +++ b/extra/fprintd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fprintd pkgver=0.4.1 pkgrel=4 pkgdesc="D-Bus service to access fingerprint readers" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.freedesktop.org/wiki/Software/fprint/fprintd" license=(GPL) depends=(libfprint dbus-glib polkit) diff --git a/extra/gettext-mono/PKGBUILD b/extra/gettext-mono/PKGBUILD index 9e89644a8..5741a1640 100644 --- a/extra/gettext-mono/PKGBUILD +++ b/extra/gettext-mono/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gettext-mono pkgver=0.18.1.1 pkgrel=1 pkgdesc="mono assemblies for GNU internationalization library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/gettext" license=('GPL') depends=('mono>=2.10.6') diff --git a/extra/ggz-gtk-client/PKGBUILD b/extra/ggz-gtk-client/PKGBUILD index 4f886abb8..a637ad5e6 100644 --- a/extra/ggz-gtk-client/PKGBUILD +++ b/extra/ggz-gtk-client/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ggz-gtk-client pkgver=0.0.14.1 pkgrel=5 pkgdesc="GGZ Gaming Zone GTK+ client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ggzgamingzone.org/" license=('GPL') depends=('gtk2' 'ggz-client-libs') diff --git a/extra/gnome-desktop-sharp/PKGBUILD b/extra/gnome-desktop-sharp/PKGBUILD index 3a6309dc5..8342241c1 100644 --- a/extra/gnome-desktop-sharp/PKGBUILD +++ b/extra/gnome-desktop-sharp/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=gnome-desktop-sharp pkgname=('gnome-desktop-sharp' 'libgnome-desktop-sharp' 'gtkhtml-sharp' 'gtksourceview2-sharp' 'rsvg2-sharp' 'vte-sharp' 'wnck-sharp') pkgver=2.26.0 pkgrel=8 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=(LGPL) url="http://gtk-sharp.sourceforge.net" makedepends=('gnome-sharp' 'gnome-desktop2' 'vte' 'librsvg' 'libwnck' 'gtkhtml' 'gtksourceview2' 'monodoc') diff --git a/extra/gnome-dictionary/PKGBUILD b/extra/gnome-dictionary/PKGBUILD index 86a252322..83c6cf058 100644 --- a/extra/gnome-dictionary/PKGBUILD +++ b/extra/gnome-dictionary/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gnome-dictionary pkgver=3.4.0 pkgrel=1 pkgdesc="Look up words in dictionary sources" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://gnome.org" license=('GPL2') depends=('dconf' 'gtk3') diff --git a/extra/gnome-font-viewer/PKGBUILD b/extra/gnome-font-viewer/PKGBUILD index 9a94d6a74..c14a454e8 100644 --- a/extra/gnome-font-viewer/PKGBUILD +++ b/extra/gnome-font-viewer/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-font-viewer pkgver=3.4.0 pkgrel=1 pkgdesc="GNOME font viewer and thumbnailer" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL') depends=('gtk3' 'desktop-file-utils') makedepends=('intltool') diff --git a/extra/gnome-keyring-sharp/PKGBUILD b/extra/gnome-keyring-sharp/PKGBUILD index 37bd25238..b4943ebe1 100644 --- a/extra/gnome-keyring-sharp/PKGBUILD +++ b/extra/gnome-keyring-sharp/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gnome-keyring-sharp pkgver=1.0.2 pkgrel=4 pkgdesc="A fully managed implementation of libgnome-keyring" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.mono-project.com/Libraries" license=('custom') depends=('libgnome-keyring' 'gtk-sharp-2') diff --git a/extra/gnome-screenshot/PKGBUILD b/extra/gnome-screenshot/PKGBUILD index 904764905..e524d17c7 100644 --- a/extra/gnome-screenshot/PKGBUILD +++ b/extra/gnome-screenshot/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-screenshot pkgver=3.4.1 pkgrel=1 pkgdesc="Take pictures of your screen" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://gnome.org" license=('GPL2') depends=('dconf' 'gtk3' 'libcanberra') diff --git a/extra/gnome-search-tool/PKGBUILD b/extra/gnome-search-tool/PKGBUILD index 7cbd3d7ef..b32b96178 100644 --- a/extra/gnome-search-tool/PKGBUILD +++ b/extra/gnome-search-tool/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-search-tool pkgver=3.4.0 pkgrel=1 pkgdesc="Utility to search for files" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://gnome.org" license=('GPL2') depends=('gconf' 'gtk3' 'libsm') diff --git a/extra/gnome-sharp/PKGBUILD b/extra/gnome-sharp/PKGBUILD index 33518bbfe..a6ebd54f0 100644 --- a/extra/gnome-sharp/PKGBUILD +++ b/extra/gnome-sharp/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=gnome-sharp pkgname=('gnome-sharp' 'art-sharp' 'gconf-sharp' 'gconf-sharp-peditors' 'libgnome-sharp' 'gnome-vfs-sharp') pkgver=2.24.2 pkgrel=2 -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=(LGPL) url="http://gtk-sharp.sourceforge.net" makedepends=('gtk-sharp-2' 'libgnomeui' 'monodoc') diff --git a/extra/gnu-efi/PKGBUILD b/extra/gnu-efi/PKGBUILD index 35e433aaf..ee69b5066 100644 --- a/extra/gnu-efi/PKGBUILD +++ b/extra/gnu-efi/PKGBUILD @@ -12,7 +12,7 @@ pkgrel=1 pkgdesc="Library for building UEFI Applications using GNU toolchain" url="http://sourceforge.net/projects/gnu-efi/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=() depends=('pciutils') source=("http://download.sourceforge.net/gnu-efi/gnu-efi_${pkgver}.orig.tar.gz") diff --git a/extra/grilo-plugins/PKGBUILD b/extra/grilo-plugins/PKGBUILD index d248642f9..b6cb37a16 100644 --- a/extra/grilo-plugins/PKGBUILD +++ b/extra/grilo-plugins/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.1.18 pkgrel=3 pkgdesc="Plugins for Grilo" url="http://www.gnome.org" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('grilo') makedepends=('gupnp-av' 'libgdata' 'libquvi' 'sqlite3' 'gmime' 'libgcrypt' diff --git a/extra/gtk-sharp-2/PKGBUILD b/extra/gtk-sharp-2/PKGBUILD index 7adbebf17..7cec273f6 100644 --- a/extra/gtk-sharp-2/PKGBUILD +++ b/extra/gtk-sharp-2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gtk-sharp-2 pkgver=2.12.11 pkgrel=1 pkgdesc="gtk2 bindings for C#" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('LGPL') url="http://gtk-sharp.sourceforge.net" depends=('mono' 'libglade' 'gtk2') diff --git a/extra/gupnp-av/PKGBUILD b/extra/gupnp-av/PKGBUILD index 97ea02440..91109b346 100644 --- a/extra/gupnp-av/PKGBUILD +++ b/extra/gupnp-av/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gupnp-av pkgver=0.10.2 pkgrel=1 pkgdesc="Library to ease handling and implementation of UPnP A/V profiles" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gupnp.org/" license=('LGPL') depends=('gupnp') diff --git a/extra/gupnp-igd/PKGBUILD b/extra/gupnp-igd/PKGBUILD index 8e08e3a17..3d936b173 100644 --- a/extra/gupnp-igd/PKGBUILD +++ b/extra/gupnp-igd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gupnp-igd pkgver=0.2.1 pkgrel=3 pkgdesc="A library to handle UPnP IGD port mapping" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gupnp.org" license=('LGPL') depends=('gupnp' 'python2-gobject2') diff --git a/extra/gupnp/PKGBUILD b/extra/gupnp/PKGBUILD index 6b18c0279..6040fee81 100644 --- a/extra/gupnp/PKGBUILD +++ b/extra/gupnp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gupnp pkgver=0.18.2 pkgrel=1 pkgdesc="An object-oriented UPNP framework" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gupnp.org/" license=('LGPL') depends=('gssdp') diff --git a/extra/haskell-random/PKGBUILD b/extra/haskell-random/PKGBUILD index 3b929c3d6..c5c068217 100644 --- a/extra/haskell-random/PKGBUILD +++ b/extra/haskell-random/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A basic random number generation library" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.4.1' 'sh') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) install=${pkgname}.install diff --git a/extra/herqq/PKGBUILD b/extra/herqq/PKGBUILD index 98f705a1f..ccb97cb0e 100644 --- a/extra/herqq/PKGBUILD +++ b/extra/herqq/PKGBUILD @@ -5,7 +5,7 @@ pkgname=herqq pkgver=1.0.0 pkgrel=1 pkgdesc="A software library for building UPnP devices (HUPnP)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.herqq.org/" license=('GPL') depends=('qt') diff --git a/extra/hpoj/PKGBUILD b/extra/hpoj/PKGBUILD index bedf7127b..26d4e4876 100644 --- a/extra/hpoj/PKGBUILD +++ b/extra/hpoj/PKGBUILD @@ -6,7 +6,7 @@ pkgname=hpoj pkgver=0.91 pkgrel=17 pkgdesc="Hewlett-Packard OfficeJet, PSC, LaserJet, and PhotoSmart printer multi-function peripherals (MFPs) drivers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hpoj.sourceforge.net" license=('GPL' 'custom') depends=('perl' 'libusb-compat' 'net-snmp' 'hplip>=1.7.2') diff --git a/extra/icedtea-web-java7/PKGBUILD b/extra/icedtea-web-java7/PKGBUILD index b12233bbb..55bf33acf 100644 --- a/extra/icedtea-web-java7/PKGBUILD +++ b/extra/icedtea-web-java7/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=icedtea-web-java7 pkgname=('icedtea-web-java7' 'icedtea-web-java7-doc') pkgver=1.2 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://icedtea.classpath.org/wiki/IcedTea-Web" license=('GPL2') makedepends=('jdk7-openjdk' 'zip' 'gtk2' 'libxtst' 'npapi-sdk' 'rhino' 'junit') diff --git a/extra/isapnptools/PKGBUILD b/extra/isapnptools/PKGBUILD index 56d573eb5..1d8c77b04 100644 --- a/extra/isapnptools/PKGBUILD +++ b/extra/isapnptools/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=3 pkgdesc="Allow ISA Plug-And-Play devices to be configured on a Linux machine" url="http://www.roestock.demon.co.uk/isapnptools/" depends=('glibc') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') source=("ftp://metalab.unc.edu/pub/Linux/system/hardware/${pkgname}-${pkgver}.tgz") md5sums=('b997ba56583dc850fce9b93d658dfa0c') diff --git a/extra/java7-openjdk/PKGBUILD b/extra/java7-openjdk/PKGBUILD index 8d4259c1a..95af9a134 100644 --- a/extra/java7-openjdk/PKGBUILD +++ b/extra/java7-openjdk/PKGBUILD @@ -26,7 +26,7 @@ _bootstrap=0 # 0/1 for quick build or full bootstrap pkgver=${_java_ver}.${_updatever}_${_icedtea_ver} pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://icedtea.classpath.org" license=('custom') options=('!emptydirs') diff --git a/extra/kdeaccessibility-jovie/PKGBUILD b/extra/kdeaccessibility-jovie/PKGBUILD index feb2f952a..0b9d8155d 100644 --- a/extra/kdeaccessibility-jovie/PKGBUILD +++ b/extra/kdeaccessibility-jovie/PKGBUILD @@ -4,7 +4,7 @@ pkgname=kdeaccessibility-jovie pkgver=4.8.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc='A text to speech application' url='http://kde.org/applications/utilities/jovie/' license=('GPL' 'FDL') diff --git a/extra/kdeaccessibility-kaccessible/PKGBUILD b/extra/kdeaccessibility-kaccessible/PKGBUILD index 2767ba84d..6d9a9e4d8 100644 --- a/extra/kdeaccessibility-kaccessible/PKGBUILD +++ b/extra/kdeaccessibility-kaccessible/PKGBUILD @@ -4,7 +4,7 @@ pkgname=kdeaccessibility-kaccessible pkgver=4.8.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc='Provides accessibility services like focus tracking and a screenreader' url='http://accessibility.kde.org/' license=('GPL' 'FDL') diff --git a/extra/kdeaccessibility-kmag/PKGBUILD b/extra/kdeaccessibility-kmag/PKGBUILD index fee84e809..30dffd9f2 100644 --- a/extra/kdeaccessibility-kmag/PKGBUILD +++ b/extra/kdeaccessibility-kmag/PKGBUILD @@ -4,7 +4,7 @@ pkgname=kdeaccessibility-kmag pkgver=4.8.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc='Screen Magnifier' url='http://kde.org/applications/utilities/kmag/' license=('GPL' 'FDL') diff --git a/extra/kdeaccessibility-kmousetool/PKGBUILD b/extra/kdeaccessibility-kmousetool/PKGBUILD index edc407e50..e9f51c899 100644 --- a/extra/kdeaccessibility-kmousetool/PKGBUILD +++ b/extra/kdeaccessibility-kmousetool/PKGBUILD @@ -4,7 +4,7 @@ pkgname=kdeaccessibility-kmousetool pkgver=4.8.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc='Clicks the mouse for you, reducing the effects of RSI' url='http://kde.org/applications/utilities/kmousetool/' license=('GPL' 'FDL') diff --git a/extra/kdeaccessibility-kmouth/PKGBUILD b/extra/kdeaccessibility-kmouth/PKGBUILD index cf72c9ee1..3dcaf27f9 100644 --- a/extra/kdeaccessibility-kmouth/PKGBUILD +++ b/extra/kdeaccessibility-kmouth/PKGBUILD @@ -4,7 +4,7 @@ pkgname=kdeaccessibility-kmouth pkgver=4.8.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc='Speech Synthesizer Frontend' url='http://kde.org/applications/utilities/kmouth/' license=('GPL' 'FDL') diff --git a/extra/kdebindings-kimono/PKGBUILD b/extra/kdebindings-kimono/PKGBUILD index 528fe45aa..a25aaa474 100644 --- a/extra/kdebindings-kimono/PKGBUILD +++ b/extra/kdebindings-kimono/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc=".NET/Mono bindings for the KDE libraries" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') depends=('kdebindings-qyoto' 'kdebindings-smokekde') diff --git a/extra/kdeedu-analitza/PKGBUILD b/extra/kdeedu-analitza/PKGBUILD index 7871097bf..42c4d841b 100644 --- a/extra/kdeedu-analitza/PKGBUILD +++ b/extra/kdeedu-analitza/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc="A library to add mathematical features to your program" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') diff --git a/extra/kdelibs3/PKGBUILD b/extra/kdelibs3/PKGBUILD index 888aa10f3..dae0db770 100644 --- a/extra/kdelibs3/PKGBUILD +++ b/extra/kdelibs3/PKGBUILD @@ -7,7 +7,7 @@ pkgname=kdelibs3 pkgver=3.5.10 pkgrel=13 pkgdesc='KDE3 Core Libraries' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL') depends=('libxslt' 'pcre' 'libart-lgpl' 'alsa-lib' 'libcups' 'jasper' diff --git a/extra/kdeutils-filelight/PKGBUILD b/extra/kdeutils-filelight/PKGBUILD index 1e0af253f..bfabc539a 100644 --- a/extra/kdeutils-filelight/PKGBUILD +++ b/extra/kdeutils-filelight/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='View disk usage information' url='http://kde.org/applications/utilities/filelight' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-kcalc/PKGBUILD b/extra/kdeutils-kcalc/PKGBUILD index 77dd528b7..5c5eb1c57 100644 --- a/extra/kdeutils-kcalc/PKGBUILD +++ b/extra/kdeutils-kcalc/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Scientific Calculator' url='http://kde.org/applications/utilities/kcalc/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-kcharselect/PKGBUILD b/extra/kdeutils-kcharselect/PKGBUILD index ceaa2cf19..717458528 100644 --- a/extra/kdeutils-kcharselect/PKGBUILD +++ b/extra/kdeutils-kcharselect/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Character Selector' url="http://kde.org/applications/utilities/kcharselect/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-kdf/PKGBUILD b/extra/kdeutils-kdf/PKGBUILD index 0862af56a..3c85f4438 100644 --- a/extra/kdeutils-kdf/PKGBUILD +++ b/extra/kdeutils-kdf/PKGBUILD @@ -5,7 +5,7 @@ pkgname=kdeutils-kdf pkgver=4.8.3 pkgrel=1 url="http://kde.org/applications/system/kdiskfree/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc='View Disk Usage' license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') diff --git a/extra/kdeutils-kfloppy/PKGBUILD b/extra/kdeutils-kfloppy/PKGBUILD index 1858983bf..0143644ac 100644 --- a/extra/kdeutils-kfloppy/PKGBUILD +++ b/extra/kdeutils-kfloppy/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Floppy Formatter' url='http://kde.org/applications/utilities/kfloppy/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-kgpg/PKGBUILD b/extra/kdeutils-kgpg/PKGBUILD index 2a5515e46..0ff1ecb87 100644 --- a/extra/kdeutils-kgpg/PKGBUILD +++ b/extra/kdeutils-kgpg/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='A GnuPG frontend' url='http://kde.org/applications/utilities/kgpg/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime' 'kdepimlibs' 'kde-agent') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-kremotecontrol/PKGBUILD b/extra/kdeutils-kremotecontrol/PKGBUILD index 30ca87072..b7dd25705 100644 --- a/extra/kdeutils-kremotecontrol/PKGBUILD +++ b/extra/kdeutils-kremotecontrol/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Configure your remote controls for use with applications' url='http://kde.org/applications/utilities/kremotecontrol/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-workspace') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-ksecrets/PKGBUILD b/extra/kdeutils-ksecrets/PKGBUILD index 258695a7e..a34cd345d 100644 --- a/extra/kdeutils-ksecrets/PKGBUILD +++ b/extra/kdeutils-ksecrets/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Secrets Management Infrastructure for KDE' url='http://techbase.kde.org/Projects/Utils/ksecretsservice' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-workspace' 'qca-ossl') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-ktimer/PKGBUILD b/extra/kdeutils-ktimer/PKGBUILD index 096b0b5d2..d2573c15c 100644 --- a/extra/kdeutils-ktimer/PKGBUILD +++ b/extra/kdeutils-ktimer/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Countdown Launcher' url='http://kde.org/applications/utilities/ktimer/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-kwallet/PKGBUILD b/extra/kdeutils-kwallet/PKGBUILD index 7fe331e46..b58816381 100644 --- a/extra/kdeutils-kwallet/PKGBUILD +++ b/extra/kdeutils-kwallet/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Wallet Management Tool' url='http://kde.org/applications/system/kwalletmanager/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-superkaramba/PKGBUILD b/extra/kdeutils-superkaramba/PKGBUILD index dc14790c2..ff35a7487 100644 --- a/extra/kdeutils-superkaramba/PKGBUILD +++ b/extra/kdeutils-superkaramba/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='An engine for cool desktop eyecandy' url='http://kde.org/applications/utilities/superkaramba/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime' 'qimageblitz') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-sweeper/PKGBUILD b/extra/kdeutils-sweeper/PKGBUILD index f1338760e..da62dffee 100644 --- a/extra/kdeutils-sweeper/PKGBUILD +++ b/extra/kdeutils-sweeper/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='System Cleaner' url='http://kde.org/applications/utilities/sweeper' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') diff --git a/extra/lame/PKGBUILD b/extra/lame/PKGBUILD index 7a090e7b4..e7b961259 100644 --- a/extra/lame/PKGBUILD +++ b/extra/lame/PKGBUILD @@ -7,7 +7,7 @@ pkgname=lame pkgver=3.99.5 pkgrel=1 pkgdesc="A high quality MPEG Audio Layer III (MP3) encoder" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lame.sourceforge.net/" depends=('ncurses') makedepends=('nasm') diff --git a/extra/libdrm-new/PKGBUILD b/extra/libdrm-new/PKGBUILD index 32a85fcd1..68fee9067 100644 --- a/extra/libdrm-new/PKGBUILD +++ b/extra/libdrm-new/PKGBUILD @@ -6,7 +6,7 @@ pkgname=(libdrm-new libdrm-nouveau) pkgver=2.4.34 pkgrel=1 pkgdesc="Userspace interface to kernel DRM services" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('custom') depends=('glibc' 'libpciaccess') makedepends=('cairo' 'valgrind') diff --git a/extra/libfprint/PKGBUILD b/extra/libfprint/PKGBUILD index a1e059763..7eec16063 100644 --- a/extra/libfprint/PKGBUILD +++ b/extra/libfprint/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libfprint pkgver=0.4.0 pkgrel=3 pkgdesc="Library for fingerprint readers" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.freedesktop.org/wiki/Software/fprint/libfprint" license=(LGPL) depends=(libusb nss gdk-pixbuf2) diff --git a/extra/libkgoogle/PKGBUILD b/extra/libkgoogle/PKGBUILD index f5daa1aeb..a714dc1c7 100644 --- a/extra/libkgoogle/PKGBUILD +++ b/extra/libkgoogle/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.3.1 pkgrel=1 pkgdesc="A KDE-based library for accessing various Google services via their public API" url='https://projects.kde.org/projects/kdereview/libkgoogle' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdepimlibs' 'qjson') makedepends=('cmake' 'automoc4' 'boost') diff --git a/extra/libmusicbrainz4/PKGBUILD b/extra/libmusicbrainz4/PKGBUILD index d37f07528..c9a71ab86 100644 --- a/extra/libmusicbrainz4/PKGBUILD +++ b/extra/libmusicbrainz4/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libmusicbrainz4 pkgver=4.0.3 pkgrel=1 pkgdesc="Library That Provides Access to the MusicBrainz Server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://musicbrainz.org/" license=('LGPL2.1') depends=('neon') diff --git a/extra/libsrtp/PKGBUILD b/extra/libsrtp/PKGBUILD index 13f8142c3..1c317436b 100644 --- a/extra/libsrtp/PKGBUILD +++ b/extra/libsrtp/PKGBUILD @@ -9,7 +9,7 @@ pkgver=1.4.4 pkgrel=2 pkgdesc="Open-source implementation of the Secure Real-time Transport Protocol (SRTP)" url="http://srtp.sourceforge.net/srtp.html" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('BSD') source=("http://downloads.sourceforge.net/srtp/srtp-${pkgver}.tgz") md5sums=('9b449edb011c934ca97009e7e0566d22') diff --git a/extra/libunistring/PKGBUILD b/extra/libunistring/PKGBUILD index 5cbc2003a..e4c0d22c5 100644 --- a/extra/libunistring/PKGBUILD +++ b/extra/libunistring/PKGBUILD @@ -9,7 +9,7 @@ pkgver=0.9.3 pkgrel=5 pkgdesc="Library for manipulating Unicode strings and C strings." url="http://www.gnu.org/software/libunistring/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('glibc') install=${pkgname}.install diff --git a/extra/libva-driver-intel/PKGBUILD b/extra/libva-driver-intel/PKGBUILD index 55f0d3237..ffa2c50d2 100644 --- a/extra/libva-driver-intel/PKGBUILD +++ b/extra/libva-driver-intel/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libva-driver-intel pkgver=1.0.17 pkgrel=1 pkgdesc="VA-API implementation for Intel G45 chipsets and Intel HD Graphics for Intel Core processor family." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freedesktop.org/wiki/Software/vaapi" license=('MIT') depends=('libva') diff --git a/extra/libva/PKGBUILD b/extra/libva/PKGBUILD index 33d8d6bc6..592f4a510 100644 --- a/extra/libva/PKGBUILD +++ b/extra/libva/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libva pkgver=1.0.15 pkgrel=1 pkgdesc="Video Acceleration (VA) API for Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freedesktop.org/wiki/Software/vaapi" license=('MIT') depends=('libgl' 'libdrm' 'libxfixes') diff --git a/extra/libvdpau/PKGBUILD b/extra/libvdpau/PKGBUILD index bb012a83f..406202551 100644 --- a/extra/libvdpau/PKGBUILD +++ b/extra/libvdpau/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libvdpau pkgver=0.4.1 pkgrel=2 pkgdesc="Nvidia VDPAU library" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url='http://cgit.freedesktop.org/~aplattner/libvdpau' depends=('gcc-libs') conflicts=('nvidia-utils<190.42-2') diff --git a/extra/libzrtpcpp/PKGBUILD b/extra/libzrtpcpp/PKGBUILD index e004e6e6f..1a5aacc34 100644 --- a/extra/libzrtpcpp/PKGBUILD +++ b/extra/libzrtpcpp/PKGBUILD @@ -8,7 +8,7 @@ pkgname=libzrtpcpp pkgver=2.1.2 pkgrel=1 pkgdesc="A C++ implementation of Phil Zimmermann's ZRTP specification" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.gnutelephony.org/index.php/GNU_ZRTP' license=('GPL3') depends=('ccrtp') diff --git a/extra/lv2/PKGBUILD b/extra/lv2/PKGBUILD index a45496af2..7b32d4c3a 100644 --- a/extra/lv2/PKGBUILD +++ b/extra/lv2/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Successor to the LADSPA audio plug-in standard" url="http://lv2plug.in/" license=('LGPL' 'custom') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=('python2' 'libsndfile' 'gtk2') optdepends=('libsndfile: lv2-eg-sampler' 'gtk2: lv2-eg-sampler') diff --git a/extra/misdnuser/PKGBUILD b/extra/misdnuser/PKGBUILD index 63cfbf7c6..16d54f065 100644 --- a/extra/misdnuser/PKGBUILD +++ b/extra/misdnuser/PKGBUILD @@ -5,7 +5,7 @@ pkgname=misdnuser pkgver=2.0.13_20120524 pkgrel=1 pkgdesc="Tools and library for mISDN" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.misdn.org" license=('GPL') depends=('isdn4k-utils' 'spandsp') diff --git a/extra/mod_mono/PKGBUILD b/extra/mod_mono/PKGBUILD index 781714d14..8f47a855f 100644 --- a/extra/mod_mono/PKGBUILD +++ b/extra/mod_mono/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mod_mono pkgver=2.10 pkgrel=2 pkgdesc="The mono module to make ASP.NET running on top of apache" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('APACHE') depends=('apache>=2.2.11' 'xsp') url="http://www.go-mono.com" diff --git a/extra/mono-addins/PKGBUILD b/extra/mono-addins/PKGBUILD index ccaac768b..d3a44965d 100644 --- a/extra/mono-addins/PKGBUILD +++ b/extra/mono-addins/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mono-addins pkgver=0.6.2 pkgrel=2 pkgdesc="A generic framework for creating extensible applications and for creating libraries which extend those applications" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.mono-project.com/Mono.Addins" license=('custom:MIT') depends=('gtk-sharp-2>=2.12.8' 'mono>=2.10.5') diff --git a/extra/mono-basic/PKGBUILD b/extra/mono-basic/PKGBUILD index b0552c5a1..4f512758a 100644 --- a/extra/mono-basic/PKGBUILD +++ b/extra/mono-basic/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mono-basic pkgver=2.10 pkgrel=2 pkgdesc="Mono Visual Basic.NET compiler" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL') url="http://www.mono-project.com/" depends=('mono>=2.10.1') diff --git a/extra/mono-debugger/PKGBUILD b/extra/mono-debugger/PKGBUILD index 21946154d..9894fe1b9 100644 --- a/extra/mono-debugger/PKGBUILD +++ b/extra/mono-debugger/PKGBUILD @@ -4,7 +4,7 @@ pkgname=mono-debugger pkgver=2.10 pkgrel=2 pkgdesc="The Mono Debugger" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL') url="http://www.mono-project.com/" depends=('mono>=2.10.1') diff --git a/extra/mono-tools/PKGBUILD b/extra/mono-tools/PKGBUILD index a7dc49bf1..20ade997f 100644 --- a/extra/mono-tools/PKGBUILD +++ b/extra/mono-tools/PKGBUILD @@ -13,7 +13,7 @@ pkgname=mono-tools pkgver=2.10 pkgrel=2 pkgdesc="collection of testing and development tools for use with mono (including monodoc browser)" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL') url="http://www.mono-project.com/" depends=('libgnome-sharp' 'gtkhtml-sharp') diff --git a/extra/mono-upnp/PKGBUILD b/extra/mono-upnp/PKGBUILD index c819c4cd2..1b8a46ba0 100644 --- a/extra/mono-upnp/PKGBUILD +++ b/extra/mono-upnp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mono-upnp pkgver=0.1.2 pkgrel=1 pkgdesc="UPNP binding for Mono/.NET" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://github.com/mono/mono-upnp" license=('MIT') depends=('gtk-sharp-2' 'mono-addins' 'taglib-sharp') diff --git a/extra/mono/PKGBUILD b/extra/mono/PKGBUILD index 9a83fc925..3fbb4f079 100644 --- a/extra/mono/PKGBUILD +++ b/extra/mono/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mono pkgver=2.10.8 pkgrel=1 pkgdesc="Free implementation of the .NET platform including runtime and compiler" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL' 'LGPL2' 'MPL' 'custom:MITX11') url="http://www.mono-project.com/" depends=('zlib' 'libgdiplus>=2.10' 'sh') diff --git a/extra/monodevelop-debugger-gdb/PKGBUILD b/extra/monodevelop-debugger-gdb/PKGBUILD index ada06e80e..c7dbf8764 100644 --- a/extra/monodevelop-debugger-gdb/PKGBUILD +++ b/extra/monodevelop-debugger-gdb/PKGBUILD @@ -4,7 +4,7 @@ pkgname=monodevelop-debugger-gdb pkgver=2.8.8.4 pkgrel=1 pkgdesc="Mono Debugger support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://monodevelop.com" license=('GPL') depends=('monodevelop>=2.8.8.4' 'gdb') diff --git a/extra/monodevelop/PKGBUILD b/extra/monodevelop/PKGBUILD index 5ee06b122..01e347d01 100644 --- a/extra/monodevelop/PKGBUILD +++ b/extra/monodevelop/PKGBUILD @@ -6,7 +6,7 @@ pkgname=monodevelop pkgver=2.8.8.4 pkgrel=1 pkgdesc="An IDE primarily designed for C# and other .NET languages" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.monodevelop.com" license=('GPL') depends=('mono>=2.10.5' 'mono-addins>=0.6.2' 'gnome-sharp') diff --git a/extra/mutter/PKGBUILD b/extra/mutter/PKGBUILD index 437ada2f5..cccd57e60 100644 --- a/extra/mutter/PKGBUILD +++ b/extra/mutter/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mutter pkgver=3.4.1 pkgrel=2 pkgdesc="A window manager for GNOME" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL') depends=('clutter' 'dconf' 'gobject-introspection' 'gsettings-desktop-schemas' 'libcanberra' 'startup-notification' 'zenity') makedepends=('intltool' 'gnome-doc-utils') diff --git a/extra/nawk/PKGBUILD b/extra/nawk/PKGBUILD index d2c2125af..bdb78754e 100644 --- a/extra/nawk/PKGBUILD +++ b/extra/nawk/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=3 pkgdesc="The one, true implementation of AWK" url="http://cm.bell-labs.com/who/bwk/" license=('MIT') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!makeflags') depends=('glibc') source=("http://www.cs.princeton.edu/~bwk/btl.mirror/awk.tar.gz" diff --git a/extra/nx/PKGBUILD b/extra/nx/PKGBUILD index 5807ad4a0..aed71e055 100644 --- a/extra/nx/PKGBUILD +++ b/extra/nx/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=nx pkgname=('libxcomp' 'nxproxy' 'nx-x11' 'nx-xcompext' 'nxagent' 'nx-headers') pkgver=3.5.0.13 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wiki.x2go.org/" license=('GPL') options=('!makeflags') diff --git a/extra/oxygen-gtk2/PKGBUILD b/extra/oxygen-gtk2/PKGBUILD index 35431731a..505186369 100644 --- a/extra/oxygen-gtk2/PKGBUILD +++ b/extra/oxygen-gtk2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=oxygen-gtk2 pkgver=1.2.4 pkgrel=1 pkgdesc="Port of the default KDE widget theme (Oxygen) to GTK2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/' license=('LGPL') depends=('gtk2' 'dbus-glib') diff --git a/extra/oxygen-gtk3/PKGBUILD b/extra/oxygen-gtk3/PKGBUILD index 9eb7fbe9b..59936e227 100644 --- a/extra/oxygen-gtk3/PKGBUILD +++ b/extra/oxygen-gtk3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=oxygen-gtk3 pkgver=1.0.4 pkgrel=1 pkgdesc="Port of the default KDE widget theme (Oxygen) to GTK3" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/' license=('LGPL') depends=('gtk3' 'dbus-glib') diff --git a/extra/perl-async-interrupt/PKGBUILD b/extra/perl-async-interrupt/PKGBUILD index 904bdad48..2dacc54e3 100644 --- a/extra/perl-async-interrupt/PKGBUILD +++ b/extra/perl-async-interrupt/PKGBUILD @@ -6,7 +6,7 @@ _ver=1.1 pkgver=1.10 pkgrel=2 pkgdesc='allow C/XS libraries to interrupt perl asynchronously' -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=(PerlArtistic GPL) options=(!emptydirs) depends=(perl-common-sense) diff --git a/extra/perl-crypt-openssl-bignum/PKGBUILD b/extra/perl-crypt-openssl-bignum/PKGBUILD index e5f881bcc..845e348c4 100644 --- a/extra/perl-crypt-openssl-bignum/PKGBUILD +++ b/extra/perl-crypt-openssl-bignum/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-crypt-openssl-bignum pkgver=0.04 pkgrel=7 pkgdesc="OpenSSL's multiprecision integer arithmetic " -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Crypt-OpenSSL-Bignum" depends=('perl' 'openssl') license=('GPL') diff --git a/extra/perl-crypt-openssl-random/PKGBUILD b/extra/perl-crypt-openssl-random/PKGBUILD index 24ebde127..54091888d 100644 --- a/extra/perl-crypt-openssl-random/PKGBUILD +++ b/extra/perl-crypt-openssl-random/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-crypt-openssl-random pkgver=0.04 pkgrel=7 pkgdesc="Interface to OpenSSL PRNG methods" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Crypt-OpenSSL-Random" depends=('perl' 'openssl') license=('GPL') diff --git a/extra/perl-crypt-openssl-rsa/PKGBUILD b/extra/perl-crypt-openssl-rsa/PKGBUILD index 3a44bf936..e8ebbf7c6 100644 --- a/extra/perl-crypt-openssl-rsa/PKGBUILD +++ b/extra/perl-crypt-openssl-rsa/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-crypt-openssl-rsa pkgver=0.28 pkgrel=3 pkgdesc="Interface to OpenSSL RSA methods" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Crypt-OpenSSL-RSA" depends=('perl-crypt-openssl-random' 'perl-crypt-openssl-bignum') license=('GPL') diff --git a/extra/perl-guard/PKGBUILD b/extra/perl-guard/PKGBUILD index d1d804f0a..7de965e99 100644 --- a/extra/perl-guard/PKGBUILD +++ b/extra/perl-guard/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-guard pkgver=1.022 pkgrel=2 pkgdesc="safe cleanup blocks" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=(custom:unknown) options=(!emptydirs) depends=('perl') diff --git a/extra/perl-list-moreutils/PKGBUILD b/extra/perl-list-moreutils/PKGBUILD index 80d83dfc4..ddf04ead1 100644 --- a/extra/perl-list-moreutils/PKGBUILD +++ b/extra/perl-list-moreutils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-list-moreutils pkgver=0.33 pkgrel=3 pkgdesc="Provide the stuff missing in List::Util" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=(PerlArtistic GPL) options=(!emptydirs) depends=('perl>=5.5.30') diff --git a/extra/php-xcache/PKGBUILD b/extra/php-xcache/PKGBUILD index 12c602b92..0d30a4d93 100644 --- a/extra/php-xcache/PKGBUILD +++ b/extra/php-xcache/PKGBUILD @@ -4,7 +4,7 @@ pkgname=php-xcache pkgver=2.0.0 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc='A PHP opcode cacher' url='http://xcache.lighttpd.net/' depends=('php') diff --git a/extra/qt3/PKGBUILD b/extra/qt3/PKGBUILD index cdd4ac7f1..105f44586 100644 --- a/extra/qt3/PKGBUILD +++ b/extra/qt3/PKGBUILD @@ -6,7 +6,7 @@ pkgver=3.3.8b pkgrel=1 epoch=1 pkgdesc="The QT3 gui toolkit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.trolltech.com/products/qt/index.html" license=('GPL') depends=('libpng' 'libxmu' 'libxcursor' 'libxinerama' 'mesa' 'libxft' diff --git a/extra/spandsp/PKGBUILD b/extra/spandsp/PKGBUILD index 3f5f5f94e..4efe28954 100644 --- a/extra/spandsp/PKGBUILD +++ b/extra/spandsp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=spandsp pkgver=0.0.6pre20 pkgrel=1 pkgdesc="A DSP library for telephony" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL') url="http://www.soft-switch.org/" depends=('libtiff') diff --git a/extra/sushi/PKGBUILD b/extra/sushi/PKGBUILD index c0a7e7b23..061107d0a 100644 --- a/extra/sushi/PKGBUILD +++ b/extra/sushi/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sushi pkgver=0.4.1 pkgrel=2 pkgdesc="A quick previewer for Nautilus" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.gnome.org" license=('GPL2') groups=(gnome-extra) diff --git a/extra/taglib-sharp/PKGBUILD b/extra/taglib-sharp/PKGBUILD index cead242c6..16659fe15 100644 --- a/extra/taglib-sharp/PKGBUILD +++ b/extra/taglib-sharp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=taglib-sharp pkgver=2.0.4.0 pkgrel=1 pkgdesc="It's a library for reading and writing metadata in media files, including video, audio, and photo formats for Mono" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://github.com/mono/taglib-sharp" license=('LGPL2') depends=('mono') diff --git a/extra/telepathy-kde-common-internals/PKGBUILD b/extra/telepathy-kde-common-internals/PKGBUILD index 3d86f181d..33422c39e 100644 --- a/extra/telepathy-kde-common-internals/PKGBUILD +++ b/extra/telepathy-kde-common-internals/PKGBUILD @@ -6,7 +6,7 @@ _pkgname=ktp-common-internals pkgver=0.3.1 pkgrel=2 pkgdesc="Common components for KDE-Telepathy" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://community.kde.org/Real-Time_Communication_and_Collaboration" license=('GPL') depends=('kdelibs' 'telepathy-qt' 'telepathy-mission-control') diff --git a/extra/telepathy-kde-contact-applet/PKGBUILD b/extra/telepathy-kde-contact-applet/PKGBUILD index 0e52c568e..2f920a2ec 100644 --- a/extra/telepathy-kde-contact-applet/PKGBUILD +++ b/extra/telepathy-kde-contact-applet/PKGBUILD @@ -6,7 +6,7 @@ _pkgname=ktp-contact-applet pkgver=0.3.1 pkgrel=1 pkgdesc="The KDE-Telepathy contact plasmoid" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://community.kde.org/Real-Time_Communication_and_Collaboration" license=('GPL') depends=('telepathy-kde-common-internals') diff --git a/extra/telepathy-kde-presence-applet/PKGBUILD b/extra/telepathy-kde-presence-applet/PKGBUILD index 02b922435..c52e161d2 100644 --- a/extra/telepathy-kde-presence-applet/PKGBUILD +++ b/extra/telepathy-kde-presence-applet/PKGBUILD @@ -7,7 +7,7 @@ _pkgname=ktp-presence-applet pkgver=0.3.1 pkgrel=1 pkgdesc="Plasma applet for managing your Telepathy account presence" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://community.kde.org/Real-Time_Communication_and_Collaboration" license=('GPL') depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list') diff --git a/extra/ucommon/PKGBUILD b/extra/ucommon/PKGBUILD index e9e78bdc0..0d96e2e14 100644 --- a/extra/ucommon/PKGBUILD +++ b/extra/ucommon/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ucommon pkgver=5.2.2 pkgrel=2 pkgdesc="A light-weight C++ library to facilitate using C++ design patterns" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnutelephony.org/index.php/GNU_uCommon_C++" license=('GPL3' 'LGPL3') depends=('openssl') diff --git a/extra/valgrind/PKGBUILD b/extra/valgrind/PKGBUILD index c5e0b99ab..f5296f260 100644 --- a/extra/valgrind/PKGBUILD +++ b/extra/valgrind/PKGBUILD @@ -6,7 +6,7 @@ pkgname=valgrind pkgver=3.7.0 pkgrel=2 pkgdesc="A tool to help find memory-management problems in programs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://valgrind.org/" depends=('glibc>=2.15' 'glibc<2.16' 'perl') diff --git a/extra/vdpau-video/PKGBUILD b/extra/vdpau-video/PKGBUILD index e1003f451..3c2c1e2e7 100644 --- a/extra/vdpau-video/PKGBUILD +++ b/extra/vdpau-video/PKGBUILD @@ -4,7 +4,7 @@ pkgname=vdpau-video pkgver=0.7.3 pkgrel=3 pkgdesc="VDPAU backend for VA API" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cgit.freedesktop.org/vaapi/vdpau-driver/" license=('GPL') depends=('libva' 'libvdpau') diff --git a/extra/webkit-sharp/PKGBUILD b/extra/webkit-sharp/PKGBUILD index 3bb034776..715046f31 100644 --- a/extra/webkit-sharp/PKGBUILD +++ b/extra/webkit-sharp/PKGBUILD @@ -7,7 +7,7 @@ pkgname=webkit-sharp pkgver=0.3 pkgrel=4 pkgdesc="Mono/.NET bindings for the WebKit rendering engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.mono-project.com/" license=('custom:MIT') depends=('gtk-sharp-2' 'libwebkit>=1.4.0') diff --git a/extra/wildmidi/PKGBUILD b/extra/wildmidi/PKGBUILD index 51402e133..9e6e8fba5 100644 --- a/extra/wildmidi/PKGBUILD +++ b/extra/wildmidi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=wildmidi pkgver=0.2.3.5 pkgrel=2 pkgdesc='Open Source MIDI Synthesizer' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://wildmidi.sourceforge.net/' license=('LGPL3') depends=('alsa-lib') diff --git a/extra/x11-ssh-askpass/PKGBUILD b/extra/x11-ssh-askpass/PKGBUILD index 37b84c4d0..5d3d0f2f1 100644 --- a/extra/x11-ssh-askpass/PKGBUILD +++ b/extra/x11-ssh-askpass/PKGBUILD @@ -11,7 +11,7 @@ pkgrel=3 pkgdesc='Lightweight passphrase dialog for SSH' url='http://www.jmknoble.net/software/x11-ssh-askpass/' license=('custom') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libxt') makedepends=('imake') #source=("${url}${pkgname}-${pkgver}.tar.gz" # httpd only sends half the bits diff --git a/extra/xbase/PKGBUILD b/extra/xbase/PKGBUILD index 0fa63a7fa..c028b85ad 100644 --- a/extra/xbase/PKGBUILD +++ b/extra/xbase/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xbase pkgver=2.0.0 pkgrel=2 pkgdesc="An XBase compatible C++ class library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://linux.techass.com/projects/xdb/' license=('LGPL') depends=('bash' 'gcc-libs') diff --git a/extra/xf86-input-keyboard/PKGBUILD b/extra/xf86-input-keyboard/PKGBUILD index a84212019..7328db022 100644 --- a/extra/xf86-input-keyboard/PKGBUILD +++ b/extra/xf86-input-keyboard/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-input-keyboard pkgver=1.6.1 pkgrel=2 pkgdesc="X.Org keyboard input driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('custom') url="http://xorg.freedesktop.org/" depends=('glibc') diff --git a/extra/xf86-input-mouse/PKGBUILD b/extra/xf86-input-mouse/PKGBUILD index 4fd8b64d8..a68b00879 100644 --- a/extra/xf86-input-mouse/PKGBUILD +++ b/extra/xf86-input-mouse/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-input-mouse pkgver=1.7.2 pkgrel=1 pkgdesc="X.org mouse input driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('custom') url="http://xorg.freedesktop.org/" depends=('glibc') diff --git a/extra/xf86-video-apm/PKGBUILD b/extra/xf86-video-apm/PKGBUILD index 2914e15fc..f3138beea 100644 --- a/extra/xf86-video-apm/PKGBUILD +++ b/extra/xf86-video-apm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-apm pkgver=1.2.4 pkgrel=1 pkgdesc="X.org Alliance ProMotion video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-ark/PKGBUILD b/extra/xf86-video-ark/PKGBUILD index ac5b44dff..0514d90c5 100644 --- a/extra/xf86-video-ark/PKGBUILD +++ b/extra/xf86-video-ark/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-ark pkgver=0.7.4 pkgrel=1 pkgdesc="X.org ark video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-ast/PKGBUILD b/extra/xf86-video-ast/PKGBUILD index 76025dea9..f1423cfd3 100644 --- a/extra/xf86-video-ast/PKGBUILD +++ b/extra/xf86-video-ast/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-ast pkgver=0.93.10 pkgrel=1 pkgdesc="X.org ASPEED AST Graphics video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-ati/PKGBUILD b/extra/xf86-video-ati/PKGBUILD index 5735fc350..8dfb7b23c 100644 --- a/extra/xf86-video-ati/PKGBUILD +++ b/extra/xf86-video-ati/PKGBUILD @@ -7,7 +7,7 @@ pkgver=6.14.99 _gitdate=20120517 pkgrel=1.${_gitdate} # UMS/EXA: Add reminder for potential solid picture performance issue. pkgdesc="X.org ati video driver" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libpciaccess' 'libdrm>=2.4.33' 'udev>=183' 'pixman' 'ati-dri') diff --git a/extra/xf86-video-chips/PKGBUILD b/extra/xf86-video-chips/PKGBUILD index aea1d769a..46771b09d 100644 --- a/extra/xf86-video-chips/PKGBUILD +++ b/extra/xf86-video-chips/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xf86-video-chips pkgver=1.2.4 pkgrel=4 pkgdesc="X.org Chips and Technologies video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=(glibc) diff --git a/extra/xf86-video-cirrus/PKGBUILD b/extra/xf86-video-cirrus/PKGBUILD index 036da6db8..ec1591aee 100644 --- a/extra/xf86-video-cirrus/PKGBUILD +++ b/extra/xf86-video-cirrus/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-cirrus pkgver=1.4.0 pkgrel=1 pkgdesc="X.org Cirrus Logic video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-glint/PKGBUILD b/extra/xf86-video-glint/PKGBUILD index 1bb95b86e..746731c3b 100644 --- a/extra/xf86-video-glint/PKGBUILD +++ b/extra/xf86-video-glint/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-glint pkgver=1.2.7 pkgrel=1 pkgdesc="X.org GLINT/Permedia video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-i128/PKGBUILD b/extra/xf86-video-i128/PKGBUILD index cd82d6686..5c2316208 100644 --- a/extra/xf86-video-i128/PKGBUILD +++ b/extra/xf86-video-i128/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-i128 pkgver=1.3.5 pkgrel=1 pkgdesc="X.org Number 9 I128 video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-i740/PKGBUILD b/extra/xf86-video-i740/PKGBUILD index 6e796ce50..9f06bb3d7 100644 --- a/extra/xf86-video-i740/PKGBUILD +++ b/extra/xf86-video-i740/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-i740 pkgver=1.3.3 pkgrel=1 pkgdesc="X.org Intel i740 video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-intel/PKGBUILD b/extra/xf86-video-intel/PKGBUILD index eaa97b02d..889913764 100644 --- a/extra/xf86-video-intel/PKGBUILD +++ b/extra/xf86-video-intel/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-intel pkgver=2.19.0 pkgrel=3 pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('intel-dri' 'libxvmc' 'libpciaccess' 'libdrm' 'xcb-util>=0.3.9' 'libxfixes' 'udev>=183') diff --git a/extra/xf86-video-mach64/PKGBUILD b/extra/xf86-video-mach64/PKGBUILD index a61b4c3b2..820d57b08 100644 --- a/extra/xf86-video-mach64/PKGBUILD +++ b/extra/xf86-video-mach64/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-mach64 pkgver=6.9.1 pkgrel=1 pkgdesc="X.org mach64 video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-mga/PKGBUILD b/extra/xf86-video-mga/PKGBUILD index 24b7be2d8..e021be672 100644 --- a/extra/xf86-video-mga/PKGBUILD +++ b/extra/xf86-video-mga/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-mga pkgver=1.5.0 pkgrel=1 pkgdesc="X.org mga video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-neomagic/PKGBUILD b/extra/xf86-video-neomagic/PKGBUILD index b04b376ca..e792ee894 100644 --- a/extra/xf86-video-neomagic/PKGBUILD +++ b/extra/xf86-video-neomagic/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-neomagic pkgver=1.2.6 pkgrel=1 pkgdesc="X.org neomagic video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-nouveau/PKGBUILD b/extra/xf86-video-nouveau/PKGBUILD index a9fc10cbd..da7ad31a2 100644 --- a/extra/xf86-video-nouveau/PKGBUILD +++ b/extra/xf86-video-nouveau/PKGBUILD @@ -7,7 +7,7 @@ _gitdate=20120512 pkgver=0.0.16_git${_gitdate} # see configure.ac pkgrel=2 pkgdesc="Open Source 2D acceleration driver for nVidia cards (experimental)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://nouveau.freedesktop.org/wiki/" license=('GPL') #and MIT, not yet a license file, see http://nouveau.freedesktop.org/wiki/FAQ#head-09f75d03eb30011c754038a3893119a70745de4e depends=('libdrm-nouveau' 'udev') diff --git a/extra/xf86-video-nv/PKGBUILD b/extra/xf86-video-nv/PKGBUILD index 574579714..37bd910c2 100644 --- a/extra/xf86-video-nv/PKGBUILD +++ b/extra/xf86-video-nv/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-nv pkgver=2.1.18 pkgrel=6 pkgdesc="X.org nv video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('custom') url="http://xorg.freedesktop.org/" depends=('glibc') diff --git a/extra/xf86-video-openchrome/PKGBUILD b/extra/xf86-video-openchrome/PKGBUILD index 7a494f861..5c4aab2d6 100644 --- a/extra/xf86-video-openchrome/PKGBUILD +++ b/extra/xf86-video-openchrome/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xf86-video-openchrome pkgver=0.2.906 pkgrel=1 pkgdesc="X.Org Openchrome drivers" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('custom') url="http://www.openchrome.org" depends=('libdrm' 'libxvmc') diff --git a/extra/xf86-video-r128/PKGBUILD b/extra/xf86-video-r128/PKGBUILD index a66f54c29..3f6215dfc 100644 --- a/extra/xf86-video-r128/PKGBUILD +++ b/extra/xf86-video-r128/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-r128 pkgver=6.8.2 pkgrel=1 pkgdesc="X.org ati Rage128 video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-rendition/PKGBUILD b/extra/xf86-video-rendition/PKGBUILD index 4043c0d71..3bb63339a 100644 --- a/extra/xf86-video-rendition/PKGBUILD +++ b/extra/xf86-video-rendition/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-rendition pkgver=4.2.4 pkgrel=6 pkgdesc="X.org Rendition video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-s3/PKGBUILD b/extra/xf86-video-s3/PKGBUILD index 8c9a6b8a7..8db9bfcf5 100644 --- a/extra/xf86-video-s3/PKGBUILD +++ b/extra/xf86-video-s3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-s3 pkgver=0.6.4 pkgrel=1 pkgdesc="X.org S3 video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-s3virge/PKGBUILD b/extra/xf86-video-s3virge/PKGBUILD index 31239166c..970d277e5 100644 --- a/extra/xf86-video-s3virge/PKGBUILD +++ b/extra/xf86-video-s3virge/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xf86-video-s3virge pkgver=1.10.5 pkgrel=1 pkgdesc="X.org S3 Virge video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-savage/PKGBUILD b/extra/xf86-video-savage/PKGBUILD index 45e1cf83b..7206e5b43 100644 --- a/extra/xf86-video-savage/PKGBUILD +++ b/extra/xf86-video-savage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-savage pkgver=2.3.4 pkgrel=1 pkgdesc="X.org savage video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-sisimedia/PKGBUILD b/extra/xf86-video-sisimedia/PKGBUILD index 02febf216..d5860e8d2 100644 --- a/extra/xf86-video-sisimedia/PKGBUILD +++ b/extra/xf86-video-sisimedia/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-sisimedia pkgver=0.9.1 pkgrel=3 pkgdesc="X.org SiS 671 video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.linuxconsulting.ro/xorg-drivers/" license=('custom') depends=('libdrm') diff --git a/extra/xf86-video-sisusb/PKGBUILD b/extra/xf86-video-sisusb/PKGBUILD index 57339c20f..12a9d906d 100644 --- a/extra/xf86-video-sisusb/PKGBUILD +++ b/extra/xf86-video-sisusb/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-sisusb pkgver=0.9.4 pkgrel=6 pkgdesc="X.org SiS USB video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-tdfx/PKGBUILD b/extra/xf86-video-tdfx/PKGBUILD index 0751690e0..91052d9d1 100644 --- a/extra/xf86-video-tdfx/PKGBUILD +++ b/extra/xf86-video-tdfx/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-tdfx pkgver=1.4.4 pkgrel=1 pkgdesc="X.org tdfx video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-trident/PKGBUILD b/extra/xf86-video-trident/PKGBUILD index 0092f0b85..c70f1a18a 100644 --- a/extra/xf86-video-trident/PKGBUILD +++ b/extra/xf86-video-trident/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-trident pkgver=1.3.5 pkgrel=1 pkgdesc="X.org Trident video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-tseng/PKGBUILD b/extra/xf86-video-tseng/PKGBUILD index cab1cfcda..3ddf03a0e 100644 --- a/extra/xf86-video-tseng/PKGBUILD +++ b/extra/xf86-video-tseng/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-tseng pkgver=1.2.4 pkgrel=6 pkgdesc="X.org tseng video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-unichrome/PKGBUILD b/extra/xf86-video-unichrome/PKGBUILD index 1647f8cf1..1d2e75f67 100644 --- a/extra/xf86-video-unichrome/PKGBUILD +++ b/extra/xf86-video-unichrome/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.2.7 pkgrel=7 _gitversion=b917bee87db8a65b8e8da0ca12c24a176c9e9fb2 pkgdesc="Unichrome video drivers for X.Org" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://unichrome.sf.net/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-v4l/PKGBUILD b/extra/xf86-video-v4l/PKGBUILD index 16a11493d..37eaebd7f 100644 --- a/extra/xf86-video-v4l/PKGBUILD +++ b/extra/xf86-video-v4l/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-v4l pkgver=0.2.0 pkgrel=10 pkgdesc="X.org v4l video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-vesa/PKGBUILD b/extra/xf86-video-vesa/PKGBUILD index b3d59bf09..68c54462a 100644 --- a/extra/xf86-video-vesa/PKGBUILD +++ b/extra/xf86-video-vesa/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-vesa pkgver=2.3.1 pkgrel=1 pkgdesc="X.org vesa video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('custom') url="http://xorg.freedesktop.org/" depends=('glibc') diff --git a/extra/xf86-video-voodoo/PKGBUILD b/extra/xf86-video-voodoo/PKGBUILD index 61689bd1c..ff93420f9 100644 --- a/extra/xf86-video-voodoo/PKGBUILD +++ b/extra/xf86-video-voodoo/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-voodoo pkgver=1.2.4 pkgrel=6 pkgdesc="X.org 3dfx Voodoo1/Voodoo2 2D video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/zeitgeist/PKGBUILD b/extra/zeitgeist/PKGBUILD index bf4fee2e6..f9647b3a0 100644 --- a/extra/zeitgeist/PKGBUILD +++ b/extra/zeitgeist/PKGBUILD @@ -7,7 +7,7 @@ pkgname=zeitgeist pkgver=0.9.0 pkgrel=1 pkgdesc="A service which logs the users's activities and events and makes relevant information available to other applications" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://zeitgeist-project.com/" license=('GPL') depends=('dbus-python' 'python2-gobject2' 'pyxdg' 'xapian-core') -- cgit v1.2.3-54-g00ecf From 9a220ba4dde8a7554eb8edca3f6669ce8513cb3a Mon Sep 17 00:00:00 2001 From: Michał Masłowski Date: Fri, 8 Jun 2012 15:26:07 +0200 Subject: Revert "Add mips64el in arch() in packages of community and extra repos" This reverts commit 491c8a0453839dd6b235b3e1f959e233c4313744. Many packages won't be useful on our mips64el machines: - they need 3d acceleration - they need ACPI or EFI, our machines don't have them - they are crosstoolchains for different arches, these would be useful only for mips64el users who compile programs to their targets while not having faster x86 machines, I don't know any such users - they are known to have architecture-specific code not ported to mips64el, no known to me Parabola hacker could port them - they use difficult to port and rarely used frameworks we don't want to port - they are drivers for hardware which cannot be/isn't used with our machines - they use Qt3 or other obsolete and unsupported upstream packages we don't have resources to maintain Please do it separately when you want to port a specific package. --- community/0ad/PKGBUILD | 2 +- community/acpi/PKGBUILD | 2 +- community/acpid/PKGBUILD | 2 +- community/afpfs-ng/PKGBUILD | 2 +- community/alex/PKGBUILD | 2 +- community/allegro/PKGBUILD | 2 +- community/alleyoop/PKGBUILD | 2 +- community/almanah/PKGBUILD | 2 +- community/alsa-tools/PKGBUILD | 2 +- community/apper/PKGBUILD | 2 +- community/arm-elf-binutils/PKGBUILD | 2 +- community/arm-elf-gcc-base/PKGBUILD | 2 +- community/arm-wince-cegcc-binutils/PKGBUILD | 2 +- community/arm-wince-cegcc-gcc-base/PKGBUILD | 2 +- community/arm-wince-cegcc-gcc/PKGBUILD | 2 +- community/arptables/PKGBUILD | 2 +- community/assimp/PKGBUILD | 2 +- community/audit/PKGBUILD | 2 +- community/avifile/PKGBUILD | 2 +- community/avr-binutils/PKGBUILD | 2 +- community/avr-gcc/PKGBUILD | 2 +- community/awesome/PKGBUILD | 2 +- community/bam/PKGBUILD | 2 +- community/bcg729/PKGBUILD | 2 +- community/bitcoin/PKGBUILD | 2 +- community/blender/PKGBUILD | 2 +- community/c++-gtk-utils/PKGBUILD | 2 +- community/cdrtools/PKGBUILD | 2 +- community/chromaprint/PKGBUILD | 2 +- community/chromium-bsu/PKGBUILD | 2 +- community/cl/PKGBUILD | 2 +- community/clinica/PKGBUILD | 2 +- community/cmus/PKGBUILD | 2 +- community/conntrack-tools/PKGBUILD | 2 +- community/contacts/PKGBUILD | 2 +- community/converseen/PKGBUILD | 2 +- community/dates/PKGBUILD | 2 +- community/dcron/PKGBUILD | 2 +- community/dee/PKGBUILD | 2 +- community/desmume/PKGBUILD | 2 +- community/dmd/PKGBUILD | 2 +- community/dos2unix/PKGBUILD | 2 +- community/doublecmd/PKGBUILD | 2 +- community/drbd/PKGBUILD | 2 +- community/e3/PKGBUILD | 2 +- community/e4rat/PKGBUILD | 2 +- community/ebtables/PKGBUILD | 2 +- community/ecryptfs-utils/PKGBUILD | 2 +- community/efax-gtk/PKGBUILD | 2 +- community/erlang/PKGBUILD | 2 +- community/esdl/PKGBUILD | 2 +- community/ettercap/PKGBUILD | 2 +- community/exfat-utils/PKGBUILD | 2 +- community/ext4magic/PKGBUILD | 2 +- community/flightgear/PKGBUILD | 2 +- community/freeorion/PKGBUILD | 2 +- community/fuse-exfat/PKGBUILD | 2 +- community/fwbuilder/PKGBUILD | 2 +- community/galculator/PKGBUILD | 2 +- community/gdesklets/PKGBUILD | 2 +- community/gdlmm/PKGBUILD | 2 +- community/gendesk/PKGBUILD | 2 +- community/gftp/PKGBUILD | 2 +- community/gigi/PKGBUILD | 2 +- community/gimp-refocus/PKGBUILD | 2 +- community/glabels/PKGBUILD | 2 +- community/glfw/PKGBUILD | 2 +- community/gmime24/PKGBUILD | 2 +- community/gmtk/PKGBUILD | 2 +- community/gnac/PKGBUILD | 2 +- community/gnome-subtitles/PKGBUILD | 2 +- community/gnome-web-photo/PKGBUILD | 2 +- community/go/PKGBUILD | 2 +- community/goobox/PKGBUILD | 2 +- community/grafx2/PKGBUILD | 2 +- community/gtk-engine-unico/PKGBUILD | 2 +- community/gtksourceviewmm/PKGBUILD | 2 +- community/gtkspell3/PKGBUILD | 2 +- community/gupnp-dlna/PKGBUILD | 2 +- community/gwget/PKGBUILD | 2 +- community/gwibber/PKGBUILD | 2 +- community/happy/PKGBUILD | 2 +- community/hardlink/PKGBUILD | 2 +- community/haskell-bytestring-show/PKGBUILD | 2 +- community/haskell-cairo/PKGBUILD | 2 +- community/haskell-glib/PKGBUILD | 2 +- community/haskell-gtk/PKGBUILD | 2 +- community/haskell-html/PKGBUILD | 2 +- community/haskell-pango/PKGBUILD | 2 +- community/haskell-quickcheck/PKGBUILD | 2 +- community/haskell-regex-base/PKGBUILD | 2 +- community/haskell-regex-compat/PKGBUILD | 2 +- community/haskell-regex-posix/PKGBUILD | 2 +- community/haskell-stm/PKGBUILD | 2 +- community/haskell-syb/PKGBUILD | 2 +- community/haskell-xhtml/PKGBUILD | 2 +- community/hitori/PKGBUILD | 2 +- community/httperf/PKGBUILD | 2 +- community/i7z/PKGBUILD | 2 +- community/icewm-utils/PKGBUILD | 2 +- community/iec16022/PKGBUILD | 2 +- community/iptstate/PKGBUILD | 2 +- community/ipvsadm/PKGBUILD | 2 +- community/keepalived/PKGBUILD | 2 +- community/kovpn/PKGBUILD | 2 +- community/kpartsplugin/PKGBUILD | 2 +- community/ksniffer/PKGBUILD | 2 +- community/ktechlab/PKGBUILD | 2 +- community/kwalletcli/PKGBUILD | 2 +- community/lash/PKGBUILD | 2 +- community/ldc/PKGBUILD | 2 +- community/leptonica/PKGBUILD | 2 +- community/libalkimia/PKGBUILD | 2 +- community/libcec/PKGBUILD | 2 +- community/libcgns2/PKGBUILD | 2 +- community/libcryptui/PKGBUILD | 2 +- community/libgda4/PKGBUILD | 2 +- community/libircclient/PKGBUILD | 2 +- community/libmilter/PKGBUILD | 2 +- community/libnet/PKGBUILD | 2 +- community/libnfs/PKGBUILD | 2 +- community/liboggz/PKGBUILD | 2 +- community/libshairport/PKGBUILD | 2 +- community/libsmf/PKGBUILD | 2 +- community/libuser/PKGBUILD | 2 +- community/libwebp/PKGBUILD | 2 +- community/libzdb/PKGBUILD | 2 +- community/linux-tools/PKGBUILD | 2 +- community/lksctp-tools/PKGBUILD | 2 +- community/log4cpp/PKGBUILD | 2 +- community/lomoco/PKGBUILD | 2 +- community/lorcon/PKGBUILD | 2 +- community/lout/PKGBUILD | 2 +- community/love/PKGBUILD | 2 +- community/lrzip/PKGBUILD | 2 +- community/lsscsi/PKGBUILD | 2 +- community/luajit/PKGBUILD | 2 +- community/lxinput/PKGBUILD | 2 +- community/lxmusic/PKGBUILD | 2 +- community/madman/PKGBUILD | 2 +- community/mailman/PKGBUILD | 2 +- community/mandvd/PKGBUILD | 2 +- community/mariadb/PKGBUILD | 2 +- community/mcelog/PKGBUILD | 2 +- community/mdf2iso/PKGBUILD | 2 +- community/midori/PKGBUILD | 2 +- community/milkytracker/PKGBUILD | 2 +- community/mingetty/PKGBUILD | 2 +- community/minitube/PKGBUILD | 2 +- community/mksh/PKGBUILD | 2 +- community/mosh/PKGBUILD | 2 +- community/mythtv/PKGBUILD | 2 +- community/nautilus-sound-converter/PKGBUILD | 2 +- community/nemiver/PKGBUILD | 2 +- community/nestopia/PKGBUILD | 2 +- community/netcf/PKGBUILD | 2 +- community/netselect/PKGBUILD | 2 +- community/nmon/PKGBUILD | 2 +- community/notion/PKGBUILD | 2 +- community/oath-toolkit/PKGBUILD | 2 +- community/odt2txt/PKGBUILD | 2 +- community/onboard/PKGBUILD | 2 +- community/open-vm-tools/PKGBUILD | 2 +- community/opencollada/PKGBUILD | 2 +- community/opendkim/PKGBUILD | 2 +- community/openimageio/PKGBUILD | 2 +- community/openocd/PKGBUILD | 2 +- community/opensc/PKGBUILD | 2 +- community/openscenegraph/PKGBUILD | 2 +- community/openthreads/PKGBUILD | 2 +- community/os-prober/PKGBUILD | 2 +- community/packeth/PKGBUILD | 2 +- community/par2cmdline/PKGBUILD | 2 +- community/parole/PKGBUILD | 2 +- community/pdfedit/PKGBUILD | 2 +- community/perl-file-rsyncp/PKGBUILD | 2 +- community/perl-io-dirent/PKGBUILD | 2 +- community/perl-package-stash-xs/PKGBUILD | 2 +- community/perl-params-classify/PKGBUILD | 2 +- community/perl-params-util/PKGBUILD | 2 +- community/picocom/PKGBUILD | 2 +- community/pidgin-gfire/PKGBUILD | 2 +- community/pidgin-talkfilters/PKGBUILD | 2 +- community/pidgin-toobars/PKGBUILD | 2 +- community/pigz/PKGBUILD | 2 +- community/pion-net/PKGBUILD | 2 +- community/premake/PKGBUILD | 2 +- community/premake3/PKGBUILD | 2 +- community/pwgen/PKGBUILD | 2 +- community/pwmanager/PKGBUILD | 2 +- community/pyqt3/PKGBUILD | 2 +- community/python-psutil/PKGBUILD | 2 +- community/python-pyproj/PKGBUILD | 2 +- community/python-pyxattr/PKGBUILD | 2 +- community/python-pyzmq/PKGBUILD | 2 +- community/python-sqlalchemy/PKGBUILD | 2 +- community/python2-gevent/PKGBUILD | 2 +- community/python2-greenlet/PKGBUILD | 2 +- community/python2-pychm/PKGBUILD | 2 +- community/python2-pyzmq/PKGBUILD | 2 +- community/python2-virtkey/PKGBUILD | 2 +- community/qcad/PKGBUILD | 2 +- community/qconf/PKGBUILD | 2 +- community/qgo/PKGBUILD | 2 +- community/qscintilla-qt3/PKGBUILD | 2 +- community/qsynergy/PKGBUILD | 2 +- community/qt4pas/PKGBUILD | 2 +- community/qtcurve-gtk2/PKGBUILD | 2 +- community/qtcurve-kde3/PKGBUILD | 2 +- community/qtcurve-kde4/PKGBUILD | 2 +- community/qtspim/PKGBUILD | 2 +- community/quagga/PKGBUILD | 2 +- community/qucs/PKGBUILD | 2 +- community/qupzilla/PKGBUILD | 2 +- community/r8168-lts/PKGBUILD | 2 +- community/ragel/PKGBUILD | 2 +- community/regexxer/PKGBUILD | 2 +- community/ruby-ncurses/PKGBUILD | 2 +- community/rxvt/PKGBUILD | 2 +- community/rygel/PKGBUILD | 2 +- community/sdcv/PKGBUILD | 2 +- community/seahorse-nautilus/PKGBUILD | 2 +- community/sensors-applet/PKGBUILD | 2 +- community/sfk/PKGBUILD | 2 +- community/simgear/PKGBUILD | 2 +- community/spacefm/PKGBUILD | 2 +- community/spectrwm/PKGBUILD | 2 +- community/sshpass/PKGBUILD | 2 +- community/start-stop-daemon/PKGBUILD | 2 +- community/sylpheed/PKGBUILD | 2 +- community/sysvbanner/PKGBUILD | 2 +- community/talkfilters/PKGBUILD | 2 +- community/tcc/PKGBUILD | 2 +- community/tightvnc/PKGBUILD | 2 +- community/tinyxml/PKGBUILD | 2 +- community/ubuntuone-client-gnome/PKGBUILD | 2 +- community/ubuntuone-client/PKGBUILD | 2 +- community/ucarp/PKGBUILD | 2 +- community/uget/PKGBUILD | 2 +- community/ulogd/PKGBUILD | 2 +- community/unhide/PKGBUILD | 2 +- community/uriparser/PKGBUILD | 2 +- community/vdrift/PKGBUILD | 2 +- community/vlan/PKGBUILD | 2 +- community/volumeicon/PKGBUILD | 2 +- community/vyqchat/PKGBUILD | 2 +- community/wesnoth/PKGBUILD | 2 +- community/wings3d/PKGBUILD | 2 +- community/wxcam/PKGBUILD | 2 +- community/xautomation/PKGBUILD | 2 +- community/xml2/PKGBUILD | 2 +- community/xmlstarlet/PKGBUILD | 2 +- community/xonotic/PKGBUILD | 2 +- community/yaml-cpp/PKGBUILD | 2 +- community/zathura-pdf-poppler/PKGBUILD | 2 +- community/zathura-ps/PKGBUILD | 2 +- community/zynaddsubfx/PKGBUILD | 2 +- extra/anjuta-extras/PKGBUILD | 2 +- extra/appmenu-qt/PKGBUILD | 2 +- extra/bin86/PKGBUILD | 2 +- extra/bootchart/PKGBUILD | 2 +- extra/burp/PKGBUILD | 2 +- extra/calligra/PKGBUILD | 2 +- extra/caribou/PKGBUILD | 2 +- extra/ccrtp/PKGBUILD | 2 +- extra/cups/PKGBUILD | 2 +- extra/dmidecode/PKGBUILD | 2 +- extra/efibootmgr/PKGBUILD | 2 +- extra/evolution-ews/PKGBUILD | 2 +- extra/evolution-groupwise/PKGBUILD | 2 +- extra/fprintd/PKGBUILD | 2 +- extra/gettext-mono/PKGBUILD | 2 +- extra/ggz-gtk-client/PKGBUILD | 2 +- extra/gnome-desktop-sharp/PKGBUILD | 2 +- extra/gnome-dictionary/PKGBUILD | 2 +- extra/gnome-font-viewer/PKGBUILD | 2 +- extra/gnome-keyring-sharp/PKGBUILD | 2 +- extra/gnome-screenshot/PKGBUILD | 2 +- extra/gnome-search-tool/PKGBUILD | 2 +- extra/gnome-sharp/PKGBUILD | 2 +- extra/gnu-efi/PKGBUILD | 2 +- extra/grilo-plugins/PKGBUILD | 2 +- extra/gtk-sharp-2/PKGBUILD | 2 +- extra/gupnp-av/PKGBUILD | 2 +- extra/gupnp-igd/PKGBUILD | 2 +- extra/gupnp/PKGBUILD | 2 +- extra/haskell-random/PKGBUILD | 2 +- extra/herqq/PKGBUILD | 2 +- extra/hpoj/PKGBUILD | 2 +- extra/icedtea-web-java7/PKGBUILD | 2 +- extra/isapnptools/PKGBUILD | 2 +- extra/java7-openjdk/PKGBUILD | 2 +- extra/kdeaccessibility-jovie/PKGBUILD | 2 +- extra/kdeaccessibility-kaccessible/PKGBUILD | 2 +- extra/kdeaccessibility-kmag/PKGBUILD | 2 +- extra/kdeaccessibility-kmousetool/PKGBUILD | 2 +- extra/kdeaccessibility-kmouth/PKGBUILD | 2 +- extra/kdebindings-kimono/PKGBUILD | 2 +- extra/kdeedu-analitza/PKGBUILD | 2 +- extra/kdelibs3/PKGBUILD | 2 +- extra/kdeutils-filelight/PKGBUILD | 2 +- extra/kdeutils-kcalc/PKGBUILD | 2 +- extra/kdeutils-kcharselect/PKGBUILD | 2 +- extra/kdeutils-kdf/PKGBUILD | 2 +- extra/kdeutils-kfloppy/PKGBUILD | 2 +- extra/kdeutils-kgpg/PKGBUILD | 2 +- extra/kdeutils-kremotecontrol/PKGBUILD | 2 +- extra/kdeutils-ksecrets/PKGBUILD | 2 +- extra/kdeutils-ktimer/PKGBUILD | 2 +- extra/kdeutils-kwallet/PKGBUILD | 2 +- extra/kdeutils-superkaramba/PKGBUILD | 2 +- extra/kdeutils-sweeper/PKGBUILD | 2 +- extra/lame/PKGBUILD | 2 +- extra/libdrm-new/PKGBUILD | 2 +- extra/libfprint/PKGBUILD | 2 +- extra/libkgoogle/PKGBUILD | 2 +- extra/libmusicbrainz4/PKGBUILD | 2 +- extra/libsrtp/PKGBUILD | 2 +- extra/libunistring/PKGBUILD | 2 +- extra/libva-driver-intel/PKGBUILD | 2 +- extra/libva/PKGBUILD | 2 +- extra/libvdpau/PKGBUILD | 2 +- extra/libzrtpcpp/PKGBUILD | 2 +- extra/lv2/PKGBUILD | 2 +- extra/misdnuser/PKGBUILD | 2 +- extra/mod_mono/PKGBUILD | 2 +- extra/mono-addins/PKGBUILD | 2 +- extra/mono-basic/PKGBUILD | 2 +- extra/mono-debugger/PKGBUILD | 2 +- extra/mono-tools/PKGBUILD | 2 +- extra/mono-upnp/PKGBUILD | 2 +- extra/mono/PKGBUILD | 2 +- extra/monodevelop-debugger-gdb/PKGBUILD | 2 +- extra/monodevelop/PKGBUILD | 2 +- extra/mutter/PKGBUILD | 2 +- extra/nawk/PKGBUILD | 2 +- extra/nx/PKGBUILD | 2 +- extra/oxygen-gtk2/PKGBUILD | 2 +- extra/oxygen-gtk3/PKGBUILD | 2 +- extra/perl-async-interrupt/PKGBUILD | 2 +- extra/perl-crypt-openssl-bignum/PKGBUILD | 2 +- extra/perl-crypt-openssl-random/PKGBUILD | 2 +- extra/perl-crypt-openssl-rsa/PKGBUILD | 2 +- extra/perl-guard/PKGBUILD | 2 +- extra/perl-list-moreutils/PKGBUILD | 2 +- extra/php-xcache/PKGBUILD | 2 +- extra/qt3/PKGBUILD | 2 +- extra/spandsp/PKGBUILD | 2 +- extra/sushi/PKGBUILD | 2 +- extra/taglib-sharp/PKGBUILD | 2 +- extra/telepathy-kde-common-internals/PKGBUILD | 2 +- extra/telepathy-kde-contact-applet/PKGBUILD | 2 +- extra/telepathy-kde-presence-applet/PKGBUILD | 2 +- extra/ucommon/PKGBUILD | 2 +- extra/valgrind/PKGBUILD | 2 +- extra/vdpau-video/PKGBUILD | 2 +- extra/webkit-sharp/PKGBUILD | 2 +- extra/wildmidi/PKGBUILD | 2 +- extra/x11-ssh-askpass/PKGBUILD | 2 +- extra/xbase/PKGBUILD | 2 +- extra/xf86-input-keyboard/PKGBUILD | 2 +- extra/xf86-input-mouse/PKGBUILD | 2 +- extra/xf86-video-apm/PKGBUILD | 2 +- extra/xf86-video-ark/PKGBUILD | 2 +- extra/xf86-video-ast/PKGBUILD | 2 +- extra/xf86-video-ati/PKGBUILD | 2 +- extra/xf86-video-chips/PKGBUILD | 2 +- extra/xf86-video-cirrus/PKGBUILD | 2 +- extra/xf86-video-glint/PKGBUILD | 2 +- extra/xf86-video-i128/PKGBUILD | 2 +- extra/xf86-video-i740/PKGBUILD | 2 +- extra/xf86-video-intel/PKGBUILD | 2 +- extra/xf86-video-mach64/PKGBUILD | 2 +- extra/xf86-video-mga/PKGBUILD | 2 +- extra/xf86-video-neomagic/PKGBUILD | 2 +- extra/xf86-video-nouveau/PKGBUILD | 2 +- extra/xf86-video-nv/PKGBUILD | 2 +- extra/xf86-video-openchrome/PKGBUILD | 2 +- extra/xf86-video-r128/PKGBUILD | 2 +- extra/xf86-video-rendition/PKGBUILD | 2 +- extra/xf86-video-s3/PKGBUILD | 2 +- extra/xf86-video-s3virge/PKGBUILD | 2 +- extra/xf86-video-savage/PKGBUILD | 2 +- extra/xf86-video-sisimedia/PKGBUILD | 2 +- extra/xf86-video-sisusb/PKGBUILD | 2 +- extra/xf86-video-tdfx/PKGBUILD | 2 +- extra/xf86-video-trident/PKGBUILD | 2 +- extra/xf86-video-tseng/PKGBUILD | 2 +- extra/xf86-video-unichrome/PKGBUILD | 2 +- extra/xf86-video-v4l/PKGBUILD | 2 +- extra/xf86-video-vesa/PKGBUILD | 2 +- extra/xf86-video-voodoo/PKGBUILD | 2 +- extra/zeitgeist/PKGBUILD | 2 +- 393 files changed, 393 insertions(+), 393 deletions(-) (limited to 'community') diff --git a/community/0ad/PKGBUILD b/community/0ad/PKGBUILD index a0fee19cf..00f34cdc7 100644 --- a/community/0ad/PKGBUILD +++ b/community/0ad/PKGBUILD @@ -6,7 +6,7 @@ pkgver=a10 _pkgver=r11863-alpha pkgrel=2 pkgdesc="Cross-platform, 3D and historically-based real-time strategy game" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://wildfiregames.com/0ad" license=('GPL2' 'CCPL') depends=('binutils' 'boost-libs' 'curl' 'enet>=1.3' 'gamin' 'libogg' 'libpng' 'libvorbis' 'libxml2' 'openal' 'openexr' 'python2' 'sdl' 'wxgtk' 'zip' 'zlib' 'libgl' '0ad-data') diff --git a/community/acpi/PKGBUILD b/community/acpi/PKGBUILD index f4eb265c2..634c26b0f 100644 --- a/community/acpi/PKGBUILD +++ b/community/acpi/PKGBUILD @@ -5,7 +5,7 @@ pkgname=acpi pkgver=1.6 pkgrel=1 pkgdesc="Linux ACPI client providing battery, AC power, and thermal readings" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://sourceforge.net/projects/acpiclient" depends=('glibc') source=(http://downloads.sourceforge.net/acpiclient/$pkgname-$pkgver.tar.gz) diff --git a/community/acpid/PKGBUILD b/community/acpid/PKGBUILD index bf89aec57..a4d931af5 100644 --- a/community/acpid/PKGBUILD +++ b/community/acpid/PKGBUILD @@ -8,7 +8,7 @@ pkgname=acpid pkgver=2.0.16 pkgrel=3 pkgdesc='A daemon for delivering ACPI power management events with netlink support' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://tedfelix.com/linux/acpid-netlink.html' license=('GPL') depends=('bash') diff --git a/community/afpfs-ng/PKGBUILD b/community/afpfs-ng/PKGBUILD index 4435ea05d..f8dc2d6fc 100644 --- a/community/afpfs-ng/PKGBUILD +++ b/community/afpfs-ng/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="A client for the Apple Filing Protocol (AFP)" url="http://alexthepuffin.googlepages.com/" license=('GPL') depends=('gmp' 'fuse' 'libgcrypt') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') options=(!libtool) source=( "http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2" diff --git a/community/alex/PKGBUILD b/community/alex/PKGBUILD index d65b9b49a..4f078a8ca 100644 --- a/community/alex/PKGBUILD +++ b/community/alex/PKGBUILD @@ -7,7 +7,7 @@ pkgname=alex pkgver=3.0.1 pkgrel=1 pkgdesc='a lexical analyser generator for Haskell' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.haskell.org/alex/' license=('custom:BSD3') depends=('gmp') diff --git a/community/allegro/PKGBUILD b/community/allegro/PKGBUILD index 7d196d76a..3269d92ac 100644 --- a/community/allegro/PKGBUILD +++ b/community/allegro/PKGBUILD @@ -8,7 +8,7 @@ pkgname=allegro pkgver=5.0.6 pkgrel=3 pkgdesc="Portable library mainly aimed at video game and multimedia programming" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://alleg.sourceforge.net/" license=('custom') depends=('jack' 'libxpm' 'libxxf86dga' 'libgl' 'physfs' 'gtk2' 'libpulse') diff --git a/community/alleyoop/PKGBUILD b/community/alleyoop/PKGBUILD index 453a91793..6d8ebdaf8 100644 --- a/community/alleyoop/PKGBUILD +++ b/community/alleyoop/PKGBUILD @@ -7,7 +7,7 @@ pkgname=alleyoop pkgver=0.9.8 pkgrel=2 pkgdesc="Valgrind front-end for the GNOME environment" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://alleyoop.sourceforge.net/" license=('GPL2') depends=('valgrind' 'libgnomeui' 'hicolor-icon-theme') diff --git a/community/almanah/PKGBUILD b/community/almanah/PKGBUILD index dcc6ef819..d42dafb35 100644 --- a/community/almanah/PKGBUILD +++ b/community/almanah/PKGBUILD @@ -5,7 +5,7 @@ pkgname=almanah pkgver=0.9.0 pkgrel=1 pkgdesc="Small GTK+ application to allow you to keep a diary of your life" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://live.gnome.org/Almanah_Diary" license=('GPL') depends=('evolution-data-server>=3.4.0' 'gtkspell3' 'libcryptui' 'xdg-utils') diff --git a/community/alsa-tools/PKGBUILD b/community/alsa-tools/PKGBUILD index dbb3334a1..c49246f5d 100644 --- a/community/alsa-tools/PKGBUILD +++ b/community/alsa-tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=alsa-tools pkgver=1.0.25 pkgrel=1 pkgdesc='ALSA tools package' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://alsa-project.org/' license=('GPL2') depends=('fltk' 'alsa-lib' 'gtk2') diff --git a/community/apper/PKGBUILD b/community/apper/PKGBUILD index a280cd363..1f5df85bb 100644 --- a/community/apper/PKGBUILD +++ b/community/apper/PKGBUILD @@ -8,7 +8,7 @@ _pkgmainver=0.7 pkgver=0.7.2 pkgrel=1 pkgdesc="KDE tools for PackageKit" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://kde-apps.org/content/show.php/Apper?content=84745" license=('GPL') depends=('kdebase-workspace' 'packagekit-qt2>=0.6.17') diff --git a/community/arm-elf-binutils/PKGBUILD b/community/arm-elf-binutils/PKGBUILD index 06b81f00e..ac242c134 100644 --- a/community/arm-elf-binutils/PKGBUILD +++ b/community/arm-elf-binutils/PKGBUILD @@ -6,7 +6,7 @@ pkgver=2.22 pkgrel=1 _xprefix=/usr pkgdesc="A set of programs to assemble and manipulate binary and object files" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=(GPL) options=(!libtool) url="http://sources.redhat.com/binutils" diff --git a/community/arm-elf-gcc-base/PKGBUILD b/community/arm-elf-gcc-base/PKGBUILD index f05d12e4e..c3847cddf 100644 --- a/community/arm-elf-gcc-base/PKGBUILD +++ b/community/arm-elf-gcc-base/PKGBUILD @@ -5,7 +5,7 @@ pkgname=arm-elf-gcc-base pkgver=4.7.0 pkgrel=1 pkgdesc="The GNU Compiler Collection" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('GPL' 'LGPL') url="http://gcc.gnu.org" depends=('arm-elf-binutils' 'libmpc' 'libelf') diff --git a/community/arm-wince-cegcc-binutils/PKGBUILD b/community/arm-wince-cegcc-binutils/PKGBUILD index 54d657183..edd8f46df 100644 --- a/community/arm-wince-cegcc-binutils/PKGBUILD +++ b/community/arm-wince-cegcc-binutils/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.59.1 pkgrel=1 _prefix=/opt/cegcc pkgdesc="CE GCC bundle - cross compilation tools for WinCE" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=(GPL) options=(!libtool) url="http://cegcc.sf.net" diff --git a/community/arm-wince-cegcc-gcc-base/PKGBUILD b/community/arm-wince-cegcc-gcc-base/PKGBUILD index 7f8d17053..50d765ac0 100644 --- a/community/arm-wince-cegcc-gcc-base/PKGBUILD +++ b/community/arm-wince-cegcc-gcc-base/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.59.1 pkgrel=3 _prefix=/opt/cegcc pkgdesc="CE GCC bundle - cross compilation tools for WinCE" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=(GPL) options=(!libtool) url="http://cegcc.sf.net" diff --git a/community/arm-wince-cegcc-gcc/PKGBUILD b/community/arm-wince-cegcc-gcc/PKGBUILD index 94d673d23..8787f4b46 100644 --- a/community/arm-wince-cegcc-gcc/PKGBUILD +++ b/community/arm-wince-cegcc-gcc/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.59.1 pkgrel=4 _prefix=/opt/cegcc pkgdesc="CE GCC bundle - cross compilation tools for WinCE" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('GPL') options=(!libtool !strip) url="http://cegcc.sf.net" diff --git a/community/arptables/PKGBUILD b/community/arptables/PKGBUILD index 21023214b..40eba2685 100644 --- a/community/arptables/PKGBUILD +++ b/community/arptables/PKGBUILD @@ -7,7 +7,7 @@ pkgname=arptables pkgver=0.0.3_4 pkgrel=3 pkgdesc='ARP filtering utility' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://ebtables.sourceforge.net/' license=('GPL') backup=("etc/$pkgname.conf" "etc/conf.d/$pkgname") diff --git a/community/assimp/PKGBUILD b/community/assimp/PKGBUILD index 8f5965695..8dc5bff69 100644 --- a/community/assimp/PKGBUILD +++ b/community/assimp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=assimp pkgver=2.0.863 pkgrel=1 pkgdesc="Portable Open Source library to import various well-known 3D model formats in an uniform manner" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('BSD') makedepends=('cmake' 'boost') url=('http://assimp.sourceforge.net/index.html') diff --git a/community/audit/PKGBUILD b/community/audit/PKGBUILD index fe854547f..91d738d59 100644 --- a/community/audit/PKGBUILD +++ b/community/audit/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.2.1 pkgrel=1 pkgdesc='User space utilities for storing and searching the audit records generated by the audit subsystem in the Linux kernel.' url=http://people.redhat.com/sgrubb/$pkgname -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) depends=(krb5 libcap-ng) makedepends=(libldap swig linux-headers python2) license=(GPL) diff --git a/community/avifile/PKGBUILD b/community/avifile/PKGBUILD index 01a3fb809..e38f7fb94 100644 --- a/community/avifile/PKGBUILD +++ b/community/avifile/PKGBUILD @@ -7,7 +7,7 @@ pkgname=avifile pkgver=0.7.45 pkgrel=8 pkgdesc="A library that allows you to read and write compressed AVI files" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('qt' 'sdl' 'freetype2' 'libpng' 'libjpeg' 'libvorbis' 'xvidcore' 'libxxf86dga' 'libxi' 'libxv') makedepends=('lame' 'qt3' 'v4l-utils' 'chrpath') diff --git a/community/avr-binutils/PKGBUILD b/community/avr-binutils/PKGBUILD index c5a99cd29..18ef8f9e6 100644 --- a/community/avr-binutils/PKGBUILD +++ b/community/avr-binutils/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=3 _pkgname=binutils _date=20120323 pkgdesc="A set of programs to assemble and manipulate binary and object files for the avr architecture" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.gnu.org/software/binutils/" license=('GPL') depends=('glibc>=2.15' 'zlib') diff --git a/community/avr-gcc/PKGBUILD b/community/avr-gcc/PKGBUILD index fc3f36923..e09943802 100644 --- a/community/avr-gcc/PKGBUILD +++ b/community/avr-gcc/PKGBUILD @@ -9,7 +9,7 @@ _pkgname=gcc pkgver=4.7.0 pkgrel=1 pkgdesc="The GNU avr Compiler Collection" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'custom') url="http://gcc.gnu.org/" depends=('avr-binutils>=2.22-3' 'cloog' 'ppl' 'gcc-libs>=4.7.0' 'libmpc') diff --git a/community/awesome/PKGBUILD b/community/awesome/PKGBUILD index 7509a241b..ee6427335 100644 --- a/community/awesome/PKGBUILD +++ b/community/awesome/PKGBUILD @@ -8,7 +8,7 @@ pkgname=awesome pkgver=3.4.11 pkgrel=5 pkgdesc='Highly configurable framework window manager' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://awesome.naquadah.org/' license=('GPL2') depends=( diff --git a/community/bam/PKGBUILD b/community/bam/PKGBUILD index 849bd6271..fb6384301 100644 --- a/community/bam/PKGBUILD +++ b/community/bam/PKGBUILD @@ -4,7 +4,7 @@ pkgname=bam pkgver=0.4.0 pkgrel=1 pkgdesc="A fast and flexible build system using Lua" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url=http://github.com/matricks/bam license=('ZLIB') source=("https://github.com/downloads/matricks/bam/${pkgname}-${pkgver}.tar.gz") diff --git a/community/bcg729/PKGBUILD b/community/bcg729/PKGBUILD index 2e5613459..23cb66cf3 100644 --- a/community/bcg729/PKGBUILD +++ b/community/bcg729/PKGBUILD @@ -5,7 +5,7 @@ pkgname=bcg729 pkgver=1.0.0 pkgrel=2 pkgdesc="g729 codec" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.linphone.org/eng/documentation/dev/bcg729.html" license=('GPL') depends=('mediastreamer') diff --git a/community/bitcoin/PKGBUILD b/community/bitcoin/PKGBUILD index c1c04dabc..fc1930db8 100644 --- a/community/bitcoin/PKGBUILD +++ b/community/bitcoin/PKGBUILD @@ -7,7 +7,7 @@ pkgname=('bitcoin-daemon' 'bitcoin-qt') pkgver=0.6.2 _commit=06d764e pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.bitcoin.org/" makedepends=('boost' 'automoc4' 'miniupnpc') conflicts=('bitcoin' 'bitcoin-bin' 'bitcoin-git') diff --git a/community/blender/PKGBUILD b/community/blender/PKGBUILD index 9b29914cb..79bbbdae8 100644 --- a/community/blender/PKGBUILD +++ b/community/blender/PKGBUILD @@ -17,7 +17,7 @@ pkgver=2.63a pkgrel=1 epoch=4 pkgdesc="A fully integrated 3D graphics creation suite" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') url="http://www.blender.org" depends=('libpng' 'libtiff' 'openexr' 'python' 'desktop-file-utils' diff --git a/community/c++-gtk-utils/PKGBUILD b/community/c++-gtk-utils/PKGBUILD index 80e289533..51ed71635 100644 --- a/community/c++-gtk-utils/PKGBUILD +++ b/community/c++-gtk-utils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=c++-gtk-utils pkgver=2.0.9 pkgrel=1 pkgdesc="Classes and functions for programming in GTK+" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://cxx-gtk-utils.sourceforge.net/" license=('LGPL2.1') depends=('gtk3') diff --git a/community/cdrtools/PKGBUILD b/community/cdrtools/PKGBUILD index 82d8f1fc2..66e433311 100644 --- a/community/cdrtools/PKGBUILD +++ b/community/cdrtools/PKGBUILD @@ -4,7 +4,7 @@ pkgname=cdrtools pkgver=3.01a07 pkgrel=3 pkgdesc="Original cdrtools supporting CD, DVD and BluRay burning" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://cdrecord.berlios.de/private/cdrecord.html" license=('CDDL') depends=('acl') diff --git a/community/chromaprint/PKGBUILD b/community/chromaprint/PKGBUILD index 8b0f2fff5..ea7e1ef90 100644 --- a/community/chromaprint/PKGBUILD +++ b/community/chromaprint/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.6 pkgrel=2 pkgdesc='Library that implements a custom algorithm for extracting fingerprints from any audio source' url='http://acoustid.org/chromaprint/' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('LGPL') depends=('ffmpeg') makedepends=('cmake') diff --git a/community/chromium-bsu/PKGBUILD b/community/chromium-bsu/PKGBUILD index a01abed95..3f1b30386 100644 --- a/community/chromium-bsu/PKGBUILD +++ b/community/chromium-bsu/PKGBUILD @@ -6,7 +6,7 @@ pkgname=chromium-bsu pkgver=0.9.15 pkgrel=2 pkgdesc="A fast paced top scrolling shooter" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://chromium-bsu.sourceforge.net/" license=('custom:artistic') depends=('freeglut' 'sdl' 'openal' 'freealut' 'glpng' 'ftgl' 'fontconfig' 'sdl_image') diff --git a/community/cl/PKGBUILD b/community/cl/PKGBUILD index 91f5d8496..714f8dd28 100644 --- a/community/cl/PKGBUILD +++ b/community/cl/PKGBUILD @@ -5,7 +5,7 @@ pkgname=cl pkgver=1.0 pkgrel=1 -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') pkgdesc="OpenCL binding for the Erlang programming language" url="http://github.com/tonyrog/cl" license=('custom:unknown') diff --git a/community/clinica/PKGBUILD b/community/clinica/PKGBUILD index 489c0aea2..85bd9b258 100644 --- a/community/clinica/PKGBUILD +++ b/community/clinica/PKGBUILD @@ -6,7 +6,7 @@ pkgname=clinica pkgver=0.2.1 pkgrel=4 pkgdesc="Simple medical records manager" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://launchpad.net/clinica-project" license=('GPL3') depends=('libgee' 'python' 'libpeas' 'dconf') diff --git a/community/cmus/PKGBUILD b/community/cmus/PKGBUILD index 513b73d62..e0ca36e41 100644 --- a/community/cmus/PKGBUILD +++ b/community/cmus/PKGBUILD @@ -7,7 +7,7 @@ pkgname=cmus pkgver=2.4.3 pkgrel=2 pkgdesc="A very feature-rich ncurses-based music player" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://cmus.sourceforge.net/" license=('GPL') depends=('ncurses') diff --git a/community/conntrack-tools/PKGBUILD b/community/conntrack-tools/PKGBUILD index ea18a0367..006e17429 100644 --- a/community/conntrack-tools/PKGBUILD +++ b/community/conntrack-tools/PKGBUILD @@ -8,7 +8,7 @@ pkgname=conntrack-tools pkgver=1.0.1 pkgrel=2 pkgdesc='Userspace tools to interact with the Netfilter connection tracking system' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.netfilter.org/projects/conntrack-tools' license=('GPL2') depends=('libnetfilter_conntrack') diff --git a/community/contacts/PKGBUILD b/community/contacts/PKGBUILD index f0c26da9e..638c9866d 100644 --- a/community/contacts/PKGBUILD +++ b/community/contacts/PKGBUILD @@ -5,7 +5,7 @@ pkgname=contacts pkgver=0.12 pkgrel=6 pkgdesc="Small, lightweight GTK+ address book app" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://pimlico-project.org/contacts.html" license=('GPL') depends=('gtk2' 'evolution-data-server' 'desktop-file-utils' 'xdg-utils') diff --git a/community/converseen/PKGBUILD b/community/converseen/PKGBUILD index fd45f1343..7b44ecc55 100644 --- a/community/converseen/PKGBUILD +++ b/community/converseen/PKGBUILD @@ -6,7 +6,7 @@ pkgname=converseen pkgver=0.5 pkgrel=1 pkgdesc="The batch image converter and resizer" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://converseen.sourceforge.net/" license=('GPL3') depends=('imagemagick' 'qt' 'libwmf' 'openexr') diff --git a/community/dates/PKGBUILD b/community/dates/PKGBUILD index be21590ff..8c512cb21 100644 --- a/community/dates/PKGBUILD +++ b/community/dates/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dates pkgver=0.4.11 pkgrel=5 pkgdesc="Small, lightweight GTK+ calendar app" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://pimlico-project.org/dates.html" license=('GPL') depends=('gtk2' 'evolution-data-server' 'xdg-utils') diff --git a/community/dcron/PKGBUILD b/community/dcron/PKGBUILD index c426b3825..a84c051f3 100644 --- a/community/dcron/PKGBUILD +++ b/community/dcron/PKGBUILD @@ -4,7 +4,7 @@ pkgname=dcron pkgver=4.5 pkgrel=2 pkgdesc="dillon's lightweight cron daemon" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') url="http://www.jimpryor.net/linux/dcron.html" backup=('var/spool/cron/root' 'etc/conf.d/crond') diff --git a/community/dee/PKGBUILD b/community/dee/PKGBUILD index 0db88a375..a116b0f00 100644 --- a/community/dee/PKGBUILD +++ b/community/dee/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dee pkgver=1.0.10 pkgrel=1 pkgdesc="Library to provide objects allowing to create Model-View-Controller type programs across DBus" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://launchpad.net/dee" license=('LGPL') depends=('glib2' 'icu') diff --git a/community/desmume/PKGBUILD b/community/desmume/PKGBUILD index fa25a9607..187177a00 100644 --- a/community/desmume/PKGBUILD +++ b/community/desmume/PKGBUILD @@ -14,7 +14,7 @@ pkgname=desmume pkgver=0.9.8 pkgrel=1 pkgdesc="Nintendo DS emulator" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://desmume.org/" license=('GPL') depends=('agg' 'gtkglext' 'libglade' 'desktop-file-utils' 'libpcap' diff --git a/community/dmd/PKGBUILD b/community/dmd/PKGBUILD index 69bc1c1ce..840f9311c 100644 --- a/community/dmd/PKGBUILD +++ b/community/dmd/PKGBUILD @@ -9,7 +9,7 @@ pkgname=('dmd' 'libphobos') pkgbase=dmd pkgver=2.059 pkgrel=3 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.digitalmars.com/d/2.0/" source=(http://ftp.digitalmars.com/$pkgname.$pkgver.zip tools-${pkgver}.tar.gz::https://github.com/D-Programming-Language/tools/tarball/v${pkgver}) diff --git a/community/dos2unix/PKGBUILD b/community/dos2unix/PKGBUILD index d23448fdc..0a8bbf17f 100644 --- a/community/dos2unix/PKGBUILD +++ b/community/dos2unix/PKGBUILD @@ -7,7 +7,7 @@ pkgname=dos2unix pkgver=6.0 pkgrel=1 pkgdesc='Text file format converter' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://waterlan.home.xs4all.nl/dos2unix.html' license=('BSD') depends=('glibc') diff --git a/community/doublecmd/PKGBUILD b/community/doublecmd/PKGBUILD index 067c5120d..ade9c7dae 100644 --- a/community/doublecmd/PKGBUILD +++ b/community/doublecmd/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.5.4 _helpver=0.5.1 pkgrel=2.1 url="http://doublecmd.sourceforge.net/" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') install="$pkgbase.install" provides=("$pkgbase") diff --git a/community/drbd/PKGBUILD b/community/drbd/PKGBUILD index bff899504..970a0d180 100644 --- a/community/drbd/PKGBUILD +++ b/community/drbd/PKGBUILD @@ -4,7 +4,7 @@ pkgname=drbd pkgver=8.3.11 pkgrel=3 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') pkgdesc='Userland tools for drbd block devices' url='http://www.drbd.org' license=('GPL2') diff --git a/community/e3/PKGBUILD b/community/e3/PKGBUILD index 87ad8da78..542a0c649 100644 --- a/community/e3/PKGBUILD +++ b/community/e3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=e3 pkgver=2.8 pkgrel=3 pkgdesc="Editor written in assembly. Tiny, with no library dependencies." -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://sites.google.com/site/e3editor/" license=('GPL2') makedepends=('nasm') diff --git a/community/e4rat/PKGBUILD b/community/e4rat/PKGBUILD index 894c27259..3bc3a883b 100644 --- a/community/e4rat/PKGBUILD +++ b/community/e4rat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=e4rat pkgver=0.2.3 pkgrel=1 pkgdesc="Toolset to accelerate the boot process and application startups for systems with ext4 root partitions." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://e4rat.sourceforge.net/" license=('GPL') depends=('e2fsprogs') diff --git a/community/ebtables/PKGBUILD b/community/ebtables/PKGBUILD index 19acd60f5..ffc3b451b 100644 --- a/community/ebtables/PKGBUILD +++ b/community/ebtables/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ebtables pkgver=2.0.10_4 pkgrel=2 pkgdesc='Ethernet bridge filtering utilities' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://ebtables.sourceforge.net/' license=('GPL2') backup=("etc/$pkgname.conf" "etc/conf.d/$pkgname") diff --git a/community/ecryptfs-utils/PKGBUILD b/community/ecryptfs-utils/PKGBUILD index d5eb3440e..f6fbf591c 100644 --- a/community/ecryptfs-utils/PKGBUILD +++ b/community/ecryptfs-utils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ecryptfs-utils pkgver=96 pkgrel=3 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') pkgdesc="Enterprise-class stacked cryptographic filesystem for Linux" url="https://launchpad.net/ecryptfs" license=('GPL') diff --git a/community/efax-gtk/PKGBUILD b/community/efax-gtk/PKGBUILD index 24b3ee4db..c9363d1a5 100644 --- a/community/efax-gtk/PKGBUILD +++ b/community/efax-gtk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=efax-gtk pkgver=3.2.9 pkgrel=2 pkgdesc="A GUI front end for the 'efax' fax program" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://efax-gtk.sourceforge.net/" license=('GPL') depends=('dbus-glib' 'ghostscript' 'c++-gtk-utils') diff --git a/community/erlang/PKGBUILD b/community/erlang/PKGBUILD index dc683bf24..933865d51 100644 --- a/community/erlang/PKGBUILD +++ b/community/erlang/PKGBUILD @@ -8,7 +8,7 @@ pkgname=erlang pkgver=R15B01 pkgrel=1 pkgdesc='A small concurrent functional programming language developed by Ericsson.' -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url='http://www.erlang.org/index.html' license=('custom') depends=('ncurses' 'glibc') diff --git a/community/esdl/PKGBUILD b/community/esdl/PKGBUILD index f9ce99d8e..76b5be9d6 100644 --- a/community/esdl/PKGBUILD +++ b/community/esdl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=esdl pkgver=1.2 pkgrel=1 epoch=2 -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') pkgdesc="SDL and OpenGL bindings for the Erlang programming language" url="http://esdl.sourceforge.net/" license=('custom') diff --git a/community/ettercap/PKGBUILD b/community/ettercap/PKGBUILD index d23dd0e97..fb32aa935 100644 --- a/community/ettercap/PKGBUILD +++ b/community/ettercap/PKGBUILD @@ -7,7 +7,7 @@ pkgname=('ettercap' 'ettercap-gtk') pkgver=NG_0.7.4.2 _origver=${pkgver/_/-} pkgrel=2 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://ettercap.sourceforge.net/" license=('GPL') makedepends=('libpcap' 'libltdl' 'libnet' 'gtk2' 'hicolor-icon-theme') diff --git a/community/exfat-utils/PKGBUILD b/community/exfat-utils/PKGBUILD index cce282aca..b5436156e 100644 --- a/community/exfat-utils/PKGBUILD +++ b/community/exfat-utils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=exfat-utils pkgver=0.9.7 pkgrel=1 pkgdesc="Utilities for exFAT file system" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://code.google.com/p/exfat/" license=('GPL3') depends=('glibc') diff --git a/community/ext4magic/PKGBUILD b/community/ext4magic/PKGBUILD index 0dc2b9683..d229cb03f 100644 --- a/community/ext4magic/PKGBUILD +++ b/community/ext4magic/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ext4magic pkgver=0.3.0 pkgrel=1 pkgdesc='Linux admin tool, can help to recover deleted or overwritten files on ext3 and ext4 filesystems' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://developer.berlios.de/projects/ext4magic/' license=('GPL2') depends=('bzip2' 'file' 'util-linux' 'e2fsprogs') diff --git a/community/flightgear/PKGBUILD b/community/flightgear/PKGBUILD index 62e95dbce..50ddaec16 100644 --- a/community/flightgear/PKGBUILD +++ b/community/flightgear/PKGBUILD @@ -7,7 +7,7 @@ pkgname=flightgear pkgver=2.6.0 pkgrel=5 pkgdesc="An open-source, multi-platform flight simulator" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) depends=('simgear' 'libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion') makedepends=('boost' 'cmake') license=("GPL") diff --git a/community/freeorion/PKGBUILD b/community/freeorion/PKGBUILD index 57c75780a..ad30d215f 100644 --- a/community/freeorion/PKGBUILD +++ b/community/freeorion/PKGBUILD @@ -10,7 +10,7 @@ pkgver=0.4 _fixedrevision=4635 pkgrel=5 pkgdesc="Turn-based galactic conquest game inspired by Master of Orion" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://www.freeorion.org/" license=('GPL') if [ "$CARCH" == "x86_64" ] diff --git a/community/fuse-exfat/PKGBUILD b/community/fuse-exfat/PKGBUILD index a58cad0e8..8df8a4d10 100644 --- a/community/fuse-exfat/PKGBUILD +++ b/community/fuse-exfat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fuse-exfat pkgver=0.9.7 pkgrel=1 pkgdesc="Free exFAT file system implementation" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://code.google.com/p/exfat/" license=('GPL3') depends=('fuse') diff --git a/community/fwbuilder/PKGBUILD b/community/fwbuilder/PKGBUILD index f1cd6f800..ae559607c 100644 --- a/community/fwbuilder/PKGBUILD +++ b/community/fwbuilder/PKGBUILD @@ -7,7 +7,7 @@ pkgver=5.1.0.3599 pkgrel=1 pkgdesc="Object-oriented GUI and set of compilers for various firewall platforms" url="http://www.fwbuilder.org/" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') depends=('libxslt' 'net-snmp' 'qt') conflicts=('libfwbuilder') diff --git a/community/galculator/PKGBUILD b/community/galculator/PKGBUILD index aa61c2a5e..e2c37b07c 100644 --- a/community/galculator/PKGBUILD +++ b/community/galculator/PKGBUILD @@ -6,7 +6,7 @@ pkgname=galculator pkgver=1.3.4 pkgrel=2 pkgdesc="GTK+ based scientific calculator" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://galculator.sourceforge.net/" license=('GPL') depends=('libglade') diff --git a/community/gdesklets/PKGBUILD b/community/gdesklets/PKGBUILD index 959b9d38a..197781d7c 100644 --- a/community/gdesklets/PKGBUILD +++ b/community/gdesklets/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gdesklets pkgver=0.36.3 pkgrel=4 pkgdesc="System for bringing mini programs (desklets) onto your desktop" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://gdesklets.de/" license=('GPL') depends=('libgtop' 'librsvg' 'pygtk' 'desktop-file-utils' 'gnome-icon-theme' 'xdg-utils') diff --git a/community/gdlmm/PKGBUILD b/community/gdlmm/PKGBUILD index 68b56b12c..3c5d0091f 100644 --- a/community/gdlmm/PKGBUILD +++ b/community/gdlmm/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gdlmm pkgver=3.3.2 pkgrel=2 pkgdesc="C++ bindings for the gdl library" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://git.gnome.org/browse/gdlmm/" depends=('gdl' 'gtkmm3') options=(!libtool !emptydirs) diff --git a/community/gendesk/PKGBUILD b/community/gendesk/PKGBUILD index a067317a8..1559f9465 100644 --- a/community/gendesk/PKGBUILD +++ b/community/gendesk/PKGBUILD @@ -8,7 +8,7 @@ pkgname=gendesk pkgver=0.4.2 pkgrel=1 pkgdesc="Utility to generate .desktop files and download icons" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://roboticoverlords.org/gendesk/" license=('MIT') depends=('glibc') diff --git a/community/gftp/PKGBUILD b/community/gftp/PKGBUILD index 96c352d86..ecf7042e2 100644 --- a/community/gftp/PKGBUILD +++ b/community/gftp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gftp pkgver=2.0.19 pkgrel=4 pkgdesc="A multithreaded ftp client for X Windows" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.gftp.org/" license=('GPL2') depends=('gtk2' 'openssl' 'readline') diff --git a/community/gigi/PKGBUILD b/community/gigi/PKGBUILD index 80d7748ec..db11176b4 100644 --- a/community/gigi/PKGBUILD +++ b/community/gigi/PKGBUILD @@ -11,7 +11,7 @@ pkgrel=10 _fixedrevision=1074 pkgdesc="Small, efficient and feature rich GUI for C++ and OpenGL" url="http://gigi.sourceforge.net/" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') license=('LGPL') depends=('boost' 'mesa' 'libpng' 'libjpeg' 'libtiff' 'freetype2' 'ogre' 'sdl' 'ois' 'python') makedepends=('subversion' 'cmake' 'setconf' 'doxygen') diff --git a/community/gimp-refocus/PKGBUILD b/community/gimp-refocus/PKGBUILD index 6c031e39c..5cc3b5703 100644 --- a/community/gimp-refocus/PKGBUILD +++ b/community/gimp-refocus/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gimp-refocus pkgver=0.9.0 pkgrel=3 pkgdesc="A sharpen plugin for gimp using FIR Wiener filtering" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://refocus.sourceforge.net/" license=('GPL2') depends=('gimp') diff --git a/community/glabels/PKGBUILD b/community/glabels/PKGBUILD index 7aa5d16f3..37d4a74fb 100644 --- a/community/glabels/PKGBUILD +++ b/community/glabels/PKGBUILD @@ -7,7 +7,7 @@ pkgname=glabels pkgver=3.0.0 pkgrel=3 pkgdesc="Creating labels and business cards the very easy way" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://glabels.sourceforge.net/" license=('GPL' 'LGPL') depends=('librsvg' 'evolution-data-server>=3.4.0' 'qrencode' 'iec16022' 'dconf' 'desktop-file-utils' 'xdg-utils') diff --git a/community/glfw/PKGBUILD b/community/glfw/PKGBUILD index db6073db4..dda84c6ff 100644 --- a/community/glfw/PKGBUILD +++ b/community/glfw/PKGBUILD @@ -10,7 +10,7 @@ pkgname=glfw pkgver=2.7.5 pkgrel=1 pkgdesc="A free, open source, portable framework for OpenGL application development" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.glfw.org/" license=('custom:ZLIB') depends=('libgl' 'libxrandr') diff --git a/community/gmime24/PKGBUILD b/community/gmime24/PKGBUILD index 48573dffa..d72951ccf 100644 --- a/community/gmime24/PKGBUILD +++ b/community/gmime24/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gmime24 pkgver=2.4.32 pkgrel=1 pkgdesc="Core mime parsing library" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('GPL') url="http://spruce.sourceforge.net/gmime/" depends=('glib2' 'zlib') diff --git a/community/gmtk/PKGBUILD b/community/gmtk/PKGBUILD index 11d89fe2b..8141da27f 100644 --- a/community/gmtk/PKGBUILD +++ b/community/gmtk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gmtk pkgver=1.0.6 pkgrel=1 pkgdesc='Common functions for gnome-mplayer and gecko-mediaplay.' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://gmtk.googlecode.com/' license=('GPL') depends=('glib2' 'gtk3' 'dconf') diff --git a/community/gnac/PKGBUILD b/community/gnac/PKGBUILD index 9b70a49ff..42cb76b7f 100644 --- a/community/gnac/PKGBUILD +++ b/community/gnac/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnac pkgver=0.2.4.1 pkgrel=1 pkgdesc="Audio converter for GNOME" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://gnac.sourceforge.net/" license=('GPL') depends=('libnotify' 'libunique3' 'gstreamer0.10-base-plugins' 'dconf' 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/gnome-subtitles/PKGBUILD b/community/gnome-subtitles/PKGBUILD index 99ff8b9a6..b2f9fc5d9 100644 --- a/community/gnome-subtitles/PKGBUILD +++ b/community/gnome-subtitles/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-subtitles pkgver=1.2 pkgrel=3 pkgdesc="Video subtitle editor for GNOME" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://gnomesubtitles.org/" license=('GPL') depends=('gstreamer0.10-base-plugins' 'gconf-sharp' 'gtkspell' 'desktop-file-utils') diff --git a/community/gnome-web-photo/PKGBUILD b/community/gnome-web-photo/PKGBUILD index 42cd5b9f2..ee29c7b08 100644 --- a/community/gnome-web-photo/PKGBUILD +++ b/community/gnome-web-photo/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gnome-web-photo pkgver=0.10.6 pkgrel=1 pkgdesc="Generate full-size image files and thumbnails from HTML files and web pages" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://git.gnome.org/browse/gnome-web-photo/" license=('LGPL') depends=('libwebkit3') diff --git a/community/go/PKGBUILD b/community/go/PKGBUILD index 7218df886..ab6e73e97 100644 --- a/community/go/PKGBUILD +++ b/community/go/PKGBUILD @@ -13,7 +13,7 @@ pkgver=1.0.1 pkgrel=5 epoch=2 pkgdesc='Google Go compiler and tools (release version)' -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://golang.org/" license=('custom') depends=('perl' 'gawk') diff --git a/community/goobox/PKGBUILD b/community/goobox/PKGBUILD index 322e0ed15..6a5d3a949 100644 --- a/community/goobox/PKGBUILD +++ b/community/goobox/PKGBUILD @@ -5,7 +5,7 @@ pkgname=goobox pkgver=3.0.1 pkgrel=1 pkgdesc="CD player and ripper for GNOME" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://people.gnome.org/~paobac/goobox/" license=('GPL') depends=('brasero' 'libmusicbrainz3' 'libnotify' 'xdg-utils') diff --git a/community/grafx2/PKGBUILD b/community/grafx2/PKGBUILD index 208874d32..d7756ee14 100644 --- a/community/grafx2/PKGBUILD +++ b/community/grafx2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=grafx2 pkgver=2.3 pkgrel=3 pkgdesc="Pixelart-oriented painting program" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://code.google.com/p/grafx2/" license=('GPL2') install=grafx2.install diff --git a/community/gtk-engine-unico/PKGBUILD b/community/gtk-engine-unico/PKGBUILD index 5f2341d1d..3fd503843 100644 --- a/community/gtk-engine-unico/PKGBUILD +++ b/community/gtk-engine-unico/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtk-engine-unico pkgver=1.0.2 pkgrel=1 pkgdesc="Unico GTK3 theme engine" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://launchpad.net/unico" license=('GPL') depends=("gtk3") diff --git a/community/gtksourceviewmm/PKGBUILD b/community/gtksourceviewmm/PKGBUILD index 020dae4da..ad2c08025 100644 --- a/community/gtksourceviewmm/PKGBUILD +++ b/community/gtksourceviewmm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gtksourceviewmm pkgver=3.2.0 pkgrel=1 pkgdesc="provides C++ bindings for gtksourceview library" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://gnome.org" license=('LGPL2.1') depends=('gtkmm3' 'gtksourceview3') diff --git a/community/gtkspell3/PKGBUILD b/community/gtkspell3/PKGBUILD index a7dcee2f6..35929803e 100644 --- a/community/gtkspell3/PKGBUILD +++ b/community/gtkspell3/PKGBUILD @@ -10,7 +10,7 @@ _pkgver=3.0.0~hg20110814 pkgrel=1 url="http://gtkspell.sourceforge.net/" pkgdesc="Provides word-processor-style highlighting and replacement of misspelled words in a GtkTextView widget" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') depends=('gtk3' 'enchant') makedepends=('intltool') diff --git a/community/gupnp-dlna/PKGBUILD b/community/gupnp-dlna/PKGBUILD index dba60702f..cbb30c5ef 100644 --- a/community/gupnp-dlna/PKGBUILD +++ b/community/gupnp-dlna/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gupnp-dlna pkgver=0.6.6 pkgrel=1 pkgdesc="Library to ease DLNA-related bits for applications using gupnp" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://gupnp.org/" license=('LGPL') depends=('gstreamer0.10-base-plugins') diff --git a/community/gwget/PKGBUILD b/community/gwget/PKGBUILD index f14aa9a4d..ff888ec34 100644 --- a/community/gwget/PKGBUILD +++ b/community/gwget/PKGBUILD @@ -9,7 +9,7 @@ pkgname=gwget pkgver=1.0.4 pkgrel=5 pkgdesc="Download manager for GNOME" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://projects.gnome.org/gwget/" license=('GPL') depends=('gtk2' 'gconf' 'libnotify') diff --git a/community/gwibber/PKGBUILD b/community/gwibber/PKGBUILD index 459d8e45d..6d1c905b5 100644 --- a/community/gwibber/PKGBUILD +++ b/community/gwibber/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gwibber pkgver=3.4.1 pkgrel=1 pkgdesc="Microblogging client for GNOME, which supports Twitter, Identi.ca, StatusNet, Facebook, Flickr, Digg, FriendFeed and Qaiku" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://gwibber.com/" license=('GPL') depends=('libgee' 'libnotify' 'dee>=1.0.0' 'json-glib' 'gtkspell3' 'python2-gobject' 'libwnck3' 'libwebkit3' 'libgnome-keyring>=3.3' 'dbus-python' 'python2-httplib2' 'python-egenix-mx-base' 'python2-oauth' 'python-imaging' 'pyxdg' 'dconf' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/happy/PKGBUILD b/community/happy/PKGBUILD index 34dde4777..783bb51d6 100644 --- a/community/happy/PKGBUILD +++ b/community/happy/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.18.9 pkgrel=4 pkgdesc="The Parser Generator for Haskell" url="http://www.haskell.org/happy/" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=("custom:BSD3") depends=('gmp') makedepends=('ghc=7.4.1' 'haskell-mtl=2.0.1.0-4') diff --git a/community/hardlink/PKGBUILD b/community/hardlink/PKGBUILD index 018471415..edf5d6973 100644 --- a/community/hardlink/PKGBUILD +++ b/community/hardlink/PKGBUILD @@ -5,7 +5,7 @@ pkgname=hardlink pkgver=0.2.0 pkgrel=1 pkgdesc='Replace file copies using hardlinks' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://jak-linux.org/projects/hardlink/' license=('custom: MIT') depends=('glibc' 'pcre') diff --git a/community/haskell-bytestring-show/PKGBUILD b/community/haskell-bytestring-show/PKGBUILD index 70be95153..576ac74a3 100644 --- a/community/haskell-bytestring-show/PKGBUILD +++ b/community/haskell-bytestring-show/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Efficient conversion of values into readable byte strings." url="http://code.haskell.org/~dolio/" license=("BSD3") -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') makedepends=() depends=("ghc=7.4.1-2") install="${pkgname}.install" diff --git a/community/haskell-cairo/PKGBUILD b/community/haskell-cairo/PKGBUILD index efc2d5b4f..9af4c4cd4 100644 --- a/community/haskell-cairo/PKGBUILD +++ b/community/haskell-cairo/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Binding to the cairo library for Gtk2Hs." url="http://hackage.haskell.org/package/cairo" license=('LGPL2.1') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('ghc' 'cairo' 'haskell-mtl') makedepends=("gtk2hs-buildtools") options=('strip') diff --git a/community/haskell-glib/PKGBUILD b/community/haskell-glib/PKGBUILD index 9af16ea0b..0b74ceec2 100644 --- a/community/haskell-glib/PKGBUILD +++ b/community/haskell-glib/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Binding to the GLIB library for Gtk2Hs." url="http://hackage.haskell.org/package/glib" license=('LGPL2.1') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('ghc' 'glib2') makedepends=("gtk2hs-buildtools") options=('strip') diff --git a/community/haskell-gtk/PKGBUILD b/community/haskell-gtk/PKGBUILD index 8b0821189..060c24cd4 100644 --- a/community/haskell-gtk/PKGBUILD +++ b/community/haskell-gtk/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Binding to the gtk library for Gtk2Hs." url="http://hackage.haskell.org/package/gtk" license=('LGPL2.1') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('ghc' 'gtk2' "haskell-pango=$pkgver" 'haskell-mtl=2.0.1.0') makedepends=("gtk2hs-buildtools") provides=('gtk2hs-gtk') diff --git a/community/haskell-html/PKGBUILD b/community/haskell-html/PKGBUILD index 3c00810ba..44a3ea50b 100644 --- a/community/haskell-html/PKGBUILD +++ b/community/haskell-html/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=10 pkgdesc="HTML combinator library" url="http://hackage.haskell.org/package/html" license=('custom:BSD3') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('ghc=7.4.1-2' sh) source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) install=${pkgname}.install diff --git a/community/haskell-pango/PKGBUILD b/community/haskell-pango/PKGBUILD index db3c6b403..bf74c6d06 100644 --- a/community/haskell-pango/PKGBUILD +++ b/community/haskell-pango/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Binding to the pango library for Gtk2Hs." url="http://hackage.haskell.org/package/pango" license=('LGPL2.1') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('ghc' 'pango' 'haskell-glib' 'haskell-cairo') makedepends=("gtk2hs-buildtools") provides=('gtk2hs-pango') diff --git a/community/haskell-quickcheck/PKGBUILD b/community/haskell-quickcheck/PKGBUILD index e9975e93d..7b27cfb0c 100644 --- a/community/haskell-quickcheck/PKGBUILD +++ b/community/haskell-quickcheck/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc="Automatic testing of Haskell programs" url="http://hackage.haskell.org/package/QuickCheck" license=('custom:BSD3') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('ghc=7.4.1-2' 'haskell-mtl=2.0.1.0-4' 'haskell-random=1.0.1.1-1' 'sh') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) install=${pkgname}.install diff --git a/community/haskell-regex-base/PKGBUILD b/community/haskell-regex-base/PKGBUILD index 791cee2ca..3b8ecb4bb 100644 --- a/community/haskell-regex-base/PKGBUILD +++ b/community/haskell-regex-base/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=5 pkgdesc="Interface API for regex-posix,pcre,parsec,tdfa,dfa" url="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/regex-base" license=('custom:BSD3') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('ghc=7.4.1-2' sh 'haskell-mtl=2.0.1.0-4') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) install=${pkgname}.install diff --git a/community/haskell-regex-compat/PKGBUILD b/community/haskell-regex-compat/PKGBUILD index 1d77e99a6..c880ff4f2 100644 --- a/community/haskell-regex-compat/PKGBUILD +++ b/community/haskell-regex-compat/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Replaces and enhances Text.Regex" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('ghc=7.4.1-2' 'sh' 'haskell-regex-base=0.93.2-5' 'haskell-regex-posix=0.95.1-1') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) install=${pkgname}.install diff --git a/community/haskell-regex-posix/PKGBUILD b/community/haskell-regex-posix/PKGBUILD index 2bf21e05a..1bed15490 100644 --- a/community/haskell-regex-posix/PKGBUILD +++ b/community/haskell-regex-posix/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="The posix regex backend for regex-base" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('ghc=7.4.1-2' 'sh' 'haskell-regex-base=0.93.2-5') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) install=${pkgname}.install diff --git a/community/haskell-stm/PKGBUILD b/community/haskell-stm/PKGBUILD index d639a65fa..fa9819d51 100644 --- a/community/haskell-stm/PKGBUILD +++ b/community/haskell-stm/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3 pkgdesc="A modular composable concurrency abstraction." url="http://hackage.haskell.org/package/stm" license=('custom:BSD3') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('ghc=7.4.1' 'sh') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) install=${pkgname}.install diff --git a/community/haskell-syb/PKGBUILD b/community/haskell-syb/PKGBUILD index 4e9fc0ed0..9223379b2 100644 --- a/community/haskell-syb/PKGBUILD +++ b/community/haskell-syb/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A library for client-side HTTP" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('ghc=7.4.1' sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/community/haskell-xhtml/PKGBUILD b/community/haskell-xhtml/PKGBUILD index 02701ec4b..b3762851d 100644 --- a/community/haskell-xhtml/PKGBUILD +++ b/community/haskell-xhtml/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=2 pkgdesc="Combinators for producing XHTML 1.0, including the Strict, Transitional and Frameset variants." url="http://hackage.haskell.org/package/xhtml" license=('custom:BSD3') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('ghc=7.4.1-2' 'sh') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) install=${pkgname}.install diff --git a/community/hitori/PKGBUILD b/community/hitori/PKGBUILD index a4a8ed903..99afb9dd3 100644 --- a/community/hitori/PKGBUILD +++ b/community/hitori/PKGBUILD @@ -5,7 +5,7 @@ pkgname=hitori pkgver=0.3.2 pkgrel=1 pkgdesc="GTK+ application to generate and let you play games of Hitori" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://live.gnome.org/Hitori" license=('GPL') depends=('gtk3' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/httperf/PKGBUILD b/community/httperf/PKGBUILD index 99320a4df..c9b072988 100644 --- a/community/httperf/PKGBUILD +++ b/community/httperf/PKGBUILD @@ -7,7 +7,7 @@ pkgname=httperf pkgver=0.9.0 pkgrel=5 pkgdesc='A tool for measuring web server performance.' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL2') url='http://code.google.com/p/httperf' depends=('openssl') diff --git a/community/i7z/PKGBUILD b/community/i7z/PKGBUILD index 20edefaf3..f573fc123 100644 --- a/community/i7z/PKGBUILD +++ b/community/i7z/PKGBUILD @@ -5,7 +5,7 @@ pkgname=i7z pkgver=0.27.1 pkgrel=1 pkgdesc="A better i7 (and now i3, i5) reporting tool for Linux" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL2') depends=('ncurses') makedepends=('qt') diff --git a/community/icewm-utils/PKGBUILD b/community/icewm-utils/PKGBUILD index 443357c20..aed8df1b0 100644 --- a/community/icewm-utils/PKGBUILD +++ b/community/icewm-utils/PKGBUILD @@ -19,7 +19,7 @@ _mergeprefsver=0.5 pkgrel=6 pkgdesc="Suite of tools for IceWM" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=("GPL") url="http://icecc.sourceforge.net/" depends=('qt3' 'python2') diff --git a/community/iec16022/PKGBUILD b/community/iec16022/PKGBUILD index 18f1015fd..0924cbbce 100644 --- a/community/iec16022/PKGBUILD +++ b/community/iec16022/PKGBUILD @@ -5,7 +5,7 @@ pkgname=iec16022 pkgver=0.2.4 pkgrel=1 pkgdesc="Produce 2D barcodes often also referenced as DataMatrix" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://datenfreihafen.org/projects/iec16022.html" license=('GPL') depends=('popt' 'zlib') diff --git a/community/iptstate/PKGBUILD b/community/iptstate/PKGBUILD index 4b4450916..9f1321bbe 100644 --- a/community/iptstate/PKGBUILD +++ b/community/iptstate/PKGBUILD @@ -6,7 +6,7 @@ pkgname=iptstate pkgver=2.2.5 pkgrel=1 pkgdesc='top-like interface to netfilter connection-tracking table' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.phildev.net/iptstate/' license=('custom') depends=('gcc-libs' 'ncurses' 'libnetfilter_conntrack') diff --git a/community/ipvsadm/PKGBUILD b/community/ipvsadm/PKGBUILD index f516be986..42132b7b6 100644 --- a/community/ipvsadm/PKGBUILD +++ b/community/ipvsadm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ipvsadm pkgver=1.26 pkgrel=5 pkgdesc='The IP Virtual Server administration utility' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.linuxvirtualserver.org/software/ipvs.html' license=('GPL2') depends=('libnl1' 'popt') diff --git a/community/keepalived/PKGBUILD b/community/keepalived/PKGBUILD index 821958cae..0652947d2 100644 --- a/community/keepalived/PKGBUILD +++ b/community/keepalived/PKGBUILD @@ -6,7 +6,7 @@ pkgname=keepalived pkgver=1.2.2 pkgrel=4 pkgdesc='Failover and monitoring daemon for LVS clusters' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.keepalived.org/' license=('GPL2') backup=('etc/keepalived/keepalived.conf' 'etc/conf.d/keepalived') diff --git a/community/kovpn/PKGBUILD b/community/kovpn/PKGBUILD index ce524aa08..20b76bfc4 100644 --- a/community/kovpn/PKGBUILD +++ b/community/kovpn/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.3pre7 _pkgver=0.3.pre7 pkgrel=6 pkgdesc="An OpenVPN client management interface for KDE" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.kde-apps.org/content/show.php?content=37043" license=('GPL') depends=('openvpn' 'kdelibs3' 'xdg-utils') diff --git a/community/kpartsplugin/PKGBUILD b/community/kpartsplugin/PKGBUILD index 7b883f2a7..14460add9 100644 --- a/community/kpartsplugin/PKGBUILD +++ b/community/kpartsplugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kpartsplugin pkgver=20120529 pkgrel=1 pkgdesc="This plugin uses KDE's KParts to embed file viewers into non-KDE browsers" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.unix-ag.uni-kl.de/~fischer/kpartsplugin/" license=('GPL3' 'BSD') depends=('kdelibs') diff --git a/community/ksniffer/PKGBUILD b/community/ksniffer/PKGBUILD index 71179bf86..9e538ebfa 100644 --- a/community/ksniffer/PKGBUILD +++ b/community/ksniffer/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ksniffer pkgver=0.3.2 pkgrel=6 pkgdesc="A sniffing application for KDE" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.ksniffer.org" license=('GPL2') depends=('libpcap' 'kdelibs3') diff --git a/community/ktechlab/PKGBUILD b/community/ktechlab/PKGBUILD index 04662f644..ac59910d6 100644 --- a/community/ktechlab/PKGBUILD +++ b/community/ktechlab/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ktechlab pkgver=0.3.7 pkgrel=3 pkgdesc="IDE for electronic circuits and microcontrollers" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://sourceforge.net/projects/ktechlab" license=("GPL") depends=('kdelibs3' 'gputils' 'gpsim') diff --git a/community/kwalletcli/PKGBUILD b/community/kwalletcli/PKGBUILD index 252337319..803b85750 100644 --- a/community/kwalletcli/PKGBUILD +++ b/community/kwalletcli/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Command-Line Interface for the KDE Wallet" url="http://www.mirbsd.org/kwalletcli.htm" license=('custom:MirOS' 'LGPL3') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('kdebase-runtime' 'mksh') optdepends=('gnupg2' 'openssh' 'pinentry') source=("http://www.mirbsd.org/MirOS/dist/hosted/${pkgname}/${pkgname}-${pkgver}.tar.gz") diff --git a/community/lash/PKGBUILD b/community/lash/PKGBUILD index 162c39e46..16390c3ec 100644 --- a/community/lash/PKGBUILD +++ b/community/lash/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.6.0~rc2 _relver=0.6.0.594 pkgrel=6 pkgdesc="A session management system for JACK and ALSA" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') options=('!libtool') #url="http://lash-audio.org" url="http://lash.nongnu.org/" diff --git a/community/ldc/PKGBUILD b/community/ldc/PKGBUILD index f8e7e38e0..ba9552118 100644 --- a/community/ldc/PKGBUILD +++ b/community/ldc/PKGBUILD @@ -4,7 +4,7 @@ pkgname=ldc pkgver=20120606 pkgrel=2 pkgdesc="A D Compiler based on the LLVM Compiler Infrastructure including D runtime and libphobos2" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.dsource.org/projects/ldc" license=('BSD') depends=('llvm' 'libconfig') diff --git a/community/leptonica/PKGBUILD b/community/leptonica/PKGBUILD index f632d2d27..9aaa55a76 100644 --- a/community/leptonica/PKGBUILD +++ b/community/leptonica/PKGBUILD @@ -6,7 +6,7 @@ pkgname=leptonica pkgver=1.68 pkgrel=3 pkgdesc="Software that is broadly useful for image processing and image analysis applications" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.leptonica.com/" license=('custom') depends=('glibc') diff --git a/community/libalkimia/PKGBUILD b/community/libalkimia/PKGBUILD index fd6c170ac..004c8d6fa 100644 --- a/community/libalkimia/PKGBUILD +++ b/community/libalkimia/PKGBUILD @@ -10,7 +10,7 @@ depends=('kdelibs') makedepends=('cmake' 'automoc4' 'doxygen') url=('http://kde-apps.org/content/show.php/libalkimia?content=137323') license=('LGPL') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') source=("http://kde-apps.org/CONTENT/content-files/137323-libalkimia-$pkgver.tar.bz2") md5sums=('8d7b529c7be5f72ae1cbb02e818e9b79') diff --git a/community/libcec/PKGBUILD b/community/libcec/PKGBUILD index 0e41ea549..e14ac932e 100644 --- a/community/libcec/PKGBUILD +++ b/community/libcec/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libcec pkgver=1.6.3 pkgrel=1 pkgdesc="Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://github.com/Pulse-Eight/libcec" license=('GPL') depends=('udev' 'lockdev') diff --git a/community/libcgns2/PKGBUILD b/community/libcgns2/PKGBUILD index d92b0e76e..590181b1f 100644 --- a/community/libcgns2/PKGBUILD +++ b/community/libcgns2/PKGBUILD @@ -7,7 +7,7 @@ _relver=5 pkgver=${_basever}.${_relver} pkgrel=2 pkgdesc='General purpose library for the storage and retrieval of computational fluid dynamics analysis data by CGNS standard' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.cgns.org' license=('custom') conflicts=('libcgns') diff --git a/community/libcryptui/PKGBUILD b/community/libcryptui/PKGBUILD index 160bdd7fd..cae4d802c 100644 --- a/community/libcryptui/PKGBUILD +++ b/community/libcryptui/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libcryptui pkgver=3.4.1 pkgrel=1 pkgdesc="Library for OpenPGP prompts" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://git.gnome.org/browse/libcryptui/" license=('GPL') depends=('gtk3' 'libsm' 'gpgme' 'dbus-glib' 'libnotify' 'libgnome-keyring' 'dconf') diff --git a/community/libgda4/PKGBUILD b/community/libgda4/PKGBUILD index 4f024e8e8..080555e83 100644 --- a/community/libgda4/PKGBUILD +++ b/community/libgda4/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libgda4 pkgver=4.2.10 pkgrel=1 pkgdesc="Data abstraction layer with mysql, pgsql, xml, sqlite providers" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') depends=('gtksourceview2' 'libunique' 'libxslt' 'libsoup' 'libmysqlclient' 'postgresql-libs' 'python2' 'libgnome-keyring' diff --git a/community/libircclient/PKGBUILD b/community/libircclient/PKGBUILD index c79fc7208..72a698e73 100644 --- a/community/libircclient/PKGBUILD +++ b/community/libircclient/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libircclient pkgver=1.6 pkgrel=1 pkgdesc="A small but powerful library, which implements client-server IRC protocol." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.ulduzsoft.com/libircclient/" depends=('glibc') license=('GPL') diff --git a/community/libmilter/PKGBUILD b/community/libmilter/PKGBUILD index 7a929fd6a..3d842fb77 100644 --- a/community/libmilter/PKGBUILD +++ b/community/libmilter/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libmilter pkgver=8.14.5 pkgrel=1 pkgdesc="libmilter" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://www.postfix.org/MILTER_README.html" license=('custom:Sendmail open source license') source="ftp://ftp.sendmail.org/pub/sendmail/sendmail.${pkgver}.tar.gz" diff --git a/community/libnet/PKGBUILD b/community/libnet/PKGBUILD index 420d437f7..b113033fc 100644 --- a/community/libnet/PKGBUILD +++ b/community/libnet/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libnet pkgver=1.1.5 pkgrel=2 pkgdesc="A library which provides API for commonly used low-level net functions" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://sourceforge.net/projects/libnet-dev/" license=('BSD') depends=('glibc' 'sh') diff --git a/community/libnfs/PKGBUILD b/community/libnfs/PKGBUILD index 6f3bbd140..eaef7ac71 100644 --- a/community/libnfs/PKGBUILD +++ b/community/libnfs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libnfs pkgver=1.3.0 pkgrel=1 pkgdesc="client library for accessing NFS shares" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://github.com/sahlberg/libnfs" license=('GPL') depends=('glibc') diff --git a/community/liboggz/PKGBUILD b/community/liboggz/PKGBUILD index ac73928d6..01aec1fc9 100644 --- a/community/liboggz/PKGBUILD +++ b/community/liboggz/PKGBUILD @@ -8,7 +8,7 @@ pkgname=liboggz pkgver=1.1.1 pkgrel=3 pkgdesc="A simple programming interface for reading and writing Ogg files and streams" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.xiph.org/oggz/" license=('custom:BSD') depends=('libogg' 'sh') diff --git a/community/libshairport/PKGBUILD b/community/libshairport/PKGBUILD index 0e1b81faa..d6e406c41 100644 --- a/community/libshairport/PKGBUILD +++ b/community/libshairport/PKGBUILD @@ -8,7 +8,7 @@ _commithash='aeb4987' pkgver=${_version} pkgrel=2 pkgdesc="emulates an AirPort Express" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='https://github.com/amejia1/libshairport' license=('GPL') depends=('openssl' 'libao') diff --git a/community/libsmf/PKGBUILD b/community/libsmf/PKGBUILD index d85f7045d..62f77a96a 100644 --- a/community/libsmf/PKGBUILD +++ b/community/libsmf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libsmf pkgver=1.3 pkgrel=3 pkgdesc='A BSD-licensed C library for handling SMF ("*.mid") files.' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://sourceforge.net/projects/libsmf/" license=('BSD') depends=('glib2' 'readline') diff --git a/community/libuser/PKGBUILD b/community/libuser/PKGBUILD index 84963ea83..639eade30 100644 --- a/community/libuser/PKGBUILD +++ b/community/libuser/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libuser pkgver=0.57.6 pkgrel=1 pkgdesc='A standardized interface for manipulating and administering user and group accounts.' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('LGPL') url='https://fedorahosted.org/libuser/' depends=('python2' 'glib2' 'popt') diff --git a/community/libwebp/PKGBUILD b/community/libwebp/PKGBUILD index 3343279fe..eb5dbca25 100644 --- a/community/libwebp/PKGBUILD +++ b/community/libwebp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libwebp pkgver=0.1.3 pkgrel=2 pkgdesc="WebP library and conversion tools" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://code.google.com/intl/en/speed/webp/" license=('BSD') depends=('libpng' 'libjpeg') diff --git a/community/libzdb/PKGBUILD b/community/libzdb/PKGBUILD index dcb242f03..71f6b12fd 100644 --- a/community/libzdb/PKGBUILD +++ b/community/libzdb/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libzdb pkgver=2.10.1 pkgrel=1 pkgdesc="Zild Database Library" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://www.tildeslash.com/libzdb/" license=('GPL') depends=('postgresql-libs' 'sqlite3' 'libmysqlclient') diff --git a/community/linux-tools/PKGBUILD b/community/linux-tools/PKGBUILD index e89d03730..b44f8cf38 100644 --- a/community/linux-tools/PKGBUILD +++ b/community/linux-tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=('perf' 'cpupower') pkgver=3.4 pkgrel=2 license=('GPL2') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.kernel.org' options=('!strip') makedepends=('asciidoc' 'xmlto') diff --git a/community/lksctp-tools/PKGBUILD b/community/lksctp-tools/PKGBUILD index 658a7565e..7751723cb 100644 --- a/community/lksctp-tools/PKGBUILD +++ b/community/lksctp-tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lksctp-tools pkgver=1.0.11 pkgrel=1 pkgdesc='An implementation of the SCTP protocol' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://lksctp.sourceforge.net/' license=('GPL2') depends=('bash') diff --git a/community/log4cpp/PKGBUILD b/community/log4cpp/PKGBUILD index 8bfe31720..21bfddf37 100644 --- a/community/log4cpp/PKGBUILD +++ b/community/log4cpp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=log4cpp pkgver=1.0 pkgrel=6 pkgdesc="A library of C++ classes for flexible logging to files, syslog, IDSA and other destinations." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://log4cpp.hora-obscura.de/" license=('LGPL') depends=('gcc-libs') diff --git a/community/lomoco/PKGBUILD b/community/lomoco/PKGBUILD index 806e93064..fc8ca5598 100644 --- a/community/lomoco/PKGBUILD +++ b/community/lomoco/PKGBUILD @@ -10,7 +10,7 @@ pkgdesc="Logitech USB mouse configuration program" license=('GPL') depends=('libusb-compat') replaces=('lmctl') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') options=(!libtool) backup=(etc/udev/lomoco_mouse.conf) source=(http://www.lomoco.org/${pkgname}-${pkgver}.tar.gz diff --git a/community/lorcon/PKGBUILD b/community/lorcon/PKGBUILD index 9f749da53..3f821cb23 100644 --- a/community/lorcon/PKGBUILD +++ b/community/lorcon/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=2 pkgdesc="Loss Of Radio CONnectivity: A generic library for injecting 802.11 frames" url='http://802.11ninja.net/' license=('GPL') -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') depends=('libpcap') makedepends=('subversion') replaces=('lorcon-old-svn') diff --git a/community/lout/PKGBUILD b/community/lout/PKGBUILD index 3abe6c2a6..71aa6f957 100644 --- a/community/lout/PKGBUILD +++ b/community/lout/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lout pkgver=3.39 pkgrel=1 pkgdesc="A lightweight document formatting system." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://lout.wiki.sourceforge.net/" license=('GPL') depends=('glibc') diff --git a/community/love/PKGBUILD b/community/love/PKGBUILD index 1fad127f9..0fc743ccc 100644 --- a/community/love/PKGBUILD +++ b/community/love/PKGBUILD @@ -5,7 +5,7 @@ pkgname=love pkgver=0.8.0 pkgrel=2 pkgdesc="An open-source 2D game engine which uses the versatile Lua scripting language to create dynamic gaming experiences" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://love2d.org/" license=('zlib') depends=('luajit' 'physfs' 'freetype2' 'devil' 'mpg123' 'openal' 'libvorbis' 'libmodplug' 'sdl' 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils') diff --git a/community/lrzip/PKGBUILD b/community/lrzip/PKGBUILD index 30994a924..ced3afecb 100644 --- a/community/lrzip/PKGBUILD +++ b/community/lrzip/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=3 pkgdesc="Multi-threaded compression using the rzip/lzma, lzo, and zpaq algorithms" url="http://lrzip.kolivas.org/" license=('GPL') -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') depends=('lzo2' 'bzip2' 'zlib' 'bash' 'gcc-libs') if [ "$CARCH" != "x86_64" ] then diff --git a/community/lsscsi/PKGBUILD b/community/lsscsi/PKGBUILD index 556c01d4c..e8d5251d9 100644 --- a/community/lsscsi/PKGBUILD +++ b/community/lsscsi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lsscsi pkgver=0.26 pkgrel=1 pkgdesc='A tool that lists devices connected via SCSI and its transports' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://sg.danny.cz/scsi/lsscsi.html" license=('GPL') depends=('sysfsutils') diff --git a/community/luajit/PKGBUILD b/community/luajit/PKGBUILD index 3e56a034b..7a9480d86 100644 --- a/community/luajit/PKGBUILD +++ b/community/luajit/PKGBUILD @@ -8,7 +8,7 @@ pkgname=luajit pkgver=2.0.0b10 pkgrel=1 pkgdesc="A Just-In-Time Compiler for Lua" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://luajit.org/" license=('MIT') depends=('gcc-libs') diff --git a/community/lxinput/PKGBUILD b/community/lxinput/PKGBUILD index 145d298d7..7ed91636f 100644 --- a/community/lxinput/PKGBUILD +++ b/community/lxinput/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lxinput pkgver=0.3.2 pkgrel=2 pkgdesc="A small program to configure keyboard and mouse for LXDE." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://lxde.org/" license=('GPL') groups=('lxde') diff --git a/community/lxmusic/PKGBUILD b/community/lxmusic/PKGBUILD index 5bb12620b..197adf4ec 100644 --- a/community/lxmusic/PKGBUILD +++ b/community/lxmusic/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lxmusic pkgver=0.4.5 pkgrel=1 pkgdesc='Lightweight XMMS2 client' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://lxde.org/" license=('GPL') groups=('lxde') diff --git a/community/madman/PKGBUILD b/community/madman/PKGBUILD index 2a6cc72c7..22f3a5697 100644 --- a/community/madman/PKGBUILD +++ b/community/madman/PKGBUILD @@ -8,7 +8,7 @@ pkgname=madman pkgver=0.94beta1.20060611 pkgrel=3 pkgdesc="I-tunes like music player" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://madman.sourceforge.net/" license=('GPL') depends=('qt3' 'xmms' 'gtk' 'taglib') diff --git a/community/mailman/PKGBUILD b/community/mailman/PKGBUILD index dfb07e6d1..975b3cb96 100644 --- a/community/mailman/PKGBUILD +++ b/community/mailman/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mailman pkgver=2.1.14 pkgrel=4 pkgdesc="Mailing list manager with built in web access" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') url="http://www.list.org/" depends=('python2' 'smtp-server') diff --git a/community/mandvd/PKGBUILD b/community/mandvd/PKGBUILD index 7214ee11f..4c5abc0cc 100644 --- a/community/mandvd/PKGBUILD +++ b/community/mandvd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mandvd pkgver=2.6 pkgrel=2 pkgdesc="A program to simply create DVD Video" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.kde-apps.org/content/show.php/ManDVD?content=83906" license=('GPL') depends=('dvd+rw-tools>=5.21.4' 'dvd-slideshow>=0.7.5' 'mjpegtools>=1.8.0' 'mplayer' 'qt3' 'xine-ui>=0.99.4') diff --git a/community/mariadb/PKGBUILD b/community/mariadb/PKGBUILD index c9065f546..586761908 100644 --- a/community/mariadb/PKGBUILD +++ b/community/mariadb/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=mariadb pkgname=('libmariadbclient' 'mariadb-clients' 'mariadb') pkgver=5.5.24 pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') url="http://mariadb.org/" makedepends=('cmake' 'openssl' 'zlib') diff --git a/community/mcelog/PKGBUILD b/community/mcelog/PKGBUILD index 27302f56d..dae948032 100644 --- a/community/mcelog/PKGBUILD +++ b/community/mcelog/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=3 pkgdesc="Print machine check event log from x86-64 kernel" url="http://freshmeat.net/projects/mcelog/" license=("GPL") -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') options=('docs') #source=("ftp://ftp.kernel.org/pub/linux/utils/cpu/mce/${pkgname}-${pkgver}.tar.gz" source=("ftp://ftp.archlinux.org/other/community/${pkgname}/${pkgname}-${pkgver}.tar.gz" diff --git a/community/mdf2iso/PKGBUILD b/community/mdf2iso/PKGBUILD index 26762014a..b58c51413 100644 --- a/community/mdf2iso/PKGBUILD +++ b/community/mdf2iso/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mdf2iso pkgver=0.3.0 pkgrel=5 pkgdesc="Converts Alcohol 120% .mdf files to .iso files" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://mdf2iso.berlios.de/" license=('GPL') depends=('glibc') diff --git a/community/midori/PKGBUILD b/community/midori/PKGBUILD index a36de8fce..64fdaf822 100644 --- a/community/midori/PKGBUILD +++ b/community/midori/PKGBUILD @@ -8,7 +8,7 @@ pkgname=midori pkgver=0.4.6 pkgrel=1 pkgdesc="Lightweight web browser based on Gtk WebKit" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://www.twotoasts.de/index.php?/pages/midori_summary.html" license=('LGPL2.1') install=midori.install diff --git a/community/milkytracker/PKGBUILD b/community/milkytracker/PKGBUILD index 68f8a61a0..e8e54ee08 100644 --- a/community/milkytracker/PKGBUILD +++ b/community/milkytracker/PKGBUILD @@ -6,7 +6,7 @@ pkgname=milkytracker pkgver=0.90.85 pkgrel=5 pkgdesc="Fast Tracker II inspired music tracker" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://www.milkytracker.org/" license=('GPL3') depends=('sdl>=1.2.0' 'alsa-lib' 'zlib' 'gcc-libs') diff --git a/community/mingetty/PKGBUILD b/community/mingetty/PKGBUILD index 494728ee0..12836d08c 100644 --- a/community/mingetty/PKGBUILD +++ b/community/mingetty/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mingetty pkgver=1.08 pkgrel=3 pkgdesc="A minimal getty which allows automatic logins." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://sourceforge.net/projects/mingetty" license=('GPL') depends=('glibc') diff --git a/community/minitube/PKGBUILD b/community/minitube/PKGBUILD index 20951519e..4cdeafce2 100644 --- a/community/minitube/PKGBUILD +++ b/community/minitube/PKGBUILD @@ -5,7 +5,7 @@ pkgname=minitube pkgver=1.7.1 pkgrel=3 pkgdesc="A native YouTube client in QT. Watch YouTube videos without Flash Player" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://flavio.tordini.org/minitube' license=('GPL') depends=('phonon') diff --git a/community/mksh/PKGBUILD b/community/mksh/PKGBUILD index aeb555ecc..342b5fd7b 100644 --- a/community/mksh/PKGBUILD +++ b/community/mksh/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="The MirBSD Korn Shell - an enhanced version of the public domain ksh" url="http://mirbsd.de/mksh" license=("custom") makedepends=('cpio') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') install=mksh.install source=("https://www.mirbsd.org/MirOS/dist/mir/mksh/$pkgname-$pkgver.cpio.gz" "https://www.mirbsd.org/TaC-mksh.txt") diff --git a/community/mosh/PKGBUILD b/community/mosh/PKGBUILD index 13b222184..4d9aa7fbd 100644 --- a/community/mosh/PKGBUILD +++ b/community/mosh/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mosh pkgver=1.2.1 pkgrel=2 pkgdesc='Mobile shell, surviving disconnects with local echo and line editing' -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://mosh.mit.edu/" license=('GPL3') depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty') diff --git a/community/mythtv/PKGBUILD b/community/mythtv/PKGBUILD index 4729f6459..824e33225 100644 --- a/community/mythtv/PKGBUILD +++ b/community/mythtv/PKGBUILD @@ -10,7 +10,7 @@ pkgver=0.25 pkgrel=3 epoch=1 pkgdesc="A Homebrew PVR project" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.mythtv.org/" license=('GPL') depends=('avahi' 'fftw' 'lame' 'libass' 'libavc1394' 'libcdio' 'libiec61883' diff --git a/community/nautilus-sound-converter/PKGBUILD b/community/nautilus-sound-converter/PKGBUILD index 51702f449..c4b6f142c 100644 --- a/community/nautilus-sound-converter/PKGBUILD +++ b/community/nautilus-sound-converter/PKGBUILD @@ -5,7 +5,7 @@ pkgname=nautilus-sound-converter pkgver=3.0.2 pkgrel=1 pkgdesc="Nautilus extension to convert audio files formats" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://code.google.com/p/nautilus-sound-converter/" license=('GPL') depends=('nautilus' 'libgnome-media-profiles') diff --git a/community/nemiver/PKGBUILD b/community/nemiver/PKGBUILD index bbc2c6ee2..1bcf9cf0a 100644 --- a/community/nemiver/PKGBUILD +++ b/community/nemiver/PKGBUILD @@ -6,7 +6,7 @@ pkgname=nemiver pkgver=0.9.2 pkgrel=2 pkgdesc="C/C++ debugger for GNOME" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') license=('GPL') url="http://www.gnome.org/projects/nemiver/" depends=('gdlmm' 'gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 'dconf' 'gsettings-desktop-schemas') diff --git a/community/nestopia/PKGBUILD b/community/nestopia/PKGBUILD index b40842763..c73ddbce7 100644 --- a/community/nestopia/PKGBUILD +++ b/community/nestopia/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=5 pkgdesc='An NES emulator featuring cycle exact emulation, a ridiculous number of mappers, and lots of custom sound chips.' url='http://rbelmont.mameworld.info/?page_id=200' license=('GPL') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('sdl>=1.2.12' 'alsa-lib' 'gtk2>=2.4' 'mesa') makedepends=('unzip') # rbelmont.mameworld.info blocks some user-agents diff --git a/community/netcf/PKGBUILD b/community/netcf/PKGBUILD index 7ae560ff5..9c26ba270 100644 --- a/community/netcf/PKGBUILD +++ b/community/netcf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=netcf pkgver=0.1.9 pkgrel=2 pkgdesc="A library for configuring network interfaces" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('LGPL') url="https://fedorahosted.org/netcf/" depends=('augeas>=0.7.4' 'netcfg' 'libxslt' 'libxml2' 'libnl') diff --git a/community/netselect/PKGBUILD b/community/netselect/PKGBUILD index 5ca09e1fd..14aab1bbe 100644 --- a/community/netselect/PKGBUILD +++ b/community/netselect/PKGBUILD @@ -7,7 +7,7 @@ pkgname=netselect pkgver=0.3 pkgrel=2 pkgdesc="An ultrafast intelligent parallelizing binary-search implementation of ping" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://alumnit.ca/~apenwarr/netselect/index.html" license=('custom') depends=('glibc') diff --git a/community/nmon/PKGBUILD b/community/nmon/PKGBUILD index c17e268d8..6420dedb8 100644 --- a/community/nmon/PKGBUILD +++ b/community/nmon/PKGBUILD @@ -5,7 +5,7 @@ pkgname=nmon pkgver=14g pkgrel=3 pkgdesc="AIX & Linux Performance Monitoring tool" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://nmon.sourceforge.net" license=('GPL') depends=('ncurses') diff --git a/community/notion/PKGBUILD b/community/notion/PKGBUILD index a9e3d436d..c29a0054a 100644 --- a/community/notion/PKGBUILD +++ b/community/notion/PKGBUILD @@ -8,7 +8,7 @@ pkgver=20120504 pkgrel=1 pkgdesc="Tabbed tiling, window manager. Fork of Ion3" url="http://sourceforge.net/projects/notion/" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('custom:LGPL') depends=('glib2' 'gettext' 'lua' 'libxext' 'libsm') optdepends=('libxinerama' 'libxrandr') diff --git a/community/oath-toolkit/PKGBUILD b/community/oath-toolkit/PKGBUILD index b2b66184a..82ee965fe 100644 --- a/community/oath-toolkit/PKGBUILD +++ b/community/oath-toolkit/PKGBUILD @@ -7,7 +7,7 @@ pkgname=oath-toolkit pkgver=1.12.3 pkgrel=1 pkgdesc='OATH one-time password toolkit' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.nongnu.org/oath-toolkit/' license=('GPL3') depends=('pam') diff --git a/community/odt2txt/PKGBUILD b/community/odt2txt/PKGBUILD index c0d4af2f4..8ff16fba4 100644 --- a/community/odt2txt/PKGBUILD +++ b/community/odt2txt/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="extracts the text out of OpenDocument Texts" url="http://stosberg.net/odt2txt/" license=("GPL2") -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('zlib') source=(http://stosberg.net/odt2txt/$pkgname-$pkgver.tar.gz) md5sums=('6fe3bd261ce2dde2810244bbe969bbc5') diff --git a/community/onboard/PKGBUILD b/community/onboard/PKGBUILD index c905b34e0..1a39cbbdf 100644 --- a/community/onboard/PKGBUILD +++ b/community/onboard/PKGBUILD @@ -5,7 +5,7 @@ pkgname=onboard pkgver=0.97.1 pkgrel=1 pkgdesc="On-screen keyboard useful on tablet PCs or for mobility impaired users" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://launchpad.net/onboard" license=('GPL') depends=('python2-cairo' 'dbus-python' 'python2-gobject' 'libwnck3' 'python2-virtkey' 'desktop-file-utils' 'dconf' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/open-vm-tools/PKGBUILD b/community/open-vm-tools/PKGBUILD index 5d4bd2c8c..47a5061e5 100644 --- a/community/open-vm-tools/PKGBUILD +++ b/community/open-vm-tools/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2012.03.13 _pkgsubver=651368 pkgrel=5 pkgdesc="The Open Virtual Machine Tools (open-vm-tools) are the open source implementation of VMware Tools" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://open-vm-tools.sourceforge.net/" license=('LGPL') depends=('open-vm-tools-modules' 'libdnet' 'icu' 'procps-ng' 'uriparser' 'libsigc++' 'libxss') diff --git a/community/opencollada/PKGBUILD b/community/opencollada/PKGBUILD index 568e1ebaa..7a1344c65 100644 --- a/community/opencollada/PKGBUILD +++ b/community/opencollada/PKGBUILD @@ -5,7 +5,7 @@ pkgname=opencollada pkgver=869 pkgrel=1 pkgdesc="Stream based reader and writer library for COLLADA files" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="https://code.google.com/p/opencollada/" license=('GPL') depends=('libxml2') diff --git a/community/opendkim/PKGBUILD b/community/opendkim/PKGBUILD index f0a1f0238..bc1001946 100644 --- a/community/opendkim/PKGBUILD +++ b/community/opendkim/PKGBUILD @@ -6,7 +6,7 @@ pkgname=opendkim pkgver=2.5.2 pkgrel=1 pkgdesc="An open source implementation of the DKIM sender authentication system. Based on a fork of dkim-milter." -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://www.opendkim.org/" license=('BSD' 'custom:Sendmail') depends=("db" "openssl") diff --git a/community/openimageio/PKGBUILD b/community/openimageio/PKGBUILD index c7b8e1ce7..f0ca5cfa1 100644 --- a/community/openimageio/PKGBUILD +++ b/community/openimageio/PKGBUILD @@ -6,7 +6,7 @@ pkgname=openimageio pkgver=1.0.4 pkgrel=1 pkgdesc="A library for reading and writing images, including classes, utilities, and applications." -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://www.openimageio.org/" license=('custom') depends=('openexr' 'boost-libs' 'jasper' 'glew') diff --git a/community/openocd/PKGBUILD b/community/openocd/PKGBUILD index c774eae9c..889755cbc 100644 --- a/community/openocd/PKGBUILD +++ b/community/openocd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=openocd pkgver=0.5.0 pkgrel=2 pkgdesc="Debugging, in-system programming and boundary-scan testing for embedded target devices" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://openocd.berlios.de" license=('GPL') depends=('libftdi') diff --git a/community/opensc/PKGBUILD b/community/opensc/PKGBUILD index b7e56b5a2..1da03752e 100644 --- a/community/opensc/PKGBUILD +++ b/community/opensc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=opensc pkgver=0.12.2 pkgrel=3 pkgdesc='Access smart cards that support cryptographic operations' -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url='http://www.opensc-project.org/opensc/' license=('LGPL') backup=('etc/opensc.conf') diff --git a/community/openscenegraph/PKGBUILD b/community/openscenegraph/PKGBUILD index 4f1383dd6..4bf29d281 100644 --- a/community/openscenegraph/PKGBUILD +++ b/community/openscenegraph/PKGBUILD @@ -8,7 +8,7 @@ pkgname=openscenegraph pkgver=3.0.1 pkgrel=5 pkgdesc="An Open Source, high performance real-time graphics toolkit" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('custom:OSGPL') url="http://www.openscenegraph.org" depends=('giflib' 'jasper' 'librsvg' 'xine-lib' 'curl' 'pth') diff --git a/community/openthreads/PKGBUILD b/community/openthreads/PKGBUILD index ab5bf7bf7..ff94915c2 100644 --- a/community/openthreads/PKGBUILD +++ b/community/openthreads/PKGBUILD @@ -6,7 +6,7 @@ pkgname=openthreads pkgver=2.3.0 pkgrel=2 pkgdesc="A minimal & complete Object-Oriented thread interface for C++ programmers" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://openthreads.sourceforge.net" license=("LGPL") depends=('gcc-libs') diff --git a/community/os-prober/PKGBUILD b/community/os-prober/PKGBUILD index a8b76f03f..60969d142 100644 --- a/community/os-prober/PKGBUILD +++ b/community/os-prober/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.53 pkgrel=1 pkgdesc="Utility to detect other OSes on a set of drives" url="http://joey.kitenet.net/code/os-prober/" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL3') depends=('sh') source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz) diff --git a/community/packeth/PKGBUILD b/community/packeth/PKGBUILD index 0bc4bb223..041f3f71b 100644 --- a/community/packeth/PKGBUILD +++ b/community/packeth/PKGBUILD @@ -10,7 +10,7 @@ depends=(gtk2) source=("http://downloads.sourceforge.net/packeth/packETH-$pkgver.tar.bz2") url="http://packeth.sourceforge.net/" md5sums=('38403ec01072f13ba7f0145abf15b12d') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') build() { diff --git a/community/par2cmdline/PKGBUILD b/community/par2cmdline/PKGBUILD index bf5f1d59f..127c4256a 100644 --- a/community/par2cmdline/PKGBUILD +++ b/community/par2cmdline/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc='A PAR 2.0 compatible file verification and repair tool' url='https://github.com/BlackIkeEagle/par2cmdline' license=('GPL2') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') source=("https://github.com/downloads/BlackIkeEagle/$pkgname/$pkgname-$pkgver.tar.xz") md5sums=('96b4fb91859c0214d2c562636abea3af') diff --git a/community/parole/PKGBUILD b/community/parole/PKGBUILD index 8370127ab..e2215d8f2 100644 --- a/community/parole/PKGBUILD +++ b/community/parole/PKGBUILD @@ -6,7 +6,7 @@ pkgname=parole pkgver=0.2.0.6 pkgrel=2 pkgdesc="A modern media player based on the GStreamer framework" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://goodies.xfce.org/projects/applications/parole/" license=('GPL') depends=('gstreamer0.10-base>=0.10.11' 'hicolor-icon-theme' 'libnotify>=0.4.1' diff --git a/community/pdfedit/PKGBUILD b/community/pdfedit/PKGBUILD index 47e6293fa..4da652f91 100644 --- a/community/pdfedit/PKGBUILD +++ b/community/pdfedit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pdfedit pkgver=0.4.5 pkgrel=2 pkgdesc='Full featured editor for manipulating PDF documents' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://pdfedit.petricek.net/index_e.html' license=('GPL') depends=('qt3' 't1lib' 'gsfonts') diff --git a/community/perl-file-rsyncp/PKGBUILD b/community/perl-file-rsyncp/PKGBUILD index f963baba7..29af9c1a1 100644 --- a/community/perl-file-rsyncp/PKGBUILD +++ b/community/perl-file-rsyncp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-file-rsyncp pkgver=0.70 pkgrel=2 pkgdesc='Perl interface to rsync file list encoding and decoding' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'PerlArtistic') options=('!emptydirs' '!makeflags') url='http://search.cpan.org/dist/File-RsyncP' diff --git a/community/perl-io-dirent/PKGBUILD b/community/perl-io-dirent/PKGBUILD index d27c607e0..4dbd3d576 100644 --- a/community/perl-io-dirent/PKGBUILD +++ b/community/perl-io-dirent/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-io-dirent pkgver=0.05 pkgrel=2 pkgdesc='Perl IO::Dirent module - Access to dirent structs returned by readdir' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'PerlArtistic') url='http://search.cpan.org/~scottw/IO-Dirent/' options=('!emptydirs') diff --git a/community/perl-package-stash-xs/PKGBUILD b/community/perl-package-stash-xs/PKGBUILD index ef6b27703..ee83389a2 100644 --- a/community/perl-package-stash-xs/PKGBUILD +++ b/community/perl-package-stash-xs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-package-stash-xs pkgver=0.25 pkgrel=2 pkgdesc="faster and more correct implementation of the Package::Stash API" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=(PerlArtistic GPL) options=(!emptydirs) depends=('perl>=5.8.1') diff --git a/community/perl-params-classify/PKGBUILD b/community/perl-params-classify/PKGBUILD index a36037d54..d0dae4a7d 100644 --- a/community/perl-params-classify/PKGBUILD +++ b/community/perl-params-classify/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-params-classify pkgver=0.013 pkgrel=2 pkgdesc="argument type classification" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('PerlArtistic') url="http://search.cpan.org/~zefram/Params-Classify" options=(!emptydirs) diff --git a/community/perl-params-util/PKGBUILD b/community/perl-params-util/PKGBUILD index 300f74506..231c569ee 100644 --- a/community/perl-params-util/PKGBUILD +++ b/community/perl-params-util/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-params-util pkgver=1.04 pkgrel=2 pkgdesc="Simple, compact and correct param-checking functions" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=(PerlArtistic GPL) options=(!emptydirs) depends=('perl>=5.5.30' 'perl-scalar-list-utils') diff --git a/community/picocom/PKGBUILD b/community/picocom/PKGBUILD index 9ff4e0148..bb4296597 100644 --- a/community/picocom/PKGBUILD +++ b/community/picocom/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc='Minimal dumb-terminal emulation program, very much like minicom' url='http://code.google.com/p/picocom/' license=('GPL2') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('glibc') source=("http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tar.gz") sha1sums=('bde6e36af71db845913f9d61f28dee1b485218fa') diff --git a/community/pidgin-gfire/PKGBUILD b/community/pidgin-gfire/PKGBUILD index a40a5dcf2..9abfa1f83 100644 --- a/community/pidgin-gfire/PKGBUILD +++ b/community/pidgin-gfire/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pidgin-gfire pkgver=0.9.4 pkgrel=3 pkgdesc="Gfire is an Plugin for the Pidgin IM client which allows you to connect the Xfire network." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://gfireproject.org/" license=('GPL') depends=('glib2' 'libpurple' 'libnotify' 'gtk2') diff --git a/community/pidgin-talkfilters/PKGBUILD b/community/pidgin-talkfilters/PKGBUILD index 5ac864306..39a171c78 100644 --- a/community/pidgin-talkfilters/PKGBUILD +++ b/community/pidgin-talkfilters/PKGBUILD @@ -4,7 +4,7 @@ pkgname=pidgin-talkfilters pkgver=2.7.0 pkgrel=1 pkgdesc="Implements GNU Talkfilters in pidgin chats" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://www.guifications.org/projects/purple-plugin-pack" license=('GPL') depends=('pidgin' 'talkfilters') diff --git a/community/pidgin-toobars/PKGBUILD b/community/pidgin-toobars/PKGBUILD index 1b31da37f..a9d052011 100644 --- a/community/pidgin-toobars/PKGBUILD +++ b/community/pidgin-toobars/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pidgin-toobars pkgver=1.14 pkgrel=1 pkgdesc="Pidgin plugin that adds a toolbar and status bar to the buddy list" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://vayurik.ru/wordpress/en/toobars/" license=('GPL') depends=('pidgin') diff --git a/community/pigz/PKGBUILD b/community/pigz/PKGBUILD index 404b821fb..6a80d70cb 100755 --- a/community/pigz/PKGBUILD +++ b/community/pigz/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pigz pkgver=2.2.4 pkgrel=1 pkgdesc="Parallel implementation of the gzip file compressor" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.zlib.net/pigz/" license=('custom') depends=('zlib') diff --git a/community/pion-net/PKGBUILD b/community/pion-net/PKGBUILD index 138cea7fc..fd362da67 100644 --- a/community/pion-net/PKGBUILD +++ b/community/pion-net/PKGBUILD @@ -7,7 +7,7 @@ pkgver=4.0.11 pkgrel=1 pkgdesc="A C++ development library for implementing lightweight HTTP interfaces" url="http://www.pion.org/projects/pion-network-library" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('custom:Boost') depends=('boost-libs' 'openssl' 'log4cpp') makedepends=('boost') diff --git a/community/premake/PKGBUILD b/community/premake/PKGBUILD index 7aef66f4b..20b85f40e 100644 --- a/community/premake/PKGBUILD +++ b/community/premake/PKGBUILD @@ -7,7 +7,7 @@ pkgname=premake pkgver=4.3 pkgrel=3 pkgdesc="A simple build configuration and project generation tool using lua" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://industriousone.com/premake" license=('BSD') provides=("premake4") diff --git a/community/premake3/PKGBUILD b/community/premake3/PKGBUILD index 846091eed..12820716c 100644 --- a/community/premake3/PKGBUILD +++ b/community/premake3/PKGBUILD @@ -8,7 +8,7 @@ pkgname=premake3 pkgver=3.7 pkgrel=2 pkgdesc="A simple build configuration and project generation tool using lua" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://premake.sourceforge.net" license=('GPL') makedepends=() diff --git a/community/pwgen/PKGBUILD b/community/pwgen/PKGBUILD index 06f091e56..863c8c4b2 100644 --- a/community/pwgen/PKGBUILD +++ b/community/pwgen/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pwgen pkgver=2.06 pkgrel=3 pkgdesc="Pwgen is a small password generator which creates passwords which can be easily memorized by a human" -arch=("i686" "x86_64" "mips64el") +arch=("i686" "x86_64") url="http://sourceforge.net/projects/pwgen/" license=('GPL') depends=('glibc') diff --git a/community/pwmanager/PKGBUILD b/community/pwmanager/PKGBUILD index e0bafdeb5..c13ce266a 100644 --- a/community/pwmanager/PKGBUILD +++ b/community/pwmanager/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pwmanager pkgver=1.2.4 pkgrel=5 pkgdesc="With PwManager you can easily manage your passwords" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://passwordmanager.sourceforge.net/" license=('GPL') depends=('kdelibs3') diff --git a/community/pyqt3/PKGBUILD b/community/pyqt3/PKGBUILD index 5eef4d472..990cec25f 100644 --- a/community/pyqt3/PKGBUILD +++ b/community/pyqt3/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pyqt3 pkgver=3.18.1 pkgrel=10 pkgdesc="A set of Python bindings for the Qt3 toolkit" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.riverbankcomputing.com/software/pyqt/intro" depends=('python2-sip' 'qscintilla-qt3') license=('GPL') diff --git a/community/python-psutil/PKGBUILD b/community/python-psutil/PKGBUILD index a836922a3..0d96246c0 100644 --- a/community/python-psutil/PKGBUILD +++ b/community/python-psutil/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=python-psutil pkgname=('python-psutil' 'python2-psutil') pkgver=0.4.1 pkgrel=3 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://code.google.com/p/psutil/' license=('custom: BSD') makedepends=('python' 'python-distribute' 'python2' 'python2-distribute') diff --git a/community/python-pyproj/PKGBUILD b/community/python-pyproj/PKGBUILD index 3dde51d62..c066a372d 100644 --- a/community/python-pyproj/PKGBUILD +++ b/community/python-pyproj/PKGBUILD @@ -6,7 +6,7 @@ pkgname=('python-pyproj' 'python2-pyproj') pkgver=1.9.0 pkgrel=1 pkgdesc="Python interfaces to PROJ.4 library" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://code.google.com/p/pyproj" license=('custom') source=(http://pyproj.googlecode.com/files/pyproj-${pkgver}.tar.gz) diff --git a/community/python-pyxattr/PKGBUILD b/community/python-pyxattr/PKGBUILD index 27afaaeab..996d8d6b4 100644 --- a/community/python-pyxattr/PKGBUILD +++ b/community/python-pyxattr/PKGBUILD @@ -8,7 +8,7 @@ _pkgname=pyxattr pkgver=0.5.0 pkgrel=3 pkgdesc='A python extension module that allows you to manipulate the extended attributes.' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://pyxattr.sourceforge.net/' license=('GPL') makedepends=('python2' 'python' 'python2-distribute' 'python-distribute') diff --git a/community/python-pyzmq/PKGBUILD b/community/python-pyzmq/PKGBUILD index 724e6c770..78ff87669 100644 --- a/community/python-pyzmq/PKGBUILD +++ b/community/python-pyzmq/PKGBUILD @@ -4,7 +4,7 @@ pkgname=python-pyzmq pkgver=2.2.0 pkgrel=1 pkgdesc="Python3 bindings for zeromq, written in Cython" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://www.zeromq.org/bindings:python" license=('LGPL') depends=(zeromq python) diff --git a/community/python-sqlalchemy/PKGBUILD b/community/python-sqlalchemy/PKGBUILD index fa38a8e53..8668fa654 100644 --- a/community/python-sqlalchemy/PKGBUILD +++ b/community/python-sqlalchemy/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=python-sqlalchemy pkgname=('python-sqlalchemy' 'python2-sqlalchemy') pkgver=0.7.6 pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') # python2 package contain .so +arch=('i686' 'x86_64') # python2 package contain .so url="http://www.sqlalchemy.org/" license=('custom: MIT') makedepends=('python' 'python2' 'python-distribute' 'python2-distribute') diff --git a/community/python2-gevent/PKGBUILD b/community/python2-gevent/PKGBUILD index e6707920c..c35d3ac2b 100644 --- a/community/python2-gevent/PKGBUILD +++ b/community/python2-gevent/PKGBUILD @@ -5,7 +5,7 @@ pkgname=python2-gevent pkgver=0.13.7 pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') pkgdesc="Python network library that uses greenlet and libevent for easy and scalable concurrency" license=("MIT") url="http://www.gevent.org/" diff --git a/community/python2-greenlet/PKGBUILD b/community/python2-greenlet/PKGBUILD index 1cb84491d..38546a68d 100644 --- a/community/python2-greenlet/PKGBUILD +++ b/community/python2-greenlet/PKGBUILD @@ -10,7 +10,7 @@ license=("MIT") url="http://pypi.python.org/pypi/greenlet" depends=('python2') source=(http://pypi.python.org/packages/source/g/greenlet/greenlet-$pkgver.zip) -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') md5sums=('530a69acebbb0d66eb5abd83523d8272') sha1sums=('1bff62c43e179d3f4866f31a8258a259c82b4803') diff --git a/community/python2-pychm/PKGBUILD b/community/python2-pychm/PKGBUILD index c7c4b06ba..3b53d9005 100644 --- a/community/python2-pychm/PKGBUILD +++ b/community/python2-pychm/PKGBUILD @@ -8,7 +8,7 @@ pkgname=python2-pychm pkgver=0.8.4 pkgrel=1 pkgdesc="Python bindings for chmlib" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://gnochm.sourceforge.net/" license=('GPL') depends=('chmlib' 'python2') diff --git a/community/python2-pyzmq/PKGBUILD b/community/python2-pyzmq/PKGBUILD index d0f18eb55..32fd23136 100644 --- a/community/python2-pyzmq/PKGBUILD +++ b/community/python2-pyzmq/PKGBUILD @@ -4,7 +4,7 @@ pkgname=python2-pyzmq pkgver=2.2.0 pkgrel=1 pkgdesc="Python2 bindings for zeromq, written in Cython" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://www.zeromq.org/bindings:python" license=('LGPL') depends=(zeromq python2) diff --git a/community/python2-virtkey/PKGBUILD b/community/python2-virtkey/PKGBUILD index 086355031..237f64857 100644 --- a/community/python2-virtkey/PKGBUILD +++ b/community/python2-virtkey/PKGBUILD @@ -7,7 +7,7 @@ _pkgname=python-virtkey pkgver=0.60.0 pkgrel=3 pkgdesc="Python extension for emulating keypresses and getting layout information from the X server" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://launchpad.net/python-virtkey" license=('LGPL') depends=('python2' 'libxtst' 'gtk2') diff --git a/community/qcad/PKGBUILD b/community/qcad/PKGBUILD index c3da355f9..28cacf696 100644 --- a/community/qcad/PKGBUILD +++ b/community/qcad/PKGBUILD @@ -8,7 +8,7 @@ pkgname=qcad pkgver=2.0.5.0 pkgrel=9 pkgdesc="A 2D CAD package based upon Qt" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.ribbonsoft.com/qcad.html" license=('GPL2') depends=('qt3') diff --git a/community/qconf/PKGBUILD b/community/qconf/PKGBUILD index 967c18dd4..771a74430 100644 --- a/community/qconf/PKGBUILD +++ b/community/qconf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qconf pkgver=1.4 pkgrel=2 pkgdesc="QConf allows you to have a nice configure script for your qmake-based project." -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://delta.affinix.com/qconf/" license=('GPL') depends=('qt') diff --git a/community/qgo/PKGBUILD b/community/qgo/PKGBUILD index 6d4acf8ba..88a1c96f0 100644 --- a/community/qgo/PKGBUILD +++ b/community/qgo/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qgo pkgver=1.5.4 pkgrel=5 pkgdesc="Go client and full featured SGF editor" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://qgo.sourceforge.net/" license=('GPL') depends=('qt3' 'libsm') diff --git a/community/qscintilla-qt3/PKGBUILD b/community/qscintilla-qt3/PKGBUILD index 8de84ddb2..97da30f58 100644 --- a/community/qscintilla-qt3/PKGBUILD +++ b/community/qscintilla-qt3/PKGBUILD @@ -7,7 +7,7 @@ pkgname=qscintilla-qt3 pkgver=1.7.1 pkgrel=4 pkgdesc="A port to Qt3 of Neil Hodgson's Scintilla C++ editor class" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.riverbankcomputing.co.uk/software/qscintilla/intro/" license=('GPL2') depends=('qt3') diff --git a/community/qsynergy/PKGBUILD b/community/qsynergy/PKGBUILD index e8a5fb71b..ce7985113 100644 --- a/community/qsynergy/PKGBUILD +++ b/community/qsynergy/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Qt gui for Synergy which lets you remotely control other computers." url="http://www.volker-lanz.de/en/software/qsynergy/" license=(GPL) -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('qt' 'synergy') source=("http://sourceforge.net/projects/$pkgname/files/$pkgver/$pkgname-$pkgver.tar.gz") md5sums=('17d8989668016185b859332aacf9e7df') diff --git a/community/qt4pas/PKGBUILD b/community/qt4pas/PKGBUILD index 4b1cd4bb6..f8711f222 100644 --- a/community/qt4pas/PKGBUILD +++ b/community/qt4pas/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qt4pas pkgver=2.5 pkgrel=1 pkgdesc="Free Pascal Qt4 Binding Library" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://users.telenet.be/Jan.Van.hijfte/qtforfpc/fpcqt4.html" license=('LGPL') depends=('qtwebkit') diff --git a/community/qtcurve-gtk2/PKGBUILD b/community/qtcurve-gtk2/PKGBUILD index 7e4d603ad..6c8399cb9 100644 --- a/community/qtcurve-gtk2/PKGBUILD +++ b/community/qtcurve-gtk2/PKGBUILD @@ -7,7 +7,7 @@ pkgname=qtcurve-gtk2 pkgver=1.8.15 pkgrel=1 pkgdesc="A configurable set of widget styles for KDE and Gtk" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.kde-look.org/content/show.php?content=40492" license=('GPL') depends=('gtk2') diff --git a/community/qtcurve-kde3/PKGBUILD b/community/qtcurve-kde3/PKGBUILD index b5691d7f6..f5e057cfb 100644 --- a/community/qtcurve-kde3/PKGBUILD +++ b/community/qtcurve-kde3/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qtcurve-kde3 pkgver=1.8.5 pkgrel=3 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') groups=('qtcurve') license=('GPL') pkgdesc='A configurable set of widget styles for KDE and Gtk' diff --git a/community/qtcurve-kde4/PKGBUILD b/community/qtcurve-kde4/PKGBUILD index 0207a58d7..2210a507d 100644 --- a/community/qtcurve-kde4/PKGBUILD +++ b/community/qtcurve-kde4/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qtcurve-kde4 pkgver=1.8.12 pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') groups=('qtcurve') license=('GPL') pkgdesc='A configurable set of widget styles for KDE and Gtk' diff --git a/community/qtspim/PKGBUILD b/community/qtspim/PKGBUILD index 1c09b8d3a..1769c6e41 100644 --- a/community/qtspim/PKGBUILD +++ b/community/qtspim/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qtspim pkgver=9.1.7 pkgrel=1 pkgdesc="New user interface for spim, a MIPS simulator." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://spimsimulator.sourceforge.net/" license=('BSD') depends=('qt') diff --git a/community/quagga/PKGBUILD b/community/quagga/PKGBUILD index 89d495e05..0e4ead5f6 100644 --- a/community/quagga/PKGBUILD +++ b/community/quagga/PKGBUILD @@ -5,7 +5,7 @@ pkgname=quagga pkgver=0.99.20.1 pkgrel=1 pkgdesc='BGP/OSPF/ISIS/RIP/RIPNG routing daemon suite' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.quagga.net' license=('GPL2') depends=('libcap' 'net-snmp' 'readline' 'ncurses') diff --git a/community/qucs/PKGBUILD b/community/qucs/PKGBUILD index 9ab19a4c7..128762693 100644 --- a/community/qucs/PKGBUILD +++ b/community/qucs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qucs pkgver=0.0.16 pkgrel=2 pkgdesc="An integrated circuit simulator with a graphical user interface" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://qucs.sourceforge.net" license=('GPL') depends=('qt3') diff --git a/community/qupzilla/PKGBUILD b/community/qupzilla/PKGBUILD index 068f33d4e..0e19921fc 100644 --- a/community/qupzilla/PKGBUILD +++ b/community/qupzilla/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qupzilla pkgver=1.2.0 pkgrel=1 pkgdesc="Cross-platform QtWebKit browser" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://www.qupzilla.com/" license=('GPL3') depends=('qtwebkit' 'gtk-update-icon-cache') diff --git a/community/r8168-lts/PKGBUILD b/community/r8168-lts/PKGBUILD index 7fbd5b276..867bc44b1 100644 --- a/community/r8168-lts/PKGBUILD +++ b/community/r8168-lts/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts" url="http://www.realtek.com.tw" license=("GPL") -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('glibc' "linux-lts>=3.0" "linux-lts<3.1") makedepends=("linux-lts-headers>=3.0" "linux-lts-headers<3.1") source=(http://r8168.googlecode.com/files/$_pkgname-$pkgver.tar.bz2) diff --git a/community/ragel/PKGBUILD b/community/ragel/PKGBUILD index f904348bc..fbff09e27 100644 --- a/community/ragel/PKGBUILD +++ b/community/ragel/PKGBUILD @@ -10,7 +10,7 @@ pkgname=ragel pkgver=6.7 pkgrel=1 pkgdesc="Compiles finite state machines from regular languages into executable C, C++, Objective-C, or D code." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.complang.org/ragel/" license=('GPL') depends=('gcc-libs') diff --git a/community/regexxer/PKGBUILD b/community/regexxer/PKGBUILD index 9beef2635..c570f654d 100644 --- a/community/regexxer/PKGBUILD +++ b/community/regexxer/PKGBUILD @@ -5,7 +5,7 @@ pkgname=regexxer pkgver=0.10 pkgrel=3 pkgdesc="Interactive search and replace tool for GNOME" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://regexxer.sourceforge.net/" license=('GPL') depends=('gtksourceviewmm' 'dconf' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/ruby-ncurses/PKGBUILD b/community/ruby-ncurses/PKGBUILD index bd3664892..f3434fe32 100644 --- a/community/ruby-ncurses/PKGBUILD +++ b/community/ruby-ncurses/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ruby-ncurses pkgver=1.3.1 pkgrel=3 pkgdesc="Module for interactive text console applications (ncurses)" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://ncurses-ruby.berlios.de/" license=('GPL') depends=('ruby') diff --git a/community/rxvt/PKGBUILD b/community/rxvt/PKGBUILD index e8c3a8f62..8ca75017c 100644 --- a/community/rxvt/PKGBUILD +++ b/community/rxvt/PKGBUILD @@ -10,7 +10,7 @@ pkgname=rxvt pkgver=2.7.10 pkgrel=6 pkgdesc='A colour vt102 terminal emulator' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://rxvt.sourceforge.net/' license=('GPL') depends=('libx11') diff --git a/community/rygel/PKGBUILD b/community/rygel/PKGBUILD index 04e0a384a..3ae85986e 100644 --- a/community/rygel/PKGBUILD +++ b/community/rygel/PKGBUILD @@ -5,7 +5,7 @@ pkgname=rygel pkgver=0.14.1 pkgrel=1 pkgdesc="UPnP AV MediaServer and MediaRenderer that allows you to easily share audio, video and pictures, and control of media player on your home network" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://live.gnome.org/Rygel" license=('LGPL') depends=('gupnp-av' 'gupnp-dlna' 'libgee' 'gtk3' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/sdcv/PKGBUILD b/community/sdcv/PKGBUILD index 72f54e6c0..dd1d87971 100644 --- a/community/sdcv/PKGBUILD +++ b/community/sdcv/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sdcv pkgver=0.4.2 pkgrel=6 pkgdesc="StarDict Console Version" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://sdcv.sourceforge.net/" license=('GPL') depends=('glib2' 'readline' 'zlib') diff --git a/community/seahorse-nautilus/PKGBUILD b/community/seahorse-nautilus/PKGBUILD index dae741987..884840d1f 100644 --- a/community/seahorse-nautilus/PKGBUILD +++ b/community/seahorse-nautilus/PKGBUILD @@ -5,7 +5,7 @@ pkgname=seahorse-nautilus pkgver=3.4.0 pkgrel=1 pkgdesc="PGP encryption and signing for nautilus" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://git.gnome.org/browse/seahorse-nautilus/" license=('GPL') depends=('gconf' 'libcryptui' 'nautilus') diff --git a/community/sensors-applet/PKGBUILD b/community/sensors-applet/PKGBUILD index 1a19269ab..3c9da15c1 100644 --- a/community/sensors-applet/PKGBUILD +++ b/community/sensors-applet/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sensors-applet pkgver=3.0.0 pkgrel=2 pkgdesc="Applet for GNOME Panel to display readings from hardware sensors, including CPU temperature, fan speeds and voltage readings" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://sensors-applet.sourceforge.net/" license=('GPL') depends=('gnome-panel' 'libatasmart' 'lm_sensors' 'xdg-utils') diff --git a/community/sfk/PKGBUILD b/community/sfk/PKGBUILD index 92a5ef187..10e7381bf 100644 --- a/community/sfk/PKGBUILD +++ b/community/sfk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sfk pkgver=1.6.5 pkgrel=1 pkgdesc='Swiss File Knife - A Command Line Tools Collection' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://stahlforce.com/dev/?tool=sfk' license=('custom: BSD') depends=('gcc-libs') diff --git a/community/simgear/PKGBUILD b/community/simgear/PKGBUILD index e26063d87..ae67781d2 100644 --- a/community/simgear/PKGBUILD +++ b/community/simgear/PKGBUILD @@ -7,7 +7,7 @@ pkgname=simgear pkgver=2.6.0 pkgrel=2 pkgdesc="A set of open-source libraries designed to be used as building blocks for quickly assembling 3d simulations, games, and visualization applications." -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) depends=('glut' 'freealut' 'plib' 'openscenegraph') makedepends=('boost' 'cmake') license=("GPL") diff --git a/community/spacefm/PKGBUILD b/community/spacefm/PKGBUILD index b161a78bb..ca7635fde 100644 --- a/community/spacefm/PKGBUILD +++ b/community/spacefm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=spacefm pkgver=0.7.7 pkgrel=1 pkgdesc="A multi-panel tabbed file manager" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://ignorantguru.github.com/spacefm/" license=('GPL2') install=$pkgname.install diff --git a/community/spectrwm/PKGBUILD b/community/spectrwm/PKGBUILD index 7eb5e367b..b97b60386 100644 --- a/community/spectrwm/PKGBUILD +++ b/community/spectrwm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=spectrwm pkgver=1.0.0 pkgrel=3 pkgdesc="A minimalistic dynamic tiling window manager that tries to stay out of the way." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.spectrwm.org" license=('custom:ISC') depends=('dmenu' 'libxrandr' 'libxtst' 'profont') diff --git a/community/sshpass/PKGBUILD b/community/sshpass/PKGBUILD index ad071a7b6..3f18e8e76 100644 --- a/community/sshpass/PKGBUILD +++ b/community/sshpass/PKGBUILD @@ -7,7 +7,7 @@ pkgname=sshpass pkgver=1.05 pkgrel=1 pkgdesc='Fool ssh into accepting an interactive password non-interactively' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://sourceforge.net/projects/sshpass/' license=('GPL') depends=('openssh') diff --git a/community/start-stop-daemon/PKGBUILD b/community/start-stop-daemon/PKGBUILD index a884da84b..a9ba3f285 100644 --- a/community/start-stop-daemon/PKGBUILD +++ b/community/start-stop-daemon/PKGBUILD @@ -7,7 +7,7 @@ pkgname=start-stop-daemon pkgver=1.15.8.12 pkgrel=1 pkgdesc='Start and stop system daemon programs' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL2') url='http://packages.qa.debian.org/d/dpkg.html' depends=('glibc') diff --git a/community/sylpheed/PKGBUILD b/community/sylpheed/PKGBUILD index 860005633..e9bb68bf9 100644 --- a/community/sylpheed/PKGBUILD +++ b/community/sylpheed/PKGBUILD @@ -7,7 +7,7 @@ pkgname=sylpheed pkgver=3.1.4 pkgrel=1 pkgdesc="Lightweight and user-friendly e-mail client" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://sylpheed.sraoss.jp/en/" license=('GPL') depends=('gpgme' 'gtkspell' 'desktop-file-utils') diff --git a/community/sysvbanner/PKGBUILD b/community/sysvbanner/PKGBUILD index dbaaa5543..44304f42a 100644 --- a/community/sysvbanner/PKGBUILD +++ b/community/sysvbanner/PKGBUILD @@ -4,7 +4,7 @@ pkgname=sysvbanner pkgver=1.0.15 pkgrel=1 pkgdesc='System-V banner clone' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://packages.qa.debian.org/s/sysvbanner.html' conflicts=('bsd-games') license=('custom') diff --git a/community/talkfilters/PKGBUILD b/community/talkfilters/PKGBUILD index 3ff55d919..8d8917ac3 100644 --- a/community/talkfilters/PKGBUILD +++ b/community/talkfilters/PKGBUILD @@ -4,7 +4,7 @@ pkgname=talkfilters pkgver=2.3.8 pkgrel=2 pkgdesc="Filters to translate text into dialects that GNU finds funny" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://www.hyperrealm.com/main.php?s=talkfilters" options=('!libtool') depends=('glibc') diff --git a/community/tcc/PKGBUILD b/community/tcc/PKGBUILD index 8ed553e65..c5cc9d845 100644 --- a/community/tcc/PKGBUILD +++ b/community/tcc/PKGBUILD @@ -9,7 +9,7 @@ pkgname=tcc pkgver=0.9.25 pkgrel=2 pkgdesc="Tiny C Compiler" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://bellard.org/tcc/" license=('LGPL') makedepends=('gcc') diff --git a/community/tightvnc/PKGBUILD b/community/tightvnc/PKGBUILD index 0646875b3..9d680a1ae 100644 --- a/community/tightvnc/PKGBUILD +++ b/community/tightvnc/PKGBUILD @@ -7,7 +7,7 @@ pkgname=tightvnc pkgver=1.3.10 pkgrel=8 pkgdesc="VNC Unix server && viewer" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') url="http://www.tightvnc.com" depends=('libjpeg' 'zlib' 'libxaw' 'libxp' 'xorg-xauth' 'perl') diff --git a/community/tinyxml/PKGBUILD b/community/tinyxml/PKGBUILD index 9826a68d9..4c93beb72 100644 --- a/community/tinyxml/PKGBUILD +++ b/community/tinyxml/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2.6.2 pkgrel=1 pkgdesc="A simple, small, C++ XML parser that can be easily integrated into other programs." url='http://www.grinninglizard.com/tinyxml/' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('zlib') depends=('gcc-libs') source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}_${pkgver//./_}.tar.gz" diff --git a/community/ubuntuone-client-gnome/PKGBUILD b/community/ubuntuone-client-gnome/PKGBUILD index c6b8a5ff8..6e277f729 100644 --- a/community/ubuntuone-client-gnome/PKGBUILD +++ b/community/ubuntuone-client-gnome/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ubuntuone-client-gnome pkgver=3.0.1 pkgrel=1 pkgdesc="Some plug-ins, extensions, and data for integrating Ubuntu One features in some core parts of GNOME" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://launchpad.net/ubuntuone-client-gnome" license=('GPL') depends=('nautilus' 'evolution-data-server' 'ubuntuone-client') diff --git a/community/ubuntuone-client/PKGBUILD b/community/ubuntuone-client/PKGBUILD index c6140ac08..6f849987f 100644 --- a/community/ubuntuone-client/PKGBUILD +++ b/community/ubuntuone-client/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ubuntuone-client pkgver=3.0.1 pkgrel=3 pkgdesc="Ubuntu One helps you store, sync and share files between your computers" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://launchpad.net/ubuntuone-client" license=('GPL') depends=('dbus-glib' 'python2-configglue' 'python2-distribute' 'python2-gobject' 'libnotify' 'python2-gobject2' 'python2-pyinotify' 'python-simplejson' 'ubuntu-sso-client' 'python2-ubuntuone-storageprotocol' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/ucarp/PKGBUILD b/community/ucarp/PKGBUILD index a1996e1d6..90158ebc1 100644 --- a/community/ucarp/PKGBUILD +++ b/community/ucarp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ucarp pkgver=1.5.2 pkgrel=3 pkgdesc='UCARP is a portable implementation of the CARP protocol' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.ucarp.org/project/ucarp' license=('GPL2') depends=('libpcap') diff --git a/community/uget/PKGBUILD b/community/uget/PKGBUILD index 41876c618..73c1ba391 100644 --- a/community/uget/PKGBUILD +++ b/community/uget/PKGBUILD @@ -5,7 +5,7 @@ pkgname=uget pkgver=1.8.2 pkgrel=1 pkgdesc="GTK+ download manager featuring download classification and HTML import" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://urlget.sourceforge.net/" license=('LGPL') depends=('libnotify' 'gtk3' 'gstreamer0.10' 'curl' 'hicolor-icon-theme' 'xdg-utils') diff --git a/community/ulogd/PKGBUILD b/community/ulogd/PKGBUILD index 1a16aca0c..b002d8e49 100644 --- a/community/ulogd/PKGBUILD +++ b/community/ulogd/PKGBUILD @@ -8,7 +8,7 @@ pkgname=ulogd pkgver=1.24 pkgrel=8 pkgdesc='Userspace Packet Logging for netfilter' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.netfilter.org/projects/ulogd/index.html' license=('GPL2') makedepends=('mysql' 'postgresql' 'sqlite3' 'libpcap') diff --git a/community/unhide/PKGBUILD b/community/unhide/PKGBUILD index 598623562..a8b35e112 100644 --- a/community/unhide/PKGBUILD +++ b/community/unhide/PKGBUILD @@ -5,7 +5,7 @@ pkgname=unhide pkgver=20110113 pkgrel=3 pkgdesc='A forensic tool to find processes hidden by rootkits, LKMs or by other techniques.' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.unhide-forensics.info/' license=('GPL3') source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}-${pkgver}.tgz") diff --git a/community/uriparser/PKGBUILD b/community/uriparser/PKGBUILD index a1433e81b..8f78d72e2 100644 --- a/community/uriparser/PKGBUILD +++ b/community/uriparser/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="uriparser is a strictly RFC 3986 compliant URI parsing library. uripars url="http://sourceforge.net/projects/uriparser/" depends=(glibc) makedepends=(doxygen) -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=("custom") source=(http://downloads.sourceforge.net/sourceforge/uriparser/$pkgname-$pkgver.tar.bz2) md5sums=('4f4349085fe5de33bcae8d0f26649593') diff --git a/community/vdrift/PKGBUILD b/community/vdrift/PKGBUILD index 489feda28..a85ea7973 100644 --- a/community/vdrift/PKGBUILD +++ b/community/vdrift/PKGBUILD @@ -7,7 +7,7 @@ pkgname=vdrift pkgver=2011.10.22 pkgrel=6 pkgdesc="Open source driving simulation made with drift racing in mind" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://vdrift.net/" license=('GPL') depends=('bullet' 'curl' 'sdl_gfx' 'sdl_image' 'glew' 'libvorbis' 'vdrift-data') diff --git a/community/vlan/PKGBUILD b/community/vlan/PKGBUILD index 11ca16a78..8cdaddd47 100644 --- a/community/vlan/PKGBUILD +++ b/community/vlan/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vlan pkgver=1.9 pkgrel=1 pkgdesc='Virtual LAN configuration utility' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.candelatech.com/~greear/vlan.html' license=('GPL') source=("http://www.candelatech.com/~greear/vlan/vlan.${pkgver}.tar.gz") diff --git a/community/volumeicon/PKGBUILD b/community/volumeicon/PKGBUILD index 24abc2b05..574ebfbde 100644 --- a/community/volumeicon/PKGBUILD +++ b/community/volumeicon/PKGBUILD @@ -6,7 +6,7 @@ pkgname=volumeicon pkgver=0.4.6 pkgrel=4 pkgdesc="Volume control for your system tray" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://softwarebakery.com/maato/volumeicon.html" license=('GPL3') depends=('gtk2>=2.16.0' 'alsa-lib' 'libnotify') diff --git a/community/vyqchat/PKGBUILD b/community/vyqchat/PKGBUILD index fc504490d..9e8a0dc5a 100644 --- a/community/vyqchat/PKGBUILD +++ b/community/vyqchat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vyqchat pkgver=0.2.8 pkgrel=4 pkgdesc="vypress compatible qt chat (can work without server)" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://linux.bydg.org/~yogin/" license=('GPL') depends=('qt3' 'libao' 'libxi') diff --git a/community/wesnoth/PKGBUILD b/community/wesnoth/PKGBUILD index 7b1e090f6..2ff3f497d 100644 --- a/community/wesnoth/PKGBUILD +++ b/community/wesnoth/PKGBUILD @@ -9,7 +9,7 @@ pkgname=wesnoth pkgver=1.10.3 pkgrel=1 pkgdesc="A turn-based strategy game on a fantasy world" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') url="http://www.wesnoth.org/" depends=('sdl_ttf' 'sdl_net' 'sdl_mixer' 'sdl_image' 'fribidi' 'boost-libs' 'pango' 'lua' "wesnoth-data" 'dbus-core' 'python2') diff --git a/community/wings3d/PKGBUILD b/community/wings3d/PKGBUILD index 884ecf115..3fa7ea7a3 100644 --- a/community/wings3d/PKGBUILD +++ b/community/wings3d/PKGBUILD @@ -7,7 +7,7 @@ _pkgname=wings pkgver=1.4.1 pkgrel=8 pkgdesc="3D modeling program" -arch=('x86_64' 'i686' 'mips64el') +arch=('x86_64' 'i686') url="http://www.wings3d.com/" license=('GPL') depends=('esdl' 'bash' 'desktop-file-utils' 'cl') diff --git a/community/wxcam/PKGBUILD b/community/wxcam/PKGBUILD index 974971d91..4364dd27a 100644 --- a/community/wxcam/PKGBUILD +++ b/community/wxcam/PKGBUILD @@ -2,7 +2,7 @@ pkgname=wxcam pkgver=1.1 pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=(GPL) pkgdesc="Webcam application for linux" # version of CImg library needed to compile wxcam - diff --git a/community/xautomation/PKGBUILD b/community/xautomation/PKGBUILD index b295b6e28..39472db42 100644 --- a/community/xautomation/PKGBUILD +++ b/community/xautomation/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.05 pkgrel=2 pkgdesc='Controls X from the command line and does "visual scraping".' url='http://hoopajoo.net/projects/xautomation.html' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') depends=('libpng' 'libxtst') source=("http://hoopajoo.net/static/projects/${pkgname}-${pkgver}.tar.gz" diff --git a/community/xml2/PKGBUILD b/community/xml2/PKGBUILD index 409334ff4..ab1fdd7fc 100644 --- a/community/xml2/PKGBUILD +++ b/community/xml2/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xml2 pkgver=0.4 pkgrel=2 pkgdesc="XML/Unix Processing Tools to convert XML and HTML to and from a line-oriented format more amenable to processing by classic Unix pipeline processing tools" -arch=("i686" "x86_64" "mips64el") +arch=("i686" "x86_64") url="http://www.ofb.net/~egnor/xml2/" license=("GPL") depends=("libxml2") diff --git a/community/xmlstarlet/PKGBUILD b/community/xmlstarlet/PKGBUILD index 74067d1a6..b81f4a552 100644 --- a/community/xmlstarlet/PKGBUILD +++ b/community/xmlstarlet/PKGBUILD @@ -8,7 +8,7 @@ pkgname=xmlstarlet pkgver=1.3.1 pkgrel=1 pkgdesc="A set of tools to transform, query, validate, and edit XML documents" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://xmlstar.sourceforge.net/" license=('MIT') depends=('libxslt>=1.1.9') diff --git a/community/xonotic/PKGBUILD b/community/xonotic/PKGBUILD index e32186003..1aa1927d9 100644 --- a/community/xonotic/PKGBUILD +++ b/community/xonotic/PKGBUILD @@ -4,7 +4,7 @@ pkgname=xonotic pkgver=0.6.0 pkgrel=2 pkgdesc="A free, fast-paced crossplatform first-person shooter" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://xonotic.org" license=('GPL') depends=('alsa-lib' 'curl' 'libjpeg>=8' 'libmodplug' 'libvorbis' 'libxpm' 'libxxf86dga' 'libxxf86vm' 'sdl' 'libpng>=1.4.0' 'xonotic-data') diff --git a/community/yaml-cpp/PKGBUILD b/community/yaml-cpp/PKGBUILD index ee79f87fb..c14cb52c8 100644 --- a/community/yaml-cpp/PKGBUILD +++ b/community/yaml-cpp/PKGBUILD @@ -5,7 +5,7 @@ pkgver=0.3.0 pkgrel=1 pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec" url="http://code.google.com/p/yaml-cpp/" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('MIT') makedepends=('cmake') source=(http://yaml-cpp.googlecode.com/files/$pkgname-$pkgver.tar.gz) diff --git a/community/zathura-pdf-poppler/PKGBUILD b/community/zathura-pdf-poppler/PKGBUILD index 25c1222d3..e35f9315e 100644 --- a/community/zathura-pdf-poppler/PKGBUILD +++ b/community/zathura-pdf-poppler/PKGBUILD @@ -6,7 +6,7 @@ pkgname=zathura-pdf-poppler pkgver=0.1.1 pkgrel=2 pkgdesc="Adds pdf support to zathura by using the poppler engine" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://pwmt.org/projects/zathura/plugins/zathura-pdf-poppler/" license=('custom') depends=('poppler-glib' 'zathura') diff --git a/community/zathura-ps/PKGBUILD b/community/zathura-ps/PKGBUILD index 1eb3740ee..7be83cdf7 100644 --- a/community/zathura-ps/PKGBUILD +++ b/community/zathura-ps/PKGBUILD @@ -6,7 +6,7 @@ pkgname=zathura-ps pkgver=0.1.0 pkgrel=2 pkgdesc="Adds ps support to zathura by using the libspectre library" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://pwmt.org/projects/zathura/plugins/zathura-ps/" license=('custom') depends=('libspectre' 'zathura') diff --git a/community/zynaddsubfx/PKGBUILD b/community/zynaddsubfx/PKGBUILD index 3d83018fa..5469f3265 100644 --- a/community/zynaddsubfx/PKGBUILD +++ b/community/zynaddsubfx/PKGBUILD @@ -8,7 +8,7 @@ pkgname=zynaddsubfx pkgver=2.4.2 pkgrel=1 pkgdesc="Opensource software synthesizer capable of making a countless number of instruments." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://zynaddsubfx.sourceforge.net" license=('GPL') depends=('fltk' 'libgl' 'fftw' 'lash' 'mxml') diff --git a/extra/anjuta-extras/PKGBUILD b/extra/anjuta-extras/PKGBUILD index 2444a97d6..1fee6da87 100644 --- a/extra/anjuta-extras/PKGBUILD +++ b/extra/anjuta-extras/PKGBUILD @@ -6,7 +6,7 @@ pkgname=anjuta-extras pkgver=3.4.0 pkgrel=2 pkgdesc="Anjuta Integrated Development Environment extra plugins" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') depends=('anjuta') makedepends=('intltool' 'gnome-doc-utils') diff --git a/extra/appmenu-qt/PKGBUILD b/extra/appmenu-qt/PKGBUILD index 079fff115..8a18170b7 100644 --- a/extra/appmenu-qt/PKGBUILD +++ b/extra/appmenu-qt/PKGBUILD @@ -5,7 +5,7 @@ pkgname=appmenu-qt pkgver=0.2.6 pkgrel=1 pkgdesc="Allows Qt applications to export menus over DBus to a menu applet" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='https://launchpad.net/appmenu-qt' license=('GPL') depends=('libdbusmenu-qt') diff --git a/extra/bin86/PKGBUILD b/extra/bin86/PKGBUILD index bcb85cbf0..a5dbd1c25 100644 --- a/extra/bin86/PKGBUILD +++ b/extra/bin86/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bin86 pkgver=0.16.18 pkgrel=3 pkgdesc="A complete 8086 assembler and loader" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') url="http://www.debath.co.uk/" depends=('glibc') diff --git a/extra/bootchart/PKGBUILD b/extra/bootchart/PKGBUILD index bbfec3844..9a48b1b01 100644 --- a/extra/bootchart/PKGBUILD +++ b/extra/bootchart/PKGBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="A 'startup' graphing tool" url="https://meego.gitorious.org/meego-developer-tools/bootchart" license=('GPL2') -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) depends=('glibc') source=("http://foo-projects.org/~sofar/${pkgname}/${pkgname}-${pkgver}.tar.gz" 'build.patch') diff --git a/extra/burp/PKGBUILD b/extra/burp/PKGBUILD index f4bfea4a6..4851bf32c 100644 --- a/extra/burp/PKGBUILD +++ b/extra/burp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=burp pkgver=1.6.8 pkgrel=1 pkgdesc="A simple AUR uploader" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://github.com/falconindy/burp" license=('GPL') depends=('glibc' 'curl') diff --git a/extra/calligra/PKGBUILD b/extra/calligra/PKGBUILD index ca1e15d2d..3eca5fab7 100644 --- a/extra/calligra/PKGBUILD +++ b/extra/calligra/PKGBUILD @@ -24,7 +24,7 @@ pkgname=('calligra-filters' 'calligra-flow') pkgver=2.4.2 pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.calligra-suite.org/' license=('FDL1.2' 'GPL2' 'LGPL') makedepends=('cmake' 'automoc4' 'boost ' 'eigen2' diff --git a/extra/caribou/PKGBUILD b/extra/caribou/PKGBUILD index 21751d929..83b4b65f6 100644 --- a/extra/caribou/PKGBUILD +++ b/extra/caribou/PKGBUILD @@ -6,7 +6,7 @@ pkgname=caribou pkgver=0.4.2 pkgrel=1 pkgdesc="A text entry and UI navigation application being developed as an alternative to the Gnome On-screen Keyboard." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://live.gnome.org/Caribou" license=('LGPL') depends=('at-spi2-atk' 'pyatspi' 'dbus-python' 'python2-gobject' 'gtk3' 'libxklavier' 'libgee' 'clutter' 'dconf') diff --git a/extra/ccrtp/PKGBUILD b/extra/ccrtp/PKGBUILD index 273657f28..5901e29ed 100644 --- a/extra/ccrtp/PKGBUILD +++ b/extra/ccrtp/PKGBUILD @@ -9,7 +9,7 @@ pkgname=ccrtp pkgver=2.0.3 pkgrel=2 pkgdesc="An implementation of RTP, the real-time transport protocol from the IETF" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.gnu.org/software/ccrtp/" license=('GPL' 'custom') depends=('ucommon' 'libgcrypt') diff --git a/extra/cups/PKGBUILD b/extra/cups/PKGBUILD index e292b2c4a..7a7ec85d7 100644 --- a/extra/cups/PKGBUILD +++ b/extra/cups/PKGBUILD @@ -5,7 +5,7 @@ pkgbase="cups" pkgname=('libcups' 'cups') pkgver=1.5.3 pkgrel=4 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') url="http://www.cups.org/" makedepends=('libtiff>=4.0.0' 'libpng>=1.5.7' 'acl' 'openslp' 'pam' 'xdg-utils' 'krb5' 'gnutls>=2.8.3' 'cups-filters' 'bc' diff --git a/extra/dmidecode/PKGBUILD b/extra/dmidecode/PKGBUILD index 0fa067a16..6f5e9ceba 100644 --- a/extra/dmidecode/PKGBUILD +++ b/extra/dmidecode/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dmidecode pkgver=2.11 pkgrel=2 pkgdesc="Desktop Management Interface table related utilities" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.nongnu.org/dmidecode" license=('GPL') depends=('glibc') diff --git a/extra/efibootmgr/PKGBUILD b/extra/efibootmgr/PKGBUILD index 9d8a8b145..0fd7bb248 100755 --- a/extra/efibootmgr/PKGBUILD +++ b/extra/efibootmgr/PKGBUILD @@ -7,7 +7,7 @@ pkgname=efibootmgr pkgver=0.5.4 pkgrel=3 pkgdesc="Tool to modify UEFI Firmware Boot Manager Variables." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://linux.dell.com/efibootmgr/" license=('GPL2') depends=('zlib' 'pciutils') diff --git a/extra/evolution-ews/PKGBUILD b/extra/evolution-ews/PKGBUILD index b4fd429be..4ecbd6dfe 100644 --- a/extra/evolution-ews/PKGBUILD +++ b/extra/evolution-ews/PKGBUILD @@ -5,7 +5,7 @@ pkgname=evolution-ews pkgver=3.4.2 pkgrel=1 pkgdesc="MS Exchange integration through Exchange Web Services" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('LGPL2.1') url="http://www.gnome.org" depends=('evolution-data-server' 'gtkhtml4' 'gnome-desktop') diff --git a/extra/evolution-groupwise/PKGBUILD b/extra/evolution-groupwise/PKGBUILD index 4f3561a61..d03a37c2c 100644 --- a/extra/evolution-groupwise/PKGBUILD +++ b/extra/evolution-groupwise/PKGBUILD @@ -6,7 +6,7 @@ pkgname=evolution-groupwise pkgver=3.4.2 pkgrel=1 pkgdesc="GroupWise connector for evolution" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://projects.gnome.org/evolution/" license=(LGPL) depends=('evolution-data-server' 'gtkhtml4') diff --git a/extra/fprintd/PKGBUILD b/extra/fprintd/PKGBUILD index d47fc56e6..292af2d28 100644 --- a/extra/fprintd/PKGBUILD +++ b/extra/fprintd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fprintd pkgver=0.4.1 pkgrel=4 pkgdesc="D-Bus service to access fingerprint readers" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://www.freedesktop.org/wiki/Software/fprint/fprintd" license=(GPL) depends=(libfprint dbus-glib polkit) diff --git a/extra/gettext-mono/PKGBUILD b/extra/gettext-mono/PKGBUILD index 5741a1640..9e89644a8 100644 --- a/extra/gettext-mono/PKGBUILD +++ b/extra/gettext-mono/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gettext-mono pkgver=0.18.1.1 pkgrel=1 pkgdesc="mono assemblies for GNU internationalization library" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.gnu.org/software/gettext" license=('GPL') depends=('mono>=2.10.6') diff --git a/extra/ggz-gtk-client/PKGBUILD b/extra/ggz-gtk-client/PKGBUILD index a637ad5e6..4f886abb8 100644 --- a/extra/ggz-gtk-client/PKGBUILD +++ b/extra/ggz-gtk-client/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ggz-gtk-client pkgver=0.0.14.1 pkgrel=5 pkgdesc="GGZ Gaming Zone GTK+ client" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.ggzgamingzone.org/" license=('GPL') depends=('gtk2' 'ggz-client-libs') diff --git a/extra/gnome-desktop-sharp/PKGBUILD b/extra/gnome-desktop-sharp/PKGBUILD index 8342241c1..3a6309dc5 100644 --- a/extra/gnome-desktop-sharp/PKGBUILD +++ b/extra/gnome-desktop-sharp/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=gnome-desktop-sharp pkgname=('gnome-desktop-sharp' 'libgnome-desktop-sharp' 'gtkhtml-sharp' 'gtksourceview2-sharp' 'rsvg2-sharp' 'vte-sharp' 'wnck-sharp') pkgver=2.26.0 pkgrel=8 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=(LGPL) url="http://gtk-sharp.sourceforge.net" makedepends=('gnome-sharp' 'gnome-desktop2' 'vte' 'librsvg' 'libwnck' 'gtkhtml' 'gtksourceview2' 'monodoc') diff --git a/extra/gnome-dictionary/PKGBUILD b/extra/gnome-dictionary/PKGBUILD index 83c6cf058..86a252322 100644 --- a/extra/gnome-dictionary/PKGBUILD +++ b/extra/gnome-dictionary/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gnome-dictionary pkgver=3.4.0 pkgrel=1 pkgdesc="Look up words in dictionary sources" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://gnome.org" license=('GPL2') depends=('dconf' 'gtk3') diff --git a/extra/gnome-font-viewer/PKGBUILD b/extra/gnome-font-viewer/PKGBUILD index c14a454e8..9a94d6a74 100644 --- a/extra/gnome-font-viewer/PKGBUILD +++ b/extra/gnome-font-viewer/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-font-viewer pkgver=3.4.0 pkgrel=1 pkgdesc="GNOME font viewer and thumbnailer" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('GPL') depends=('gtk3' 'desktop-file-utils') makedepends=('intltool') diff --git a/extra/gnome-keyring-sharp/PKGBUILD b/extra/gnome-keyring-sharp/PKGBUILD index b4943ebe1..37bd25238 100644 --- a/extra/gnome-keyring-sharp/PKGBUILD +++ b/extra/gnome-keyring-sharp/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gnome-keyring-sharp pkgver=1.0.2 pkgrel=4 pkgdesc="A fully managed implementation of libgnome-keyring" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.mono-project.com/Libraries" license=('custom') depends=('libgnome-keyring' 'gtk-sharp-2') diff --git a/extra/gnome-screenshot/PKGBUILD b/extra/gnome-screenshot/PKGBUILD index e524d17c7..904764905 100644 --- a/extra/gnome-screenshot/PKGBUILD +++ b/extra/gnome-screenshot/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-screenshot pkgver=3.4.1 pkgrel=1 pkgdesc="Take pictures of your screen" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://gnome.org" license=('GPL2') depends=('dconf' 'gtk3' 'libcanberra') diff --git a/extra/gnome-search-tool/PKGBUILD b/extra/gnome-search-tool/PKGBUILD index b32b96178..7cbd3d7ef 100644 --- a/extra/gnome-search-tool/PKGBUILD +++ b/extra/gnome-search-tool/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-search-tool pkgver=3.4.0 pkgrel=1 pkgdesc="Utility to search for files" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://gnome.org" license=('GPL2') depends=('gconf' 'gtk3' 'libsm') diff --git a/extra/gnome-sharp/PKGBUILD b/extra/gnome-sharp/PKGBUILD index a6ebd54f0..33518bbfe 100644 --- a/extra/gnome-sharp/PKGBUILD +++ b/extra/gnome-sharp/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=gnome-sharp pkgname=('gnome-sharp' 'art-sharp' 'gconf-sharp' 'gconf-sharp-peditors' 'libgnome-sharp' 'gnome-vfs-sharp') pkgver=2.24.2 pkgrel=2 -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=(LGPL) url="http://gtk-sharp.sourceforge.net" makedepends=('gtk-sharp-2' 'libgnomeui' 'monodoc') diff --git a/extra/gnu-efi/PKGBUILD b/extra/gnu-efi/PKGBUILD index ee69b5066..35e433aaf 100644 --- a/extra/gnu-efi/PKGBUILD +++ b/extra/gnu-efi/PKGBUILD @@ -12,7 +12,7 @@ pkgrel=1 pkgdesc="Library for building UEFI Applications using GNU toolchain" url="http://sourceforge.net/projects/gnu-efi/" license=('GPL') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') makedepends=() depends=('pciutils') source=("http://download.sourceforge.net/gnu-efi/gnu-efi_${pkgver}.orig.tar.gz") diff --git a/extra/grilo-plugins/PKGBUILD b/extra/grilo-plugins/PKGBUILD index b6cb37a16..d248642f9 100644 --- a/extra/grilo-plugins/PKGBUILD +++ b/extra/grilo-plugins/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.1.18 pkgrel=3 pkgdesc="Plugins for Grilo" url="http://www.gnome.org" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('LGPL') depends=('grilo') makedepends=('gupnp-av' 'libgdata' 'libquvi' 'sqlite3' 'gmime' 'libgcrypt' diff --git a/extra/gtk-sharp-2/PKGBUILD b/extra/gtk-sharp-2/PKGBUILD index 7cec273f6..7adbebf17 100644 --- a/extra/gtk-sharp-2/PKGBUILD +++ b/extra/gtk-sharp-2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gtk-sharp-2 pkgver=2.12.11 pkgrel=1 pkgdesc="gtk2 bindings for C#" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('LGPL') url="http://gtk-sharp.sourceforge.net" depends=('mono' 'libglade' 'gtk2') diff --git a/extra/gupnp-av/PKGBUILD b/extra/gupnp-av/PKGBUILD index 91109b346..97ea02440 100644 --- a/extra/gupnp-av/PKGBUILD +++ b/extra/gupnp-av/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gupnp-av pkgver=0.10.2 pkgrel=1 pkgdesc="Library to ease handling and implementation of UPnP A/V profiles" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://gupnp.org/" license=('LGPL') depends=('gupnp') diff --git a/extra/gupnp-igd/PKGBUILD b/extra/gupnp-igd/PKGBUILD index 3d936b173..8e08e3a17 100644 --- a/extra/gupnp-igd/PKGBUILD +++ b/extra/gupnp-igd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gupnp-igd pkgver=0.2.1 pkgrel=3 pkgdesc="A library to handle UPnP IGD port mapping" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.gupnp.org" license=('LGPL') depends=('gupnp' 'python2-gobject2') diff --git a/extra/gupnp/PKGBUILD b/extra/gupnp/PKGBUILD index 6040fee81..6b18c0279 100644 --- a/extra/gupnp/PKGBUILD +++ b/extra/gupnp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gupnp pkgver=0.18.2 pkgrel=1 pkgdesc="An object-oriented UPNP framework" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://gupnp.org/" license=('LGPL') depends=('gssdp') diff --git a/extra/haskell-random/PKGBUILD b/extra/haskell-random/PKGBUILD index c5c068217..3b929c3d6 100644 --- a/extra/haskell-random/PKGBUILD +++ b/extra/haskell-random/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A basic random number generation library" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('ghc=7.4.1' 'sh') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) install=${pkgname}.install diff --git a/extra/herqq/PKGBUILD b/extra/herqq/PKGBUILD index ccb97cb0e..98f705a1f 100644 --- a/extra/herqq/PKGBUILD +++ b/extra/herqq/PKGBUILD @@ -5,7 +5,7 @@ pkgname=herqq pkgver=1.0.0 pkgrel=1 pkgdesc="A software library for building UPnP devices (HUPnP)" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.herqq.org/" license=('GPL') depends=('qt') diff --git a/extra/hpoj/PKGBUILD b/extra/hpoj/PKGBUILD index 26d4e4876..bedf7127b 100644 --- a/extra/hpoj/PKGBUILD +++ b/extra/hpoj/PKGBUILD @@ -6,7 +6,7 @@ pkgname=hpoj pkgver=0.91 pkgrel=17 pkgdesc="Hewlett-Packard OfficeJet, PSC, LaserJet, and PhotoSmart printer multi-function peripherals (MFPs) drivers" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://hpoj.sourceforge.net" license=('GPL' 'custom') depends=('perl' 'libusb-compat' 'net-snmp' 'hplip>=1.7.2') diff --git a/extra/icedtea-web-java7/PKGBUILD b/extra/icedtea-web-java7/PKGBUILD index 55bf33acf..b12233bbb 100644 --- a/extra/icedtea-web-java7/PKGBUILD +++ b/extra/icedtea-web-java7/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=icedtea-web-java7 pkgname=('icedtea-web-java7' 'icedtea-web-java7-doc') pkgver=1.2 pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://icedtea.classpath.org/wiki/IcedTea-Web" license=('GPL2') makedepends=('jdk7-openjdk' 'zip' 'gtk2' 'libxtst' 'npapi-sdk' 'rhino' 'junit') diff --git a/extra/isapnptools/PKGBUILD b/extra/isapnptools/PKGBUILD index 1d8c77b04..56d573eb5 100644 --- a/extra/isapnptools/PKGBUILD +++ b/extra/isapnptools/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=3 pkgdesc="Allow ISA Plug-And-Play devices to be configured on a Linux machine" url="http://www.roestock.demon.co.uk/isapnptools/" depends=('glibc') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') source=("ftp://metalab.unc.edu/pub/Linux/system/hardware/${pkgname}-${pkgver}.tgz") md5sums=('b997ba56583dc850fce9b93d658dfa0c') diff --git a/extra/java7-openjdk/PKGBUILD b/extra/java7-openjdk/PKGBUILD index 95af9a134..8d4259c1a 100644 --- a/extra/java7-openjdk/PKGBUILD +++ b/extra/java7-openjdk/PKGBUILD @@ -26,7 +26,7 @@ _bootstrap=0 # 0/1 for quick build or full bootstrap pkgver=${_java_ver}.${_updatever}_${_icedtea_ver} pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://icedtea.classpath.org" license=('custom') options=('!emptydirs') diff --git a/extra/kdeaccessibility-jovie/PKGBUILD b/extra/kdeaccessibility-jovie/PKGBUILD index 0b9d8155d..feb2f952a 100644 --- a/extra/kdeaccessibility-jovie/PKGBUILD +++ b/extra/kdeaccessibility-jovie/PKGBUILD @@ -4,7 +4,7 @@ pkgname=kdeaccessibility-jovie pkgver=4.8.3 pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') pkgdesc='A text to speech application' url='http://kde.org/applications/utilities/jovie/' license=('GPL' 'FDL') diff --git a/extra/kdeaccessibility-kaccessible/PKGBUILD b/extra/kdeaccessibility-kaccessible/PKGBUILD index 6d9a9e4d8..2767ba84d 100644 --- a/extra/kdeaccessibility-kaccessible/PKGBUILD +++ b/extra/kdeaccessibility-kaccessible/PKGBUILD @@ -4,7 +4,7 @@ pkgname=kdeaccessibility-kaccessible pkgver=4.8.3 pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') pkgdesc='Provides accessibility services like focus tracking and a screenreader' url='http://accessibility.kde.org/' license=('GPL' 'FDL') diff --git a/extra/kdeaccessibility-kmag/PKGBUILD b/extra/kdeaccessibility-kmag/PKGBUILD index 30dffd9f2..fee84e809 100644 --- a/extra/kdeaccessibility-kmag/PKGBUILD +++ b/extra/kdeaccessibility-kmag/PKGBUILD @@ -4,7 +4,7 @@ pkgname=kdeaccessibility-kmag pkgver=4.8.3 pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') pkgdesc='Screen Magnifier' url='http://kde.org/applications/utilities/kmag/' license=('GPL' 'FDL') diff --git a/extra/kdeaccessibility-kmousetool/PKGBUILD b/extra/kdeaccessibility-kmousetool/PKGBUILD index e9f51c899..edc407e50 100644 --- a/extra/kdeaccessibility-kmousetool/PKGBUILD +++ b/extra/kdeaccessibility-kmousetool/PKGBUILD @@ -4,7 +4,7 @@ pkgname=kdeaccessibility-kmousetool pkgver=4.8.3 pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') pkgdesc='Clicks the mouse for you, reducing the effects of RSI' url='http://kde.org/applications/utilities/kmousetool/' license=('GPL' 'FDL') diff --git a/extra/kdeaccessibility-kmouth/PKGBUILD b/extra/kdeaccessibility-kmouth/PKGBUILD index 3dcaf27f9..cf72c9ee1 100644 --- a/extra/kdeaccessibility-kmouth/PKGBUILD +++ b/extra/kdeaccessibility-kmouth/PKGBUILD @@ -4,7 +4,7 @@ pkgname=kdeaccessibility-kmouth pkgver=4.8.3 pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') pkgdesc='Speech Synthesizer Frontend' url='http://kde.org/applications/utilities/kmouth/' license=('GPL' 'FDL') diff --git a/extra/kdebindings-kimono/PKGBUILD b/extra/kdebindings-kimono/PKGBUILD index a25aaa474..528fe45aa 100644 --- a/extra/kdebindings-kimono/PKGBUILD +++ b/extra/kdebindings-kimono/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc=".NET/Mono bindings for the KDE libraries" url="http://kde.org/" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') depends=('kdebindings-qyoto' 'kdebindings-smokekde') diff --git a/extra/kdeedu-analitza/PKGBUILD b/extra/kdeedu-analitza/PKGBUILD index 42c4d841b..7871097bf 100644 --- a/extra/kdeedu-analitza/PKGBUILD +++ b/extra/kdeedu-analitza/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc="A library to add mathematical features to your program" url="http://kde.org/" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') diff --git a/extra/kdelibs3/PKGBUILD b/extra/kdelibs3/PKGBUILD index dae0db770..888aa10f3 100644 --- a/extra/kdelibs3/PKGBUILD +++ b/extra/kdelibs3/PKGBUILD @@ -7,7 +7,7 @@ pkgname=kdelibs3 pkgver=3.5.10 pkgrel=13 pkgdesc='KDE3 Core Libraries' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.kde.org' license=('GPL' 'LGPL') depends=('libxslt' 'pcre' 'libart-lgpl' 'alsa-lib' 'libcups' 'jasper' diff --git a/extra/kdeutils-filelight/PKGBUILD b/extra/kdeutils-filelight/PKGBUILD index bfabc539a..1e0af253f 100644 --- a/extra/kdeutils-filelight/PKGBUILD +++ b/extra/kdeutils-filelight/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='View disk usage information' url='http://kde.org/applications/utilities/filelight' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-kcalc/PKGBUILD b/extra/kdeutils-kcalc/PKGBUILD index 5c5eb1c57..77dd528b7 100644 --- a/extra/kdeutils-kcalc/PKGBUILD +++ b/extra/kdeutils-kcalc/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Scientific Calculator' url='http://kde.org/applications/utilities/kcalc/' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-kcharselect/PKGBUILD b/extra/kdeutils-kcharselect/PKGBUILD index 717458528..ceaa2cf19 100644 --- a/extra/kdeutils-kcharselect/PKGBUILD +++ b/extra/kdeutils-kcharselect/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Character Selector' url="http://kde.org/applications/utilities/kcharselect/" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-kdf/PKGBUILD b/extra/kdeutils-kdf/PKGBUILD index 3c85f4438..0862af56a 100644 --- a/extra/kdeutils-kdf/PKGBUILD +++ b/extra/kdeutils-kdf/PKGBUILD @@ -5,7 +5,7 @@ pkgname=kdeutils-kdf pkgver=4.8.3 pkgrel=1 url="http://kde.org/applications/system/kdiskfree/" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') pkgdesc='View Disk Usage' license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') diff --git a/extra/kdeutils-kfloppy/PKGBUILD b/extra/kdeutils-kfloppy/PKGBUILD index 0143644ac..1858983bf 100644 --- a/extra/kdeutils-kfloppy/PKGBUILD +++ b/extra/kdeutils-kfloppy/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Floppy Formatter' url='http://kde.org/applications/utilities/kfloppy/' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-kgpg/PKGBUILD b/extra/kdeutils-kgpg/PKGBUILD index 0ff1ecb87..2a5515e46 100644 --- a/extra/kdeutils-kgpg/PKGBUILD +++ b/extra/kdeutils-kgpg/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='A GnuPG frontend' url='http://kde.org/applications/utilities/kgpg/' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime' 'kdepimlibs' 'kde-agent') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-kremotecontrol/PKGBUILD b/extra/kdeutils-kremotecontrol/PKGBUILD index b7dd25705..30ca87072 100644 --- a/extra/kdeutils-kremotecontrol/PKGBUILD +++ b/extra/kdeutils-kremotecontrol/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Configure your remote controls for use with applications' url='http://kde.org/applications/utilities/kremotecontrol/' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-workspace') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-ksecrets/PKGBUILD b/extra/kdeutils-ksecrets/PKGBUILD index a34cd345d..258695a7e 100644 --- a/extra/kdeutils-ksecrets/PKGBUILD +++ b/extra/kdeutils-ksecrets/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Secrets Management Infrastructure for KDE' url='http://techbase.kde.org/Projects/Utils/ksecretsservice' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-workspace' 'qca-ossl') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-ktimer/PKGBUILD b/extra/kdeutils-ktimer/PKGBUILD index d2573c15c..096b0b5d2 100644 --- a/extra/kdeutils-ktimer/PKGBUILD +++ b/extra/kdeutils-ktimer/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Countdown Launcher' url='http://kde.org/applications/utilities/ktimer/' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-kwallet/PKGBUILD b/extra/kdeutils-kwallet/PKGBUILD index b58816381..7fe331e46 100644 --- a/extra/kdeutils-kwallet/PKGBUILD +++ b/extra/kdeutils-kwallet/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='Wallet Management Tool' url='http://kde.org/applications/system/kwalletmanager/' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-superkaramba/PKGBUILD b/extra/kdeutils-superkaramba/PKGBUILD index ff35a7487..dc14790c2 100644 --- a/extra/kdeutils-superkaramba/PKGBUILD +++ b/extra/kdeutils-superkaramba/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='An engine for cool desktop eyecandy' url='http://kde.org/applications/utilities/superkaramba/' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime' 'qimageblitz') makedepends=('cmake' 'automoc4') diff --git a/extra/kdeutils-sweeper/PKGBUILD b/extra/kdeutils-sweeper/PKGBUILD index da62dffee..f1338760e 100644 --- a/extra/kdeutils-sweeper/PKGBUILD +++ b/extra/kdeutils-sweeper/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.8.3 pkgrel=1 pkgdesc='System Cleaner' url='http://kde.org/applications/utilities/sweeper' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') diff --git a/extra/lame/PKGBUILD b/extra/lame/PKGBUILD index e7b961259..7a090e7b4 100644 --- a/extra/lame/PKGBUILD +++ b/extra/lame/PKGBUILD @@ -7,7 +7,7 @@ pkgname=lame pkgver=3.99.5 pkgrel=1 pkgdesc="A high quality MPEG Audio Layer III (MP3) encoder" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://lame.sourceforge.net/" depends=('ncurses') makedepends=('nasm') diff --git a/extra/libdrm-new/PKGBUILD b/extra/libdrm-new/PKGBUILD index 68fee9067..32a85fcd1 100644 --- a/extra/libdrm-new/PKGBUILD +++ b/extra/libdrm-new/PKGBUILD @@ -6,7 +6,7 @@ pkgname=(libdrm-new libdrm-nouveau) pkgver=2.4.34 pkgrel=1 pkgdesc="Userspace interface to kernel DRM services" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('custom') depends=('glibc' 'libpciaccess') makedepends=('cairo' 'valgrind') diff --git a/extra/libfprint/PKGBUILD b/extra/libfprint/PKGBUILD index 7eec16063..a1e059763 100644 --- a/extra/libfprint/PKGBUILD +++ b/extra/libfprint/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libfprint pkgver=0.4.0 pkgrel=3 pkgdesc="Library for fingerprint readers" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://www.freedesktop.org/wiki/Software/fprint/libfprint" license=(LGPL) depends=(libusb nss gdk-pixbuf2) diff --git a/extra/libkgoogle/PKGBUILD b/extra/libkgoogle/PKGBUILD index a714dc1c7..f5daa1aeb 100644 --- a/extra/libkgoogle/PKGBUILD +++ b/extra/libkgoogle/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.3.1 pkgrel=1 pkgdesc="A KDE-based library for accessing various Google services via their public API" url='https://projects.kde.org/projects/kdereview/libkgoogle' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdepimlibs' 'qjson') makedepends=('cmake' 'automoc4' 'boost') diff --git a/extra/libmusicbrainz4/PKGBUILD b/extra/libmusicbrainz4/PKGBUILD index c9a71ab86..d37f07528 100644 --- a/extra/libmusicbrainz4/PKGBUILD +++ b/extra/libmusicbrainz4/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libmusicbrainz4 pkgver=4.0.3 pkgrel=1 pkgdesc="Library That Provides Access to the MusicBrainz Server" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://musicbrainz.org/" license=('LGPL2.1') depends=('neon') diff --git a/extra/libsrtp/PKGBUILD b/extra/libsrtp/PKGBUILD index 1c317436b..13f8142c3 100644 --- a/extra/libsrtp/PKGBUILD +++ b/extra/libsrtp/PKGBUILD @@ -9,7 +9,7 @@ pkgver=1.4.4 pkgrel=2 pkgdesc="Open-source implementation of the Secure Real-time Transport Protocol (SRTP)" url="http://srtp.sourceforge.net/srtp.html" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('BSD') source=("http://downloads.sourceforge.net/srtp/srtp-${pkgver}.tgz") md5sums=('9b449edb011c934ca97009e7e0566d22') diff --git a/extra/libunistring/PKGBUILD b/extra/libunistring/PKGBUILD index e4c0d22c5..5cbc2003a 100644 --- a/extra/libunistring/PKGBUILD +++ b/extra/libunistring/PKGBUILD @@ -9,7 +9,7 @@ pkgver=0.9.3 pkgrel=5 pkgdesc="Library for manipulating Unicode strings and C strings." url="http://www.gnu.org/software/libunistring/" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') depends=('glibc') install=${pkgname}.install diff --git a/extra/libva-driver-intel/PKGBUILD b/extra/libva-driver-intel/PKGBUILD index ffa2c50d2..55f0d3237 100644 --- a/extra/libva-driver-intel/PKGBUILD +++ b/extra/libva-driver-intel/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libva-driver-intel pkgver=1.0.17 pkgrel=1 pkgdesc="VA-API implementation for Intel G45 chipsets and Intel HD Graphics for Intel Core processor family." -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://freedesktop.org/wiki/Software/vaapi" license=('MIT') depends=('libva') diff --git a/extra/libva/PKGBUILD b/extra/libva/PKGBUILD index 592f4a510..33d8d6bc6 100644 --- a/extra/libva/PKGBUILD +++ b/extra/libva/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libva pkgver=1.0.15 pkgrel=1 pkgdesc="Video Acceleration (VA) API for Linux" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://freedesktop.org/wiki/Software/vaapi" license=('MIT') depends=('libgl' 'libdrm' 'libxfixes') diff --git a/extra/libvdpau/PKGBUILD b/extra/libvdpau/PKGBUILD index 406202551..bb012a83f 100644 --- a/extra/libvdpau/PKGBUILD +++ b/extra/libvdpau/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libvdpau pkgver=0.4.1 pkgrel=2 pkgdesc="Nvidia VDPAU library" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url='http://cgit.freedesktop.org/~aplattner/libvdpau' depends=('gcc-libs') conflicts=('nvidia-utils<190.42-2') diff --git a/extra/libzrtpcpp/PKGBUILD b/extra/libzrtpcpp/PKGBUILD index 1a5aacc34..e004e6e6f 100644 --- a/extra/libzrtpcpp/PKGBUILD +++ b/extra/libzrtpcpp/PKGBUILD @@ -8,7 +8,7 @@ pkgname=libzrtpcpp pkgver=2.1.2 pkgrel=1 pkgdesc="A C++ implementation of Phil Zimmermann's ZRTP specification" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://www.gnutelephony.org/index.php/GNU_ZRTP' license=('GPL3') depends=('ccrtp') diff --git a/extra/lv2/PKGBUILD b/extra/lv2/PKGBUILD index 7b32d4c3a..a45496af2 100644 --- a/extra/lv2/PKGBUILD +++ b/extra/lv2/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Successor to the LADSPA audio plug-in standard" url="http://lv2plug.in/" license=('LGPL' 'custom') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') makedepends=('python2' 'libsndfile' 'gtk2') optdepends=('libsndfile: lv2-eg-sampler' 'gtk2: lv2-eg-sampler') diff --git a/extra/misdnuser/PKGBUILD b/extra/misdnuser/PKGBUILD index 16d54f065..63cfbf7c6 100644 --- a/extra/misdnuser/PKGBUILD +++ b/extra/misdnuser/PKGBUILD @@ -5,7 +5,7 @@ pkgname=misdnuser pkgver=2.0.13_20120524 pkgrel=1 pkgdesc="Tools and library for mISDN" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.misdn.org" license=('GPL') depends=('isdn4k-utils' 'spandsp') diff --git a/extra/mod_mono/PKGBUILD b/extra/mod_mono/PKGBUILD index 8f47a855f..781714d14 100644 --- a/extra/mod_mono/PKGBUILD +++ b/extra/mod_mono/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mod_mono pkgver=2.10 pkgrel=2 pkgdesc="The mono module to make ASP.NET running on top of apache" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('APACHE') depends=('apache>=2.2.11' 'xsp') url="http://www.go-mono.com" diff --git a/extra/mono-addins/PKGBUILD b/extra/mono-addins/PKGBUILD index d3a44965d..ccaac768b 100644 --- a/extra/mono-addins/PKGBUILD +++ b/extra/mono-addins/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mono-addins pkgver=0.6.2 pkgrel=2 pkgdesc="A generic framework for creating extensible applications and for creating libraries which extend those applications" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.mono-project.com/Mono.Addins" license=('custom:MIT') depends=('gtk-sharp-2>=2.12.8' 'mono>=2.10.5') diff --git a/extra/mono-basic/PKGBUILD b/extra/mono-basic/PKGBUILD index 4f512758a..b0552c5a1 100644 --- a/extra/mono-basic/PKGBUILD +++ b/extra/mono-basic/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mono-basic pkgver=2.10 pkgrel=2 pkgdesc="Mono Visual Basic.NET compiler" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('GPL') url="http://www.mono-project.com/" depends=('mono>=2.10.1') diff --git a/extra/mono-debugger/PKGBUILD b/extra/mono-debugger/PKGBUILD index 9894fe1b9..21946154d 100644 --- a/extra/mono-debugger/PKGBUILD +++ b/extra/mono-debugger/PKGBUILD @@ -4,7 +4,7 @@ pkgname=mono-debugger pkgver=2.10 pkgrel=2 pkgdesc="The Mono Debugger" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('GPL') url="http://www.mono-project.com/" depends=('mono>=2.10.1') diff --git a/extra/mono-tools/PKGBUILD b/extra/mono-tools/PKGBUILD index 20ade997f..a7dc49bf1 100644 --- a/extra/mono-tools/PKGBUILD +++ b/extra/mono-tools/PKGBUILD @@ -13,7 +13,7 @@ pkgname=mono-tools pkgver=2.10 pkgrel=2 pkgdesc="collection of testing and development tools for use with mono (including monodoc browser)" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('GPL') url="http://www.mono-project.com/" depends=('libgnome-sharp' 'gtkhtml-sharp') diff --git a/extra/mono-upnp/PKGBUILD b/extra/mono-upnp/PKGBUILD index 1b8a46ba0..c819c4cd2 100644 --- a/extra/mono-upnp/PKGBUILD +++ b/extra/mono-upnp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mono-upnp pkgver=0.1.2 pkgrel=1 pkgdesc="UPNP binding for Mono/.NET" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://github.com/mono/mono-upnp" license=('MIT') depends=('gtk-sharp-2' 'mono-addins' 'taglib-sharp') diff --git a/extra/mono/PKGBUILD b/extra/mono/PKGBUILD index 3fbb4f079..9a83fc925 100644 --- a/extra/mono/PKGBUILD +++ b/extra/mono/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mono pkgver=2.10.8 pkgrel=1 pkgdesc="Free implementation of the .NET platform including runtime and compiler" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('GPL' 'LGPL2' 'MPL' 'custom:MITX11') url="http://www.mono-project.com/" depends=('zlib' 'libgdiplus>=2.10' 'sh') diff --git a/extra/monodevelop-debugger-gdb/PKGBUILD b/extra/monodevelop-debugger-gdb/PKGBUILD index c7dbf8764..ada06e80e 100644 --- a/extra/monodevelop-debugger-gdb/PKGBUILD +++ b/extra/monodevelop-debugger-gdb/PKGBUILD @@ -4,7 +4,7 @@ pkgname=monodevelop-debugger-gdb pkgver=2.8.8.4 pkgrel=1 pkgdesc="Mono Debugger support" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://monodevelop.com" license=('GPL') depends=('monodevelop>=2.8.8.4' 'gdb') diff --git a/extra/monodevelop/PKGBUILD b/extra/monodevelop/PKGBUILD index 01e347d01..5ee06b122 100644 --- a/extra/monodevelop/PKGBUILD +++ b/extra/monodevelop/PKGBUILD @@ -6,7 +6,7 @@ pkgname=monodevelop pkgver=2.8.8.4 pkgrel=1 pkgdesc="An IDE primarily designed for C# and other .NET languages" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.monodevelop.com" license=('GPL') depends=('mono>=2.10.5' 'mono-addins>=0.6.2' 'gnome-sharp') diff --git a/extra/mutter/PKGBUILD b/extra/mutter/PKGBUILD index cccd57e60..437ada2f5 100644 --- a/extra/mutter/PKGBUILD +++ b/extra/mutter/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mutter pkgver=3.4.1 pkgrel=2 pkgdesc="A window manager for GNOME" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('GPL') depends=('clutter' 'dconf' 'gobject-introspection' 'gsettings-desktop-schemas' 'libcanberra' 'startup-notification' 'zenity') makedepends=('intltool' 'gnome-doc-utils') diff --git a/extra/nawk/PKGBUILD b/extra/nawk/PKGBUILD index bdb78754e..d2c2125af 100644 --- a/extra/nawk/PKGBUILD +++ b/extra/nawk/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=3 pkgdesc="The one, true implementation of AWK" url="http://cm.bell-labs.com/who/bwk/" license=('MIT') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') options=('!makeflags') depends=('glibc') source=("http://www.cs.princeton.edu/~bwk/btl.mirror/awk.tar.gz" diff --git a/extra/nx/PKGBUILD b/extra/nx/PKGBUILD index aed71e055..5807ad4a0 100644 --- a/extra/nx/PKGBUILD +++ b/extra/nx/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=nx pkgname=('libxcomp' 'nxproxy' 'nx-x11' 'nx-xcompext' 'nxagent' 'nx-headers') pkgver=3.5.0.13 pkgrel=1 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://wiki.x2go.org/" license=('GPL') options=('!makeflags') diff --git a/extra/oxygen-gtk2/PKGBUILD b/extra/oxygen-gtk2/PKGBUILD index 505186369..35431731a 100644 --- a/extra/oxygen-gtk2/PKGBUILD +++ b/extra/oxygen-gtk2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=oxygen-gtk2 pkgver=1.2.4 pkgrel=1 pkgdesc="Port of the default KDE widget theme (Oxygen) to GTK2" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/' license=('LGPL') depends=('gtk2' 'dbus-glib') diff --git a/extra/oxygen-gtk3/PKGBUILD b/extra/oxygen-gtk3/PKGBUILD index 59936e227..9eb7fbe9b 100644 --- a/extra/oxygen-gtk3/PKGBUILD +++ b/extra/oxygen-gtk3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=oxygen-gtk3 pkgver=1.0.4 pkgrel=1 pkgdesc="Port of the default KDE widget theme (Oxygen) to GTK3" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/' license=('LGPL') depends=('gtk3' 'dbus-glib') diff --git a/extra/perl-async-interrupt/PKGBUILD b/extra/perl-async-interrupt/PKGBUILD index 2dacc54e3..904bdad48 100644 --- a/extra/perl-async-interrupt/PKGBUILD +++ b/extra/perl-async-interrupt/PKGBUILD @@ -6,7 +6,7 @@ _ver=1.1 pkgver=1.10 pkgrel=2 pkgdesc='allow C/XS libraries to interrupt perl asynchronously' -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=(PerlArtistic GPL) options=(!emptydirs) depends=(perl-common-sense) diff --git a/extra/perl-crypt-openssl-bignum/PKGBUILD b/extra/perl-crypt-openssl-bignum/PKGBUILD index 845e348c4..e5f881bcc 100644 --- a/extra/perl-crypt-openssl-bignum/PKGBUILD +++ b/extra/perl-crypt-openssl-bignum/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-crypt-openssl-bignum pkgver=0.04 pkgrel=7 pkgdesc="OpenSSL's multiprecision integer arithmetic " -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://search.cpan.org/dist/Crypt-OpenSSL-Bignum" depends=('perl' 'openssl') license=('GPL') diff --git a/extra/perl-crypt-openssl-random/PKGBUILD b/extra/perl-crypt-openssl-random/PKGBUILD index 54091888d..24ebde127 100644 --- a/extra/perl-crypt-openssl-random/PKGBUILD +++ b/extra/perl-crypt-openssl-random/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-crypt-openssl-random pkgver=0.04 pkgrel=7 pkgdesc="Interface to OpenSSL PRNG methods" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://search.cpan.org/dist/Crypt-OpenSSL-Random" depends=('perl' 'openssl') license=('GPL') diff --git a/extra/perl-crypt-openssl-rsa/PKGBUILD b/extra/perl-crypt-openssl-rsa/PKGBUILD index e8ebbf7c6..3a44bf936 100644 --- a/extra/perl-crypt-openssl-rsa/PKGBUILD +++ b/extra/perl-crypt-openssl-rsa/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-crypt-openssl-rsa pkgver=0.28 pkgrel=3 pkgdesc="Interface to OpenSSL RSA methods" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://search.cpan.org/dist/Crypt-OpenSSL-RSA" depends=('perl-crypt-openssl-random' 'perl-crypt-openssl-bignum') license=('GPL') diff --git a/extra/perl-guard/PKGBUILD b/extra/perl-guard/PKGBUILD index 7de965e99..d1d804f0a 100644 --- a/extra/perl-guard/PKGBUILD +++ b/extra/perl-guard/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-guard pkgver=1.022 pkgrel=2 pkgdesc="safe cleanup blocks" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=(custom:unknown) options=(!emptydirs) depends=('perl') diff --git a/extra/perl-list-moreutils/PKGBUILD b/extra/perl-list-moreutils/PKGBUILD index ddf04ead1..80d83dfc4 100644 --- a/extra/perl-list-moreutils/PKGBUILD +++ b/extra/perl-list-moreutils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-list-moreutils pkgver=0.33 pkgrel=3 pkgdesc="Provide the stuff missing in List::Util" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=(PerlArtistic GPL) options=(!emptydirs) depends=('perl>=5.5.30') diff --git a/extra/php-xcache/PKGBUILD b/extra/php-xcache/PKGBUILD index 0d30a4d93..12c602b92 100644 --- a/extra/php-xcache/PKGBUILD +++ b/extra/php-xcache/PKGBUILD @@ -4,7 +4,7 @@ pkgname=php-xcache pkgver=2.0.0 pkgrel=3 -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') pkgdesc='A PHP opcode cacher' url='http://xcache.lighttpd.net/' depends=('php') diff --git a/extra/qt3/PKGBUILD b/extra/qt3/PKGBUILD index 105f44586..cdd4ac7f1 100644 --- a/extra/qt3/PKGBUILD +++ b/extra/qt3/PKGBUILD @@ -6,7 +6,7 @@ pkgver=3.3.8b pkgrel=1 epoch=1 pkgdesc="The QT3 gui toolkit" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.trolltech.com/products/qt/index.html" license=('GPL') depends=('libpng' 'libxmu' 'libxcursor' 'libxinerama' 'mesa' 'libxft' diff --git a/extra/spandsp/PKGBUILD b/extra/spandsp/PKGBUILD index 4efe28954..3f5f5f94e 100644 --- a/extra/spandsp/PKGBUILD +++ b/extra/spandsp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=spandsp pkgver=0.0.6pre20 pkgrel=1 pkgdesc="A DSP library for telephony" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('GPL') url="http://www.soft-switch.org/" depends=('libtiff') diff --git a/extra/sushi/PKGBUILD b/extra/sushi/PKGBUILD index 061107d0a..c0a7e7b23 100644 --- a/extra/sushi/PKGBUILD +++ b/extra/sushi/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sushi pkgver=0.4.1 pkgrel=2 pkgdesc="A quick previewer for Nautilus" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://www.gnome.org" license=('GPL2') groups=(gnome-extra) diff --git a/extra/taglib-sharp/PKGBUILD b/extra/taglib-sharp/PKGBUILD index 16659fe15..cead242c6 100644 --- a/extra/taglib-sharp/PKGBUILD +++ b/extra/taglib-sharp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=taglib-sharp pkgver=2.0.4.0 pkgrel=1 pkgdesc="It's a library for reading and writing metadata in media files, including video, audio, and photo formats for Mono" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="https://github.com/mono/taglib-sharp" license=('LGPL2') depends=('mono') diff --git a/extra/telepathy-kde-common-internals/PKGBUILD b/extra/telepathy-kde-common-internals/PKGBUILD index 33422c39e..3d86f181d 100644 --- a/extra/telepathy-kde-common-internals/PKGBUILD +++ b/extra/telepathy-kde-common-internals/PKGBUILD @@ -6,7 +6,7 @@ _pkgname=ktp-common-internals pkgver=0.3.1 pkgrel=2 pkgdesc="Common components for KDE-Telepathy" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://community.kde.org/Real-Time_Communication_and_Collaboration" license=('GPL') depends=('kdelibs' 'telepathy-qt' 'telepathy-mission-control') diff --git a/extra/telepathy-kde-contact-applet/PKGBUILD b/extra/telepathy-kde-contact-applet/PKGBUILD index 2f920a2ec..0e52c568e 100644 --- a/extra/telepathy-kde-contact-applet/PKGBUILD +++ b/extra/telepathy-kde-contact-applet/PKGBUILD @@ -6,7 +6,7 @@ _pkgname=ktp-contact-applet pkgver=0.3.1 pkgrel=1 pkgdesc="The KDE-Telepathy contact plasmoid" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://community.kde.org/Real-Time_Communication_and_Collaboration" license=('GPL') depends=('telepathy-kde-common-internals') diff --git a/extra/telepathy-kde-presence-applet/PKGBUILD b/extra/telepathy-kde-presence-applet/PKGBUILD index c52e161d2..02b922435 100644 --- a/extra/telepathy-kde-presence-applet/PKGBUILD +++ b/extra/telepathy-kde-presence-applet/PKGBUILD @@ -7,7 +7,7 @@ _pkgname=ktp-presence-applet pkgver=0.3.1 pkgrel=1 pkgdesc="Plasma applet for managing your Telepathy account presence" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://community.kde.org/Real-Time_Communication_and_Collaboration" license=('GPL') depends=('telepathy-kde-common-internals' 'telepathy-kde-contact-list') diff --git a/extra/ucommon/PKGBUILD b/extra/ucommon/PKGBUILD index 0d96e2e14..e9e78bdc0 100644 --- a/extra/ucommon/PKGBUILD +++ b/extra/ucommon/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ucommon pkgver=5.2.2 pkgrel=2 pkgdesc="A light-weight C++ library to facilitate using C++ design patterns" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.gnutelephony.org/index.php/GNU_uCommon_C++" license=('GPL3' 'LGPL3') depends=('openssl') diff --git a/extra/valgrind/PKGBUILD b/extra/valgrind/PKGBUILD index f5296f260..c5e0b99ab 100644 --- a/extra/valgrind/PKGBUILD +++ b/extra/valgrind/PKGBUILD @@ -6,7 +6,7 @@ pkgname=valgrind pkgver=3.7.0 pkgrel=2 pkgdesc="A tool to help find memory-management problems in programs" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') license=('GPL') url="http://valgrind.org/" depends=('glibc>=2.15' 'glibc<2.16' 'perl') diff --git a/extra/vdpau-video/PKGBUILD b/extra/vdpau-video/PKGBUILD index 3c2c1e2e7..e1003f451 100644 --- a/extra/vdpau-video/PKGBUILD +++ b/extra/vdpau-video/PKGBUILD @@ -4,7 +4,7 @@ pkgname=vdpau-video pkgver=0.7.3 pkgrel=3 pkgdesc="VDPAU backend for VA API" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://cgit.freedesktop.org/vaapi/vdpau-driver/" license=('GPL') depends=('libva' 'libvdpau') diff --git a/extra/webkit-sharp/PKGBUILD b/extra/webkit-sharp/PKGBUILD index 715046f31..3bb034776 100644 --- a/extra/webkit-sharp/PKGBUILD +++ b/extra/webkit-sharp/PKGBUILD @@ -7,7 +7,7 @@ pkgname=webkit-sharp pkgver=0.3 pkgrel=4 pkgdesc="Mono/.NET bindings for the WebKit rendering engine" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://www.mono-project.com/" license=('custom:MIT') depends=('gtk-sharp-2' 'libwebkit>=1.4.0') diff --git a/extra/wildmidi/PKGBUILD b/extra/wildmidi/PKGBUILD index 9e6e8fba5..51402e133 100644 --- a/extra/wildmidi/PKGBUILD +++ b/extra/wildmidi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=wildmidi pkgver=0.2.3.5 pkgrel=2 pkgdesc='Open Source MIDI Synthesizer' -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://wildmidi.sourceforge.net/' license=('LGPL3') depends=('alsa-lib') diff --git a/extra/x11-ssh-askpass/PKGBUILD b/extra/x11-ssh-askpass/PKGBUILD index 5d3d0f2f1..37b84c4d0 100644 --- a/extra/x11-ssh-askpass/PKGBUILD +++ b/extra/x11-ssh-askpass/PKGBUILD @@ -11,7 +11,7 @@ pkgrel=3 pkgdesc='Lightweight passphrase dialog for SSH' url='http://www.jmknoble.net/software/x11-ssh-askpass/' license=('custom') -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') depends=('libxt') makedepends=('imake') #source=("${url}${pkgname}-${pkgver}.tar.gz" # httpd only sends half the bits diff --git a/extra/xbase/PKGBUILD b/extra/xbase/PKGBUILD index c028b85ad..0fa63a7fa 100644 --- a/extra/xbase/PKGBUILD +++ b/extra/xbase/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xbase pkgver=2.0.0 pkgrel=2 pkgdesc="An XBase compatible C++ class library" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url='http://linux.techass.com/projects/xdb/' license=('LGPL') depends=('bash' 'gcc-libs') diff --git a/extra/xf86-input-keyboard/PKGBUILD b/extra/xf86-input-keyboard/PKGBUILD index 7328db022..a84212019 100644 --- a/extra/xf86-input-keyboard/PKGBUILD +++ b/extra/xf86-input-keyboard/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-input-keyboard pkgver=1.6.1 pkgrel=2 pkgdesc="X.Org keyboard input driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('custom') url="http://xorg.freedesktop.org/" depends=('glibc') diff --git a/extra/xf86-input-mouse/PKGBUILD b/extra/xf86-input-mouse/PKGBUILD index a68b00879..4fd8b64d8 100644 --- a/extra/xf86-input-mouse/PKGBUILD +++ b/extra/xf86-input-mouse/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-input-mouse pkgver=1.7.2 pkgrel=1 pkgdesc="X.org mouse input driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('custom') url="http://xorg.freedesktop.org/" depends=('glibc') diff --git a/extra/xf86-video-apm/PKGBUILD b/extra/xf86-video-apm/PKGBUILD index f3138beea..2914e15fc 100644 --- a/extra/xf86-video-apm/PKGBUILD +++ b/extra/xf86-video-apm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-apm pkgver=1.2.4 pkgrel=1 pkgdesc="X.org Alliance ProMotion video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-ark/PKGBUILD b/extra/xf86-video-ark/PKGBUILD index 0514d90c5..ac5b44dff 100644 --- a/extra/xf86-video-ark/PKGBUILD +++ b/extra/xf86-video-ark/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-ark pkgver=0.7.4 pkgrel=1 pkgdesc="X.org ark video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-ast/PKGBUILD b/extra/xf86-video-ast/PKGBUILD index f1423cfd3..76025dea9 100644 --- a/extra/xf86-video-ast/PKGBUILD +++ b/extra/xf86-video-ast/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-ast pkgver=0.93.10 pkgrel=1 pkgdesc="X.org ASPEED AST Graphics video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-ati/PKGBUILD b/extra/xf86-video-ati/PKGBUILD index 8dfb7b23c..5735fc350 100644 --- a/extra/xf86-video-ati/PKGBUILD +++ b/extra/xf86-video-ati/PKGBUILD @@ -7,7 +7,7 @@ pkgver=6.14.99 _gitdate=20120517 pkgrel=1.${_gitdate} # UMS/EXA: Add reminder for potential solid picture performance issue. pkgdesc="X.org ati video driver" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://xorg.freedesktop.org/" license=('custom') depends=('libpciaccess' 'libdrm>=2.4.33' 'udev>=183' 'pixman' 'ati-dri') diff --git a/extra/xf86-video-chips/PKGBUILD b/extra/xf86-video-chips/PKGBUILD index 46771b09d..aea1d769a 100644 --- a/extra/xf86-video-chips/PKGBUILD +++ b/extra/xf86-video-chips/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xf86-video-chips pkgver=1.2.4 pkgrel=4 pkgdesc="X.org Chips and Technologies video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=(glibc) diff --git a/extra/xf86-video-cirrus/PKGBUILD b/extra/xf86-video-cirrus/PKGBUILD index ec1591aee..036da6db8 100644 --- a/extra/xf86-video-cirrus/PKGBUILD +++ b/extra/xf86-video-cirrus/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-cirrus pkgver=1.4.0 pkgrel=1 pkgdesc="X.org Cirrus Logic video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-glint/PKGBUILD b/extra/xf86-video-glint/PKGBUILD index 746731c3b..1bb95b86e 100644 --- a/extra/xf86-video-glint/PKGBUILD +++ b/extra/xf86-video-glint/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-glint pkgver=1.2.7 pkgrel=1 pkgdesc="X.org GLINT/Permedia video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-i128/PKGBUILD b/extra/xf86-video-i128/PKGBUILD index 5c2316208..cd82d6686 100644 --- a/extra/xf86-video-i128/PKGBUILD +++ b/extra/xf86-video-i128/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-i128 pkgver=1.3.5 pkgrel=1 pkgdesc="X.org Number 9 I128 video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-i740/PKGBUILD b/extra/xf86-video-i740/PKGBUILD index 9f06bb3d7..6e796ce50 100644 --- a/extra/xf86-video-i740/PKGBUILD +++ b/extra/xf86-video-i740/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-i740 pkgver=1.3.3 pkgrel=1 pkgdesc="X.org Intel i740 video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-intel/PKGBUILD b/extra/xf86-video-intel/PKGBUILD index 889913764..eaa97b02d 100644 --- a/extra/xf86-video-intel/PKGBUILD +++ b/extra/xf86-video-intel/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-intel pkgver=2.19.0 pkgrel=3 pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('intel-dri' 'libxvmc' 'libpciaccess' 'libdrm' 'xcb-util>=0.3.9' 'libxfixes' 'udev>=183') diff --git a/extra/xf86-video-mach64/PKGBUILD b/extra/xf86-video-mach64/PKGBUILD index 820d57b08..a61b4c3b2 100644 --- a/extra/xf86-video-mach64/PKGBUILD +++ b/extra/xf86-video-mach64/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-mach64 pkgver=6.9.1 pkgrel=1 pkgdesc="X.org mach64 video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-mga/PKGBUILD b/extra/xf86-video-mga/PKGBUILD index e021be672..24b7be2d8 100644 --- a/extra/xf86-video-mga/PKGBUILD +++ b/extra/xf86-video-mga/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-mga pkgver=1.5.0 pkgrel=1 pkgdesc="X.org mga video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-neomagic/PKGBUILD b/extra/xf86-video-neomagic/PKGBUILD index e792ee894..b04b376ca 100644 --- a/extra/xf86-video-neomagic/PKGBUILD +++ b/extra/xf86-video-neomagic/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-neomagic pkgver=1.2.6 pkgrel=1 pkgdesc="X.org neomagic video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-nouveau/PKGBUILD b/extra/xf86-video-nouveau/PKGBUILD index da7ad31a2..a9fc10cbd 100644 --- a/extra/xf86-video-nouveau/PKGBUILD +++ b/extra/xf86-video-nouveau/PKGBUILD @@ -7,7 +7,7 @@ _gitdate=20120512 pkgver=0.0.16_git${_gitdate} # see configure.ac pkgrel=2 pkgdesc="Open Source 2D acceleration driver for nVidia cards (experimental)" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://nouveau.freedesktop.org/wiki/" license=('GPL') #and MIT, not yet a license file, see http://nouveau.freedesktop.org/wiki/FAQ#head-09f75d03eb30011c754038a3893119a70745de4e depends=('libdrm-nouveau' 'udev') diff --git a/extra/xf86-video-nv/PKGBUILD b/extra/xf86-video-nv/PKGBUILD index 37bd910c2..574579714 100644 --- a/extra/xf86-video-nv/PKGBUILD +++ b/extra/xf86-video-nv/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-nv pkgver=2.1.18 pkgrel=6 pkgdesc="X.org nv video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('custom') url="http://xorg.freedesktop.org/" depends=('glibc') diff --git a/extra/xf86-video-openchrome/PKGBUILD b/extra/xf86-video-openchrome/PKGBUILD index 5c4aab2d6..7a494f861 100644 --- a/extra/xf86-video-openchrome/PKGBUILD +++ b/extra/xf86-video-openchrome/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xf86-video-openchrome pkgver=0.2.906 pkgrel=1 pkgdesc="X.Org Openchrome drivers" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('custom') url="http://www.openchrome.org" depends=('libdrm' 'libxvmc') diff --git a/extra/xf86-video-r128/PKGBUILD b/extra/xf86-video-r128/PKGBUILD index 3f6215dfc..a66f54c29 100644 --- a/extra/xf86-video-r128/PKGBUILD +++ b/extra/xf86-video-r128/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-r128 pkgver=6.8.2 pkgrel=1 pkgdesc="X.org ati Rage128 video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-rendition/PKGBUILD b/extra/xf86-video-rendition/PKGBUILD index 3bb63339a..4043c0d71 100644 --- a/extra/xf86-video-rendition/PKGBUILD +++ b/extra/xf86-video-rendition/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-rendition pkgver=4.2.4 pkgrel=6 pkgdesc="X.org Rendition video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-s3/PKGBUILD b/extra/xf86-video-s3/PKGBUILD index 8db9bfcf5..8c9a6b8a7 100644 --- a/extra/xf86-video-s3/PKGBUILD +++ b/extra/xf86-video-s3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-s3 pkgver=0.6.4 pkgrel=1 pkgdesc="X.org S3 video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-s3virge/PKGBUILD b/extra/xf86-video-s3virge/PKGBUILD index 970d277e5..31239166c 100644 --- a/extra/xf86-video-s3virge/PKGBUILD +++ b/extra/xf86-video-s3virge/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xf86-video-s3virge pkgver=1.10.5 pkgrel=1 pkgdesc="X.org S3 Virge video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-savage/PKGBUILD b/extra/xf86-video-savage/PKGBUILD index 7206e5b43..45e1cf83b 100644 --- a/extra/xf86-video-savage/PKGBUILD +++ b/extra/xf86-video-savage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-savage pkgver=2.3.4 pkgrel=1 pkgdesc="X.org savage video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-sisimedia/PKGBUILD b/extra/xf86-video-sisimedia/PKGBUILD index d5860e8d2..02febf216 100644 --- a/extra/xf86-video-sisimedia/PKGBUILD +++ b/extra/xf86-video-sisimedia/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-sisimedia pkgver=0.9.1 pkgrel=3 pkgdesc="X.org SiS 671 video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://www.linuxconsulting.ro/xorg-drivers/" license=('custom') depends=('libdrm') diff --git a/extra/xf86-video-sisusb/PKGBUILD b/extra/xf86-video-sisusb/PKGBUILD index 12a9d906d..57339c20f 100644 --- a/extra/xf86-video-sisusb/PKGBUILD +++ b/extra/xf86-video-sisusb/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-sisusb pkgver=0.9.4 pkgrel=6 pkgdesc="X.org SiS USB video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-tdfx/PKGBUILD b/extra/xf86-video-tdfx/PKGBUILD index 91052d9d1..0751690e0 100644 --- a/extra/xf86-video-tdfx/PKGBUILD +++ b/extra/xf86-video-tdfx/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-tdfx pkgver=1.4.4 pkgrel=1 pkgdesc="X.org tdfx video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-trident/PKGBUILD b/extra/xf86-video-trident/PKGBUILD index c70f1a18a..0092f0b85 100644 --- a/extra/xf86-video-trident/PKGBUILD +++ b/extra/xf86-video-trident/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-trident pkgver=1.3.5 pkgrel=1 pkgdesc="X.org Trident video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-tseng/PKGBUILD b/extra/xf86-video-tseng/PKGBUILD index 3ddf03a0e..cab1cfcda 100644 --- a/extra/xf86-video-tseng/PKGBUILD +++ b/extra/xf86-video-tseng/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-tseng pkgver=1.2.4 pkgrel=6 pkgdesc="X.org tseng video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-unichrome/PKGBUILD b/extra/xf86-video-unichrome/PKGBUILD index 1d2e75f67..1647f8cf1 100644 --- a/extra/xf86-video-unichrome/PKGBUILD +++ b/extra/xf86-video-unichrome/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.2.7 pkgrel=7 _gitversion=b917bee87db8a65b8e8da0ca12c24a176c9e9fb2 pkgdesc="Unichrome video drivers for X.Org" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://unichrome.sf.net/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-v4l/PKGBUILD b/extra/xf86-video-v4l/PKGBUILD index 37eaebd7f..16a11493d 100644 --- a/extra/xf86-video-v4l/PKGBUILD +++ b/extra/xf86-video-v4l/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-v4l pkgver=0.2.0 pkgrel=10 pkgdesc="X.org v4l video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-video-vesa/PKGBUILD b/extra/xf86-video-vesa/PKGBUILD index 68c54462a..b3d59bf09 100644 --- a/extra/xf86-video-vesa/PKGBUILD +++ b/extra/xf86-video-vesa/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-vesa pkgver=2.3.1 pkgrel=1 pkgdesc="X.org vesa video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) license=('custom') url="http://xorg.freedesktop.org/" depends=('glibc') diff --git a/extra/xf86-video-voodoo/PKGBUILD b/extra/xf86-video-voodoo/PKGBUILD index ff93420f9..61689bd1c 100644 --- a/extra/xf86-video-voodoo/PKGBUILD +++ b/extra/xf86-video-voodoo/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-voodoo pkgver=1.2.4 pkgrel=6 pkgdesc="X.org 3dfx Voodoo1/Voodoo2 2D video driver" -arch=(i686 x86_64 mips64el) +arch=(i686 x86_64) url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/zeitgeist/PKGBUILD b/extra/zeitgeist/PKGBUILD index f9647b3a0..bf4fee2e6 100644 --- a/extra/zeitgeist/PKGBUILD +++ b/extra/zeitgeist/PKGBUILD @@ -7,7 +7,7 @@ pkgname=zeitgeist pkgver=0.9.0 pkgrel=1 pkgdesc="A service which logs the users's activities and events and makes relevant information available to other applications" -arch=('i686' 'x86_64' 'mips64el') +arch=('i686' 'x86_64') url="http://zeitgeist-project.com/" license=('GPL') depends=('dbus-python' 'python2-gobject2' 'pyxdg' 'xapian-core') -- cgit v1.2.3-54-g00ecf