diff options
3482 files changed, 18187 insertions, 25583 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..0a050de19 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +*~ +#*# +.#* +src/ +pkg/ +*.pkg.tar.* +*.src.tar.* +*.log* +*lastsync +kde-unstable/ +gnome-unstable/ diff --git a/community-staging/cherokee/PKGBUILD b/community-staging/cherokee/PKGBUILD deleted file mode 100644 index f0535f41b..000000000 --- a/community-staging/cherokee/PKGBUILD +++ /dev/null @@ -1,90 +0,0 @@ -# $Id: PKGBUILD 57634 2011-10-31 17:31:41Z foutrelis $ -# Maintainer: Evangelos Foutras <evangelos@foutrelis.com> -# Contributor: Link Dupont <link@subpop.net> - -pkgname=cherokee -pkgver=1.2.101 -pkgrel=2 -pkgdesc="A very fast, flexible and easy to configure Web Server" -arch=('i686' 'x86_64') -url="http://www.cherokee-project.com/" -license=('GPL2') -depends=('openssl' 'pcre') -makedepends=('python2' 'gettext' 'libldap' 'pam' 'libmysqlclient' - 'ffmpeg' 'geoip') -optdepends=('python2: cherokee-admin (administrative web interface)' - 'libldap: ldap validator' - 'pam: pam validator' - 'libmysqlclient: mysql validator' - 'ffmpeg: Audio/Video streaming handler' - 'geoip: GeoIP rule module' - 'rrdtool: RRDtool based information collector') -backup=('etc/cherokee/cherokee.conf' - 'etc/logrotate.d/cherokee' - 'etc/pam.d/cherokee') -options=('!libtool') -source=(http://www.cherokee-project.com/download/1.2/$pkgver/cherokee-$pkgver.tar.gz - cherokee.rc - cherokee.logrotate - fix-ctk-path-handler-match.patch) -sha256sums=('ca465ab3772479fc843b38ffc45113bf24d8bfae9185cdd5176b099d5a17feb8' - '4c06cebfab8b68edd4967c020bfb41b077cfff10d76596d1ed192d0b6cedbd86' - '20e26d633f8c1cd90eb21f41dd163b73a83846e405b1ce995e072c4efefc522e' - '2bd05e0181024c9bd02d828e8329d4d96a779e4870b1fc4f18aa8667d8c6a630') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - # Fix path matching bug in CTK apps (e.g. market) - patch -Np1 -i "$srcdir/fix-ctk-path-handler-match.patch" - - # Use subdirectory for logs - sed -i -r 's|(%localstatedir%/log)|\1/cherokee|' cherokee.conf.sample.pre - - # Use Python 2 in cherokee-admin - sed -i 's/"python"/"python2"/' cherokee/main_admin.c - - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --disable-static \ - --with-wwwroot=/srv/http \ - --with-wwwuser=http \ - --with-wwwgroup=http \ - --with-python=python2 \ - --enable-os-string="Arch Linux" - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - - make -j1 DESTDIR="$pkgdir" install - - # PAM configuration file for cherokee - install -D -m644 pam.d_cherokee "$pkgdir/etc/pam.d/$pkgname" - - # Fix ownership of /var/lib/cherokee/graphs - chown -R http:http "$pkgdir/var/lib/$pkgname/graphs" - - # Use Python 2 - sed -i 's/env python$/&2/' \ - "$pkgdir/usr/share/cherokee/admin/"{server,upgrade_config}.py \ - "$pkgdir/usr/bin/"{CTK-run,cherokee-{admin-launcher,tweak}} - sed -i -r "s/['\"]python/&2/g" \ - "$pkgdir/usr/share/cherokee/admin/wizards/django.py" - - # Compile Python scripts - python2 -m compileall "$pkgdir" - python2 -O -m compileall "$pkgdir" - - install -d -o http -g http "$pkgdir/var/log/$pkgname" - install -D "$srcdir/$pkgname.rc" "$pkgdir/etc/rc.d/$pkgname" - install -Dm644 "$srcdir/$pkgname.logrotate" "$pkgdir/etc/logrotate.d/$pkgname" - - # Cleanup - rm -rf "$pkgdir/srv" -} - -# vim:set ts=2 sw=2 et: diff --git a/community-staging/cherokee/cherokee.logrotate b/community-staging/cherokee/cherokee.logrotate deleted file mode 100644 index 19207fd02..000000000 --- a/community-staging/cherokee/cherokee.logrotate +++ /dev/null @@ -1,9 +0,0 @@ -/var/log/cherokee/*.error /var/log/cherokee/*.access { - daily - rotate 14 - compress - sharedscripts - postrotate - /bin/kill -HUP `cat /var/run/cherokee.pid 2>/dev/null` 2>/dev/null || true - endscript -} diff --git a/community-staging/cherokee/cherokee.rc b/community-staging/cherokee/cherokee.rc deleted file mode 100755 index 2d413dc13..000000000 --- a/community-staging/cherokee/cherokee.rc +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/bash - -daemon_name=cherokee - -. /etc/rc.conf -. /etc/rc.d/functions - -case "$1" in - start) - stat_busy "Starting $daemon_name daemon" - if [ ! -f /var/run/$daemon_name.pid ] && $daemon_name -d &>/dev/null; then - add_daemon $daemon_name - stat_done - else - stat_fail - exit 1 - fi - ;; - - stop) - stat_busy "Stopping $daemon_name daemon" - [ -f /var/run/$daemon_name.pid ] && read PID </var/run/$daemon_name.pid - if kill $PID &>/dev/null; then - rm_daemon $daemon_name - stat_done - else - stat_fail - exit 1 - fi - ;; - - reload) - stat_busy "Reloading $daemon_name daemon" - [ -f /var/run/$daemon_name.pid ] && read PID </var/run/$daemon_name.pid - if kill -HUP $PID &>/dev/null; then - add_daemon $daemon_name - stat_done - else - stat_fail - exit 1 - fi - ;; - - restart) - stat_busy "Restarting $daemon_name daemon" - [ -f /var/run/$daemon_name.pid ] && read PID </var/run/$daemon_name.pid - if kill -USR1 $PID &>/dev/null; then - add_daemon $daemon_name - stat_done - else - stat_fail - exit 1 - fi - ;; - - status) - stat_busy "Checking $daemon_name status"; - ck_status $daemon_name - ;; - - *) - echo "usage: $0 {start|stop|reload|restart|status}" -esac - -exit 0 diff --git a/community-staging/cherokee/fix-ctk-path-handler-match.patch b/community-staging/cherokee/fix-ctk-path-handler-match.patch deleted file mode 100644 index abd20c5ef..000000000 --- a/community-staging/cherokee/fix-ctk-path-handler-match.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff -upr cherokee-1.2.99.orig/admin/CTK/CTK/Server.py cherokee-1.2.99/admin/CTK/CTK/Server.py ---- cherokee-1.2.99.orig/admin/CTK/CTK/Server.py 2011-06-06 14:17:35.000000000 +0300 -+++ cherokee-1.2.99/admin/CTK/CTK/Server.py 2011-09-16 03:31:06.000000000 +0300 -@@ -121,8 +121,11 @@ class ServerHandler (pyscgi.SCGIHandler) - my_thread.scgi_conn = self - my_thread.request_url = url - -+ # Drop the query string before matching against the handlers -+ path = url.split('?', 1)[0] -+ - for published in server._web_paths: -- if re.match (published._regex, url): -+ if re.match (published._regex, path): - # POST - if published._method == 'POST': - post = self._process_post() diff --git a/community-staging/gnash/PKGBUILD b/community-staging/gnash/PKGBUILD deleted file mode 100644 index 68f826412..000000000 --- a/community-staging/gnash/PKGBUILD +++ /dev/null @@ -1,79 +0,0 @@ -# $Id: PKGBUILD 82896 2010-06-18 18:30:20Z ibiru $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> - -pkgbase=gnash -pkgname=(gnash-common gnash-gtk) -pkgver=0.8.9 -pkgrel=5 -arch=(i686 x86_64) -url="http://www.gnu.org/software/gnash/" -license=(GPL3) -makedepends=(curl giflib libldap sdl agg libjpeg libpng libtool - speex fontconfig libva ffmpeg libxinerama - gstreamer0.10-base gstreamer0.10-ffmpeg - gtk2 libldap xulrunner hicolor-icon-theme desktop-file-utils - pkgconfig boost) -options=(!libtool !emptydirs) -source=(http://ftp.gnu.org/gnu/gnash/${pkgver}/gnash-${pkgver}.tar.bz2 - gentoo-ffmpeg-0.8.patch) -md5sums=('5b2be6b04a1bcc5fb404cc377034499e' - '98dec9a5c1b1084245a3f46b4022a6e2') - -build() { - cd "$srcdir/gnash-$pkgver" - - # Consolidated gentoo patches for ffmpeg compatibility - # as of 2011-10-31 - patch -Np1 -i "$srcdir/gentoo-ffmpeg-0.8.patch" - ./autogen.sh - - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --with-plugins-install=system \ - --with-npapi-plugindir=/usr/lib/mozilla/plugins \ - --enable-gui=sdl,gtk \ - --enable-renderer=agg \ - --enable-media=gst,ffmpeg \ - --enable-hwaccel=vaapi - - make -} - -package_gnash-common() { - pkgdesc="A GNU Flash movie player" - depends=(curl giflib libldap sdl agg libjpeg libpng libtool - speex fontconfig libva ffmpeg libxinerama - gstreamer0.10-base gstreamer0.10-ffmpeg - boost-libs) - backup=(etc/gnashrc) - - cd "$srcdir/gnash-$pkgver" - - make DESTDIR="$pkgdir" install - - # Split gnash-gtk - mkdir -p "$srcdir"/gtk/{bin,man1,share} - mv "$pkgdir"/usr/bin/{gtk-gnash,gnash-gtk-launcher} "$srcdir/gtk/bin/" - mv "$pkgdir"/usr/share/man/man1/{gtk-gnash,gnash-gtk-launcher}.1 "$srcdir/gtk/man1/" - mv "$pkgdir"/usr/share/{applications,icons} "$srcdir/gtk/share/" - mv "$pkgdir/etc/gnashpluginrc" "$srcdir/gtk/" -} - -package_gnash-gtk() { - pkgdesc="A GNU Flash movie player" - depends=("gnash-common=$pkgver" - gtk2 libldap hicolor-icon-theme desktop-file-utils) - install=gnash-gtk.install - backup=(etc/gnashpluginrc) - - cd "$srcdir/gnash-$pkgver" - - make DESTDIR="$pkgdir" install-plugin - - install -d "$pkgdir"/{etc,usr/{bin,share/man/man1}} - mv "$srcdir"/gtk/bin/* "$pkgdir/usr/bin/" - mv "$srcdir"/gtk/man1/* "$pkgdir/usr/share/man/man1/" - mv "$srcdir"/gtk/share/* "$pkgdir/usr/share/" - mv "$srcdir/gtk/gnashpluginrc" "$pkgdir/etc/" -} diff --git a/community-staging/gnash/gentoo-ffmpeg-0.8.patch b/community-staging/gnash/gentoo-ffmpeg-0.8.patch deleted file mode 100644 index d74bcc8e0..000000000 --- a/community-staging/gnash/gentoo-ffmpeg-0.8.patch +++ /dev/null @@ -1,204 +0,0 @@ -diff -u -Nr gnash-0.8.9/libmedia/ffmpeg/AudioDecoderFfmpeg.cpp gnash-0.8.9-ff/libmedia/ffmpeg/AudioDecoderFfmpeg.cpp ---- gnash-0.8.9/libmedia/ffmpeg/AudioDecoderFfmpeg.cpp 2011-02-26 19:11:08.000000000 +0100 -+++ gnash-0.8.9-ff/libmedia/ffmpeg/AudioDecoderFfmpeg.cpp 2011-10-31 17:25:56.057379760 +0100 -@@ -29,7 +29,7 @@ - - //#define GNASH_DEBUG_AUDIO_DECODING - --#define AVCODEC_DECODE_AUDIO avcodec_decode_audio2 -+#define AVCODEC_DECODE_AUDIO avcodec_decode_audio3 - - namespace gnash { - namespace media { -@@ -549,8 +549,12 @@ - #endif - - // older ffmpeg versions didn't accept a const input.. -+ AVPacket pkt; -+ av_init_packet(&pkt); -+ pkt.data = (uint8_t*) input; -+ pkt.size = inputSize; - int tmp = AVCODEC_DECODE_AUDIO(_audioCodecCtx, outPtr, &outSize, -- input, inputSize); -+ &pkt); - - #ifdef GNASH_DEBUG_AUDIO_DECODING - log_debug(" avcodec_decode_audio[2](ctx, bufptr, %d, input, %d) " -@@ -658,13 +662,13 @@ - { - if ( _needsParsing ) - { -- return av_parser_parse(_parser, _audioCodecCtx, -+ return av_parser_parse2(_parser, _audioCodecCtx, - // as of 2008-10-28 SVN, ffmpeg doesn't - // accept a pointer to pointer to const.. - const_cast<boost::uint8_t**>(outFrame), - outFrameSize, - input, inputSize, -- 0, 0); // pts & dts -+ 0, 0, AV_NOPTS_VALUE); // pts & dts - } - else - { -diff -u -Nr gnash-0.8.9/libmedia/ffmpeg/AudioResamplerFfmpeg.cpp gnash-0.8.9-ff/libmedia/ffmpeg/AudioResamplerFfmpeg.cpp ---- gnash-0.8.9/libmedia/ffmpeg/AudioResamplerFfmpeg.cpp 2011-02-26 19:11:08.000000000 +0100 -+++ gnash-0.8.9-ff/libmedia/ffmpeg/AudioResamplerFfmpeg.cpp 2011-10-31 17:25:51.210668136 +0100 -@@ -46,8 +46,10 @@ - { - if ( (ctx->sample_rate != 44100) || (ctx->channels != 2) ) { - if ( ! _context ) { -- _context = audio_resample_init( -- 2, ctx->channels, 44100, ctx->sample_rate -+ _context = av_audio_resample_init( -+ 2, ctx->channels, 44100, ctx->sample_rate, -+ AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S16, -+ 16, 10, 0, 0.8 - ); - } - -diff -u -Nr gnash-0.8.9/libmedia/ffmpeg/MediaParserFfmpeg.cpp gnash-0.8.9-ff/libmedia/ffmpeg/MediaParserFfmpeg.cpp ---- gnash-0.8.9/libmedia/ffmpeg/MediaParserFfmpeg.cpp 2011-03-13 17:47:36.000000000 +0100 -+++ gnash-0.8.9-ff/libmedia/ffmpeg/MediaParserFfmpeg.cpp 2011-10-31 17:25:57.720728522 +0100 -@@ -387,7 +387,7 @@ - - log_debug("Parsing FFMPEG media file: format:%s; nstreams:%d", - _inputFmt->name, _formatCtx->nb_streams); -- -+ /* - if ( _formatCtx->title[0] ) - log_debug(_(" Title:'%s'"), _formatCtx->title); - if ( _formatCtx->author[0] ) -@@ -398,7 +398,7 @@ - log_debug(_(" Comment:'%s'"), _formatCtx->comment); - if ( _formatCtx->album[0] ) - log_debug(_(" Album:'%s'"), _formatCtx->album); -- -+ */ - // Find first audio and video stream - for (unsigned int i = 0; i < static_cast<unsigned int>(_formatCtx->nb_streams); i++) - { -@@ -415,7 +415,7 @@ - } - - switch (enc->codec_type) { -- case CODEC_TYPE_AUDIO: -+ case AVMEDIA_TYPE_AUDIO: - if (_audioStreamIndex < 0) { - _audioStreamIndex = i; - _audioStream = _formatCtx->streams[i]; -@@ -425,7 +425,7 @@ - } - break; - -- case CODEC_TYPE_VIDEO: -+ case AVMEDIA_TYPE_VIDEO: - if (_videoStreamIndex < 0) { - _videoStreamIndex = i; - _videoStream = _formatCtx->streams[i]; -diff -u -Nr gnash-0.8.9/libmedia/ffmpeg/VideoDecoderFfmpeg.cpp gnash-0.8.9-ff/libmedia/ffmpeg/VideoDecoderFfmpeg.cpp ---- gnash-0.8.9/libmedia/ffmpeg/VideoDecoderFfmpeg.cpp 2011-03-13 17:47:36.000000000 +0100 -+++ gnash-0.8.9-ff/libmedia/ffmpeg/VideoDecoderFfmpeg.cpp 2011-10-31 17:25:54.590699488 +0100 -@@ -356,8 +356,12 @@ - - int bytes = 0; - // no idea why avcodec_decode_video wants a non-const input... -- avcodec_decode_video(_videoCodecCtx->getContext(), frame, &bytes, -- input, input_size); -+ AVPacket pkt; -+ av_init_packet(&pkt); -+ pkt.data = (uint8_t*) input; -+ pkt.size = input_size; -+ avcodec_decode_video2(_videoCodecCtx->getContext(), frame, &bytes, -+ &pkt); - - if (!bytes) { - log_error("Decoding of a video frame failed"); -diff -u -Nr gnash-0.8.9/macros/ffmpeg.m4 gnash-0.8.9-ff/macros/ffmpeg.m4 ---- gnash-0.8.9/macros/ffmpeg.m4 2011-02-26 19:11:08.000000000 +0100 -+++ gnash-0.8.9-ff/macros/ffmpeg.m4 2011-10-31 17:25:49.700654130 +0100 -@@ -22,6 +22,7 @@ - backupLIBS="$LIBS" - backupCFLAGS="$CFLAGS" - avcodec_h="" -+ avcodec_version_h="" - ffmpeg_top_incl="" - - dnl If the user specify an path to include headers from, we assume it's the full -@@ -46,6 +47,9 @@ - else - AC_MSG_ERROR([${with_ffmpeg_incl} directory does not contain the avcodec.h header]) - fi -+ if test -f ${with_ffmpeg_incl}/version.h; then -+ avcodec_version_h=${with_ffmpeg_incl}/version.h -+ fi - fi - ]) - -@@ -66,6 +70,9 @@ - if test -f ${ffmpeg_top_incl}/${i}/avcodec.h; then - ac_cv_path_ffmpeg_incl="-I`(cd ${ffmpeg_top_incl}; pwd)`" - avcodec_h="${ffmpeg_top_incl}/${i}/avcodec.h" -+ if test -f ${ffmpeg_top_incl}/${i}/version.h; then -+ avcodec_version_h=${ffmpeg_top_incl}/${i}/version.h -+ fi - break - fi - done -@@ -83,6 +90,9 @@ - if test -f ${ffmpeg_top_incl}/${i}/avcodec.h; then - ac_cv_path_ffmpeg_incl="-I`(cd ${ffmpeg_top_incl}/${i}; pwd)`" - avcodec_h=${ffmpeg_top_incl}/${i}/avcodec.h -+ if test -f ${ffmpeg_top_incl}/${i}/version.h; then -+ avcodec_version_h=${ffmpeg_top_incl}/${i}/version.h -+ fi - break - fi - done -@@ -182,14 +192,24 @@ - dnl a modified form of grepping may be better, making sure all old kinds of - dnl version numbering fail gracefully. - -+ versionfile="" -+ - dnl Check avcodec version number, if it was found -- if test x"${avcodec_h}" != x; then -+ if test x"${avcodec_version_h}" != x; then -+ versionfile=${avcodec_version_h} -+ else -+ if test x"${avcodec_h}" != x; then -+ versionfile=${avcodec_h} -+ fi -+ fi -+ -+ if test x"${versionfile}" != x; then - - AC_MSG_CHECKING([ffmpeg version]) - -- ffmpeg_major_version=`$EGREP "define LIBAVCODEC_VERSION_MAJOR " ${avcodec_h} | sed -e "s%[[^0-9]]%%g"` -- ffmpeg_minor_version=`$EGREP "define LIBAVCODEC_VERSION_MINOR " ${avcodec_h} | sed -e "s%[[^0-9]]%%g"` -- ffmpeg_micro_version=`$EGREP "define LIBAVCODEC_VERSION_MICRO " ${avcodec_h} | sed -e "s%[[^0-9]]%%g"` -+ ffmpeg_major_version=`$EGREP "define LIBAVCODEC_VERSION_MAJOR " ${versionfile} | sed -e "s%[[^0-9]]%%g"` -+ ffmpeg_minor_version=`$EGREP "define LIBAVCODEC_VERSION_MINOR " ${versionfile} | sed -e "s%[[^0-9]]%%g"` -+ ffmpeg_micro_version=`$EGREP "define LIBAVCODEC_VERSION_MICRO " ${versionfile} | sed -e "s%[[^0-9]]%%g"` - - if test x"${ffmpeg_major_version}" != x ; then - -@@ -198,15 +218,15 @@ - else - - dnl #define LIBAVCODEC_VERSION_TRIPLET 51,50,1 -- ffmpeg_version=`$EGREP "define LIBAVCODEC_VERSION_TRIPLET " ${avcodec_h} | awk '{print $'3'}' | sed -e "s%,%.%g"` -+ ffmpeg_version=`$EGREP "define LIBAVCODEC_VERSION_TRIPLET " ${versionfile} | awk '{print $'3'}' | sed -e "s%,%.%g"` - - if test x"${ffmpeg_version}" = x ; then - - dnl NOTE: the [0-9]*d. pattern discards deb-heads rubbish prefix -- ffmpeg_version=`$EGREP "define LIBAVCODEC_VERSION " ${avcodec_h} | awk '{print $'3'}' | sed -e "s%^[[0-9]]d\.%%"` -+ ffmpeg_version=`$EGREP "define LIBAVCODEC_VERSION " ${versionfile} | awk '{print $'3'}' | sed -e "s%^[[0-9]]d\.%%"` - - if test x"${ffmpeg_version}" = x ; then -- ffmpeg_version=`$EGREP "define LIBAVCODEC_BUILD " ${avcodec_h} | awk '{print $'3'}'` -+ ffmpeg_version=`$EGREP "define LIBAVCODEC_BUILD " ${versionfile} | awk '{print $'3'}'` - fi - fi - diff --git a/community-staging/gnash/gnash-gtk.install b/community-staging/gnash/gnash-gtk.install deleted file mode 100644 index c317fbaca..000000000 --- a/community-staging/gnash/gnash-gtk.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - update-desktop-database -q - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/community-staging/libdlna/PKGBUILD b/community-staging/libdlna/PKGBUILD deleted file mode 100644 index b9e9772d8..000000000 --- a/community-staging/libdlna/PKGBUILD +++ /dev/null @@ -1,31 +0,0 @@ -# $Id: PKGBUILD 57640 2011-10-31 19:29:32Z jelle $ -# Maintainer: Kessia 'even' Pinheiro <kessiapinheiro at gmail.com> -# Contributor: kastor <kastor@fobos.org.ar> -pkgname=libdlna -pkgver=0.2.3 -pkgrel=9 -pkgdesc="An open-source implementation of DLNA (Digital Living Network Alliance) standards " -url="http://libdlna.geexbox.org" -license=("LGPL") -arch=('i686' 'x86_64') -options=('!libtool' '!makeflags') # not parallel safe, error find -ldlna -makedepends=('ctags') -depends=('glibc' 'ffmpeg') -source=("http://libdlna.geexbox.org/releases/${pkgname}-${pkgver}.tar.bz2" "libdlna-0.2.3-libavcodec-libavformat-include-paths.patch" "ffmpeg-0.8.patch") - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - patch -Np1 -i $srcdir/libdlna-0.2.3-libavcodec-libavformat-include-paths.patch - patch -Np1 -i $srcdir/ffmpeg-0.8.patch -# sed -i 's|ffmpeg/avformat.h|libavformat/avformat.h|' ./configure src/profiles.h src/*.c -# sed -i 's|ffmpeg/avcodec.h|libavcodec/avcodec.h|' ./configure src/profiles.h src/*.c - ./configure --prefix=/usr --includedir=/usr/include/libavformat - make -j1 # not parallel safe, error find -ldlna -} -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make INSTALL=/bin/install DESTDIR=${pkgdir} install -} -md5sums=('2c974f95b711e5fd07f78fc4ebfcca66' - '937f1aebf930571127856056bd1d3959' - 'a5c9f58233fc7fc79b5fe550b297273b') diff --git a/community-staging/libdlna/ffmpeg-0.8.patch b/community-staging/libdlna/ffmpeg-0.8.patch deleted file mode 100644 index 63b33a451..000000000 --- a/community-staging/libdlna/ffmpeg-0.8.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff -aur libdlna-0.2.3/src/profiles.c libdlna-0.2.3.new/src/profiles.c ---- libdlna-0.2.3/src/profiles.c 2007-11-26 21:47:43.000000000 +0100 -+++ libdlna-0.2.3.new/src/profiles.c 2011-10-31 16:06:34.000000000 +0100 -@@ -205,13 +205,13 @@ - for (i = 0; i < ctx->nb_streams; i++) - { - if (audio_stream == -1 && -- ctx->streams[i]->codec->codec_type == CODEC_TYPE_AUDIO) -+ ctx->streams[i]->codec->codec_type == AVMEDIA_TYPE_AUDIO) - { - audio_stream = i; - continue; - } - else if (video_stream == -1 && -- ctx->streams[i]->codec->codec_type == CODEC_TYPE_VIDEO) -+ ctx->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO) - { - video_stream = i; - continue; diff --git a/community-staging/libdlna/libdlna-0.2.3-libavcodec-libavformat-include-paths.patch b/community-staging/libdlna/libdlna-0.2.3-libavcodec-libavformat-include-paths.patch deleted file mode 100644 index 8620ab2eb..000000000 --- a/community-staging/libdlna/libdlna-0.2.3-libavcodec-libavformat-include-paths.patch +++ /dev/null @@ -1,89 +0,0 @@ -https://bugs.gentoo.org/show_bug.cgi?id=297872 -http://hg.geexbox.org/libdlna/raw-rev/4113a728a2ca - -From 81130b9ade274bfc53900999ccc6f963ae9ce9d7 Mon Sep 17 00:00:00 2001 -From: Jeremy Olexa <darkside@gentoo.org> -Date: Tue, 22 Dec 2009 00:22:42 -0600 -Subject: [PATCH] Update reference to ffmpeg header files - ---- - configure | 4 ++-- - src/av_mpeg4_part10.c | 2 +- - src/av_mpeg4_part2.c | 2 +- - src/containers.c | 2 +- - src/profiles.h | 4 ++-- - 5 files changed, 7 insertions(+), 7 deletions(-) - -diff --git a/configure b/configure -index 8acbd9d..85c1091 100755 ---- a/configure -+++ b/configure -@@ -610,9 +610,9 @@ if [ -n "$ffmpegdir" ]; then - fi - - echolog "Checking for libavformat ..." --check_lib ffmpeg/avformat.h av_register_all -lavformat || die "Error, can't find libavformat !" -+check_lib libavformat/avformat.h av_register_all -lavformat || die "Error, can't find libavformat !" - echolog "Checking for libavcodec ..." --check_lib ffmpeg/avcodec.h avcodec_register_all -lavcodec || die "Error, can't find libavcodec !" -+check_lib libavcodec/avcodec.h avcodec_register_all -lavcodec || die "Error, can't find libavcodec !" - - ################################################# - # version -diff --git a/src/av_mpeg4_part10.c b/src/av_mpeg4_part10.c -index bd17022..f9c8ee5 100644 ---- a/src/av_mpeg4_part10.c -+++ b/src/av_mpeg4_part10.c -@@ -26,7 +26,7 @@ - #include <sys/stat.h> - #include <fcntl.h> - --#include <ffmpeg/avcodec.h> -+#include <libavcodec/avcodec.h> - - #include "dlna_internals.h" - #include "profiles.h" -diff --git a/src/av_mpeg4_part2.c b/src/av_mpeg4_part2.c -index 0148384..823e1b6 100644 ---- a/src/av_mpeg4_part2.c -+++ b/src/av_mpeg4_part2.c -@@ -26,7 +26,7 @@ - #include <sys/stat.h> - #include <fcntl.h> - --#include <ffmpeg/avcodec.h> -+#include <libavcodec/avcodec.h> - - #include "dlna_internals.h" - #include "profiles.h" -diff --git a/src/containers.c b/src/containers.c -index 71b51f7..ca0819b 100644 ---- a/src/containers.c -+++ b/src/containers.c -@@ -4,7 +4,7 @@ - #include <sys/stat.h> - #include <fcntl.h> - --#include <ffmpeg/avformat.h> -+#include <libavformat/avformat.h> - - #include "containers.h" - #include "profiles.h" -diff --git a/src/profiles.h b/src/profiles.h -index 7b86d33..a7fc0fd 100644 ---- a/src/profiles.h -+++ b/src/profiles.h -@@ -22,8 +22,8 @@ - #ifndef _PROFILES_H_ - #define _PROFILES_H_ - --#include <ffmpeg/avcodec.h> --#include <ffmpeg/avformat.h> -+#include <libavcodec/avcodec.h> -+#include <libavformat/avformat.h> - - #include "dlna_internals.h" - #include "containers.h" --- -1.6.4.4 - diff --git a/community-staging/lightspark/PKGBUILD b/community-staging/lightspark/PKGBUILD deleted file mode 100644 index cff8dd04a..000000000 --- a/community-staging/lightspark/PKGBUILD +++ /dev/null @@ -1,44 +0,0 @@ -# Maintainer: Thomas Dziedzic < gostrc at gmail > -# Contributor: Jan "heftig" Steffens <jan.steffens@gmail.com> - -pkgname=lightspark -pkgver=0.5.2.1 -pkgrel=2 -pkgdesc='An alternative Flash Player for Linux.' -arch=('i686' 'x86_64') -url='http://lightspark.sourceforge.net' -license=('LGPL3') -conflicts=('lightspark-git') -depends=('mesa' 'ftgl' 'sdl' 'gtk2' 'curl' 'zlib' 'ffmpeg' 'glew' 'pcre' 'libpulse' 'libffi' 'boost-libs' 'glibmm' 'gtkglext' 'desktop-file-utils' 'libxml++' 'libxml2') -makedepends=('cmake' 'nasm' 'xulrunner' 'llvm' 'glproto' 'boost' 'fontconfig') -optdepends=('gnash-gtk: fallback support') -install="lightspark.install" -source=("http://launchpad.net/lightspark/trunk/lightspark-${pkgver}/+download/lightspark-${pkgver}.tar.gz" - 'llvm29.diff') -md5sums=('ac2233a83e8bf0b305563bbce322cd76' - '5f717d1d9ead478184ca68f6ac068099') - -build() { - cd lightspark-${pkgver} - patch -Np0 -i ${srcdir}/llvm29.diff - cd ${srcdir} - - rm -rf build - mkdir build - cd build - - cmake \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCOMPILE_PLUGIN=1 \ - -DCMAKE_BUILD_TYPE=Release \ - -DGNASH_EXE_PATH=/usr/bin/gtk-gnash \ - ../lightspark-${pkgver} - - make -} - -package() { - cd build - - make DESTDIR=${pkgdir} install -} diff --git a/community-staging/lightspark/lightspark.install b/community-staging/lightspark/lightspark.install deleted file mode 100644 index 75e2b7b55..000000000 --- a/community-staging/lightspark/lightspark.install +++ /dev/null @@ -1,13 +0,0 @@ -post_install() { - update-desktop-database -q - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor -} - -post_upgrade() { - post_install $1 -} - -post_remove() { - update-desktop-database -q - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor -} diff --git a/community-staging/minidlna/PKGBUILD b/community-staging/minidlna/PKGBUILD deleted file mode 100644 index d28861432..000000000 --- a/community-staging/minidlna/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 57611 2011-10-31 14:26:35Z jelle $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Maintainer:Biginoz < biginoz AT free point fr> -# Contributor: Ignacio Galmarino <igalmarino@gmail.com> -# Contributor: Matthias Sobczyk <matthias.sobczyk@googlemail.com> - -pkgname=minidlna -pkgver=1.0.22 -pkgrel=4 -pkgdesc="A DLNA/UPnP-AV Media server (aka ReadyDLNA)" -arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/minidlna/" -license=('GPL') -depends=('libexif' 'libjpeg' 'libid3tag' 'flac' 'libvorbis' 'ffmpeg' 'sqlite3') -conflicts=('minidlna-cvs') -backup=('etc/minidlna.conf' - 'etc/conf.d/minidlna') -changelog=changelog -source=(http://downloads.sourceforge.net/minidlna/minidlna_${pkgver}_src.tar.gz - minidlna.rc) -md5sums=('3de2f6b54f43bb998dfad3c8fa75cef3' - '8b064a6c344a3ad8029e2619dfe07b77') - -build() { - cd "$srcdir/$pkgname-$pkgver" - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - DESTDIR=$pkgdir make install - install -D -m755 ${srcdir}/minidlna.rc ${pkgdir}/etc/rc.d/minidlna - mkdir -p $pkgdir/etc/conf.d - echo 'MINIDLNA_USER=nobody' >$pkgdir/etc/conf.d/minidlna -} diff --git a/community-staging/minidlna/changelog b/community-staging/minidlna/changelog deleted file mode 100644 index 35bf6239c..000000000 --- a/community-staging/minidlna/changelog +++ /dev/null @@ -1,4 +0,0 @@ -2011-08-29 Sergej Pupykin <sergej@p5n.pp.ru> - - * 1.0.22-3 : - add user configuration to /etc/conf.d/minidlna diff --git a/community-staging/minidlna/minidlna.rc b/community-staging/minidlna/minidlna.rc deleted file mode 100755 index df44a549f..000000000 --- a/community-staging/minidlna/minidlna.rc +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions -. /etc/minidlna.conf -. /etc/conf.d/minidlna - -PID=`pidof -o %PPID /usr/sbin/minidlna` - -case "$1" in - start) - stat_busy "Starting minidlna" - [ -z "$PID" ] && su -s /bin/sh -l -c /usr/sbin/minidlna - $MINIDLNA_USER - if [ $? -gt 0 ]; then - stat_fail - else - add_daemon minidlna - stat_done - fi - ;; - stop) - stat_busy "Stopping minidlna" - [ ! -z "$PID" ] && kill $PID &> /dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon minidlna - stat_done - fi - ;; - clean) - $0 stop - sleep 1 - stat_busy "Cleaning minidlna cache" - [ -z $db_dir ] || rm -r $db_dir/* - stat_done - sleep 1 - $0 start - ;; - restart) - $0 stop - sleep 1 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart|clean}" -esac -exit 0 diff --git a/community-staging/mlt/PKGBUILD b/community-staging/mlt/PKGBUILD deleted file mode 100644 index 0590a0ea5..000000000 --- a/community-staging/mlt/PKGBUILD +++ /dev/null @@ -1,60 +0,0 @@ -# $Id: PKGBUILD 57747 2011-11-02 08:19:13Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Fabian Schoelzel <myfirstname.mylastname@googlemail.com> -# Contributor: funkyou <spamopfer@nickname.berlin.de> -# Contributor: tardo <tardo@nagi-fanboi.net> -# Contributor: Stefan Husmann <stefan-husmann@t-online.de> - -pkgbase=mlt -pkgname=('mlt' 'mlt-python-bindings') -pkgver=0.7.6 -pkgrel=1 -pkgdesc="An open source multimedia framework" -arch=('i686' 'x86_64') -url="http://www.mltframework.org" -license=('GPL') -makedepends=('sdl_image' 'libsamplerate' 'libdv' 'qt' 'sox' 'libxml2' 'gtk2' 'ffmpeg' - 'frei0r-plugins' 'swig' 'python2' "jack" "ladspa") -source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('105969a63339da2f8ce4ddce1652c9e7') - -build() { - # mlt - cd $srcdir/mlt-$pkgver - -# [ $CARCH == "i686" ] && SSE2=--disable-sse2 || SSE2= - SSE2=--disable-sse2 - - msg "SSE2=$SSE2" - ./configure --prefix=/usr --enable-gpl \ - --qimage-libdir=/usr/lib/ --qimage-includedir=/usr/include/Qt \ - --avformat-vdpau \ - --avformat-swscale $SSE2 - make - - # mlt python bindings - cd $srcdir/mlt-$pkgver/src/swig/python - sed -i 's_path=`which python_path=`which python2_' build - sed -i 's_`python -c_`python2 -c_' build - sed -i 's#python-config#python2-config#' build - ./build -} - -package_mlt() { - depends=('sdl_image' 'libsamplerate' 'libdv' 'sox' 'libxml2' 'ffmpeg' 'frei0r-plugins') - optdepends=('jack' 'libexif' 'qt' 'gtk2' "ladspa") - conflicts=('mlt++<=0.3.8') - - cd $srcdir/mlt-$pkgver - make DESTDIR=$pkgdir install -} - -package_mlt-python-bindings() { - depends=('python2' 'mlt') - - cd $srcdir/mlt-$pkgver/src/swig/python - mkdir -p $pkgdir/usr/lib/python2.7/ - install -m755 mlt.py $pkgdir/usr/lib/python2.7/ - install -m755 _mlt.so $pkgdir/usr/lib/python2.7/ - install -m755 mlt_wrap.o $pkgdir/usr/lib/python2.7/ -} diff --git a/community-staging/motion/PKGBUILD b/community-staging/motion/PKGBUILD deleted file mode 100644 index a3d24865b..000000000 --- a/community-staging/motion/PKGBUILD +++ /dev/null @@ -1,61 +0,0 @@ -# $Id: PKGBUILD 57625 2011-10-31 16:39:28Z jelle $ -# Maintainer: - -pkgname=motion -pkgver=3.2.12 -pkgrel=2 -pkgdesc="A software motion detector which grabs images from video4linux devices and/or from webcams" -arch=('i686' 'x86_64') -license=('GPL') -url="http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome" -depends=('ffmpeg' 'libjpeg' 'v4l-utils') -backup=('etc/motion/motion.conf') -options=('!makeflags') -source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz rc.motion ffmpeg-0.8.patch linux-headers.patch) -md5sums=('1ba0065ed50509aaffb171594c689f46' '24b6fbfa586857b72f90cda81410c14f') -sha1sums=('dc59b36e45e7626baa65ce62c961af918fea76bd' '06f74131a9d4abc8aa05f531bd19c51a5732023f') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - patch -Np1 -i $srcdir/ffmpeg-0.8.patch - patch -Np1 -i $srcdir/linux-headers.patch - ./configure --prefix=/usr \ - --without-pgsql \ - --without-mysql \ - --sysconfdir=/etc/motion - make -} - -package(){ - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - mv "${pkgdir}/etc/motion/motion-dist.conf" "${pkgdir}/etc/motion/motion.conf" - - install -Dm755 "${srcdir}/rc.motion" "${pkgdir}/etc/rc.d/motion" -} -md5sums=('1ba0065ed50509aaffb171594c689f46' - '24b6fbfa586857b72f90cda81410c14f' - '2f422c268337dce583b9dac344005e93') -sha1sums=('dc59b36e45e7626baa65ce62c961af918fea76bd' - '06f74131a9d4abc8aa05f531bd19c51a5732023f' - '7b41c8c273980c147694d82af7c9cb9e51302dd9') -md5sums=('1ba0065ed50509aaffb171594c689f46' - '24b6fbfa586857b72f90cda81410c14f' - '5db295d7c2e4c38f36e861a3c4dfdd8d') -sha1sums=('dc59b36e45e7626baa65ce62c961af918fea76bd' - '06f74131a9d4abc8aa05f531bd19c51a5732023f' - '2b12df6d9053d17f6ac1969e3510dd50c6fe6667') -md5sums=('1ba0065ed50509aaffb171594c689f46' - '24b6fbfa586857b72f90cda81410c14f' - 'd36687710837d69fbce4608b1345fa34') -sha1sums=('dc59b36e45e7626baa65ce62c961af918fea76bd' - '06f74131a9d4abc8aa05f531bd19c51a5732023f' - '6912448db0711f85322505ee6f8052f8f98ae634') -md5sums=('1ba0065ed50509aaffb171594c689f46' - '24b6fbfa586857b72f90cda81410c14f' - 'd36687710837d69fbce4608b1345fa34' - 'd8c3c4fdded5cfbd729710475559a21d') -sha1sums=('dc59b36e45e7626baa65ce62c961af918fea76bd' - '06f74131a9d4abc8aa05f531bd19c51a5732023f' - '6912448db0711f85322505ee6f8052f8f98ae634' - '6f33dab895ae398cc5e7017cbf5dc5d728f3ca9e') diff --git a/community-staging/motion/ffmpeg-0.8.patch b/community-staging/motion/ffmpeg-0.8.patch deleted file mode 100644 index 5dcc6e686..000000000 --- a/community-staging/motion/ffmpeg-0.8.patch +++ /dev/null @@ -1,112 +0,0 @@ -diff -aur motion-3.2.12/ffmpeg.c motion-3.2.12.new/ffmpeg.c ---- motion-3.2.12/ffmpeg.c 2010-06-01 08:48:23.000000000 +0200 -+++ motion-3.2.12.new/ffmpeg.c 2011-10-31 17:25:03.000000000 +0100 -@@ -14,7 +14,7 @@ - - #include "ffmpeg.h" - #include "motion.h" -- -+#include <libavformat/avformat.h> - #if LIBAVCODEC_BUILD > 4680 - /* FFmpeg after build 4680 doesn't have support for mpeg1 videos with - * non-standard framerates. Previous builds contained a broken hack -@@ -228,10 +228,12 @@ - mpeg1_file_protocol.url_close = file_protocol.url_close; - - /* Register the append file protocol. */ --#if LIBAVFORMAT_BUILD >= (52<<16 | 31<<8) -- av_register_protocol(&mpeg1_file_protocol); -+#ifdef have_av_register_protocol2 -+ av_register_protocol2(&mpeg1_file_protocol, sizeof(mpeg1_file_protocol)); -+#elif defined have_av_register_protocol -+ av_register_protocol(&mpeg1_file_protocol); - #else -- register_protocol(&mpeg1_file_protocol); -+# warning av_register_protocolXXX missing - #endif - } - -@@ -244,7 +246,7 @@ - const char *ext; - AVOutputFormat *of = NULL; - -- /* Here, we use guess_format to automatically setup the codec information. -+ /* Here, we use av_guess_format to automatically setup the codec information. - * If we are using msmpeg4, manually set that codec here. - * We also dynamically add the file extension to the filename here. This was - * done to support both mpeg1 and mpeg4 codecs since they have different extensions. -@@ -258,7 +260,7 @@ - /* We use "mpeg1video" for raw mpeg1 format. Using "mpeg" would - * result in a muxed output file, which isn't appropriate here. - */ -- of = guess_format("mpeg1video", NULL, NULL); -+ of = av_guess_format("mpeg1video", NULL, NULL); - if (of) { - /* But we want the trailer to be correctly written. */ - of->write_trailer = mpeg1_write_trailer; -@@ -270,24 +272,24 @@ - #endif - } else if (strcmp(codec, "mpeg4") == 0) { - ext = ".avi"; -- of = guess_format("avi", NULL, NULL); -+ of = av_guess_format("avi", NULL, NULL); - } else if (strcmp(codec, "msmpeg4") == 0) { - ext = ".avi"; -- of = guess_format("avi", NULL, NULL); -+ of = av_guess_format("avi", NULL, NULL); - if (of) { - /* Manually override the codec id. */ - of->video_codec = CODEC_ID_MSMPEG4V2; - } - } else if (strcmp(codec, "swf") == 0) { - ext = ".swf"; -- of = guess_format("swf", NULL, NULL); -+ of = av_guess_format("swf", NULL, NULL); - } else if (strcmp(codec, "flv") == 0) { - ext = ".flv"; -- of = guess_format("flv", NULL, NULL); -+ of = av_guess_format("flv", NULL, NULL); - of->video_codec = CODEC_ID_FLV1; - } else if (strcmp(codec, "ffv1") == 0) { - ext = ".avi"; -- of = guess_format("avi", NULL, NULL); -+ of = av_guess_format("avi", NULL, NULL); - if (of) { - /* Use the FFMPEG Lossless Video codec (experimental!). - Requires strict_std_compliance to be <= -2 */ -@@ -295,7 +297,7 @@ - } - } else if (strcmp(codec, "mov") == 0) { - ext = ".mov"; -- of = guess_format("mov", NULL, NULL); -+ of = av_guess_format("mov", NULL, NULL); - } else { - motion_log(LOG_ERR, 0, "ffmpeg_video_codec option value %s is not supported", codec); - return NULL; -@@ -377,7 +379,7 @@ - - ffmpeg->c = c = AVSTREAM_CODEC_PTR(ffmpeg->video_st); - c->codec_id = ffmpeg->oc->oformat->video_codec; -- c->codec_type = CODEC_TYPE_VIDEO; -+ c->codec_type = AVMEDIA_TYPE_VIDEO; - is_mpeg1 = c->codec_id == CODEC_ID_MPEG1VIDEO; - - if (strcmp(ffmpeg_video_codec, "ffv1") == 0) -@@ -646,7 +648,7 @@ - if (ffmpeg->oc->oformat->flags & AVFMT_RAWPICTURE) { - /* raw video case. The API will change slightly in the near future for that */ - #ifdef FFMPEG_AVWRITEFRAME_NEWAPI -- pkt.flags |= PKT_FLAG_KEY; -+ pkt.flags |= AV_PKT_FLAG_KEY; - pkt.data = (uint8_t *)pic; - pkt.size = sizeof(AVPicture); - ret = av_write_frame(ffmpeg->oc, &pkt); -@@ -667,7 +669,7 @@ - #ifdef FFMPEG_AVWRITEFRAME_NEWAPI - pkt.pts = AVSTREAM_CODEC_PTR(ffmpeg->video_st)->coded_frame->pts; - if (AVSTREAM_CODEC_PTR(ffmpeg->video_st)->coded_frame->key_frame) { -- pkt.flags |= PKT_FLAG_KEY; -+ pkt.flags |= AV_PKT_FLAG_KEY; - } - pkt.data = ffmpeg->video_outbuf; - pkt.size = out_size; diff --git a/community-staging/motion/linux-headers.patch b/community-staging/motion/linux-headers.patch deleted file mode 100644 index 795c8aec5..000000000 --- a/community-staging/motion/linux-headers.patch +++ /dev/null @@ -1,35 +0,0 @@ -diff -urN motion-3.2.12-OLD/motion.h motion-3.2.12-NEW/motion.h ---- motion-3.2.12-OLD/motion.h 2010-05-31 23:48:23.000000000 -0700 -+++ motion-3.2.12-NEW/motion.h 2011-08-30 02:11:08.000000000 -0700 -@@ -40,7 +40,7 @@ - - #define _LINUX_TIME_H 1 - #if !defined(WITHOUT_V4L) && !defined(BSD) --#include <linux/videodev.h> -+#include <libv4l1-videodev.h> - #endif - - #include <pthread.h> -diff -urN motion-3.2.12-OLD/track.c motion-3.2.12-NEW/track.c ---- motion-3.2.12-OLD/track.c 2010-05-31 23:48:23.000000000 -0700 -+++ motion-3.2.12-NEW/track.c 2011-08-30 23:05:09.000000000 -0700 -@@ -11,6 +11,7 @@ - #include "motion.h" - - #ifndef WITHOUT_V4L -+#include <linux/videodev2.h> - #include "pwc-ioctl.h" - #endif - -diff -urN motion-3.2.12-OLD/video.h motion-3.2.12-NEW/video.h ---- motion-3.2.12-OLD/video.h 2010-05-31 23:48:23.000000000 -0700 -+++ motion-3.2.12-NEW/video.h 2011-08-30 02:11:12.000000000 -0700 -@@ -12,7 +12,7 @@ - - #define _LINUX_TIME_H 1 - #ifndef WITHOUT_V4L --#include <linux/videodev.h> -+#include <libv4l1-videodev.h> - #include <sys/mman.h> - #include "pwc-ioctl.h" - #endif diff --git a/community-staging/openscenegraph/PKGBUILD b/community-staging/openscenegraph/PKGBUILD deleted file mode 100644 index 215489c58..000000000 --- a/community-staging/openscenegraph/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 57617 2011-10-31 15:18:28Z jelle $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Maintainer: Hans Janssen <janserv@gmail.com> -# Contributor: my64 <packages@obordes.com> -# Contributor: Colin Pitrat <colin.pitrat@gmail.com> - -pkgname=openscenegraph -pkgver=3.0.1 -pkgrel=2 -pkgdesc="An Open Source, high performance real-time graphics toolkit" -arch=('i686' 'x86_64') -license=('custom:OSGPL') -url="http://www.openscenegraph.org" -depends=('giflib' 'jasper' 'librsvg' 'xine-lib' 'curl' 'pth') -makedepends=('cmake' 'libvncserver') -optdepends=('libvncserver' 'gdal' 'openexr' 'poppler-glib') -conflicts=('openthreads') -provides=('openthreads') -source=(http://www.openscenegraph.org/downloads/stable_releases/OpenSceneGraph-$pkgver/source/OpenSceneGraph-$pkgver.zip) -#source=("http://www.openscenegraph.org/downloads/stable_releases/OpenSceneGraph-3.0/source/OpenSceneGraph-$pkgver.zip") -md5sums=('c43a25d023e635c3566b2083d8e6d956') - -build() { - cd OpenSceneGraph-$pkgver - [ $NOEXTRACT -eq 1 ] || cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release - sed -i 's|#include <curl/types.h>|//#include <curl/types.h>|' src/osgPlugins/curl/ReaderWriterCURL.cpp - make -} - -package() { - cd OpenSceneGraph-$pkgver - make DESTDIR="$pkgdir" install - install -D -m644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" - [ -d "$pkgdir/usr/lib64" ] && mv "$pkgdir/usr/lib64" "$pkgdir/usr/lib" || true -} diff --git a/community-staging/performous/PKGBUILD b/community-staging/performous/PKGBUILD deleted file mode 100644 index f39e64148..000000000 --- a/community-staging/performous/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# $Id: PKGBUILD 57637 2011-10-31 17:44:50Z lcarlier $ -# Maintainer : Laurent Carlier <lordheavym@gmail.com> -# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org> - -pkgname=performous -pkgver=0.6.1 -pkgrel=10 -pkgdesc='A free game like "Singstar", "Rockband" or "Stepmania"' -arch=('i686' 'x86_64') -url="http://performous.org/" -license=('GPL') -depends=('boost-libs>=1.47' 'sdl' 'jack' 'imagemagick' 'ffmpeg' 'glew>=1.7.0' 'libxml++' 'portaudio' 'portmidi' \ - 'opencv' 'librsvg' 'libjpeg' 'libpng' 'cairo') -makedepends=('cmake' 'pkgconfig' 'help2man' 'boost>=1.47') -optdepends=('performous-freesongs: free songs for performous') -source=(http://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/Performous-$pkgver-Source.tar.bz2 - boost-filesystem-v3.patch - ffmpeg-0.8.patch::"http://performous.git.sourceforge.net/git/gitweb.cgi?p=performous/performous;a=patch;h=18449f6e56451f68b980c8359a4d1dc06f82db1a") -md5sums=('451a759de77984b5a699e91107fe52e2' - '42a8c825d80b0de16bd5752d2a80e585' - 'ff0ffa681dfaa09c4f42133a65309bf0') - -build() { - cd ${srcdir}/Performous-${pkgver}-Source - - # fix to built against boost 1.46 and later, upstream (git) now support v3 - patch -Np1 -i ../boost-filesystem-v3.patch - # fix with ffmpeg-0.8 - patch -Np1 -i ../ffmpeg-0.8.patch - - mkdir -p build - cd build - - # fix config loading with libxml++ - export LDFLAGS=${LDFLAGS/-Wl,--as-needed/} - - cmake -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr .. - - make -} - -package() { - cd ${srcdir}/Performous-${pkgver}-Source/build - - make DESTDIR="$pkgdir" install -} diff --git a/community-staging/performous/boost-filesystem-v3.patch b/community-staging/performous/boost-filesystem-v3.patch deleted file mode 100644 index 22dd07213..000000000 --- a/community-staging/performous/boost-filesystem-v3.patch +++ /dev/null @@ -1,135 +0,0 @@ -diff --git a/game/backgrounds.cc b/game/backgrounds.cc -index 7fd3cd0..cdedefb 100644 ---- a/game/backgrounds.cc -+++ b/game/backgrounds.cc -@@ -55,8 +55,13 @@ void Backgrounds::reload_internal(fs::path const& parent) { - for (fs::directory_iterator dirIt(parent), dirEnd; m_loading && dirIt != dirEnd; ++dirIt) { - fs::path p = dirIt->path(); - if (fs::is_directory(p)) { reload_internal(p); continue; } -+#if BOOST_FILESYSTEM_VERSION < 3 - std::string name = p.leaf(); // File basename - std::string path = p.directory_string(); // Path without filename -+#else -+ std::string name = p.filename().string(); // File basename -+ std::string path = p.string(); // Path without filename -+#endif - path.erase(path.size() - name.size()); - if (!regex_match(name.c_str(), match, expression)) continue; - { -diff --git a/game/cache.cc b/game/cache.cc -index 69974e2..0f1edd0 100644 ---- a/game/cache.cc -+++ b/game/cache.cc -@@ -9,7 +9,11 @@ namespace cache { - fs::path constructSVGCacheFileName(fs::path const& svgfilename, double factor){ - fs::path cache_filename; - std::string const lod = (boost::format("%.2f") % factor).str(); -+#if BOOST_FILESYSTEM_VERSION < 3 - std::string const cache_basename = svgfilename.filename() + ".cache_" + lod + ".png"; -+#else -+ std::string const cache_basename = svgfilename.filename().string() + ".cache_" + lod + ".png"; -+#endif - - if (isThemeResource(svgfilename)) { - std::string const theme_name = (config["game/theme"].s().empty() ? "default" : config["game/theme"].s()); -diff --git a/game/filemagic.hh b/game/filemagic.hh -index bf87ded..29e81fe 100644 ---- a/game/filemagic.hh -+++ b/game/filemagic.hh -@@ -71,7 +71,11 @@ namespace filemagic { - // For now, just check the extension an assume it's not lying. - - // Get file extension in lower case -+#if BOOST_FILESYSTEM_VERSION < 3 - std::string ext = filename.extension(); -+#else -+ std::string ext = filename.extension().string(); -+#endif - // somehow this does not convert the extension to lower case: - //std::for_each(ext.begin(), ext.end(), static_cast<int(*)(int)>(std::tolower)); - std::transform(ext.begin(), ext.end(), ext.begin(), ::tolower ); -diff --git a/game/fs.cc b/game/fs.cc -index e34a784..767a7ab 100644 ---- a/game/fs.cc -+++ b/game/fs.cc -@@ -128,7 +128,11 @@ std::string getThemePath(std::string const& filename) { - - bool isThemeResource(fs::path filename){ - try { -+#if BOOST_FILESYSTEM_VERSION < 3 - std::string themefile = getThemePath(filename.filename()); -+#else -+ std::string themefile = getThemePath(filename.filename().string()); -+#endif - return themefile == filename; - } catch (...) { return false; } - } -diff --git a/game/songparser-ini.cc b/game/songparser-ini.cc -index 38e163b..db15d79 100644 ---- a/game/songparser-ini.cc -+++ b/game/songparser-ini.cc -@@ -104,7 +104,11 @@ void SongParser::iniParseHeader() { - // Search the dir for the music files - for (boost::filesystem::directory_iterator dirIt(s.path), dirEnd; dirIt != dirEnd; ++dirIt) { - boost::filesystem::path p = dirIt->path(); -+#if BOOST_FILESYSTEM_VERSION < 3 - std::string name = p.leaf(); // File basename (notes.txt) -+#else -+ std::string name = p.filename().string(); // File basename (notes.txt) -+#endif - if (regex_match(name.c_str(), match, midifile)) { - s.midifilename = name; - } else if (regex_match(name.c_str(), match, audiofile_background)) { -diff --git a/game/songparser.cc b/game/songparser.cc -index 2b7b9b4..ac9f3f6 100644 ---- a/game/songparser.cc -+++ b/game/songparser.cc -@@ -100,7 +100,11 @@ SongParser::SongParser(Song& s): - - for (boost::filesystem::directory_iterator dirIt(s.path), dirEnd; dirIt != dirEnd; ++dirIt) { - boost::filesystem::path p = dirIt->path(); -+#if BOOST_FILESYSTEM_VERSION < 3 - std::string name = p.leaf(); // File basename -+#else -+ std::string name = p.filename().string(); // File basename -+#endif - if (m_song.cover.empty() && regex_match(name.c_str(), match, coverfile)) { - m_song.cover = name; - } else if (m_song.background.empty() && regex_match(name.c_str(), match, backgroundfile)) { -diff --git a/game/songs.cc b/game/songs.cc -index 62ab26d..afab383 100644 ---- a/game/songs.cc -+++ b/game/songs.cc -@@ -67,8 +67,13 @@ void Songs::reload_internal(fs::path const& parent) { - for (fs::directory_iterator dirIt(parent), dirEnd; m_loading && dirIt != dirEnd; ++dirIt) { - fs::path p = dirIt->path(); - if (fs::is_directory(p)) { reload_internal(p); continue; } -+#if BOOST_FILESYSTEM_VERSION < 3 - std::string name = p.leaf(); // File basename (notes.txt) - std::string path = p.directory_string(); // Path without filename -+#else -+ std::string name = p.filename().string(); // File basename (notes.txt) -+ std::string path = p.string(); // Path without filename -+#endif - path.erase(path.size() - name.size()); - if (!regex_match(name.c_str(), match, expression)) continue; - try { -diff --git a/tools/ss_helpers.hh b/tools/ss_helpers.hh -index 58e19dc..8895d94 100644 ---- a/tools/ss_helpers.hh -+++ b/tools/ss_helpers.hh -@@ -10,7 +10,11 @@ extern "C" void xmlLogger(void* logger, char const* msg, ...) { if (logger) *(st - void enableXMLLogger(std::ostream& os = std::cerr) { xmlSetGenericErrorFunc(&os, xmlLogger); } - void disableXMLLogger() { xmlSetGenericErrorFunc(NULL, xmlLogger); } - -+#if BOOST_FILESYSTEM_VERSION < 3 - std::string filename(boost::filesystem::path const& p) { return *--p.end(); } -+#else -+std::string filename(boost::filesystem::path const& p) { return p.filename().string(); } -+#endif - - /** Fix Singstar's b0rked XML **/ - std::string xmlFix(std::vector<char> const& data) { --- -1.7.4.1 - diff --git a/community-staging/picard/PKGBUILD b/community-staging/picard/PKGBUILD deleted file mode 100644 index c28b54004..000000000 --- a/community-staging/picard/PKGBUILD +++ /dev/null @@ -1,28 +0,0 @@ -# $Id: PKGBUILD 57653 2011-10-31 21:30:02Z bisson $ -# Maintainer: Gaetan Bisson <bisson@archlinux.org> -# Maintainer: Mateusz Herych <heniekk@gmail.com> -# Contributor: sysrq - -pkgname=picard -pkgver=0.16 -pkgrel=2 -pkgdesc='Official MusicBrainz tagger' -url='http://musicbrainz.org/doc/MusicBrainz_Picard' -license=('GPL') -arch=('i686' 'x86_64') -depends=('python2-qt' 'mutagen' 'libofa' 'ffmpeg') -optdepends=('libdiscid: CD-Lookup feature') -source=("http://ftp.musicbrainz.org/pub/musicbrainz/${pkgname}/${pkgname}-${pkgver}.tar.gz") -sha1sums=('274071410550ee29051bb0137d72602921a015f9') - -install=install - -build() { - cd "${srcdir}/picard-${pkgver}" - python2 setup.py config -} - -package() { - cd "${srcdir}/picard-${pkgver}" - python2 setup.py install --root="${pkgdir}" -} diff --git a/community-staging/picard/install b/community-staging/picard/install deleted file mode 100644 index b46fab005..000000000 --- a/community-staging/picard/install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &>/dev/null - update-desktop-database -q &>/dev/null -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/community-staging/synfig/PKGBUILD b/community-staging/synfig/PKGBUILD deleted file mode 100644 index 6394d021c..000000000 --- a/community-staging/synfig/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# $Id: PKGBUILD 57621 2011-10-31 16:03:20Z jelle $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Franco Iacomella <yaco@gnu.org> - -pkgname=synfig -pkgver=0.63.02 -pkgrel=2 -pkgdesc="Professional vector animation program (CLI renderer only)" -arch=(i686 x86_64) -url="http://synfig.org" -license=('GPL2') -depends=('libxml++' 'libsigc++2.0' 'etl' 'imagemagick' 'ffmpeg' 'fontconfig' 'libpng' - 'libtiff' 'libdv' 'libmng') -optdepends=('openexr' 'libsigc++') -conflicts=('synfig-core') -replaces=('synfig-core') -options=(!libtool) -source=(http://downloads.sourceforge.net/project/synfig/synfig/$pkgver/synfig-$pkgver.tar.gz - build-fix.patch ffmpeg-0.8.patch) -md5sums=('4286d5e1887275107d760d1b678aec24' - '2de5e74159a38e4b1788c20d4c4b6f68') - -build() { - cd $srcdir/$pkgname-$pkgver - [ -f configure ] || { libtoolize --ltdl --copy --force && autoreconf --install --force; } - [ -f Makefile ] || ./configure --prefix=/usr --sysconfdir=/etc --with-libavcodec --with-libdv - patch -p1 -i $srcdir/build-fix.patch - patch -Np1 -i $srcdir/ffmpeg-0.8.patch - make -} - -package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install -} -md5sums=('4286d5e1887275107d760d1b678aec24' - '2de5e74159a38e4b1788c20d4c4b6f68' - 'f1f22b1ce2c13e25d5eb51a664a9551f') -md5sums=('4286d5e1887275107d760d1b678aec24' - '2de5e74159a38e4b1788c20d4c4b6f68' - 'ebf41046097cfd778dee9a9854561dae') diff --git a/community-staging/synfig/build-fix.patch b/community-staging/synfig/build-fix.patch deleted file mode 100644 index 9124a517a..000000000 --- a/community-staging/synfig/build-fix.patch +++ /dev/null @@ -1,43 +0,0 @@ -diff -wbBur synfig-core/src/modules/mod_libavcodec/trgt_av.cpp synfig-core.my/src/modules/mod_libavcodec/trgt_av.cpp ---- synfig-core/src/modules/mod_libavcodec/trgt_av.cpp 2011-06-05 13:04:07.000000000 +0400 -+++ synfig-core.my/src/modules/mod_libavcodec/trgt_av.cpp 2011-06-14 14:32:49.000000000 +0400 -@@ -31,6 +31,10 @@ - # include <config.h> - #endif - -+#include <libavcodec/avcodec.h> -+#include <libavformat/avformat.h> -+#include <libswscale/swscale.h> -+ - #include "trgt_av.h" - - extern "C" -@@ -116,14 +120,14 @@ - picture = avcodec_alloc_frame(); - if (!picture) - return NULL; -- size = avpicture_get_size(pix_fmt, width, height); -+ size = avpicture_get_size((enum ::PixelFormat)pix_fmt, width, height); - picture_buf = (uint8_t *)malloc(size); - if (!picture_buf) { - av_free(picture); - return NULL; - } - avpicture_fill((AVPicture *)picture, picture_buf, -- pix_fmt, width, height); -+ (enum ::PixelFormat)pix_fmt, width, height); - return picture; - } - -diff -wbBur synfig-core/src/modules/mod_png/mptr_png.cpp synfig-core.my/src/modules/mod_png/mptr_png.cpp ---- synfig-core/src/modules/mod_png/mptr_png.cpp 2011-06-05 13:04:07.000000000 +0400 -+++ synfig-core.my/src/modules/mod_png/mptr_png.cpp 2011-06-14 14:32:49.000000000 +0400 -@@ -309,7 +309,7 @@ - float b=gamma().b_U8_to_F32((unsigned char)png_ptr->palette[row_pointers[y][x]].blue); - float a=1.0; - if(info_ptr->valid & PNG_INFO_tRNS) -- a = (float)(unsigned char)png_ptr->trans[row_pointers[y][x]]*(1.0/255.0); -+ a = (float)(unsigned char)png_ptr->trans_alpha[row_pointers[y][x]]*(1.0/255.0); - surface_buffer[y][x]=Color( - r, - g, diff --git a/community-staging/synfig/ffmpeg-0.8.patch b/community-staging/synfig/ffmpeg-0.8.patch deleted file mode 100644 index 4ba40fff2..000000000 --- a/community-staging/synfig/ffmpeg-0.8.patch +++ /dev/null @@ -1,60 +0,0 @@ -diff -aur synfig-0.63.02/src/modules/mod_libavcodec/trgt_av.cpp synfig-0.63.02.new/src/modules/mod_libavcodec/trgt_av.cpp ---- synfig-0.63.02/src/modules/mod_libavcodec/trgt_av.cpp 2011-09-29 10:51:41.000000000 +0200 -+++ synfig-0.63.02.new/src/modules/mod_libavcodec/trgt_av.cpp 2011-10-31 16:39:03.000000000 +0100 -@@ -441,7 +441,7 @@ - if( context->coded_frame ) - pkt.pts = context->coded_frame->pts; - if( context->coded_frame && context->coded_frame->key_frame) -- pkt.flags |= PKT_FLAG_KEY; -+ pkt.flags |= AV_PKT_FLAG_KEY; - - //kluge for raw picture format (they said they'd fix) - if (formatc->oformat->flags & AVFMT_RAWPICTURE) -@@ -463,7 +463,7 @@ - if( context->coded_frame ) - pkt.pts = context->coded_frame->pts; - if( context->coded_frame && context->coded_frame->key_frame) -- pkt.flags |= PKT_FLAG_KEY; -+ pkt.flags |= AV_PKT_FLAG_KEY; - - ret = av_write_frame(formatc, &pkt); - -@@ -567,17 +567,17 @@ - if (typestring) - { - //formatptr guess_format(type, filename, MIME type) -- format = guess_format(typestring,NULL,NULL); -+ format = av_guess_format(typestring,NULL,NULL); - } - else - { -- format = guess_format(NULL, filename, NULL); -+ format = av_guess_format(NULL, filename, NULL); - } - - if(!format) - { - synfig::warning("Unable to Guess the output, defaulting to mpeg"); -- format = guess_format("mpeg", NULL, NULL); -+ format = av_guess_format("mpeg", NULL, NULL); - } - - if(!format) -@@ -753,7 +753,7 @@ - - context = st->codec; - context->codec_id = (CodecID)codec_id; -- context->codec_type = CODEC_TYPE_VIDEO; -+ context->codec_type = AVMEDIA_TYPE_VIDEO; - - //PARAMETERS MUST BE PASSED IN SOMEHOW (ANOTHER FUNCTION PARAMETER???) - -@@ -800,7 +800,7 @@ - - context = stream->codec; - context->codec_id = (CodecID)codec_id; -- context->codec_type = CODEC_TYPE_AUDIO; -+ context->codec_type = AVMEDIA_TYPE_AUDIO; - - /* put sample parameters */ - context->bit_rate = 64000; diff --git a/community-staging/vtk/PKGBUILD b/community-staging/vtk/PKGBUILD deleted file mode 100644 index 165a76e97..000000000 --- a/community-staging/vtk/PKGBUILD +++ /dev/null @@ -1,107 +0,0 @@ -# Maintainer: Thomas Dziedzic < gostrc at gmail > -# Contributor: Christofer Bertonha <christoferbertonha at gmail dot com> -# Contributor: leepesjee <lpeschier at xs4all dot nl> -# Contributor: Olivier Medoc -# Contributor: ignotus -# Contributor: Fabian Moser -# Contributor: djscholl - -pkgname=vtk -pkgver=5.8.0 -pkgrel=4 -pkgdesc='A software system for 3D computer graphics, image processing, and visualization which supports a wide variety of visualization algorithms and advanced modeling techniques.' -arch=('i686' 'x86_64') -url='http://www.vtk.org' -license=('BSD') -depends=('libpng' 'libtiff' 'freetype2' 'boost' 'ffmpeg' 'qt' 'lesstif' 'mysql') -makedepends=('cmake' 'java-environment' 'doxygen' 'gnuplot' 'mesa' 'python2' 'tk') -optdepends=('python2: python bindings' - 'java-runtime: java bindings' - 'tk: tcl bindings' - 'gnuplot: plotting tools' - 'graphviz: drawing tools') -source=("http://www.vtk.org/files/release/${pkgver:0:3}/vtk-${pkgver}.tar.gz" - "http://www.vtk.org/files/release/${pkgver:0:3}/vtkdata-${pkgver}.tar.gz" - 'fixkernelversioncheck.diff' - 'ffmpeg-0.8.diff') -md5sums=('37b7297d02d647cc6ca95b38174cb41f' - 'a05295b81930e894fc0e31866f399151' - '9e137af23701f76fc727222ebac23389' - 'e992321c9d1def6034d0fa6607b40c5a') - -build() { - cd VTK - - # fix compilation error: http://vtk.org/Bug/view.php?id=12568 - # remove next pkgver bump - patch -Np1 -i ${srcdir}/fixkernelversioncheck.diff - - # fix compilation error: - # remove next pkgver bump - patch -Np1 -i ${srcdir}/ffmpeg-0.8.diff - - cd ${srcdir} - - rm -rf build - mkdir build - cd build - - cmake \ - -Wno-dev \ - -DBUILD_SHARED_LIBS:BOOL=ON \ - -DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \ - -DVTK_DATA_ROOT:FILEPATH=${srcdir}/VTKData \ - -DBUILD_DOCUMENTATION:BOOL=ON \ - -DDOCUMENTATION_HTML_HELP:BOOL=ON \ - -DDOCUMENTATION_HTML_TARZ:BOOL=ON \ - -DBUILD_EXAMPLES:BOOL=ON \ - -DVTK_USE_HYBRID:BOOL=ON \ - -DVTK_USE_PARALLEL:BOOL=ON \ - -DVTK_USE_PATENTED:BOOL=ON \ - -DVTK_USE_SYSTEM_EXPAT:BOOL=ON \ - -DVTK_USE_SYSTEM_FREETYPE:BOOL=ON \ - -DVTK_USE_SYSTEM_JPEG:BOOL=ON \ - -DVTK_USE_SYSTEM_PNG:BOOL=ON \ - -DVTK_USE_SYSTEM_TIFF:BOOL=ON \ - -DVTK_USE_SYSTEM_ZLIB:BOOL=ON \ - -DVTK_USE_SYSTEM_LIBXML2:BOOL=ON \ - -DVTK_USE_BOOST:BOOL=ON \ - -DVTK_USE_INFOVIS:BOOL=ON \ - -DVTK_USE_GL2PS:BOOL=ON \ - -DVTK_USE_MYSQL:BOOL=ON \ - -DVTK_USE_FFMPEG_ENCODER:BOOL=ON \ - -DVTK_USE_TEXT_ANALYSIS:BOOL=ON \ - -DVTK_WRAP_JAVA:BOOL=ON \ - -DVTK_WRAP_PYTHON:BOOL=ON \ - -DVTK_WRAP_TCL:BOOL=ON \ - -DVTK_PYTHON_SETUP_ARGS:STRING="--root=${pkgdir}" \ - -DVTK_USE_QT:BOOL=ON \ - -DVTK_INSTALL_QT_PLUGIN_DIR:STRING="/usr/lib/qt/plugins" \ - -DVTK_USE_GUISUPPORT:BOOL=ON \ - -DCMAKE_CXX_FLAGS="-D__STDC_CONSTANT_MACROS" \ - -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \ - -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \ - ${srcdir}/VTK - - make -} - -package() { - cd build - - make DESTDIR=${pkgdir} install - - # Move the vtk.jar to the arch-specific location - install -dv ${pkgdir}/usr/share/java/vtk - mv -v ${pkgdir}/usr/lib/vtk-${pkgver:0:3}/java/vtk.jar \ - ${pkgdir}/usr/share/java/vtk - - # Install license - install -dv ${pkgdir}/usr/share/licenses/vtk - install -m644 ${srcdir}/VTK/Copyright.txt \ - ${pkgdir}/usr/share/licenses/vtk - - # Put an entry in /etc/ld.so.conf.d - install -dv ${pkgdir}/etc/ld.so.conf.d - echo "/usr/lib/vtk-${pkgver:0:3}" > ${pkgdir}/etc/ld.so.conf.d/vtk.conf -} diff --git a/community-staging/vtk/ffmpeg-0.8.diff b/community-staging/vtk/ffmpeg-0.8.diff deleted file mode 100644 index 523919d6f..000000000 --- a/community-staging/vtk/ffmpeg-0.8.diff +++ /dev/null @@ -1,66 +0,0 @@ -Description: Upstream changes introduced in version 5.6.1-6.1 - This patch has been created by dpkg-source during the package build. - Here's the last changelog entry, hopefully it gives details on why - those changes were made: - . - vtk (5.6.1-6.1) unstable; urgency=low - . - [ Michael Schutte ] - * Non-maintainer upload. - * Remove absolute paths to required libraries from - /usr/lib/vtk-5.6/VTKLibraryDepends.cmake after building, closes: - #506992. Due to the multiarch transition, the original behavior - frequently causes reverse build-deps to FTBFS. This change should - probably be reverted once all required libraries are multiarched. - . - [ Steve M. Robbins ] - * Override lintian diagnostic about embedded libraries ftgl and sqlite. - * IO/vtkFFMPEGWriter.cxx: Applied fix from #638246 to build with libav - 0.7. - . - The person named in the Author field signed this changelog entry. -Author: Steve M. Robbins <smr@debian.org> -Bug-Debian: http://bugs.debian.org/506992 - ---- -The information above should follow the Patch Tagging Guidelines, please -checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here -are templates for supplementary fields that you might want to add: - -Origin: <vendor|upstream|other>, <url of original patch> -Bug: <url in upstream bugtracker> -Bug-Debian: http://bugs.debian.org/<bugnumber> -Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber> -Forwarded: <no|not-needed|url proving that it has been forwarded> -Reviewed-By: <name and email of someone who approved the patch> -Last-Update: <YYYY-MM-DD> - ---- vtk-5.6.1.orig/IO/vtkFFMPEGWriter.cxx -+++ vtk-5.6.1/IO/vtkFFMPEGWriter.cxx -@@ -123,7 +123,7 @@ int vtkFFMPEGWriterInternal::Start() - } - - //choose avi media file format -- this->avOutputFormat = guess_format("avi", NULL, NULL); -+ this->avOutputFormat = av_guess_format("avi", NULL, NULL); - if (!this->avOutputFormat) - { - vtkGenericWarningMacro (<< "Could not open the avi media file format."); -@@ -150,7 +150,7 @@ int vtkFFMPEGWriterInternal::Start() - //Set up the codec. - AVCodecContext *c = this->avStream->codec; - c->codec_id = (CodecID)this->avOutputFormat->video_codec; -- c->codec_type = CODEC_TYPE_VIDEO; -+ c->codec_type = AVMEDIA_TYPE_VIDEO; - c->width = this->Dim[0]; - c->height = this->Dim[1]; - c->pix_fmt = PIX_FMT_YUVJ420P; -@@ -329,7 +329,7 @@ int vtkFFMPEGWriterInternal::Write(vtkIm - pkt.stream_index = this->avStream->index; - if (cc->coded_frame->key_frame) //treat keyframes well - { -- pkt.flags |= PKT_FLAG_KEY; -+ pkt.flags |= AV_PKT_FLAG_KEY; - } - pkt.duration = 0; //presentation duration in time_base units or 0 if NA - pkt.pos = -1; //byte position in stream or -1 if NA diff --git a/community-staging/vtk/fixkernelversioncheck.diff b/community-staging/vtk/fixkernelversioncheck.diff deleted file mode 100644 index 165f07366..000000000 --- a/community-staging/vtk/fixkernelversioncheck.diff +++ /dev/null @@ -1,19 +0,0 @@ ---- a/Utilities/vtkhdf5/ConfigureChecks.cmake -+++ b/Utilities/vtkhdf5/ConfigureChecks.cmake -@@ -75,14 +75,14 @@ IF (HDF5_WANT_DCONV_EXCEPTION) - ENDIF (HDF5_WANT_DCONV_EXCEPTION) - - SET (LINUX_LFS 0) --IF (CMAKE_SYSTEM MATCHES "Linux-([3-9]\\.[0-9]|2\\.[4-9])\\.") -+IF (CMAKE_SYSTEM MATCHES "Linux") - # Linux Specific flags - ADD_DEFINITIONS (-D_POSIX_SOURCE -D_BSD_SOURCE) - OPTION (HDF5_ENABLE_LARGE_FILE "Enable support for large (64-bit) files on Linux." ON) - IF (HDF5_ENABLE_LARGE_FILE) - SET (LARGEFILE 1) - ENDIF (HDF5_ENABLE_LARGE_FILE) --ENDIF (CMAKE_SYSTEM MATCHES "Linux-([3-9]\\.[0-9]|2\\.[4-9])\\.") -+ENDIF (CMAKE_SYSTEM MATCHES "Linux") - SET (HDF5_EXTRA_FLAGS) - IF (LINUX_LFS) - SET (HDF5_EXTRA_FLAGS -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE) diff --git a/community-staging/wxsvg/PKGBUILD b/community-staging/wxsvg/PKGBUILD deleted file mode 100644 index f45080b0c..000000000 --- a/community-staging/wxsvg/PKGBUILD +++ /dev/null @@ -1,27 +0,0 @@ -# $Id: PKGBUILD 57642 2011-10-31 19:38:03Z jelle $ -# Contributor: Alexander Fehr <pizzapunk gmail com> -# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> - -pkgname=wxsvg -pkgver=1.1.2 -pkgrel=2 -pkgdesc="C++ library to create, manipulate and render SVG files" -arch=('i686' 'x86_64') -url="http://wxsvg.sourceforge.net/" -license=('custom:wxWindows') -depends=('wxgtk' 'libart-lgpl' 'ffmpeg') -options=('!libtool') -source=("http://downloads.sourceforge.net/project/wxsvg/wxsvg/${pkgver}/wxsvg-${pkgver}.tar.bz2") -md5sums=('d88b0a68334df157fa560413681c3264') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - install -D -m644 COPYING "${pkgdir}/usr/share/licenses/wxsvg/COPYING" -} diff --git a/community-staging/xmms2/PKGBUILD b/community-staging/xmms2/PKGBUILD deleted file mode 100644 index bdd6bcdc0..000000000 --- a/community-staging/xmms2/PKGBUILD +++ /dev/null @@ -1,76 +0,0 @@ -# $Id: PKGBUILD 57623 2011-10-31 16:37:20Z jelle $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> - -pkgname=xmms2 -pkgver=0.8DrO_o -pkgrel=2 -pkgdesc="complete rewrite of the popular music player" -arch=('i686' 'x86_64') -url="http://xmms2.org/" -license=('LGPL') -backup=('etc/conf.d/xmms2d.conf') -depends=('sqlite3' 'libmad') -makedepends=('alsa-lib' 'boost' 'curl' 'faad2' 'ffmpeg' 'fftw' 'flac' 'glib' - 'jack' 'libao' 'libmms' 'libmpcdec' 'libofa' 'libsamplerate' 'libshout' - 'libvorbis' 'libxml2' 'mpg123' 'oss' 'perl' 'pulseaudio' 'pyrex' - 'ruby' 'smbclient' 'speex' 'wavpack' 'libmodplug') # avahi -optdepends=('alsa-lib: ALSA audio output' - 'avahi: announce xmms2d via bonjour/mDNS/zeroconf' - 'boost: C++ language bindings' - 'curl: play HTTP streams' - 'faad2: AAC support' - 'ffmpeg: WMA, avcodec & avformat support' - 'fftw: calculations for visualization' - 'flac: FLAC support' - 'jack: JACK audio output' - 'libao: liboa audio output' - 'libofa: MusicDNS fingerprinting' - 'libmms: play MMS streams' - 'libmodplug: to play MOD files' - 'libmpcdec: Musepack support' - 'libsamplerate: vocoder support' - 'libshout: Icecast audio output' - 'libvorbis: Ogg Vorbis support' - 'libxml2: XSPF and podcast support' - 'mpg123: alternative MP3 plugin' - 'oss: OSS audio output' - 'perl: Perl language bindings' - 'pulseaudio: PulseAudio audio output' - 'pyrex: Python language bindings' - 'ruby: Ruby language bindings' - 'smbclient: direct CIFS/SMB access' - 'speex: Speex support' - 'wavpack: WavPack support') -# 'sidplay: to play a Commodore 64 music files AKA zaks' -# we do not have sidplay 2 series in repos; also it's -# somehow connected with resid i guess(not in repos also) -conflicts=('xmms2-devel') -install=xmms2.install -source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2 - xmms2d.conf - xmms2d.rc - xmms2-helpers.patch - vorbis-albumart.patch) -md5sums=('84d5c05a70bfd31ed392a4e3f701eaa3' - 'af13c937bf3c86b77ae6820107aab9b8' - '9d8e3e1a434f271423bdd228a1e9bd7c' - 'eddb800ebcc495b8574044a110a34add' - 'c5a16da0c5a6ebe5e7f58afb6edfa87e') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - -# patch -Np1 < ${srcdir}/xmms2-helpers.patch -# patch -p1 <$srcdir/vorbis-albumart.patch - - # python2 fix - sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' waf - - ./waf configure --prefix=/usr \ - --with-optionals=python,launcher,xmmsclient++,xmmsclient++-glib,perl,ruby,nycli - ./waf build - ./waf --destdir=${pkgdir} install - - install -D -m 0755 ../xmms2d.rc ${pkgdir}/etc/rc.d/xmms2d - install -D -m 0644 ../xmms2d.conf ${pkgdir}/etc/conf.d/xmms2d.conf -} diff --git a/community-staging/xmms2/vorbis-albumart.patch b/community-staging/xmms2/vorbis-albumart.patch deleted file mode 100644 index de4305f6f..000000000 --- a/community-staging/xmms2/vorbis-albumart.patch +++ /dev/null @@ -1,200 +0,0 @@ -From f38882beb1c9b4f3e3c63ac7d65603ad5917cd9d Mon Sep 17 00:00:00 2001 -From: Brad Jorsch <anomie@users.sourceforge.net> -Date: Tue, 09 Mar 2010 15:41:33 +0000 -Subject: OTHER: Add support for METADATA_BLOCK_PICTURE in Vorbis plugin - -Bug-Debian: http://bugs.debian.org/565479 ---- -diff --git a/src/plugins/vorbis_common/common.c b/src/plugins/vorbis_common/common.c -index c1f4ef9..fc4ff1b 100644 ---- a/src/plugins/vorbis_common/common.c -+++ b/src/plugins/vorbis_common/common.c -@@ -243,6 +243,74 @@ get_replaygain (xmms_xform_t *xform, vorbis_comment *vc) - } - } - -+static void -+handle_image_comment (xmms_xform_t *xform, const gchar *value, gsize len) -+{ -+ guint32 typ, mime_len, desc_len, img_len; -+ guchar *pos, *end, *mime_data, *img_data; -+ gchar hash[33]; -+ -+ pos = value; -+ end = value + len; -+ -+ if (pos + 4 > end) { -+ XMMS_DBG ("Malformed picture comment"); -+ return; -+ } -+ typ = GUINT32_FROM_BE (*(guint32 *)pos); -+ if (typ != 0 && typ != 3) { -+ XMMS_DBG ("Picture type %d not handled", typ); -+ return; -+ } -+ pos += 4; -+ -+ if (pos + 4 > end) { -+ XMMS_DBG ("Malformed picture comment"); -+ return; -+ } -+ mime_len = GUINT32_FROM_BE (*(guint32 *)pos); -+ pos += 4; -+ mime_data = pos; -+ pos += mime_len; -+ -+ if (pos + 4 > end) { -+ XMMS_DBG ("Malformed picture comment"); -+ return; -+ } -+ desc_len = GUINT32_FROM_BE (*(guint32 *)pos); -+ pos += 4; -+ pos += desc_len; -+ -+ pos += 4; /* width */ -+ pos += 4; /* height */ -+ pos += 4; /* depth */ -+ pos += 4; /* indexed palette length */ -+ -+ if (pos + 4 > end) { -+ XMMS_DBG ("Malformed picture comment"); -+ return; -+ } -+ img_len = GUINT32_FROM_BE (*(guint32 *)pos); -+ pos += 4; -+ img_data = pos; -+ -+ if (img_data + img_len > end) { -+ XMMS_DBG ("Malformed picture comment"); -+ return; -+ } -+ -+ if (xmms_bindata_plugin_add ((const guchar *)img_data, img_len, hash)) { -+ const gchar *metakey; -+ -+ metakey = XMMS_MEDIALIB_ENTRY_PROPERTY_PICTURE_FRONT; -+ xmms_xform_metadata_set_str (xform, metakey, hash); -+ -+ metakey = XMMS_MEDIALIB_ENTRY_PROPERTY_PICTURE_FRONT_MIME; -+ mime_data[mime_len] = '\0'; -+ xmms_xform_metadata_set_str (xform, metakey, mime_data); -+ } -+} -+ - /* note that "key" is NOT NUL-terminated here, - * but "value" is. - */ -@@ -253,6 +321,14 @@ handle_comment (xmms_xform_t *xform, - { - gint i; - -+ if (!g_ascii_strncasecmp (key, "METADATA_BLOCK_PICTURE", key_len)) { -+ gsize dlen; -+ gchar *dvalue = g_base64_decode (value, &dlen); -+ handle_image_comment (xform, dvalue, dlen); -+ g_free (dvalue); -+ return; -+ } -+ - for (i = 0; i < G_N_ELEMENTS (properties); i++) { - if (key_len != strlen (properties[i].vname)) - continue; --- -cgit v0.8.3.4 - - -From d8273630bd92ecea581240ae93c6795cc538d076 Mon Sep 17 00:00:00 2001 -From: Erik Massop <e.massop@hccnet.nl> -Date: Tue, 09 Mar 2010 15:45:03 +0000 -Subject: OTHER: Add Brad Jorsch to AUTHORS, disable Vorbis albumart for glib < 2.12 - -(Name found using e-mail address at http://sourceforge.net/users/anomie ) ---- -diff --git a/AUTHORS b/AUTHORS -index f2ef9af..7331d4b 100644 ---- a/AUTHORS -+++ b/AUTHORS -@@ -146,6 +146,10 @@ N: Johannes Jordan - E: ypnos@lanrules.de - D: Visualization - -+N: Brad Jorsch -+E: anomie@users.sourceforge.net -+D: Support for front picture from Vorbis. -+ - N: Daniel Kamiński - E: maniel.rulez@gmail.com - D: mlib remove command in cli, Ruby fixes. -diff --git a/src/plugins/vorbis_common/common.c b/src/plugins/vorbis_common/common.c -index fc4ff1b..ab1dc75 100644 ---- a/src/plugins/vorbis_common/common.c -+++ b/src/plugins/vorbis_common/common.c -@@ -27,6 +27,7 @@ - #include "xmms/xmms_sample.h" - #include "xmms/xmms_log.h" - #include "xmms/xmms_medialib.h" -+#include "xmms/xmms_bindata.h" - - #include <glib.h> - -@@ -244,12 +245,22 @@ get_replaygain (xmms_xform_t *xform, vorbis_comment *vc) - } - - static void --handle_image_comment (xmms_xform_t *xform, const gchar *value, gsize len) -+handle_image_comment (xmms_xform_t *xform, const gchar *encoded_value) - { -+ gsize len; -+ guchar *value; -+ - guint32 typ, mime_len, desc_len, img_len; - guchar *pos, *end, *mime_data, *img_data; - gchar hash[33]; - -+#if GLIB_CHECK_VERSION(2,12,0) -+ value = g_base64_decode (encoded_value, &len); -+#else -+ /* TODO: Implement/backport base64 decoding */ -+ return; -+#endif -+ - pos = value; - end = value + len; - -@@ -299,7 +310,7 @@ handle_image_comment (xmms_xform_t *xform, const gchar *value, gsize len) - return; - } - -- if (xmms_bindata_plugin_add ((const guchar *)img_data, img_len, hash)) { -+ if (xmms_bindata_plugin_add (img_data, img_len, hash)) { - const gchar *metakey; - - metakey = XMMS_MEDIALIB_ENTRY_PROPERTY_PICTURE_FRONT; -@@ -307,8 +318,10 @@ handle_image_comment (xmms_xform_t *xform, const gchar *value, gsize len) - - metakey = XMMS_MEDIALIB_ENTRY_PROPERTY_PICTURE_FRONT_MIME; - mime_data[mime_len] = '\0'; -- xmms_xform_metadata_set_str (xform, metakey, mime_data); -+ xmms_xform_metadata_set_str (xform, metakey, (gchar *)mime_data); - } -+ -+ g_free (value); - } - - /* note that "key" is NOT NUL-terminated here, -@@ -322,10 +335,7 @@ handle_comment (xmms_xform_t *xform, - gint i; - - if (!g_ascii_strncasecmp (key, "METADATA_BLOCK_PICTURE", key_len)) { -- gsize dlen; -- gchar *dvalue = g_base64_decode (value, &dlen); -- handle_image_comment (xform, dvalue, dlen); -- g_free (dvalue); -+ handle_image_comment (xform, value); - return; - } - --- -cgit v0.8.3.4 - - diff --git a/community-staging/xmms2/xmms2-helpers.patch b/community-staging/xmms2/xmms2-helpers.patch deleted file mode 100644 index f6e6aa49e..000000000 --- a/community-staging/xmms2/xmms2-helpers.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -wbBur xmms2-0.5DrLecter/src/include/xmmsclient/xmmsclient++/helpers.h xmms2-0.5DrLecter.my/src/include/xmmsclient/xmmsclient++/helpers.h ---- xmms2-0.5DrLecter/src/include/xmmsclient/xmmsclient++/helpers.h 2008-06-15 21:31:38.000000000 +0400 -+++ xmms2-0.5DrLecter.my/src/include/xmmsclient/xmmsclient++/helpers.h 2008-06-18 14:22:24.000000000 +0400 -@@ -33,6 +33,8 @@ - #include <list> - #include <vector> - -+#include <linux/limits.h> -+ - namespace Xmms - { - - diff --git a/community-staging/xmms2/xmms2-ruby-1.9.patch b/community-staging/xmms2/xmms2-ruby-1.9.patch deleted file mode 100644 index 6316ace61..000000000 --- a/community-staging/xmms2/xmms2-ruby-1.9.patch +++ /dev/null @@ -1,59 +0,0 @@ -diff -wbBur xmms2-0.6DrMattDestruction/src/clients/lib/ruby/rb_collection.c xmms2-0.6DrMattDestruction.my/src/clients/lib/ruby/rb_collection.c ---- xmms2-0.6DrMattDestruction/src/clients/lib/ruby/rb_collection.c 2009-04-21 17:51:11.000000000 +0000 -+++ xmms2-0.6DrMattDestruction.my/src/clients/lib/ruby/rb_collection.c 2009-09-14 09:13:19.000000000 +0000 -@@ -241,10 +241,10 @@ - COLL_METHOD_HANDLER_HEADER - - rb_ary = RARRAY (ids); -- ary = malloc (sizeof (unsigned int *) * (rb_ary->len + 1)); -+ ary = malloc (sizeof (unsigned int *) * (RARRAYLEN(rb_ary) + 1)); - -- for (i = 0; i < rb_ary->len; i++) -- ary[i] = NUM2UINT (rb_ary->ptr[i]); -+ for (i = 0; i < RARRAYLEN(rb_ary); i++) -+ ary[i] = NUM2UINT (RARRAY_PTR(rb_ary)[i]); - - ary[i] = 0; - -diff -wbBur xmms2-0.6DrMattDestruction/src/clients/lib/ruby/rb_xmmsclient.c xmms2-0.6DrMattDestruction.my/src/clients/lib/ruby/rb_xmmsclient.c ---- xmms2-0.6DrMattDestruction/src/clients/lib/ruby/rb_xmmsclient.c 2009-04-21 17:51:11.000000000 +0000 -+++ xmms2-0.6DrMattDestruction.my/src/clients/lib/ruby/rb_xmmsclient.c 2009-09-14 09:14:51.000000000 +0000 -@@ -1421,10 +1421,10 @@ - if (!NIL_P (rb_check_array_type (value))) { - struct RArray *ary = RARRAY (value); - -- ret = malloc (sizeof (char *) * (ary->len + 1)); -+ ret = malloc (sizeof (char *) * (RARRAYLEN(ary) + 1)); - -- for (i = 0; i < ary->len; i++) -- ret[i] = StringValuePtr (ary->ptr[i]); -+ for (i = 0; i < RARRAYLEN(ary); i++) -+ ret[i] = StringValuePtr (RARRAY_PTR(ary)[i]); - - ret[i] = NULL; - } else { -@@ -1451,10 +1451,10 @@ - struct RArray *ary = RARRAY (value); - int i; - -- for (i = 0; i < ary->len; i++) { -+ for (i = 0; i < RARRAYLEN(ary); i++) { - xmmsv_t *elem; - -- elem = xmmsv_new_string (StringValuePtr (ary->ptr[i])); -+ elem = xmmsv_new_string (StringValuePtr (RARRAY_PTR(ary)[i])); - xmmsv_list_append (list, elem); - xmmsv_unref (elem); - } -diff -wbBur xmms2-0.6DrMattDestruction/src/include/xmmsclient/xmmsclient++/helpers.h xmms2-0.6DrMattDestruction.my/src/include/xmmsclient/xmmsclient++/helpers.h ---- xmms2-0.6DrMattDestruction/src/include/xmmsclient/xmmsclient++/helpers.h 2009-04-21 17:51:11.000000000 +0000 -+++ xmms2-0.6DrMattDestruction.my/src/include/xmmsclient/xmmsclient++/helpers.h 2009-09-14 09:00:11.000000000 +0000 -@@ -33,6 +33,8 @@ - #include <list> - #include <vector> - -+#include <linux/limits.h> -+ - namespace Xmms - { - diff --git a/community-staging/xmms2/xmms2.install b/community-staging/xmms2/xmms2.install deleted file mode 100644 index 2205a3492..000000000 --- a/community-staging/xmms2/xmms2.install +++ /dev/null @@ -1,3 +0,0 @@ -pre_install() { - echo "-- DO NOT FORGET edit /etc/conf.d/xmms2.conf!" -} diff --git a/community-staging/xmms2/xmms2d.conf b/community-staging/xmms2/xmms2d.conf deleted file mode 100644 index c8304fe1d..000000000 --- a/community-staging/xmms2/xmms2d.conf +++ /dev/null @@ -1,31 +0,0 @@ -# -# xmms2-launcher cmdline parameters -# -XMMS2_PARAMETERS="" - -# -# xmms2 user -# You may want to add user to run xmms or use your username -# -XMMS2_USER="xmms2user" - -# -# If you set XMMS2_USER to a different user than the one who will be controlling -# xmms2d using xmms2 clients, make sure that the clients are aware of the path to -# xmms2d's IPC socket, or they might not be able to connect. On failure to connect -# some clients will try to run xmms2d themselves. These xmms2d instances will of -# course run as the user running the client, and not as the one configured below. -# -# If an IPC path is specified on the command line to xmms2d (using -# XMMS2_PARAMETERS="-i tcp://127.0.0.1:9667" -# for instance) that will be used. If not, xmms2d will use the path from its -# configuration file which is typically in ~/.config/xmms2/xmms2.conf. If this -# fails, a unix socket at /tmp/xmms-ipc-[username] will be used, where username -# is of the user starting xmms2d. -# -# Clients typically try to get the ipc path from the XMMS_PATH environment variable, -# (which might be set by adding say 'export XMMS_PATH="tcp://127.0.0.1:9667"' to -# ~/.profile). If this fails they can check their configuration file (if they have -# one) and finally use unix:///tmp/xmms-ipc-[username], where username is of the user -# starting the client. Upon failing to connect some will try to start xmms2d themselves. -# diff --git a/community-staging/xmms2/xmms2d.rc b/community-staging/xmms2/xmms2d.rc deleted file mode 100755 index 9d4d2b7e9..000000000 --- a/community-staging/xmms2/xmms2d.rc +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -. /etc/conf.d/xmms2d.conf -. /etc/rc.conf -. /etc/rc.d/functions - -PID=`pidof xmms2d xmms2-et` -case "$1" in - start) - stat_busy "Starting xmms2d" - [ -z "$PID" ] && su -c '/usr/bin/xmms2-launcher $XMMS2_PARAMETERS 1>/dev/null 2>/dev/null' - $XMMS2_USER - if [ $? -gt 0 ]; then - stat_fail - else - add_daemon xmms2d - stat_done - fi - ;; - stop) - stat_busy "Stopping xmms2d" - [ ! -z "$PID" ] && su -c '/usr/bin/xmms2 quit &>/dev/null' - $XMMS2_USER - if [ $? -gt 0 ]; then - stat_fail - else - for i in `seq 1 10`; do - [ -d /proc/$PID ] || { stat_done; rm_daemon xmms2d; exit 0; } - sleep 1 - done - stat_fail - fi - ;; - restart) - $0 stop - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac -exit 0 diff --git a/community-staging/xvidcap/PKGBUILD b/community-staging/xvidcap/PKGBUILD deleted file mode 100644 index 6d68a48a9..000000000 --- a/community-staging/xvidcap/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# $Id: PKGBUILD 63169 2010-01-15 14:58:38Z giovanni $ -# Maintainer: Thorsten Töpper <atsutane at freethoughts dot de> -# Contributor: Andrea Scarpino <andrea@archlinux.org> -# Contributor: red_over_blue, Abaddon <kukububu@go2.pl> -# Contributor: damir <damir@archlinux.org> - -pkgname=xvidcap -pkgver=1.1.7 -pkgrel=4 -pkgdesc="A small tool to capture things going on on an X-Windows display to either individual frames or an MPEG video" -arch=("i686" "x86_64") -license=('GPL') -url="http://xvidcap.sourceforge.net/" -depends=('dbus-glib' 'lame' 'libxmu' 'libglade' 'ffmpeg' 'dbus') -makedepends=('perlxml' 'rarian') -source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz - 'xextproto-7.1.1.patch' - 'xvidcap-ffmpeg.patch' - 'ffmpeg-0.8.patch') -md5sums=('b39a682d3ef9fcbf424af771936780e2' - 'fbde2b076c5ea05723883b87f3ef2a65' - 'f18817da1c0dada05fa791ae53193b2c') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - - patch -Np1 -i ${srcdir}/xextproto-7.1.1.patch - patch -Np0 -i ${srcdir}/xvidcap-ffmpeg.patch - patch -Np1 -i ${srcdir}/ffmpeg-0.8.patch - - ./configure --prefix=/usr \ - --with-x \ - --with-gtk2 \ - --enable-libmp3lame \ - --without-forced-embedded-ffmpeg - make -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make prefix=${pkgdir}/usr install -} -md5sums=('b39a682d3ef9fcbf424af771936780e2' - 'fbde2b076c5ea05723883b87f3ef2a65' - 'f18817da1c0dada05fa791ae53193b2c' - '36ead5f0345ae776601d49c1c90cb101') -md5sums=('b39a682d3ef9fcbf424af771936780e2' - 'fbde2b076c5ea05723883b87f3ef2a65' - 'f18817da1c0dada05fa791ae53193b2c' - '6e4dfab56b877362757092f55ad6b337') diff --git a/community-staging/xvidcap/ffmpeg-0.8.patch b/community-staging/xvidcap/ffmpeg-0.8.patch deleted file mode 100644 index 511333a0f..000000000 --- a/community-staging/xvidcap/ffmpeg-0.8.patch +++ /dev/null @@ -1,82 +0,0 @@ -diff -aur xvidcap-1.1.7/src/xtoffmpeg.c xvidcap-1.1.7.new/src/xtoffmpeg.c ---- xvidcap-1.1.7/src/xtoffmpeg.c 2008-05-25 22:01:54.000000000 +0000 -+++ xvidcap-1.1.7.new/src/xtoffmpeg.c 2011-10-31 20:41:08.259171263 +0000 -@@ -361,7 +361,7 @@ - } - // put sample parameters - au_c->codec_id = xvc_audio_codecs[job->au_targetCodec].ffmpeg_id; -- au_c->codec_type = CODEC_TYPE_AUDIO; -+ au_c->codec_type = AVMEDIA_TYPE_AUDIO; - au_c->bit_rate = target->sndsize; - au_c->sample_rate = target->sndrate; - au_c->channels = target->sndchannels; -@@ -567,7 +567,7 @@ - av_rescale_q (enc->coded_frame->pts, enc->time_base, - ost->st->time_base); - } -- pkt.flags |= PKT_FLAG_KEY; -+ pkt.flags |= AV_PKT_FLAG_KEY; - pkt.stream_index = ost->st->index; - - pkt.data = audio_out; -@@ -627,7 +627,7 @@ - pkt.pts = - av_rescale_q (enc->coded_frame->pts, enc->time_base, - ost->st->time_base); -- pkt.flags |= PKT_FLAG_KEY; -+ pkt.flags |= AV_PKT_FLAG_KEY; - av_interleaved_write_frame (s, &pkt); - } - -@@ -681,7 +681,7 @@ - if (ret <= 0) { - ret = avcodec_encode_audio (enc, bit_buffer, bit_buffer_size, NULL); - } -- pkt.flags |= PKT_FLAG_KEY; -+ pkt.flags |= AV_PKT_FLAG_KEY; - - if (samples) { - av_free (samples); -@@ -905,7 +905,7 @@ - ost->time_base); - } - if (enc->coded_frame->key_frame) -- pkt.flags |= PKT_FLAG_KEY; -+ pkt.flags |= AV_PKT_FLAG_KEY; - } - - pkt.stream_index = ost->index; -@@ -1157,7 +1157,7 @@ - } - - st->codec->codec_id = codec_id; -- st->codec->codec_type = CODEC_TYPE_VIDEO; -+ st->codec->codec_type = AVMEDIA_TYPE_VIDEO; - - // find the video encoder - codec = avcodec_find_encoder (st->codec->codec_id); -@@ -1439,13 +1439,13 @@ - // guess AVOutputFormat - if (job->target >= CAP_MF) - file_oformat = -- guess_format (xvc_formats[job->target].ffmpeg_name, NULL, NULL); -+ av_guess_format (xvc_formats[job->target].ffmpeg_name, NULL, NULL); - else { - char tmp_fn[30]; - - snprintf (tmp_fn, 29, "test-%%d.%s", - xvc_formats[job->target].extensions[0]); -- file_oformat = guess_format (NULL, tmp_fn, NULL); -+ file_oformat = av_guess_format (NULL, tmp_fn, NULL); - } - if (!file_oformat) { - fprintf (stderr, -@@ -1466,7 +1466,7 @@ - #endif // DEBUG - - // prepare AVFormatContext -- output_file = av_alloc_format_context (); -+ output_file = avformat_alloc_context(); - if (!output_file) { - fprintf (stderr, - _ diff --git a/community-staging/xvidcap/xextproto-7.1.1.patch b/community-staging/xvidcap/xextproto-7.1.1.patch deleted file mode 100644 index b65da0ee7..000000000 --- a/community-staging/xvidcap/xextproto-7.1.1.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- xvidcap-1.1.7/src/capture.c.orig 2008-05-26 02:01:53.000000000 +0400 -+++ xvidcap-1.1.7/src/capture.c 2009-12-12 00:12:31.368260518 +0300 -@@ -65,7 +65,7 @@ - #include <sys/ipc.h> - #include <sys/shm.h> - #include <X11/extensions/XShm.h> --#include <X11/extensions/shmstr.h> -+#include <X11/extensions/shmproto.h> - #ifndef SOLARIS - #include <X11/extensions/extutil.h> - #endif // SOLARIS diff --git a/community-staging/xvidcap/xvidcap-ffmpeg.patch b/community-staging/xvidcap/xvidcap-ffmpeg.patch deleted file mode 100644 index 3a74bf508..000000000 --- a/community-staging/xvidcap/xvidcap-ffmpeg.patch +++ /dev/null @@ -1,105 +0,0 @@ -Index: src/codecs.c -=================================================================== ---- src/codecs.c (revision 319) -+++ src/codecs.c (working copy) -@@ -43,8 +43,8 @@ - #include <locale.h> - - #ifdef USE_FFMPEG --#include <ffmpeg/avcodec.h> --#include <ffmpeg/avformat.h> -+#include <libavcodec/avcodec.h> -+#include <libavformat/avformat.h> - #endif // USE_FFMPEG - - #include "app_data.h" -Index: src/xtoffmpeg.c -=================================================================== ---- src/xtoffmpeg.c (revision 319) -+++ src/xtoffmpeg.c (working copy) -@@ -56,13 +56,13 @@ - #include "xvidcap-intl.h" - - // ffmpeg stuff --#include <ffmpeg/avcodec.h> --#include <ffmpeg/avformat.h> --#include <ffmpeg/avdevice.h> -+#include <libavcodec/avcodec.h> -+#include <libavformat/avformat.h> -+#include <libavdevice/avdevice.h> - //#include <ffmpeg/dsputil.h> --#include <ffmpeg/swscale.h> --#include <ffmpeg/rgb2rgb.h> --#include <ffmpeg/fifo.h> -+#include <libswscale/swscale.h> -+#include <libavutil/pixfmt.h> -+#include <libavutil/fifo.h> - #define swscale_isRGB(x) ((x)==PIX_FMT_BGR32 || (x)==PIX_FMT_RGB24 \ - || (x)==PIX_FMT_RGB565 || (x)==PIX_FMT_RGB555 \ - || (x)==PIX_FMT_RGB8 || (x)==PIX_FMT_RGB4 \ -@@ -96,9 +96,10 @@ - || (x)==PIX_FMT_YUVJ420P || (x)==PIX_FMT_YUVJ422P \ - || (x)==PIX_FMT_YUVJ444P) - --#define PIX_FMT_ARGB32 PIX_FMT_RGBA32 /* this is just my personal -- * convenience */ -+#define PIX_FMT_ARGB32 PIX_FMT_RGB32 /* this is just my personal -+ * convenience */ - -+ - /* - * file globals - */ -@@ -1248,7 +1249,11 @@ - st->codec->flags |= CODEC_FLAG2_FAST; - // there is no trellis quantiser in libav* for mjpeg - if (st->codec->codec_id != CODEC_ID_MJPEG) -+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0) - st->codec->flags |= CODEC_FLAG_TRELLIS_QUANT; -+#else -+ st->codec->trellis = 1; -+#endif - st->codec->flags &= ~CODEC_FLAG_OBMC; - // some formats want stream headers to be seperate - if (oc->oformat->flags & AVFMT_GLOBALHEADER) -@@ -1498,11 +1503,10 @@ - // add the video stream and initialize the codecs - // - // prepare stream -- out_st = -- add_video_stream (output_file, image, -- (input_pixfmt == -- PIX_FMT_PAL8 ? PIX_FMT_RGB24 : input_pixfmt), -- xvc_codecs[job->targetCodec].ffmpeg_id, job); -+ fprintf(stderr, "The current pixfmt is %d, but the choosen one is %d\n", input_pixfmt, (input_pixfmt == PIX_FMT_PAL8 ? PIX_FMT_RGB24 : input_pixfmt)); -+ out_st = add_video_stream (output_file, image, -+ (input_pixfmt == PIX_FMT_PAL8 ? PIX_FMT_RGB24 : input_pixfmt), -+ xvc_codecs[job->targetCodec].ffmpeg_id, job); - - // FIXME: set params - // memset (p_fParams, 0, sizeof(*p_fParams)); -Index: src/main.c -=================================================================== ---- src/main.c (revision 319) -+++ src/main.c (working copy) -@@ -45,7 +45,7 @@ - #include <locale.h> - - #ifdef USE_FFMPEG --#include <ffmpeg/avcodec.h> -+#include <libavcodec/avcodec.h> - #endif // USE_FFMPEG - - #include "control.h" -@@ -217,9 +217,6 @@ - - if (app) - xvc_appdata_free (app); --#ifdef USE_FFMPEG -- av_free_static (); --#endif - } - - /** - - diff --git a/community-testing/acetoneiso2/PKGBUILD b/community-testing/acetoneiso2/PKGBUILD deleted file mode 100644 index 28f21a360..000000000 --- a/community-testing/acetoneiso2/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# Contributor: Andrea Scarpino <andrea@archlinux.org> -# Contributor: Wes Brewer <brewerw@gmail.com> -# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> - -pkgname=acetoneiso2 -pkgver=2.3 -pkgrel=4 -pkgdesc="An all in one ISO tool (bin mdf nrg img daa dmg cdi b5i bwi pdi iso)" -arch=('i686' 'x86_64') -url="http://www.acetoneteam.org" -license=('GPL3') -depends=('qtwebkit' 'fuseiso' 'cdrdao' 'cdrkit' 'dvd+rw-tools' 'gnupg2' 'pinentry' 'mplayer' 'phonon') -optdepends=("p7zip: for ISO compress/decompress support") -conflicts=('acetoneiso') -install=${pkgname}.install -source=(http://downloads.sourceforge.net/acetoneiso/AcetoneISO/AcetoneISO%202.3/acetoneiso_${pkgver}.tar.gz) -md5sums=('225f7af687016690ff28b9771a1ce179') - -build() { - cd ${srcdir}/acetoneiso_${pkgver}/acetoneiso - - qmake - # needed for phonon - sed -i 's|-I/usr/include/QtCore|-I/usr/include/QtCore -I/usr/include/KDE|' Makefile - make -} - -package() { - cd ${srcdir}/acetoneiso_${pkgver}/acetoneiso - - make INSTALL_ROOT="${pkgdir}" install -} diff --git a/community-testing/acetoneiso2/acetoneiso2.install b/community-testing/acetoneiso2/acetoneiso2.install deleted file mode 100644 index 1a3984e24..000000000 --- a/community-testing/acetoneiso2/acetoneiso2.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { -cat << EOF - --> - --> Please remember to add 'fuse' to your MODULES array in /etc/rc.conf - --> -EOF -} - -post_upgrade() { - post_install $* -} diff --git a/community-testing/cdfs/PKGBUILD b/community-testing/cdfs/PKGBUILD deleted file mode 100644 index 8e5412cd3..000000000 --- a/community-testing/cdfs/PKGBUILD +++ /dev/null @@ -1,28 +0,0 @@ -# $Id: PKGBUILD 57350 2011-10-26 12:09:08Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: J. Santiago Hirschfeld <jsantiagoh@yahoo.com.ar> - -pkgname=cdfs -pkgver=2.6.27 -pkgrel=17 -pkgdesc="File system module that 'exports' all tracks and boot images on a CD as normal files." -arch=(i686 x86_64) -url="http://www.elis.UGent.be/~ronsse/cdfs/" -license=('GPL') -makedepends=('linux-headers') -install=cdfs.install -source=("http://www.elis.UGent.be/~ronsse/cdfs/download/$pkgname-$pkgver.tar.bz2" - "cdfs-3.0.0.patch") -md5sums=('ac64c014a90e3c488394832ea29605b3' - 'aba7da94a9dcbb8a93ea423cb6958fef') - -build() { - _kernver=`pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -` - depends=("linux>=3.${_kernver}" "linux<3.`expr ${_kernver} + 1`") - _kernverfull=`cat /lib/modules/extramodules-3.${_kernver}-ARCH/version` - - cd $srcdir/$pkgname-$pkgver - patch -p1 <$srcdir/cdfs-3.0.0.patch - make KDIR=/lib/modules/${_kernverfull}/build - install -Dm0644 cdfs.ko $pkgdir/lib/modules/extramodules-3.${_kernver}-ARCH/cdfs.ko -} diff --git a/community-testing/cdfs/cdfs-3.0.0.patch b/community-testing/cdfs/cdfs-3.0.0.patch deleted file mode 100644 index 20194b848..000000000 --- a/community-testing/cdfs/cdfs-3.0.0.patch +++ /dev/null @@ -1,274 +0,0 @@ -diff -wbBur cdfs-2.6.27/cddata.c cdfs-2.6.27.my/cddata.c ---- cdfs-2.6.27/cddata.c 2009-12-21 17:04:03.000000000 +0300 -+++ cdfs-2.6.27.my/cddata.c 2011-07-24 21:18:44.000000000 +0400 -@@ -83,7 +83,7 @@ - #else - .mmap = generic_file_readonly_mmap, - #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,27) -- .sendfile = generic_file_sendfile -+// .sendfile = generic_file_sendfile - #else - .splice_read = generic_file_splice_read - #endif -diff -wbBur cdfs-2.6.27/root.c cdfs-2.6.27.my/root.c ---- cdfs-2.6.27/root.c 2009-12-21 16:38:31.000000000 +0300 -+++ cdfs-2.6.27.my/root.c 2011-07-25 13:16:59.000000000 +0400 -@@ -32,19 +30,14 @@ - * Added code to transform /proc/cdfs into a sequential synthetic file. * - *++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ - -- - #include <linux/seq_file.h> -- --#ifndef OLD_KERNEL - #include <linux/statfs.h> --#endif -+#include <linux/sched.h> - - extern struct seq_operations cdfs_operations; - extern struct _track_info *dummy_track_p; - --#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,24) - struct inode *cdfs_iget(struct super_block *sp, unsigned long ino); --#endif - /*============================================================================* - * cdfs_open() * - * Description: * -@@ -115,15 +108,8 @@ - - /********************************************************************/ - --#ifdef OLD_KERNEL --static struct super_block * cdfs_mount(struct super_block *sb, void *data, int silent){ -- kdev_t dev = sb->s_dev; -- int i, j, t; -- struct cdrom_tochdr hdr; --#else - static int cdfs_fill_super(struct super_block *sb, void *data, int silent){ - int i, t; --#endif - struct cdrom_tocentry entry; - int no_audio=0, no_data=0; - cd * this_cd; -@@ -131,24 +117,13 @@ - - PRINT("cdfs_mount\n"); - --#ifdef OLD_KERNEL -- MOD_INC_USE_COUNT; -- -- set_blocksize(dev, CD_FRAMESIZE); // voor bread met ide-cd --#else - sb_set_blocksize(sb, CD_FRAMESIZE); // voor bread met ide-cd --#endif - - sb->s_blocksize = CD_FRAMESIZE; - sb->s_blocksize_bits = 11; - - if (!(this_cd = cdfs_info(sb) = kmalloc(sizeof(cd), GFP_KERNEL))){ --#ifdef OLD_KERNEL -- MOD_DEC_USE_COUNT; -- return NULL; --#else - return -ENOMEM; --#endif - } - - this_cd->mode = MODE; -@@ -160,13 +135,8 @@ - - // Initialize cache for maximum sector size - if (!(this_cd->cache = kmalloc(CD_FRAMESIZE_RAWER*CACHE_SIZE, GFP_KERNEL))) { --#ifdef OLD_KERNEL -- MOD_DEC_USE_COUNT; -- return NULL; --#else - kfree(cdfs_info(sb)); - return -ENOMEM; --#endif - } - - // Cache is still invalid -@@ -183,23 +153,13 @@ - if (this_cd->toc_scsi){ - if (cdfs_toc_read_full(sb)){ - printk("TOC read failed\n"); --#ifdef OLD_KERNEL -- MOD_DEC_USE_COUNT; -- return NULL; --#else - goto invalid; --#endif - } - } else { - //if (cdfs_ioctl(sb, CDROMREADTOCHDR, (unsigned long)&hdr)){ - if (cdfs_toc_read(sb)){ - printk("cdfs_toc_read failed\n"); --#ifdef OLD_KERNEL -- MOD_DEC_USE_COUNT; -- return NULL; --#else - goto invalid; --#endif - } - } - -@@ -365,11 +325,7 @@ - sb->s_flags |= MS_RDONLY; - sb->s_op = &cdfs_ops; - /* always get inode status */ --#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,24) - retinode=cdfs_iget(sb, 0); --#else -- retinode=iget(sb, 0); --#endif - if ( IS_ERR(retinode) ) - return PTR_ERR(retinode); - -@@ -379,16 +335,12 @@ - - cdfs_proc_cd = this_cd; - --#ifdef OLD_KERNEL -- return sb; --#else - return 0; - - invalid: - kfree(this_cd->cache); - kfree(cdfs_info(sb)); - return -EINVAL; --#endif - } - - /************************************************************************/ -@@ -410,27 +362,12 @@ - // Remove /proc entry - cdfs_proc_cd = NULL; - kfree(cdfs_info(sb)); -- --#ifdef OLD_KERNEL -- MOD_DEC_USE_COUNT; --#endif -- - } - - /************************************************************************/ - --#ifdef OLD_KERNEL --static int cdfs_statfs(struct super_block *sb, struct statfs *buf) { -- cd * this_cd = cdfs_info(sb); --#else --#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,18) - static int cdfs_statfs(struct dentry *d, struct kstatfs *buf) { - cd * this_cd = cdfs_info(d->d_sb); --#else --static int cdfs_statfs(struct super_block *sb, struct kstatfs *buf) { -- cd * this_cd = cdfs_info(sb); --#endif --#endif - PRINT("rmfs_statfs\n"); - - buf->f_type = CDFS_MAGIC; -@@ -460,11 +397,7 @@ - - /************************************************************************/ - --#ifdef OLD_KERNEL --static struct dentry * cdfs_lookup(struct inode *dir, struct dentry *dentry){ --#else - static struct dentry * cdfs_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd){ --#endif - struct inode * inode; - int i; - cd * this_cd = cdfs_info(dir->i_sb); -@@ -480,15 +413,9 @@ - /* Use goto and read inode with iget()/cdfs_iget() */ - /* Thanks to David Howells for patch and Master class in his mail */ - found: --#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,24) - inode = cdfs_iget(dir->i_sb, i); - if (IS_ERR(inode)) - return ERR_CAST(inode); --#else -- inode = iget(dir->i_sb, i); -- if (!inode) -- return ERR_PTR(-ENOMEM); --#endif - d_add(dentry, inode); - return NULL; - } -@@ -529,12 +456,8 @@ - i->i_fop = &cdfs_dir_operations; - } else { /* file */ - i->i_size = this_cd->track[i->i_ino].size; --#ifdef OLD_KERNEL -- i->i_mtime = i->i_atime = i->i_ctime = this_cd->track[i->i_ino].time; --#else - i->i_mtime.tv_sec = i->i_atime.tv_sec = i->i_ctime.tv_sec = this_cd->track[i->i_ino].time; - i->i_mtime.tv_nsec = i->i_atime.tv_nsec = i->i_ctime.tv_nsec = 0; --#endif - i->i_mode = this_cd->mode; - if ((this_cd->track[i->i_ino].type==DATA) && this_cd->track[i->i_ino].iso_size) { - i->i_fop = &cdfs_cddata_file_operations; -@@ -587,33 +510,21 @@ - /******************************************************************/ - - static struct super_operations cdfs_ops = { --#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,25) -- .read_inode = cdfs_read_inode, --#endif - .put_super = cdfs_umount, - .statfs = cdfs_statfs - }; - --#ifdef OLD_KERNEL --static DECLARE_FSTYPE_DEV(cdfs_fs_type, FSNAME, cdfs_mount); --#else --#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,18) --static int cdfs_get_sb(struct file_system_type *fs_type, int flags, const char *dev_name, void *data, struct vfsmount *mnt) { -- return get_sb_bdev(fs_type, flags, dev_name, data, cdfs_fill_super, mnt); --#else --static struct super_block *cdfs_get_sb(struct file_system_type *fs_type, int flags, const char *dev_name, void *data) { -- return get_sb_bdev(fs_type, flags, dev_name, data, cdfs_fill_super); --#endif --} -+//static int cdfs_get_sb(struct file_system_type *fs_type, int flags, const char *dev_name, void *data, struct vfsmount *mnt) { -+// return get_sb_bdev(fs_type, flags, dev_name, data, cdfs_fill_super, mnt); -+//} - - static struct file_system_type cdfs_fs_type = { - .owner = THIS_MODULE, - .name = "cdfs", -- .get_sb = cdfs_get_sb, -+// .get_sb = cdfs_get_sb, - .kill_sb = kill_block_super, - .fs_flags = FS_REQUIRES_DEV - }; --#endif - - /******************************************************/ - -@@ -621,10 +532,6 @@ - MODULE_DESCRIPTION("CDfs: a CD filesystem"); - MODULE_LICENSE("GPL"); - --#ifdef OLD_KERNEL --EXPORT_NO_SYMBOLS; --#endif -- - /******************************************************************/ - - static int __init cdfs_init(void) { -@@ -676,11 +583,7 @@ - - if (!options) return; - --#ifdef OLD_KERNEL -- for (this_char = strtok(options,","); this_char; this_char = strtok(NULL,",")) { --#else - while ((this_char = strsep(&options,",")) != NULL) { --#endif - - if (!strcmp(this_char,"single")) - this_cd->single=TRUE; diff --git a/community-testing/cdfs/cdfs.install b/community-testing/cdfs/cdfs.install deleted file mode 100644 index 3693d60ed..000000000 --- a/community-testing/cdfs/cdfs.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - /sbin/depmod -a -} - -post_upgrade() { - /sbin/depmod -a -} - -post_remove() { - /sbin/depmod -a -} diff --git a/community-testing/clipgrab/PKGBUILD b/community-testing/clipgrab/PKGBUILD deleted file mode 100644 index df3c57383..000000000 --- a/community-testing/clipgrab/PKGBUILD +++ /dev/null @@ -1,28 +0,0 @@ -# Contributor: thacrazze <thacrazze|googlemail|com> -# Maintainer: Stefan Husmann <stefan-husmann@t-online.de> -pkgname=clipgrab -pkgver=3.1.0.2 -pkgrel=2 -pkgdesc='A video downloader and converter for YouTube, Veoh, DailyMotion, MyVideo, ...' -arch=('i686' 'x86_64') -url='http://clipgrab.de/' -license=('GPL') -depends=('qt' 'qtwebkit') -optdepends=('ffmpeg: for some encodings') -source=(http://clipgrab.de/download/${pkgname}-${pkgver}.tar.bz2 ${pkgname}.png ${pkgname}.desktop) -md5sums=('1250e1fb29cd88b7ce1a37d937de0146' - 'ef030502ae0922e632742f47283313f4' - '9a141791f6952917c441050c3dac81ce') - -build() { - cd $srcdir/$pkgname-$pkgver - qmake && make -} -package() { - cd $srcdir/$pkgname-$pkgver - install -Dm755 ${pkgname} $pkgdir/usr/bin/${pkgname} - install -Dm644 $srcdir/${pkgname}.png \ - $pkgdir/usr/share/pixmaps/${pkgname}.png - install -Dm644 $srcdir/${pkgname}.desktop \ - ${pkgdir}/usr/share/applications/${pkgname}.desktop -} diff --git a/community-testing/clipgrab/clipgrab.desktop b/community-testing/clipgrab/clipgrab.desktop deleted file mode 100644 index dad31cfdd..000000000 --- a/community-testing/clipgrab/clipgrab.desktop +++ /dev/null @@ -1,13 +0,0 @@ -[Desktop Entry] -Type=Application -Encoding=UTF-8 -Name=ClipGrab -GenericName=Video Downloader -GenericName[de]=Video-Downloader -Comment=Download videos and convert it -Comment[de]=Videos herunterladen und konvertieren -Icon=/usr/share/pixmaps/clipgrab.png -Exec=clipgrab -TryExec=clipgrab -Terminal=false -Categories=Qt;AudioVideo;Audio;Video; diff --git a/community-testing/clipgrab/clipgrab.png b/community-testing/clipgrab/clipgrab.png Binary files differdeleted file mode 100644 index 2573fed20..000000000 --- a/community-testing/clipgrab/clipgrab.png +++ /dev/null diff --git a/community-testing/expac/PKGBUILD b/community-testing/expac/PKGBUILD deleted file mode 100644 index ff83247d7..000000000 --- a/community-testing/expac/PKGBUILD +++ /dev/null @@ -1,26 +0,0 @@ -# $Id: PKGBUILD 56821 2011-10-13 19:47:47Z dreisner $ -# Maintainer: Dave Reisner <d@falconindy.com> - -pkgname=expac -pkgver=0.07 -pkgrel=1 -pkgdesc="pacman database extraction utility" -arch=('i686' 'x86_64') -url="http://github.com/falconindy/expac" -license=('GPL') -depends=('pacman') -makedepends=('perl') -source=("https://github.com/downloads/falconindy/$pkgname/$pkgname-$pkgver.tar.gz") -md5sums=('1bc637b733051827982db12db84643f2') - -build() { - cd "$srcdir/$pkgname-$pkgver" - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make PREFIX=/usr DESTDIR="$pkgdir" install -} - -# vim: ft=sh syn=sh diff --git a/community-testing/fatrat/PKGBUILD b/community-testing/fatrat/PKGBUILD deleted file mode 100644 index b1f6021ac..000000000 --- a/community-testing/fatrat/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 57223 2011-10-24 20:32:21Z andrea $ -# Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com> - -pkgname=fatrat -pkgver=1.1.3 -pkgrel=6 -pkgdesc="QT4 based download manager with support for HTTP, FTP, SFTP, BitTorrent, rapidshare and more" -arch=('i686' 'x86_64') -url="http://fatrat.dolezel.info/" -license=('GPL') -depends=('gloox' 'qt' 'libtorrent-rasterbar' 'qtwebkit') -optdepends=('geoip: GeoIP support') -makedepends=('asio' 'cmake') -source=(http://www.dolezel.info/download/data/fatrat/fatrat-$pkgver.tar.gz) -md5sums=('6d4a00cdd0b59a05b1521184508d4637') - -build() { - cd $pkgname-$pkgver - - export CXXFLAGS="${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=2" - - cmake \ - -DWITH_EVERYTHING=ON \ - -DCMAKE_INSTALL_PREFIX=/usr \ - . - - make -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: diff --git a/community-testing/gambas3/PKGBUILD b/community-testing/gambas3/PKGBUILD deleted file mode 100644 index 5fcce3d22..000000000 --- a/community-testing/gambas3/PKGBUILD +++ /dev/null @@ -1,1097 +0,0 @@ -# $Id: PKGBUILD 57734 2011-11-01 19:55:59Z lcarlier $ -# Maintainer: Laurent Carlier <lordheavym@gmail.com> - -pkgbase=gambas3 -pkgname=('gambas3-runtime' 'gambas3-devel' 'gambas3-ide' 'gambas3-script' 'gambas3-examples' 'gambas3-gb-cairo' 'gambas3-gb-chart' - 'gambas3-gb-dbus' 'gambas3-gb-compress' 'gambas3-gb-crypt' 'gambas3-gb-db' 'gambas3-gb-db-form' 'gambas3-gb-db-mysql' - 'gambas3-gb-db-odbc' 'gambas3-gb-db-postgresql' 'gambas3-gb-db-sqlite2' 'gambas3-gb-db-sqlite3' - 'gambas3-gb-desktop' 'gambas3-gb-eval-highlight' 'gambas3-gb-form' - 'gambas3-gb-form-dialog' 'gambas3-gb-form-mdi' 'gambas3-gb-form-stock' 'gambas3-gb-gtk' 'gambas3-gb-gui' 'gambas3-gb-image' - 'gambas3-gb-image-effect' 'gambas3-gb-image-imlib' 'gambas3-gb-image-io' 'gambas3-gb-net' 'gambas3-gb-net-curl' - 'gambas3-gb-net-smtp' 'gambas3-gb-opengl' 'gambas3-gb-opengl-glu' 'gambas3-gb-opengl-glsl' 'gambas3-gb-option' 'gambas3-gb-pcre' - 'gambas3-gb-pdf' 'gambas3-gb-qt4' 'gambas3-gb-qt4-ext' 'gambas3-gb-qt4-opengl' 'gambas3-gb-qt4-webkit' - 'gambas3-gb-report' 'gambas3-gb-sdl' 'gambas3-gb-sdl-sound' 'gambas3-gb-settings' 'gambas3-gb-signal' - 'gambas3-gb-v4l' 'gambas3-gb-vb' 'gambas3-gb-xml' 'gambas3-gb-xml-rpc' 'gambas3-gb-xml-xslt' 'gambas3-gb-web') -pkgver=2.99.6 -pkgrel=2 -pkgdesc="A free development environment based on a Basic interpreter." -arch=('i686' 'x86_64') -url="http://gambas.sourceforge.net/" -license=('GPL') -groups=('gambas3') -makedepends=('intltool' 'mysql' 'postgresql' 'libffi' 'bzip2' 'glib2' 'v4l-utils' - 'zlib' 'mesa' 'libgl' 'glew' 'xdg-utils' 'gtk2' 'imlib2' 'gdk-pixbuf2' 'qtwebkit' - 'postgresql-libs' 'libmysqlclient' 'unixodbc' 'sqlite2' 'sqlite3' 'librsvg' - 'curl' 'poppler-glib' 'sdl_mixer' 'sdl_ttf' 'libxtst' 'pcre' - 'libxcursor' 'libsm' 'dbus-core' 'libxml2' 'libxslt' 'libgnome-keyring') -options=('!emptydirs' '!makeflags') -source=("http://downloads.sourceforge.net/gambas/${pkgbase}-${pkgver}.tar.bz2" - 'gambas3-script.install' 'gambas3-runtime.install') -md5sums=('746aaae5494c4b267bdae802c5c006d5' - 'b284be39d147ec799f1116a6abc068b4' - 'b5cc403990f31b8ea1c5cf37366d3d29') - -build() { - cd ${srcdir}/${pkgbase}-${pkgver} - - ./reconf-all - ./configure --prefix=/usr -C - - make bindir=${pkgdir}/usr/bin -} - -package_gambas3-runtime() { - depends=('libffi' 'xdg-utils') - pkgdesc="Runtime environment" - install=gambas3-runtime.install - - cd ${srcdir}/${pkgbase}-${pkgver}/main/gbc - make DESTDIR="${pkgdir}" install - - cd ../gbx - make DESTDIR="${pkgdir}" install - cd ../lib/debug - make DESTDIR="${pkgdir}" install - cd ../eval - make DESTDIR="${pkgdir}" install - cd ../draw - make DESTDIR="${pkgdir}" install - install -D -m644 ../gb.component \ - ${pkgdir}/usr/lib/gambas3 - - cd ${srcdir}/${pkgbase}-${pkgver}/main - ln -s gbx3 ${pkgdir}/usr/bin/gbr3 - gbc/gbi3 -r ${pkgdir}/usr gb - rm -f ${pkgdir}/usr/lib/gambas3/gb.{so*,la} - - ## needed for postinst with xdg-utils - install -d -m755 ${pkgdir}/usr/share/gambas3/mime - install -D -m644 mime/* \ - ${pkgdir}/usr/share/gambas3/mime/ - install -d -m755 ${pkgdir}/usr/share/gambas3/icons - install -D -m644 mime/application-x-gambas3.png \ - ${pkgdir}/usr/share/gambas3/icons/application-x-gambas3.png - - cd gbc - make DESTDIR="${pkgdir}" uninstall -} - -package_gambas3-devel() { - depends=('gambas3-runtime') - pkgdesc="Development environment" - - cd ${srcdir}/${pkgbase}-${pkgver}/main/gbc - make DESTDIR="${pkgdir}" install -} - -package_gambas3-ide() { - depends=('gambas3-devel' 'gambas3-gb-db-form' 'gambas3-gb-desktop' 'gambas3-gb-eval-highlight' - 'gambas3-gb-form-dialog' 'gambas3-gb-settings' 'gambas3-gb-form-mdi' 'gambas3-gb-image-effect' - 'gambas3-gb-qt4-ext' 'gambas3-gb-qt4-webkit') - pkgdesc="Integrated Development Environment" - - cd ${srcdir}/${pkgbase}-${pkgver} - make XDG_UTILS='' DESTDIR="${pkgdir}" install - -#!! with the ide !! - install -D -m644 ${srcdir}/${pkgbase}-${pkgver}/app/desktop/gambas3.desktop \ - ${pkgdir}/usr/share/applications/gambas3.desktop - install -D -m644 ${srcdir}/${pkgbase}-${pkgver}/app/desktop/gambas3.png \ - ${pkgdir}/usr/share/pixmaps/gambas3.png - - rm -r ${pkgdir}/usr/bin/gb* - rm -r ${pkgdir}/usr/lib - rm -r ${pkgdir}/usr/share/gambas3 -} - -package_gambas3-script() { - depends=('gambas3-devel') - pkgdesc="Scripter and server programs support" - install=gambas3-script.install - - cd ${srcdir}/${pkgbase}-${pkgver} - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## needed for postinst with xdg-utils - cd ${srcdir}/${pkgbase}-${pkgver}/app/mime - install -d -m755 ${pkgdir}/usr/share/gambas3/mime - install -D -m644 *.xml ${pkgdir}/usr/share/gambas3/mime/ - install -D -m644 *.png ${pkgdir}/usr/share/gambas3/mime/ - ## - - rm -r ${pkgdir}/usr/bin/{gambas*,gb{[a-r]*,x*}} - rm -r ${pkgdir}/usr/lib - rm -r ${pkgdir}/usr/share/gambas3/[c-i]* -} - -package_gambas3-examples() { - depends=('gambas3-gb-cairo' 'gambas3-gb-chart' 'gambas3-gb-dbus' 'gambas3-gb-compress' 'gambas3-gb-crypt' 'gambas3-gb-db' - 'gambas3-gb-db-form' 'gambas3-gb-db-mysql' 'gambas3-gb-db-odbc' 'gambas3-gb-db-postgresql' 'gambas3-gb-db-sqlite2' - 'gambas3-gb-db-sqlite3' 'gambas3-gb-desktop' 'gambas3-gb-eval-highlight' 'gambas3-gb-form' 'gambas3-gb-form-dialog' - 'gambas3-gb-form-mdi' 'gambas3-gb-gtk' 'gambas3-gb-gui' 'gambas3-gb-image' 'gambas3-gb-image-effect' 'gambas3-gb-image-imlib' - 'gambas3-gb-image-io' 'gambas3-gb-net' 'gambas3-gb-net-curl' 'gambas3-gb-net-smtp' 'gambas3-gb-opengl' 'gambas3-gb-opengl-glsl' - 'gambas3-gb-option' 'gambas3-gb-pcre' 'gambas3-gb-pdf' 'gambas3-gb-qt4' 'gambas3-gb-qt4-ext' 'gambas3-gb-qt4-opengl' - 'gambas3-gb-qt4-webkit' 'gambas3-gb-report' 'gambas3-gb-sdl' 'gambas3-gb-sdl-sound' 'gambas3-gb-settings' 'gambas3-gb-signal' - 'gambas3-gb-v4l' 'gambas3-gb-vb' 'gambas3-gb-xml' 'gambas3-gb-xml-rpc' 'gambas3-gb-xml-xslt' 'gambas3-gb-web') - pkgdesc="Applications examples" - - cd ${srcdir}/${pkgbase}-${pkgver} - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - rm -r ${pkgdir}/usr/{bin,lib} - rm -r ${pkgdir}/usr/share/gambas3/{info,control,gb.sdl} -} - -package_gambas3-gb-cairo() { - depends=('gambas3-runtime' 'cairo') - pkgdesc="Cairo component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.cairo - make DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-chart() { - depends=('gambas3-gb-form') - pkgdesc="Chart component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/comp - make DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - rm -r ${pkgdir}/usr/share/gambas3/control - rm -r ${pkgdir}/usr/lib/gambas3/gb.[d-w]* - rm -r ${pkgdir}/usr/share/gambas3/info/gb.[d-w]* - ## -} - -package_gambas3-gb-compress() { - depends=('gambas3-runtime' 'bzip2' 'zlib') - pkgdesc="Compression support component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.compress.bzlib2 - make DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.compress.zlib - make DESTDIR="${pkgdir}" install - - ## Workaround for splitting - rm -r ${pkgdir}/usr/bin - rm -r ${pkgdir}/usr/lib/gambas3/{gb.component,gb.[d-v]*} - rm -r ${pkgdir}/usr/share/gambas3/info/gb.[d-v]* - ## -} - -package_gambas3-gb-crypt() { - depends=('gambas3-runtime') - pkgdesc="MD5/DES crypting component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.crypt - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-db() { - depends=('gambas3-runtime') - pkgdesc="Database access component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - ## Workaround for splitting - rm -r ${pkgdir}/usr/bin - rm -r ${pkgdir}/usr/lib/gambas3/{gb.comp*,gb.d{e,r}*,gb.[e-z]*} - rm -r ${pkgdir}/usr/share/gambas3/info/{gb.comp*,gb.de*,gb.[e-z]*} - ## -} - -package_gambas3-gb-db-form() { - depends=('gambas3-gb-db' 'gambas3-gb-form') - pkgdesc="Database form component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/comp - make DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - rm -r ${pkgdir}/usr/share/gambas3/control - rm -r ${pkgdir}/usr/lib/gambas3/gb.{chart*,[e-z]*} - rm -r ${pkgdir}/usr/share/gambas3/info/gb.{chart*,[e-z]*} - ## -} - -package_gambas3-gb-db-mysql() { - depends=('gambas3-gb-db' 'libmysqlclient') - pkgdesc="MySQL database access component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.db.mysql - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-db-odbc() { - depends=('gambas3-gb-db' 'unixodbc') - pkgdesc="ODBC database access component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.db.odbc - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-db-postgresql() { - depends=('gambas3-gb-db' 'postgresql-libs') - pkgdesc="PostgreSQL database access component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.db.postgresql - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-db-sqlite2() { - depends=('gambas3-gb-db' 'sqlite2') - pkgdesc="Sqlite2 database access component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.db.sqlite2 - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-db-sqlite3() { - depends=('gambas3-gb-db' 'sqlite3') - pkgdesc="Sqlite3 database access component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.db.sqlite3 - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-desktop() { - depends=('gambas3-gb-image' 'libsm' 'libxtst' 'libgnome-keyring') - pkgdesc="Desktop component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.desktop - make DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-dbus() { - depends=('gambas3-runtime' 'dbus-core') - pkgdesc="DBUS component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.dbus - make DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-eval-highlight() { - depends=('gambas3-runtime') - pkgdesc="Expression evaluator highlight component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/comp - make DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - rm -r ${pkgdir}/usr/lib/gambas3/gb.[f-z]* - rm -r ${pkgdir}/usr/share/gambas3/info/gb.[f-z]* - ## -} - -package_gambas3-gb-form() { - depends=('gambas3-gb-gui') - pkgdesc="Form component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.gtk - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/comp - make DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.gtk - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - rm -r ${pkgdir}/usr/share/gambas3/control/{gb.db*,gb.form.*,gb.report} - rm -r ${pkgdir}/usr/lib/gambas3/gb.{[c-e]*,[m-w]*,form.{d*,m*,s*}} - rm -r ${pkgdir}/usr/share/gambas3/info/gb.{[c-e]*,[m-w]*,form.{d*,m*,s*}} - ## -} - -package_gambas3-gb-form-dialog() { - depends=('gambas3-gb-form') - pkgdesc="Form dialog component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.gtk - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/comp - make DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.gtk - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - rm -r ${pkgdir}/usr/share/gambas3/control - rm -r ${pkgdir}/usr/lib/gambas3/gb.{[c-e]*,[m-w]*,form.{c*,g*,m*,s*}} - rm -r ${pkgdir}/usr/share/gambas3/info/gb.{[c-e]*,[m-w]*,form.{i*,l*,m*,s*}} - ## -} - -package_gambas3-gb-form-mdi() { - depends=('gambas3-gb-form') - pkgdesc="Form MDI component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.gtk - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/comp - make DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.gtk - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - rm -r ${pkgdir}/usr/share/gambas3/control/{gb.db*,gb.form,gb.report} - rm -r ${pkgdir}/usr/lib/gambas3/gb.{[c-e]*,[m-w]*,form.{c*,d*,g*,s*}} - rm -r ${pkgdir}/usr/share/gambas3/info/gb.{[c-e]*,[m-w]*,form.{i*,l*,d*,s*}} - ## -} - -package_gambas3-gb-form-stock() { - depends=('gambas3-runtime') - pkgdesc="Default stock icons component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.gtk - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/comp - make DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.gtk - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - rm -r ${pkgdir}/usr/lib/gambas3/gb.{eval*,[m-w]*} - rm -r ${pkgdir}/usr/share/gambas3/info/gb.{eval*,[m-w]*} - ## -} - -package_gambas3-gb-gtk() { - depends=('gambas3-gb-image' 'gtk2' 'librsvg') - pkgdesc="GTK+ toolkit component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.gtk - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-gui() { - depends=('gambas3-gb-qt4' 'gambas3-gb-gtk') - pkgdesc="Automatic gui toolkit chooser" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/main/lib/gui - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - rm -r ${pkgdir}/usr/bin - rm -r ${pkgdir}/usr/lib/gambas3/{gb.[c-e]*,gb.[i-z]*} - rm -r ${pkgdir}/usr/share/gambas3/info/{gb.[c-e]*,gb.[i-z]*} - ## -} - -package_gambas3-gb-image() { - depends=('gambas3-runtime') - pkgdesc="Image component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - ## cleanup the workaround - rm -r ${pkgdir}/usr/bin - rm -r ${pkgdir}/usr/lib/gambas3/{gb.[c-g]*,gb.image.e*,gb.[j-z]*} - rm -r ${pkgdir}/usr/share/gambas3/info/{gb.[c-g]*,gb.info,gb.image.e*,gb.[j-z]*} - ## -} - -package_gambas3-gb-image-effect() { - depends=('gambas3-gb-image') - pkgdesc="Image effect component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - ## cleanup the workaround - rm -r ${pkgdir}/usr/bin - rm -r ${pkgdir}/usr/lib/gambas3/{gb.[c-g]*,gb.image.{c*,l*,s*},gb.[j-z]*} - rm -r ${pkgdir}/usr/share/gambas3/info/{gb.[c-g]*,gb.info,gb.image.{i*,l*},gb.[j-z]*} - ## -} - -package_gambas3-gb-image-imlib() { - depends=('gambas3-gb-image' 'imlib2') - pkgdesc="Imlib component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.image.imlib - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-image-io() { - depends=('gambas3-gb-image' 'gdk-pixbuf2') - pkgdesc="Input/Output component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.image.io - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-net() { - depends=('gambas3-runtime') - pkgdesc="Network component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.net - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-net-curl() { - depends=('gambas3-gb-net' 'curl') - pkgdesc="Curl component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.net.curl - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-net-smtp() { - depends=('gambas3-runtime' 'glib2') - pkgdesc="SMTP component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.net.smtp - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-opengl() { - depends=('gambas3-runtime' 'libgl' 'glew') - pkgdesc="OpenGL component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.opengl - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/gb.opengl/src/glsl - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.opengl/src/glu - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-opengl-glu() { - depends=('gambas3-gb-opengl') - pkgdesc="GL Utility component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.opengl/src/glu - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-opengl-glsl() { - depends=('gambas3-gb-opengl') - pkgdesc="GLSL component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.opengl/src/glsl - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-option() { - depends=('gambas3-runtime') - pkgdesc="Getopt component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - ## cleanup the workaround - rm -r ${pkgdir}/usr/bin - rm -r ${pkgdir}/usr/lib/gambas3/{gb.[a-n]*,gb.[p-z]*} - rm -r ${pkgdir}/usr/share/gambas3/info/{gb.[a-n]*,gb.[p-z]*} - ## -} - -package_gambas3-gb-pcre() { - depends=('gambas3-runtime' 'pcre') - pkgdesc="PCRE component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.pcre - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-pdf() { - depends=('gambas3-runtime' 'poppler') - pkgdesc="PDF component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.pdf - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-qt4() { - depends=('gambas3-gb-image' 'qt') - pkgdesc="Qt4 toolkit component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4/src/ext - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4/src/opengl - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4/src/webkit - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-qt4-ext() { - depends=('gambas3-gb-qt4') - pkgdesc="Qt4 toolkit extended component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4/src/ext - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-qt4-opengl() { - depends=('gambas3-gb-qt4' 'libgl') - pkgdesc="Qt4 toolkit OpenGL component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4/src/opengl - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-qt4-webkit() { - depends=('gambas3-gb-qt4' 'qtwebkit') - pkgdesc="Qt4 toolkit webkit component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4/src/webkit - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-report() { - depends=('gambas3-gb-form' 'gambas3-gb-image-io') - pkgdesc="Report component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/comp - make DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.qt4 - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - rm -r ${pkgdir}/usr/share/gambas3/control/gb.[d-f]* - rm -r ${pkgdir}/usr/lib/gambas3/gb.{[c-m]*,[s-w]*} - rm -r ${pkgdir}/usr/share/gambas3/info/gb.{[c-m]*,[s-w]*} - ## -} - -package_gambas3-gb-sdl() { - depends=('gambas3-gb-image-io' 'sdl_ttf' 'libxcursor' 'glew' 'libgl') - pkgdesc="SDL component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.sdl - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-sdl-sound() { - depends=('gambas3-runtime' 'sdl_mixer') - pkgdesc="SDL sound component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.sdl.sound - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-settings() { - depends=('gambas3-runtime') - pkgdesc="Setting component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/comp - make DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - rm -r ${pkgdir}/usr/lib/gambas3/gb.{[c-r]*,[t-w]*} - rm -r ${pkgdir}/usr/share/gambas3/info/gb.{[c-r]*,[t-w]*} - ## -} - -package_gambas3-gb-signal() { - depends=('gambas3-runtime') - pkgdesc="Signal component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - ## cleanup the workaround - rm -r ${pkgdir}/usr/bin - rm -r ${pkgdir}/usr/lib/gambas3/{gb.[c-r]*,gb.[t-z]*,gb.so*} - rm -r ${pkgdir}/usr/share/gambas3/info/{gb.[c-r]*,gb.[t-z]*} - ## -} - -package_gambas3-gb-v4l() { - depends=('gambas3-runtime' 'v4l-utils' 'libjpeg' 'libpng') - pkgdesc="Video4linux component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.v4l - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-vb() { - depends=('gambas3-runtime') - pkgdesc="VB transitional component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - ## Workaround for splitting - rm -r ${pkgdir}/usr/bin - rm -r ${pkgdir}/usr/lib/gambas3/gb.[a-u]* - rm -r ${pkgdir}/usr/share/gambas3/info/gb.[a-u]* - ## -} - -package_gambas3-gb-xml() { - depends=('gambas3-runtime' 'libxml2') - pkgdesc="XML component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.xml - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/gb.xml/src/xslt - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.xml/src/rpc - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-xml-rpc() { - depends=('gambas3-gb-xml' 'gambas3-gb-net' 'gambas3-gb-net-curl') - pkgdesc="XML-RPC component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.net - make XDG_UTILS='' DESTDIR="${pkgdir}" install - cd ${srcdir}/${pkgbase}-${pkgver}/gb.net.curl - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.xml - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/gb.net - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/gb.net.curl - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - rm -r ${pkgdir}/usr/lib/gambas3/gb.xml.{[c-l]*,xslt*,so*} - rm -r ${pkgdir}/usr/share/gambas3/info/gb.xml.{[i-l]*,x*} - ## -} - -package_gambas3-gb-xml-xslt() { - depends=('gambas3-gb-xml' 'libxslt') - pkgdesc="XML-XSLT component" - - ## workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/gb.xml/src/xslt - make XDG_UTILS='' DESTDIR="${pkgdir}" install - - ## cleanup the workaround - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - ## -} - -package_gambas3-gb-web() { - depends=('gambas3-runtime') - pkgdesc="CGI component" - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" install - ## - - cd ${srcdir}/${pkgbase}-${pkgver}/comp - make DESTDIR="${pkgdir}" install - - ## Workaround for splitting - cd ${srcdir}/${pkgbase}-${pkgver}/main - make XDG_UTILS='' DESTDIR="${pkgdir}" uninstall - rm -r ${pkgdir}/usr/lib/gambas3/gb.[c-v]* - rm -r ${pkgdir}/usr/share/gambas3/info/gb.[c-v]* - ## -} diff --git a/community-testing/gambas3/gambas3-runtime.install b/community-testing/gambas3/gambas3-runtime.install deleted file mode 100644 index 6c8201a6a..000000000 --- a/community-testing/gambas3/gambas3-runtime.install +++ /dev/null @@ -1,10 +0,0 @@ -post_install() { - xdg-icon-resource install --context mimetypes --size 64 \ - /usr/share/gambas3/mime/application-x-gambas.png application-x-gambas3 - xdg-mime install /usr/share/gambas3/mime/application-x-gambas3.xml -} - -pre_remove() { - xdg-icon-resource uninstall --context mimetypes --size 64 application-x-gambas3 - xdg-mime uninstall /usr/share/gambas3/mime/application-x-gambas3.xml -} diff --git a/community-testing/gambas3/gambas3-script.install b/community-testing/gambas3/gambas3-script.install deleted file mode 100644 index 77c1aa52f..000000000 --- a/community-testing/gambas3/gambas3-script.install +++ /dev/null @@ -1,15 +0,0 @@ -post_install() { - xdg-icon-resource install --context mimetypes --size 64 \ - /usr/share/gambas3/mime/application-x-gambasscript.png application-x-gambasscript - xdg-icon-resource install --context mimetypes --size 64 \ - /usr/share/gambas3/mime/application-x-gambasserverpage.png application-x-gambasserverpage - xdg-mime install /usr/share/gambas3/mime/application-x-gambasscript.xml - xdg-mime install /usr/share/gambas3/mime/application-x-gambasserverpage.xml -} - -pre_remove() { - xdg-icon-resource uninstall --context mimetypes --size 64 application-x-gambasscript - xdg-icon-resource uninstall --context mimetypes --size 64 application-x-gambasserverpage - xdg-mime uninstall /usr/share/gambas3/mime/application-x-gambasscript.xml - xdg-mime uninstall /usr/share/gambas3/mime/application-x-gambasserverpage.xml -} diff --git a/community-testing/goldendict/PKGBUILD b/community-testing/goldendict/PKGBUILD deleted file mode 100644 index 7b64f04e8..000000000 --- a/community-testing/goldendict/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 57227 2011-10-24 20:32:42Z andrea $ -# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> -# Contributor: m0rph <m0rph.mailbox@gmail.com> - -pkgname=goldendict -pkgver=1.0.1 -pkgrel=5 -pkgdesc="Feature-rich dictionary lookup program" -arch=('i686' 'x86_64') -url="http://goldendict.berlios.de/" -license=('GPL3') -depends=('hunspell' 'libvorbis' 'libxtst' 'libzip' 'qtwebkit' 'phonon') -provides=('stardict') -changelog=$pkgname.changelog -source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver-src.tar.bz2 \ - $pkgname-paths.diff) -sha256sums=('b3fb0405a5edb38f02ef881b48c36e46e2eacf641b0caf8d99403f595a4be9a6' - '1dacae7b7a7d7c20a22b4595c07dbd65fdad134a0d4cf283312ea3bdb5f42589') - -build(){ - cd ${srcdir} - - patch -Np0 -i ${srcdir}/$pkgname-paths.diff - - qmake - make - qmake -} - -package() { - cd ${srcdir} - - make INSTALL_ROOT=${pkgdir} install - - #removing unneeded - rm -rf ${pkgdir}/usr/share/app-install -} diff --git a/community-testing/goldendict/goldendict-paths.diff b/community-testing/goldendict/goldendict-paths.diff deleted file mode 100644 index 812dfdb97..000000000 --- a/community-testing/goldendict/goldendict-paths.diff +++ /dev/null @@ -1,10 +0,0 @@ ---- goldendict.pro~ 2010-12-27 22:52:21.000000000 +0100 -+++ goldendict.pro 2010-12-27 22:52:21.000000000 +0100 -@@ -63,2 +63,2 @@ -- isEmpty( PREFIX ):PREFIX = /usr/local -- DEFINES += PROGRAM_DATA_DIR=\\\"$$PREFIX/share/apps/goldendict/\\\" -+ isEmpty( PREFIX ):PREFIX = /usr -+ DEFINES += PROGRAM_DATA_DIR=\\\"$$PREFIX/share/goldendict/\\\" -@@ -66 +66 @@ -- locale.path = $$PREFIX/share/apps/goldendict/locale/ -+ locale.path = $$PREFIX/share/goldendict/locale/ diff --git a/community-testing/goldendict/goldendict.changelog b/community-testing/goldendict/goldendict.changelog deleted file mode 100644 index 8ec311fe1..000000000 --- a/community-testing/goldendict/goldendict.changelog +++ /dev/null @@ -1,8 +0,0 @@ -2010-12-27 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * Update to major release 1.0.1 - -2010-02-16 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * FS#18350 fixed in 0.9.0-5 - -2009-06-21 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * Package moved to [community] in v0.9.0 diff --git a/community-testing/google-gadgets/PKGBUILD b/community-testing/google-gadgets/PKGBUILD deleted file mode 100644 index ee3646c7a..000000000 --- a/community-testing/google-gadgets/PKGBUILD +++ /dev/null @@ -1,158 +0,0 @@ -# $Id: PKGBUILD 57229 2011-10-24 20:32:57Z andrea $ -# Maintainer: Ray Rashif <schiv@archlinux.org> - -pkgbase=google-gadgets -pkgname=('google-gadgets-common' 'google-gadgets-gtk' 'google-gadgets-qt') -_realname=$pkgbase-for-linux -_basedir="$startdir/pkg/base" -pkgver=0.11.2 -_sover=1.0 -_sobump=0.0.0 -pkgrel=5 -arch=('i686' 'x86_64') -url="http://code.google.com/p/google-gadgets-for-linux/" -license=('APACHE') -makedepends=('gstreamer0.10-base-plugins' 'libwebkit' - 'desktop-file-utils' 'xdg-utils' - 'librsvg' 'curl' 'libsoup-gnome' - 'qt' - 'networkmanager' - 'zip' 'flex') -options=('!libtool') -source=("http://google-gadgets-for-linux.googlecode.com/files/$_realname-$pkgver.tar.bz2" - "wifi-types.patch") -md5sums=('279305553bcbf74f3e3615f6abc36a5e' - 'f0df71c60a174e9d629db87b8bd9e102') - -build() { - cd "$srcdir/$_realname-$pkgver" - - # Building thrice is expensive; - # we move files around instead - # - # xulrunner 2.0 is incompatible; - # we build without smjs-script/browser-element - - patch -p1 <$srcdir/wifi-types.patch - ./configure --prefix=/usr \ - --disable-werror \ - --disable-update-desktop-database \ - --disable-update-mime-database \ - --with-oem-brand=Arch \ - --with-ssl-ca-file=/etc/ssl/certs/ca-certificates.crt \ - --with-browser-plugins-dir=/usr/lib/mozilla/plugins \ - --disable-gtkmoz-browser-element \ - --disable-smjs-script-runtime - make -} - -package_google-gadgets-common() { - pkgdesc="Desktop widgets from Google (common files)" - install=$pkgbase-common.install - depends=('hicolor-icon-theme' 'shared-mime-info') - optdepends=('google-gadgets-gtk: GTK+ (full) UI' - 'google-gadgets-qt: Qt (partial) UI') - - cd "$srcdir/$_realname-$pkgver" - - make -j1 DESTDIR="$pkgdir/" install - - # we need to remove stuff in this package - cp -a "$pkgdir" "$_basedir" - - # do not force any removal; we want to know in case files change - cd "$pkgdir/usr" - rm -r bin - rm -r share/applications - - cd "$pkgdir/usr/lib/$pkgbase" - - # gtk-related - #rm gtkmoz-browser-child - rm ../lib*gtk* - rm modules/gtk*.so - - # qt-related - rm ../lib*qt* - rm modules/qt*.so -} - -package_google-gadgets-gtk() { - pkgdesc="Desktop widgets from Google (full GTK+ front-end)" - groups=('google-gadgets') - install=$pkgbase.install - depends=('google-gadgets-common' - 'desktop-file-utils' 'xdg-utils' - 'gstreamer0.10-base-plugins' 'libwebkit' 'libsoup-gnome' - 'librsvg' 'curl') - optdepends=('networkmanager: desktop integration') - - # install the gtk binary - cd "$_basedir" - install -Dm755 "usr/bin/ggl-gtk" "$pkgdir/usr/bin/ggl-gtk" - - # gtk-only browser stuff - #install -Dm755 usr/lib/$pkgbase/gtkmoz-browser-child \ - # "$pkgdir/usr/lib/$pkgbase/gtkmoz-browser-child" - - # now the gtk libraries - mkdir -p "$pkgdir/usr/lib/$pkgbase/modules" - - install -m755 usr/lib/$pkgbase/modules/gtk*.so \ - "$pkgdir/usr/lib/$pkgbase/modules/" - - install -m755 usr/lib/lib*gtk* "$pkgdir/usr/lib" - - # fix permissions and symlinks - find "$pkgdir/usr/lib" -name *.a -exec chmod 644 {} \; - - ln -sf /usr/lib/libggadget-gtk-$_sover.so.$_sobump \ - "$pkgdir/usr/lib/libggadget-gtk-$_sover.so" - - ln -sf /usr/lib/libggadget-gtk-$_sover.so.$_sobump \ - "$pkgdir/usr/lib/libggadget-gtk-$_sover.so.0" - - # freedesktop.org for gtk - install -Dm644 usr/share/applications/ggl-gtk.desktop \ - "$pkgdir/usr/share/applications/ggl-gtk.desktop" - - install -m644 usr/share/applications/ggl-designer.desktop \ - "$pkgdir/usr/share/applications/" -} - -package_google-gadgets-qt() { - pkgdesc="Desktop widgets from Google (partial Qt front-end)" - groups=('google-gadgets') - install=$pkgbase.install - depends=('google-gadgets-common' 'qt' - 'desktop-file-utils' 'xdg-utils' - 'gstreamer0.10-base-plugins' 'libwebkit') - optdepends=('networkmanager: desktop integration') - - # install the qt binary - cd "$_basedir" - install -Dm755 usr/bin/ggl-qt "$pkgdir/usr/bin/ggl-qt" - - # the qt libraries - mkdir -p "$pkgdir/usr/lib/$pkgbase/modules" - - install -m755 usr/lib/$pkgbase/modules/qt*.so \ - "$pkgdir/usr/lib/$pkgbase/modules/" - - install -m755 usr/lib/lib*qt* "$pkgdir/usr/lib/" - - # fix permissions and symlinks - find "$pkgdir/usr/lib" -name *.a -exec chmod 644 {} \; - - ln -sf /usr/lib/libggadget-qt-$_sover.so.$_sobump \ - "$pkgdir/usr/lib/libggadget-qt-$_sover.so" - - ln -sf /usr/lib/libggadget-qt-$_sover.so.$_sobump \ - "$pkgdir/usr/lib/libggadget-qt-$_sover.so.0" - - # freedesktop.org for qt - install -Dm644 usr/share/applications/ggl-qt.desktop \ - "$pkgdir/usr/share/applications/ggl-qt.desktop" -} - -# vim:set ts=2 sw=2 et: diff --git a/community-testing/google-gadgets/google-gadgets-common.install b/community-testing/google-gadgets/google-gadgets-common.install deleted file mode 100644 index 210cbc869..000000000 --- a/community-testing/google-gadgets/google-gadgets-common.install +++ /dev/null @@ -1,15 +0,0 @@ -post_install() { - echo "==> Updating desktop database..." - gtk-update-icon-cache --quiet usr/share/icons/hicolor - update-mime-database usr/share/mime &> /dev/null -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} - -# vim:set ts=2 sw=2 et: diff --git a/community-testing/google-gadgets/google-gadgets.changelog b/community-testing/google-gadgets/google-gadgets.changelog deleted file mode 100644 index 5b8f85a71..000000000 --- a/community-testing/google-gadgets/google-gadgets.changelog +++ /dev/null @@ -1,8 +0,0 @@ -25 Mar 2011 (GMT+8) Ray Rashif <schiv@archlinux.org> - - * 0.11.2-3: - xulrunner rebuild - - undepend on xulrunner (2.0 incompatible) - - disable smjs-script/browser-element - Cleaned up scriptlets (too many blank lines) - Added this changelog diff --git a/community-testing/google-gadgets/google-gadgets.install b/community-testing/google-gadgets/google-gadgets.install deleted file mode 100644 index fd88688fc..000000000 --- a/community-testing/google-gadgets/google-gadgets.install +++ /dev/null @@ -1,15 +0,0 @@ -post_install() { - echo "==> Updating desktop database..." - update-mime-database usr/share/mime &> /dev/null - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} - -# vim:set ts=2 sw=2 et: diff --git a/community-testing/google-gadgets/wifi-types.patch b/community-testing/google-gadgets/wifi-types.patch deleted file mode 100644 index be9383a61..000000000 --- a/community-testing/google-gadgets/wifi-types.patch +++ /dev/null @@ -1,36 +0,0 @@ -diff -wbBur google-gadgets-for-linux-0.11.2/extensions/linux_system_framework/network.cc google-gadgets-for-linux-0.11.2.my/extensions/linux_system_framework/network.cc ---- google-gadgets-for-linux-0.11.2/extensions/linux_system_framework/network.cc 2009-03-15 04:12:42.000000000 +0000 -+++ google-gadgets-for-linux-0.11.2.my/extensions/linux_system_framework/network.cc 2011-04-08 20:57:16.000000000 +0000 -@@ -23,17 +23,9 @@ - namespace framework { - namespace linux_system { - --#ifdef NM_DEVICE_TYPE_WIFI - static const int kDeviceTypeWifi = NM_DEVICE_TYPE_WIFI; --#else --static const int kDeviceTypeWifi = DEVICE_TYPE_802_11_WIRELESS; --#endif - --#ifdef NM_DEVICE_TYPE_ETHERNET - static const int kDeviceTypeEthernet = NM_DEVICE_TYPE_ETHERNET; --#else --static const int kDeviceTypeEthernet = DEVICE_TYPE_802_3_ETHERNET; --#endif - - static const int kDeviceTypeUnknown = 0; - -diff -wbBur google-gadgets-for-linux-0.11.2/extensions/linux_system_framework/wireless.cc google-gadgets-for-linux-0.11.2.my/extensions/linux_system_framework/wireless.cc ---- google-gadgets-for-linux-0.11.2/extensions/linux_system_framework/wireless.cc 2009-12-28 10:39:53.000000000 +0000 -+++ google-gadgets-for-linux-0.11.2.my/extensions/linux_system_framework/wireless.cc 2011-04-08 20:57:39.000000000 +0000 -@@ -77,11 +77,7 @@ - - using namespace ggadget::dbus; - --#ifdef NM_DEVICE_TYPE_WIFI - static const int kDeviceTypeWifi = NM_DEVICE_TYPE_WIFI; --#else --static const int kDeviceTypeWifi = DEVICE_TYPE_802_11_WIRELESS; --#endif - - // Defined in nm 0.7 - static const int kDeviceStateActivated = 8; diff --git a/community-testing/gpsbabel/PKGBUILD b/community-testing/gpsbabel/PKGBUILD deleted file mode 100644 index d68e1a290..000000000 --- a/community-testing/gpsbabel/PKGBUILD +++ /dev/null @@ -1,48 +0,0 @@ -# $Id: PKGBUILD 57231 2011-10-24 20:33:01Z andrea $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Maintainer: dibblethewrecker dibblethewrecker.at.jiwe.dot.org -# Contributor: William Rea <sillywilly@gmail.com> - -pkgname=gpsbabel -pkgver=1.4.2 -pkgrel=4 -pkgdesc="Reads, writes, and manipulates GPS waypoints in a variety of formats" -arch=('i686' 'x86_64') -url="http://www.gpsbabel.org" -license=('GPL') -depends=('libusb-compat' 'expat') -makedepends=('fop' 'qt' 'libxml2' 'libxslt' 'gtk2' 'lcms2' 'qtwebkit') -optdepends=('qt' 'qtwebkit') -options=('docs') -source=("gpsbabel-$pkgver.tar.gz::http://archlinux-stuff.googlecode.com/files/gpsbabel-$pkgver.tar.gz" - "gpsbabel.desktop::http://pkgs.fedoraproject.org/gitweb/?p=gpsbabel.git;a=blob_plain;f=gpsbabel.desktop;hb=HEAD") -md5sums=('76ea9f7852be2e98aa18976c4697ca93' - '7bdbd243e29a8831842d31c079f04c45') - -build() { - cd $srcdir/gpsbabel-$pkgver - ./configure --prefix=/usr - make - make doc - (cd gui && qmake && make) -} - -package() { - cd $srcdir/gpsbabel-$pkgver - make DESTDIR=$pkgdir install - - # GUI - install -Dm755 gui/objects/gpsbabelfe-bin ${pkgdir}/usr/bin/gpsbabelfe-bin - install -Dm644 gui/images/appicon.png $pkgdir/usr/share/pixmaps/gpsbabel.png - install -Dm644 $srcdir/gpsbabel.desktop $pkgdir/usr/share/applications/gpsbabel.desktop - - # Header install - mkdir -p $pkgdir/usr/include/gpsbabel - cp {defs.h,queue.h,gbtypes.h,filterdefs.h,cet.h,cet_util.h,garmin_tables.h} \ - $pkgdir/usr/include/gpsbabel - - # Doc install - mkdir -p $pkgdir/usr/share/doc/$pkgname - cp -r $srcdir/babelweb/* $pkgdir/usr/share/doc/$pkgname/ - cp README* $pkgdir/usr/share/doc/$pkgname/ -} diff --git a/community-testing/kadu/PKGBUILD b/community-testing/kadu/PKGBUILD deleted file mode 100644 index d28694770..000000000 --- a/community-testing/kadu/PKGBUILD +++ /dev/null @@ -1,28 +0,0 @@ -# $Id: PKGBUILD 57233 2011-10-24 20:33:05Z andrea $ -# Maintainer: Mateusz Herych -# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> - -pkgname=kadu -pkgver=0.10.1 -pkgrel=2 -pkgdesc="A Qt-based Jabber/XMPP and Gadu-Gadu client" -arch=('i686' 'x86_64') -url="http://www.kadu.net/" -license=('GPL') -depends=('libgadu' 'libxss' 'aspell' 'phonon' 'qca-ossl' 'libidn' 'libmpdclient' 'qtwebkit') -makedepends=('cmake' 'libao' 'libsndfile' 'libxtst' 'curl') -source=(http://www.kadu.net/download/stable/$pkgname-$pkgver.tar.bz2) -md5sums=('6211a9a9e02d645268cbf055892601a0') - -build() { - cd $srcdir/kadu-$pkgver - cmake . -DCMAKE_INSTALL_PREFIX=/usr - make -} - -package() { - cd $srcdir/kadu-$pkgver - make DESTDIR=$pkgdir install - rm -rf $pkgdir/usr/{lib,include}/{libgadu*,pkgconfig} - rm -rf $pkgdir/usr/share/kadu/{HISTORY,README} -} diff --git a/community-testing/kvirc/PKGBUILD b/community-testing/kvirc/PKGBUILD deleted file mode 100644 index 361089ccb..000000000 --- a/community-testing/kvirc/PKGBUILD +++ /dev/null @@ -1,24 +0,0 @@ -# $Id: PKGBUILD 57235 2011-10-24 20:33:11Z andrea $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> - -pkgname=kvirc -pkgver=4.0.4 -pkgrel=4 -pkgdesc="Qt-based IRC client" -url="http://www.kvirc.net" -depends=('python2' 'qt' 'libxss' 'qtwebkit') -arch=(i686 x86_64) -makedepends=('cmake') -license=('GPL') -options=("!libtool") -install=kvirc.install -source=(ftp://ftp.kvirc.de/pub/kvirc/$pkgver/source/kvirc-$pkgver.tar.bz2) -md5sums=('26fd24979ae4a29bac9309b3b0c98788') - -build() { - cd $srcdir/kvirc-$pkgver - [ $NOEXTRACT -eq 1 ] || cmake -DWANT_KDE4=OFF -DWANT_PERL=ON -DWANT_PHONON=OFF -DCMAKE_INSTALL_PREFIX=/usr . - make - make DESTDIR=$pkgdir install -} diff --git a/community-testing/kvirc/kvirc.install b/community-testing/kvirc/kvirc.install deleted file mode 100644 index 8f76d007f..000000000 --- a/community-testing/kvirc/kvirc.install +++ /dev/null @@ -1,13 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &>/dev/null - true -} - -post_upgrade() { - post_install -} - -pre_remove() { - xdg-icon-resource forceupdate --theme hicolor &>/dev/null - true -} diff --git a/community-testing/libraw/PKGBUILD b/community-testing/libraw/PKGBUILD deleted file mode 100644 index 6e1d86e2f..000000000 --- a/community-testing/libraw/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# $Id: PKGBUILD 57797 2011-11-03 07:00:23Z lcarlier $ -# Contributor: Ionut Biru <ibiru@archlinux.org> -# Contributor: Joeny Ang <ang(dot)joeny(at)gmail(dot)com> -# Maintainer: Brad Fanella <bradfanella@archlinux.us> - -pkgname=libraw -_pkgbasename=LibRaw -pkgver=0.14.3 -pkgrel=2 -pkgdesc="A library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)" -arch=('i686' 'x86_64') -url="http://www.libraw.org/" -license=('CDDL' 'LGPL' 'custom') -depends=('lcms') -options=('!makeflags') -source=(http://www.libraw.org/data/${_pkgbasename}-${pkgver}.tar.gz) -md5sums=('d8f81a52b0fada9d5bf7e659e21e3a57') - -build() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - - ./configure --prefix=/usr - make -} - -package() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - - make DESTDIR=${pkgdir} install -} diff --git a/community-testing/luminancehdr/PKGBUILD b/community-testing/luminancehdr/PKGBUILD deleted file mode 100644 index 0811c6aa9..000000000 --- a/community-testing/luminancehdr/PKGBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# $Id: PKGBUILD 57600 2011-10-31 12:01:12Z lcarlier $ -# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> -# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com> -# Contributor: Dmitry N. Shilov <stormblast@land.ru> - -pkgname=luminancehdr -pkgver=2.1.0 -pkgrel=4 -pkgdesc='Open source graphical user interface application that aims to provide a workflow for HDR imaging' -arch=('i686' 'x86_64') -url='http://qtpfsgui.sourceforge.net/' -license=('GPL') -depends=('exiv2' 'fftw' 'gsl' 'libraw' 'openexr' 'qt' 'qtwebkit') -optdepends=('hugin: align image stack functionality') -install=$pkgname.install -changelog=$pkgname.changelog -options=('!emptydirs') -source=(http://downloads.sourceforge.net/qtpfsgui/luminance-hdr-${pkgver}.tar.gz - luminance-hdr-2.1.0-libraw.patch) -sha256sums=('0b0f124ada6da62c379d6e4bd6fd150643115cb46f05c527c29113f475a5eeac' - 'd3be7458713693382b64a6a1fa766c14bc16be2ff9c5a06567c0e5335581151c') - -build() { - cd "${srcdir}/luminance-hdr-${pkgver}" - - # stolen from gentoo - patch -Np1 -i ../luminance-hdr-2.1.0-libraw.patch - - if [ ${CARCH} = i686 ]; then - sed -i 's/ -msse2//' project.pro - fi - - lrelease project.pro - qmake PREFIX=/usr - make -} - -package() { - cd "${srcdir}/luminance-hdr-${pkgver}" - - make INSTALL_ROOT="${pkgdir}" install -} diff --git a/community-testing/luminancehdr/luminance-hdr-2.1.0-libraw.patch b/community-testing/luminancehdr/luminance-hdr-2.1.0-libraw.patch deleted file mode 100644 index 8472a7422..000000000 --- a/community-testing/luminancehdr/luminance-hdr-2.1.0-libraw.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- luminance-hdr-2.1.0/src/Fileformat/pfsinraw.cpp.orig -+++ luminance-hdr-2.1.0/src/Fileformat/pfsinraw.cpp -@@ -94,7 +94,6 @@ - RawProcessor.set_progress_handler(cb, callback_data); - int ret; - -- OUT.filtering_mode = LIBRAW_FILTERING_AUTOMATIC; - OUT.output_bps = 16; - - //OUT.gamm[0] = 1/2.4; //sRGB diff --git a/community-testing/luminancehdr/luminancehdr.changelog b/community-testing/luminancehdr/luminancehdr.changelog deleted file mode 100644 index 378053ef5..000000000 --- a/community-testing/luminancehdr/luminancehdr.changelog +++ /dev/null @@ -1,33 +0,0 @@ -2011-08-21 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * luminancehdr 2.1.0-1 - -2011-05-01 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * luminancehdr 2.0.2-1 - -2010-10-19 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * exiv2 0.20 rebuild - -2010-10-17 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * Update to major release 2.0.1 - -2010-06-27 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * Package renamed to LuminanceHDR - * Update to major release 2.0.0 - -2010-03-09 Andrea Scarpino <andrea@archlinux.org> - * exiv2 0.19 rebuild - -2009-11-02 Biru Ionut <ionut@archlinux.ro> - * add translation and fix segfault on old i686 procesors - -2009-04-29 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * Update to major release v1.9.3 - -2009-04-04 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * Minor version (v1.9.2-3) update caused by exiv2 upgrade. - -2008-11-04 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * Minor version (v1.9.2-2) update caused by openexr upgrade. - -2008-09-17 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * Package moved to [community] diff --git a/community-testing/luminancehdr/luminancehdr.install b/community-testing/luminancehdr/luminancehdr.install deleted file mode 100644 index 279762804..000000000 --- a/community-testing/luminancehdr/luminancehdr.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true - update-desktop-database -q -} - -post_upgrade() { - post_install $1 -} - -post_remove() { - post_install $1 -} diff --git a/community-testing/musescore/PKGBUILD b/community-testing/musescore/PKGBUILD deleted file mode 100644 index 642ba03e0..000000000 --- a/community-testing/musescore/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# $Id: PKGBUILD 57239 2011-10-24 20:33:27Z andrea $ -# Maintainer: Stefan Husmann <stefan-husmann@t-online.de -# Contributor: Cristian Maureira <saint [at] archlinux.cl> -# Contributor: Dr.Egg <rwhite @ archlinux . us> - -pkgname=musescore -pkgver=1.1 -pkgrel=3 -pkgdesc="A music score editor written in Qt" -arch=('i686' 'x86_64') -url="http://www.musescore.org/en/" -license=('GPL') -depends=('qt' 'qtwebkit' 'libsndfile' 'qtscriptgenerator') -makedepends=('cmake' 'doxygen') -optdepends=('portaudio' 'jack') -install=musescore.install -source=("http://downloads.sourceforge.net/mscore/mscore-${pkgver}.tar.bz2" - 'paths.patch') -md5sums=('68b43af92093a16f7f074c0eb560a867' - 'e5011154d217f633f21b4bb70e589510') - -build() { - cd $srcdir/mscore-${pkgver} - export QT_PLUGINS_DIR=/usr/lib/qt/plugins - [ -d build ] && make clean - patch -p1 < $srcdir/paths.patch - sed -i 's+${Mscore_INSTALL_NAME}man+doc/mscore+' \ - "$srcdir"/mscore-$pkgver/mscore/manual/CMakeLists.txt - sed -i 's+BUILD_SCRIPTGEN TRUE+BUILD_SCRIPTGEN FALSE+' \ - "$srcdir"/mscore-$pkgver/mscore/CMakeLists.txt - sed -i 's+static_cast<const+static_cast<+' \ - $srcdir/mscore-$pkgver/mscore/mscore/exportxml.cpp - make PREFIX=/usr release -} -package() { - cd $srcdir/mscore-${pkgver} - make DESTDIR="$pkgdir" install -} diff --git a/community-testing/musescore/musescore.install b/community-testing/musescore/musescore.install deleted file mode 100644 index d6abb5470..000000000 --- a/community-testing/musescore/musescore.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/community-testing/musescore/paths.patch b/community-testing/musescore/paths.patch deleted file mode 100644 index 98bf4b3d5..000000000 --- a/community-testing/musescore/paths.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -Naur musescore-svn.orig//mscore/mscore/mscore.cpp musescore-svn.new//mscore/mscore/mscore.cpp ---- musescore-svn.orig//mscore/mscore/mscore.cpp 2010-06-16 23:10:27.000000000 +0200 -+++ musescore-svn.new//mscore/mscore/mscore.cpp 2010-06-16 23:13:59.000000000 +0200 -@@ -897,15 +897,15 @@ - if (debugMode) - printf("open handbook for language <%s>\n", qPrintable(lang)); - -- QFileInfo mscoreHelp(mscoreGlobalShare + QString("man/MuseScore-") + lang + QString(".pdf")); -+ QFileInfo mscoreHelp(mscoreGlobalShare + QString("../doc/musescore/MuseScore-") + lang + QString(".pdf")); - if (!mscoreHelp.isReadable()) { - if (debugMode) { - printf("cannot open doc <%s>\n", qPrintable(mscoreHelp.filePath())); - } - lang = lang.left(2); -- mscoreHelp.setFile(mscoreGlobalShare + QString("man/MuseScore-") + lang + QString(".pdf")); -+ mscoreHelp.setFile(mscoreGlobalShare + QString("../doc/mscore/MuseScore-") + lang + QString(".pdf")); - if(!mscoreHelp.isReadable()){ -- mscoreHelp.setFile(mscoreGlobalShare + QString("man/MuseScore-en.pdf")); -+ mscoreHelp.setFile(mscoreGlobalShare + QString("../doc/mscore/MuseScore-en.pdf")); - if (!mscoreHelp.isReadable()) { - QString info(tr("MuseScore handbook not found at: \n")); - info += mscoreHelp.filePath(); diff --git a/community-testing/mythtv/PKGBUILD b/community-testing/mythtv/PKGBUILD deleted file mode 100644 index 3808740f3..000000000 --- a/community-testing/mythtv/PKGBUILD +++ /dev/null @@ -1,82 +0,0 @@ -# $Id: PKGBUILD 57241 2011-10-24 20:33:41Z andrea $ -# Maintainer: Jonathan Conder <jonno.conder@gmail.com> -# Contributor: Giovanni Scafora <giovanni@archlinux.org> -# Contributor: Juergen Hoetzel <juergen@archlinux.org> -# Contributor: <kleptophobiac@gmail.com> -# Contributor: dorphell <dorphell@archlinux.org> - -pkgname=mythtv -pkgver=0.24.1 -pkgrel=3 -epoch=1 -pkgdesc="A Homebrew PVR project" -arch=('i686' 'x86_64') -url="http://www.mythtv.org/" -license=('GPL') -depends=('lame' 'libavc1394' 'libiec61883' 'libpulse' 'libvdpau' 'libxinerama' - 'libxvmc' 'lirc-utils' 'mesa' 'mysql-clients' 'mysql-python' - 'perl-dbd-mysql' 'perl-libwww' 'perl-net-upnp' 'python-lxml' 'qt' - 'qtwebkit' 'wget') -makedepends=('yasm') -optdepends=('xmltv: to download tv listings') -backup=('etc/conf.d/mythbackend') -install='mythtv.install' -source=("ftp://ftp.osuosl.org/pub/$pkgname/$pkgname-$pkgver.tar.bz2" - 'mythbackend.rc' - 'mythbackend.conf' - 'mythtv-v4l2-fix.patch' - 'build.patch') -md5sums=('6870c679619ec58456e76839745411d8' - 'feadcc9ad064d93d6dceab1efc0bd9ed' - 'bb8e4033d82428d827570fae9ba15e6a' - 'ba5c91df80f0d3f7563a873e71a3725c' - '3188962917e98c4e07818dccd64bc423') - -build() { - cd "$srcdir/$pkgname-$pkgver" - find 'bindings/python' 'contrib' -type f | xargs sed -i 's@^#!.*python$@#!/usr/bin/python2@' - - patch -Np2 -i ${srcdir}/mythtv-v4l2-fix.patch - patch -Np1 -i ${srcdir}/build.patch - - ARCH="${CARCH/_/-}" - ./configure --prefix=/usr --cpu="$ARCH" \ - --enable-mmx \ - --enable-audio-oss \ - --enable-audio-alsa \ - --disable-audio-jack \ - --enable-audio-pulse \ - --disable-altivec \ - --disable-distcc \ - --disable-ccache \ - --enable-vdpau \ - --enable-dvb \ - --dvb-path=/usr/include \ - --enable-lirc \ - --enable-joystick-menu \ - --enable-v4l \ - --enable-ivtv \ - --enable-xvmc \ - --enable-xvmcw \ - --enable-xvmc-vld \ - --enable-firewire \ - --enable-opengl-vsync \ - --enable-xrandr \ - --enable-xv \ - --enable-x11 \ - --with-bindings=perl,python \ - --python=python2 - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make INSTALL_ROOT="$pkgdir" install - - install -D -m755 "$srcdir/mythbackend.rc" "$pkgdir/etc/rc.d/mythbackend" - install -D -m644 "$srcdir/mythbackend.conf" "$pkgdir/etc/conf.d/mythbackend" - install -D -m644 'database/mc.sql' "$pkgdir/usr/share/mythtv/mc.sql" - - mkdir -p "$pkgdir/usr/share/mythtv" - cp -R 'contrib' "$pkgdir/usr/share/mythtv" -} diff --git a/community-testing/mythtv/build.patch b/community-testing/mythtv/build.patch deleted file mode 100644 index 35dccd618..000000000 --- a/community-testing/mythtv/build.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -Nru a/libs/libmythui/mythrender_opengl.cpp b/libs/libmythui/mythrender_opengl.cpp ---- a/libs/libmythui/mythrender_opengl.cpp 2011-05-16 08:57:52.000000000 +1200 -+++ b/libs/libmythui/mythrender_opengl.cpp 2011-10-23 15:05:33.178392264 +1300 -@@ -2,6 +2,8 @@ - #include "mythrender_opengl.h" - #include "mythxdisplay.h" - -+#include <GL/glu.h> -+ - #define LOC QString("OpenGL: ") - #define LOC_ERR QString("OpenGL Error: ") - -Binary files a/libs/libmythui/.mythrender_opengl.cpp.swp and b/libs/libmythui/.mythrender_opengl.cpp.swp differ diff --git a/community-testing/mythtv/mythbackend.conf b/community-testing/mythtv/mythbackend.conf deleted file mode 100644 index e004ae5bd..000000000 --- a/community-testing/mythtv/mythbackend.conf +++ /dev/null @@ -1,92 +0,0 @@ -#!/bin/bash -# -# Rename this file to: -# -# /etc/config.d/mythbackend -# -############################################################################### -# -# Copyright (c) by the MythTV Development Team. -# -# Derived from work by: -# -# Michael Thomson <linux at m-thomson dot net> -# Stu Tomlinson <stu at nosnilmot dot com> -# Axel Thimm <axel.thimm at atrpms dot net> -# Adopted for ArchLinux: -# Jürgen Hoetzel <juergen@archinux.org> -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -############################################################################### -# -# Config variables for the mythbackend startup script, which is usually -# located in /etc/rc.d/mythbackend -# -# When the startup script is executed, it sources this file if it exists, -# otherwise it will fall back on default values. -# -# Leave variables commented out to use default values in init script -# (/etc/rc.d/mythbackend). -# -# To override defaults, uncomment the relevant variable definition and -# edit as required. -# - -# -# User who should start the mythbackend processes -# -# Running mythbackend as non-root requires you to ensure that audio/video -# devices used for recording have suitable user permissions. One way -# to achieve this is to modify existing or create new udev rules which -# assign these devices to a non-root group with rw permissions and add -# your mythbackend user to that group. Be aware that console.perms can -# also affect device permissions and may need additional configuration. -# Running as non-root may also introduce increased process latency. -# -# MBE_USER='root' - -# -# Directory holding the mythbackend binary (empty means autodetect). -# -# MBE_DIR='' - -# -# Name of mythbackend binary. -# -# MBE_PROG='mythbackend' - -# -# Other startup options for mythbackend (see 'mythbackend --help' for a list). -# -# MBE_OPTIONS='' - -# -# Directory holding the mythbackend log file -# -# LOG_DIR='/var/log/mythtv' - -# -# Name of mythbackend log file. -# -# NOTE: If you are running as non-root take care to ensure the mythbackend user -# has permission to write to this log file. -# -# LOG_FILE='mythbackend.log' - -# -# Logging options for mythbackend (see 'mythbackend -v help' for a list) -# -# LOG_OPTS='' diff --git a/community-testing/mythtv/mythbackend.rc b/community-testing/mythtv/mythbackend.rc deleted file mode 100644 index 410e8de41..000000000 --- a/community-testing/mythtv/mythbackend.rc +++ /dev/null @@ -1,82 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -# Default values to use if none are supplied in the config file. - -# Running mythbackend as non-root requires you to ensure that audio/video -# devices used for recording have suitable user permissions. One way -# to achieve this is to modify existing or create new udev rules which -# assign these devices to a non-root group with rw permissions and add -# your mythbackend user to that group. Be aware that console.perms can -# also affect device permissions and may need additional configuration. -# Running as non-root may also introduce increased process latency. -# -# User who should start the mythbackend processes -MBE_USER='root' - -# Startup options for mythbackend -MBE_OPTIONS='' - -# Name of mythbackend log file -LOG_FILE='/var/log/mythbackend.log' - -# Logging options for mythbackend (empty means '-v important,general') -LOG_OPTS='' - -############################################################################### - -CONFIG_FILE=/etc/conf.d/mythbackend -PIDFILE=/var/run/mythbackend.pid - -if [[ -f ${CONFIG_FILE} ]]; then - . ${CONFIG_FILE} -fi - -pid="$(cat ${PIDFILE} 2>/dev/null || pidof mythbackend)"; - -# fix FS#11890 -mbe_user_home="$(getent passwd ${MBE_USER}|cut -d : -f 6)" - -case "$1" in - start) - stat_busy "Starting MythTV Backend" - - # already running ? - if [[ "${pid}" -gt 0 ]] && kill -0 "${pid}"; then - stat_fail - exit 1; - fi - touch ${PIDFILE} ${LOG_FILE} - chown "$MBE_USER" ${PIDFILE} ${LOG_FILE} - if su "$MBE_USER" -c "HOME=${mbe_user_home} mythbackend \ - --daemon \ - --logfile $LOG_FILE $LOG_OPTS \ - --pidfile ${PIDFILE} $MBE_OPTIONS"; - then - add_daemon mythbackend - stat_done - else - stat_fail - fi - ;; - - stop) - stat_busy "Stopping MythTV Backend" - if [[ "${pid}" -gt 0 ]] && kill $pid &>/dev/null; then - rm_daemon mythbackend - stat_done - rm ${PIDFILE} 2>/dev/null - else - stat_fail - fi - ;; - restart) - $0 stop - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac -exit 0 diff --git a/community-testing/mythtv/mythtv-v4l2-fix.patch b/community-testing/mythtv/mythtv-v4l2-fix.patch deleted file mode 100644 index e26e16615..000000000 --- a/community-testing/mythtv/mythtv-v4l2-fix.patch +++ /dev/null @@ -1,724 +0,0 @@ -diff --git a/mythtv/configure b/mythtv/configure -index 1efe803..7bcdf06 100755 ---- a/mythtv/configure -+++ b/mythtv/configure -@@ -109,7 +109,8 @@ Advanced options (experts only): - --disable-iptv disable support for recording RTSP/UDP/RTP streams - --disable-hdhomerun disable support for HDHomeRun boxes - --disable-v4l disable Video4Linux support -- --disable-ivtv disable ivtv support (PVR-x50) req. v4l support -+ --disable-v4l2 disable Video4Linux2 support -+ --disable-ivtv disable ivtv support (PVR-x50) req. v4l2 support - --disable-hdpvr disable HD-PVR support - --disable-dvb disable DVB support - --dvb-path=HDRLOC location of directory containing -@@ -1315,6 +1316,7 @@ MYTHTV_CONFIG_LIST=' - qtwebkit - quartz_video - v4l -+ v4l2 - valgrind - x11 - xrandr -@@ -1706,8 +1708,8 @@ audio_oss_deps_any="soundcard_h sys_soundcard_h" - dvb_deps="backend" - firewire_deps="backend" - iptv_deps="backend" --ivtv_deps="backend v4l" --hdpvr_deps="backend v4l" -+ivtv_deps="backend v4l2" -+hdpvr_deps="backend v4l2" - hdhomerun_deps="backend" - mpegtsraw_demuxer_deps="merge_libavformat_mpegts_c" - mythtranscode_deps="backend frontend" -@@ -1715,6 +1717,7 @@ opengl_deps_any="agl_h GL_gl_h darwin windows x11" - opengl_video_deps="opengl" - opengl_vsync_deps="opengl" - v4l_deps="backend linux_videodev_h linux_videodev2_h" -+v4l2_deps="backend linux_videodev2_h" - vdpau_deps="opengl vdpau_vdpau_h vdpau_vdpau_x11_h" - xrandr_deps="x11" - xv_deps="x11" -@@ -1933,6 +1936,7 @@ enable opengl_vsync - enable opengl_video - enable quartz_video - enable v4l -+enable v4l2 - enable x11 - enable xrandr - enable xv -@@ -3062,6 +3066,7 @@ EOF - fi - disable opengl_vsync - disable v4l -+ disable v4l2 - disable x11 - # Workaround compile errors from missing gmtime_r/localtime_r/uint def - CFLAGS=`echo $CFLAGS | sed 's/-D_POSIX_C_SOURCE=200112//'` -@@ -3106,6 +3111,7 @@ EOF - fi - disable symver - disable v4l -+ disable v4l2 - enable windows - disable x11 - ###### Standard ffmpeg configure stuff follows: -@@ -4375,6 +4381,7 @@ enabled stripping || strip="echo skipping strip" - - if enabled backend; then - echo "Video4Linux sup. ${v4l-no}" -+ echo "Video4Linux2 sup. ${v4l2-no}" - echo "ivtv support ${ivtv-no}" - echo "HD-PVR support ${hdpvr-no}" - echo "FireWire support ${firewire-no}" -diff --git a/mythtv/libs/libmythtv/NuppelVideoRecorder.cpp b/mythtv/libs/libmythtv/NuppelVideoRecorder.cpp -index 739634d..39e5956 100644 ---- a/mythtv/libs/libmythtv/NuppelVideoRecorder.cpp -+++ b/mythtv/libs/libmythtv/NuppelVideoRecorder.cpp -@@ -42,9 +42,13 @@ extern "C" { - #include "libswscale/swscale.h" - } - -+#if defined(USING_V4L) || defined(USING_V4L2) - #ifdef USING_V4L - #include <linux/videodev.h> -+#endif -+#ifdef USING_V4L2 - #include <linux/videodev2.h> -+#endif - - #include "go7007_myth.h" - -@@ -55,9 +59,9 @@ extern "C" { - extern "C" { - #include "vbitext/vbi.h" - } --#else // USING_V4l -+#else // USING_V4L || USING_V4L2 - #define VT_WIDTH 0 --#endif // USING_V4l -+#endif // USING_V4l || USING_V4L2 - - #define KEYFRAMEDIST 30 - -@@ -1019,7 +1023,7 @@ bool NuppelVideoRecorder::Open(void) - - void NuppelVideoRecorder::ProbeV4L2(void) - { --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - usingv4l2 = true; - - struct v4l2_capability vcap; -@@ -1049,7 +1053,7 @@ void NuppelVideoRecorder::ProbeV4L2(void) - QString driver = (char *)vcap.driver; - if (driver == "go7007") - go7007 = true; --#endif // USING_V4L -+#endif // USING_V4L || USING_V4L2 - } - - void NuppelVideoRecorder::StartRecording(void) -@@ -2460,7 +2464,7 @@ void NuppelVideoRecorder::doAudioThread(void) - audio_device->Close(); - } - --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - struct VBIData - { - NuppelVideoRecorder *nvr; -@@ -2634,9 +2638,9 @@ void NuppelVideoRecorder::FormatTeletextSubtitles(struct VBIData *vbidata) - act_text_buffer = 0; - textbuffer[act]->freeToEncode = 1; - } --#else // USING_V4L -+#else // USING_V4L || USING_V4L2 - void NuppelVideoRecorder::FormatTeletextSubtitles(struct VBIData *vbidata) {} --#endif // USING_V4L -+#endif // USING_V4L || USING_V4L2 - - void NuppelVideoRecorder::FormatCC(struct cc *cc) - { -@@ -2863,7 +2867,7 @@ void NuppelVideoRecorder::doVbiThread(void) - //VERBOSE(VB_RECORD, LOC + "vbi end"); - } - --#else // USING_V4L -+#else // USING_V4L - void NuppelVideoRecorder::doVbiThread(void) { } - #endif // USING_V4L - -diff --git a/mythtv/libs/libmythtv/analogsignalmonitor.cpp b/mythtv/libs/libmythtv/analogsignalmonitor.cpp -index 2a4f4c5..fa5823a 100644 ---- a/mythtv/libs/libmythtv/analogsignalmonitor.cpp -+++ b/mythtv/libs/libmythtv/analogsignalmonitor.cpp -@@ -6,7 +6,9 @@ - #include <sys/ioctl.h> - #include <poll.h> - -+#ifdef USING_V4L - #include <linux/videodev.h> -+#endif - - #include "mythverbose.h" - #include "analogsignalmonitor.h" -@@ -151,6 +153,7 @@ void AnalogSignalMonitor::UpdateValues(void) - } - else - { -+#ifdef USING_V4L - struct video_tuner tuner; - bzero(&tuner, sizeof(tuner)); - -@@ -163,6 +166,7 @@ void AnalogSignalMonitor::UpdateValues(void) - { - isLocked = tuner.signal; - } -+#endif - } - - { -diff --git a/mythtv/libs/libmythtv/cardutil.cpp b/mythtv/libs/libmythtv/cardutil.cpp -index 8852682..494f48a 100644 ---- a/mythtv/libs/libmythtv/cardutil.cpp -+++ b/mythtv/libs/libmythtv/cardutil.cpp -@@ -4,7 +4,7 @@ - - #include <algorithm> - --#if defined(USING_V4L) || defined(USING_DVB) -+#if defined(USING_V4L) || defined(USING_V4L2) || defined(USING_DVB) - #include <sys/ioctl.h> - #endif - -@@ -28,6 +28,8 @@ - - #ifdef USING_V4L - #include <linux/videodev.h> -+#endif -+#ifdef USING_V4L2 - #include <linux/videodev2.h> - #endif - -@@ -1455,15 +1457,15 @@ uint CardUtil::GetQuickTuning(uint cardid, const QString &input_name) - bool CardUtil::hasV4L2(int videofd) - { - (void) videofd; --#ifdef USING_V4L -+#ifdef USING_V4L2 - struct v4l2_capability vcap; - bzero(&vcap, sizeof(vcap)); - - return ((ioctl(videofd, VIDIOC_QUERYCAP, &vcap) >= 0) && - (vcap.capabilities & V4L2_CAP_VIDEO_CAPTURE)); --#else // if !USING_V4L -+#else // if !USING_V4L2 - return false; --#endif // !USING_V4L -+#endif // !USING_V4L2 - } - - bool CardUtil::GetV4LInfo( -@@ -1475,7 +1477,7 @@ bool CardUtil::GetV4LInfo( - if (videofd < 0) - return false; - --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - // First try V4L2 query - struct v4l2_capability capability; - bzero(&capability, sizeof(struct v4l2_capability)); -@@ -1487,11 +1489,13 @@ bool CardUtil::GetV4LInfo( - } - else // Fallback to V4L1 query - { -+#ifdef USING_V4L - struct video_capability capability; - if (ioctl(videofd, VIDIOCGCAP, &capability) >= 0) - card = QString::fromAscii((const char*)capability.name); -+#endif //USING_V4L - } --#endif // !USING_V4L -+#endif // !USING_V4L || USING_V4L2 - - if (!driver.isEmpty()) - driver.remove( QRegExp("\\[[0-9]\\]$") ); -@@ -1506,9 +1510,9 @@ InputNames CardUtil::ProbeV4LVideoInputs(int videofd, bool &ok) - InputNames list; - ok = false; - --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - bool usingv4l2 = hasV4L2(videofd); -- -+#ifdef USING_V4L2 - // V4L v2 query - struct v4l2_input vin; - bzero(&vin, sizeof(vin)); -@@ -1523,8 +1527,10 @@ InputNames CardUtil::ProbeV4LVideoInputs(int videofd, bool &ok) - ok = true; - return list; - } -+#endif - - // V4L v1 query -+#ifdef USING_V4L - struct video_capability vidcap; - bzero(&vidcap, sizeof(vidcap)); - if (ioctl(videofd, VIDIOCGCAP, &vidcap) != 0) -@@ -1552,15 +1558,15 @@ InputNames CardUtil::ProbeV4LVideoInputs(int videofd, bool &ok) - - list[i] = test.name; - } -- -+#endif - // Create an input on single input cards that don't advertise input - if (!list.size()) - list[0] = "Television"; - - ok = true; --#else // if !USING_V4L -+#else // if !USING_V4L || USING_V4L2 - list[-1] += QObject::tr("ERROR, Compile with V4L support to query inputs"); --#endif // !USING_V4L -+#endif // !USING_V4L || USING_V4L2 - return list; - } - -diff --git a/mythtv/libs/libmythtv/channelscan/channelscan_sm.cpp b/mythtv/libs/libmythtv/channelscan/channelscan_sm.cpp -index 832d0a8..e35b186 100644 ---- a/mythtv/libs/libmythtv/channelscan/channelscan_sm.cpp -+++ b/mythtv/libs/libmythtv/channelscan/channelscan_sm.cpp -@@ -1394,7 +1394,7 @@ const DVBChannel *ChannelScanSM::GetDVBChannel(void) const - - V4LChannel *ChannelScanSM::GetV4LChannel(void) - { --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - return dynamic_cast<V4LChannel*>(channel); - #else - return NULL; -diff --git a/mythtv/libs/libmythtv/channelscan/channelscanner.cpp b/mythtv/libs/libmythtv/channelscan/channelscanner.cpp -index 1595d6a..4d2b2cf 100644 ---- a/mythtv/libs/libmythtv/channelscan/channelscanner.cpp -+++ b/mythtv/libs/libmythtv/channelscan/channelscanner.cpp -@@ -342,7 +342,7 @@ void ChannelScanner::PreScanCommon( - channel = new DVBChannel(device); - #endif - --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - if (("V4L" == card_type) || ("MPEG" == card_type)) - channel = new V4LChannel(NULL, device); - #endif -diff --git a/mythtv/libs/libmythtv/channelscan/scanwizardconfig.cpp b/mythtv/libs/libmythtv/channelscan/scanwizardconfig.cpp -index 00fd9d3..70e3469 100644 ---- a/mythtv/libs/libmythtv/channelscan/scanwizardconfig.cpp -+++ b/mythtv/libs/libmythtv/channelscan/scanwizardconfig.cpp -@@ -27,14 +27,14 @@ static QString card_types(void) - cardTypes += "'DVB'"; - #endif // USING_DVB - --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - if (!cardTypes.isEmpty()) - cardTypes += ","; - cardTypes += "'V4L'"; - # ifdef USING_IVTV - cardTypes += ",'MPEG'"; - # endif // USING_IVTV --#endif // USING_V4L -+#endif // USING_V4L || USING_V4L2 - - #ifdef USING_IPTV - if (!cardTypes.isEmpty()) -diff --git a/mythtv/libs/libmythtv/libmythtv.pro b/mythtv/libs/libmythtv/libmythtv.pro -index 3d26e0a..ea06ee7 100644 ---- a/mythtv/libs/libmythtv/libmythtv.pro -+++ b/mythtv/libs/libmythtv/libmythtv.pro -@@ -119,7 +119,7 @@ cygwin:DEFINES += _WIN32 - using_valgrind:DEFINES += USING_VALGRIND - - # old libvbitext (Caption decoder) --using_v4l { -+using_v4l || using_v4l2 { - HEADERS += vbitext/cc.h vbitext/dllist.h vbitext/hamm.h vbitext/lang.h - HEADERS += vbitext/vbi.h vbitext/vt.h - SOURCES += vbitext/cc.cpp vbitext/vbi.c vbitext/hamm.c vbitext/lang.c -@@ -471,11 +471,17 @@ using_backend { - SOURCES += channelchangemonitor.cpp - - # Support for Video4Linux devices -- using_v4l { -+ using_v4l || using_v4l2 { - HEADERS += v4lchannel.h analogsignalmonitor.h - SOURCES += v4lchannel.cpp analogsignalmonitor.cpp - -- DEFINES += USING_V4L -+ using_v4l { -+ DEFINES += USING_V4L -+ } -+ -+ using_v4l2 { -+ DEFINES += USING_V4L2 -+ } - } - - # Support for cable boxes that provide Firewire out -diff --git a/mythtv/libs/libmythtv/signalmonitor.cpp b/mythtv/libs/libmythtv/signalmonitor.cpp -index 221efef..c199b3b 100644 ---- a/mythtv/libs/libmythtv/signalmonitor.cpp -+++ b/mythtv/libs/libmythtv/signalmonitor.cpp -@@ -23,7 +23,7 @@ extern "C" { - # include "dvbchannel.h" - #endif - --#ifdef USING_V4L -+#ifdef USING_V4L2 - # include "analogsignalmonitor.h" - # include "v4lchannel.h" - #endif -@@ -95,7 +95,7 @@ SignalMonitor *SignalMonitor::Init(QString cardtype, int db_cardnum, - } - #endif - --#ifdef USING_V4L -+#ifdef USING_V4L2 - if ((cardtype.toUpper() == "HDPVR")) - { - V4LChannel *chan = dynamic_cast<V4LChannel*>(channel); -diff --git a/mythtv/libs/libmythtv/tv_rec.cpp b/mythtv/libs/libmythtv/tv_rec.cpp -index b885eaa..3d9c7ad 100644 ---- a/mythtv/libs/libmythtv/tv_rec.cpp -+++ b/mythtv/libs/libmythtv/tv_rec.cpp -@@ -57,7 +57,7 @@ using namespace std; - - #include "channelgroup.h" - --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - #include "v4lchannel.h" - #endif - -@@ -206,7 +206,7 @@ bool TVRec::CreateChannel(const QString &startchannel) - } - else // "V4L" or "MPEG", ie, analog TV - { --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - channel = new V4LChannel(this, genOpt.videodev); - if (!channel->Open()) - return false; -@@ -1082,11 +1082,11 @@ bool TVRec::SetupRecorder(RecordingProfile &profile) - } - else - { --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - // V4L/MJPEG/GO7007 from here on - recorder = new NuppelVideoRecorder(this, channel); - recorder->SetOption("skipbtaudio", genOpt.skip_btaudio); --#endif // USING_V4L -+#endif // USING_V4L || USING_V4L2 - } - - if (recorder) -@@ -1292,11 +1292,11 @@ FirewireChannel *TVRec::GetFirewireChannel(void) - - V4LChannel *TVRec::GetV4LChannel(void) - { --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - return dynamic_cast<V4LChannel*>(channel); - #else - return NULL; --#endif // USING_V4L -+#endif // USING_V4L || USING_V4L2 - } - - /** \fn TVRec::EventThread(void*) -@@ -4137,7 +4137,7 @@ void TVRec::TuningNewRecorder(MPEGStreamData *streamData) - channel->GetCurrentName()); - } - --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - if (GetV4LChannel()) - { - channel->InitPictureAttributes(); -diff --git a/mythtv/libs/libmythtv/v4lchannel.cpp b/mythtv/libs/libmythtv/v4lchannel.cpp -index bc82b49..7aa47ef 100644 ---- a/mythtv/libs/libmythtv/v4lchannel.cpp -+++ b/mythtv/libs/libmythtv/v4lchannel.cpp -@@ -16,8 +16,12 @@ - #include <iostream> - using namespace std; - -+#ifdef USING_V4L - #include <linux/videodev.h> -+#endif -+#ifdef USING_V4L2 - #include <linux/videodev2.h> -+#endif - - // MythTV headers - #include "v4lchannel.h" -@@ -150,8 +154,10 @@ static int format_to_mode(const QString &fmt, int v4l_version) - { - if (fmt == "NTSC-JP") - return 6; -+#ifdef USING_V4L - else if (fmt.left(5) == "SECAM") - return VIDEO_MODE_SECAM; -+#endif - else if (fmt == "PAL-NC") - return 3; - else if (fmt == "PAL-M") -@@ -159,6 +165,7 @@ static int format_to_mode(const QString &fmt, int v4l_version) - else if (fmt == "PAL-N") - return 5; - // generics... -+#ifdef USING_V4L - else if (fmt.left(3) == "PAL") - return VIDEO_MODE_PAL; - else if (fmt.left(4) == "NTSC") -@@ -166,6 +173,7 @@ static int format_to_mode(const QString &fmt, int v4l_version) - else if (fmt.left(4) == "ATSC") - return VIDEO_MODE_NTSC; // We've dropped V4L ATSC support... - return VIDEO_MODE_NTSC; -+#endif - } - - VERBOSE(VB_IMPORTANT, -@@ -237,6 +245,7 @@ static QString mode_to_format(int mode, int v4l_version) - } - else if (1 == v4l_version) - { -+#ifdef USING_V4L - if (mode == VIDEO_MODE_NTSC) - return "NTSC"; - else if (mode == VIDEO_MODE_PAL) -@@ -249,6 +258,7 @@ static QString mode_to_format(int mode, int v4l_version) - return "PAL-N"; - else if (mode == 6) - return "NTSC-JP"; -+#endif - } - else - { -@@ -676,6 +686,7 @@ bool V4LChannel::Tune(uint frequency, QString inputname, - return true; - } - -+#ifdef USING_V4L - // Video4Linux version 1 tuning - uint freq = frequency / 62500; - ioctlval = ioctl(videofd, VIDIOCSFREQ, &freq); -@@ -687,6 +698,7 @@ bool V4LChannel::Tune(uint frequency, QString inputname, - .arg(device).arg(ioctlval).arg(strerror(errno))); - return false; - } -+#endif - - SetSIStandard(si_std); - -@@ -858,6 +870,7 @@ bool V4LChannel::SetInputAndFormat(int inputNum, QString newFmt) - - if (usingv4l1) - { -+#ifdef USING_V4L - VERBOSE(VB_CHANNEL, LOC + msg + "(v4l v1)"); - - // read in old settings -@@ -875,8 +888,9 @@ bool V4LChannel::SetInputAndFormat(int inputNum, QString newFmt) - { - VERBOSE(VB_IMPORTANT, LOC_ERR + msg + - "\n\t\t\twhile setting format (v4l v1)" + ENO); -- } -- else if (usingv4l2) -+ } else -+#endif -+ if (usingv4l2) - { - VERBOSE(VB_IMPORTANT, LOC + msg + - "\n\t\t\tSetting video mode with v4l version 1 worked"); -@@ -951,6 +965,7 @@ bool V4LChannel::SwitchToInput(int inputnum, bool setstarting) - return ok; - } - -+#ifdef USING_V4L - static unsigned short *get_v4l1_field( - int v4l2_attrib, struct video_picture &vid_pic) - { -@@ -970,6 +985,7 @@ static unsigned short *get_v4l1_field( - } - return NULL; - } -+#endif - - static int get_v4l2_attribute(const QString &db_col_name) - { -@@ -1067,6 +1083,7 @@ bool V4LChannel::InitPictureAttribute(const QString db_col_name) - } - - // V4L1 -+#ifdef USING_V4L - unsigned short *setfield; - struct video_picture vid_pic; - bzero(&vid_pic, sizeof(vid_pic)); -@@ -1087,7 +1104,7 @@ bool V4LChannel::InitPictureAttribute(const QString db_col_name) - VERBOSE(VB_IMPORTANT, loc_err + "failed to set controls." + ENO); - return false; - } -- -+#endif - return true; - } - -@@ -1154,6 +1171,7 @@ static int get_v4l2_attribute_value(int videofd, int v4l2_attrib) - - static int get_v4l1_attribute_value(int videofd, int v4l2_attrib) - { -+#ifdef USING_V4L - struct video_picture vid_pic; - bzero(&vid_pic, sizeof(vid_pic)); - -@@ -1167,6 +1185,7 @@ static int get_v4l1_attribute_value(int videofd, int v4l2_attrib) - unsigned short *setfield = get_v4l1_field(v4l2_attrib, vid_pic); - if (setfield) - return *setfield; -+#endif - - return -1; - } -@@ -1210,6 +1229,7 @@ static int set_v4l2_attribute_value(int videofd, int v4l2_attrib, int newvalue) - - static int set_v4l1_attribute_value(int videofd, int v4l2_attrib, int newvalue) - { -+#ifdef USING_V4L - unsigned short *setfield; - struct video_picture vid_pic; - bzero(&vid_pic, sizeof(vid_pic)); -@@ -1236,7 +1256,7 @@ static int set_v4l1_attribute_value(int videofd, int v4l2_attrib, int newvalue) - // ??? - return -1; - } -- -+#endif - return 0; - } - -diff --git a/mythtv/libs/libmythtv/v4lchannel.h b/mythtv/libs/libmythtv/v4lchannel.h -index b059c64..aa6d934 100644 ---- a/mythtv/libs/libmythtv/v4lchannel.h -+++ b/mythtv/libs/libmythtv/v4lchannel.h -@@ -4,11 +4,11 @@ - #define CHANNEL_H - - #include "dtvchannel.h" --#ifdef USING_V4L -+#ifdef USING_V4L2 - #include <linux/videodev2.h> // needed for v4l2_std_id type - #else - typedef uint64_t v4l2_std_id; --#endif //USING_V4L -+#endif //USING_V4L2 - - using namespace std; - -diff --git a/mythtv/libs/libmythtv/vbitext/vbi.c b/mythtv/libs/libmythtv/vbitext/vbi.c -index 15f8d85..4c50e8d 100644 ---- a/mythtv/libs/libmythtv/vbitext/vbi.c -+++ b/mythtv/libs/libmythtv/vbitext/vbi.c -@@ -14,8 +14,12 @@ - // compiling with -std=c99. We could remove this in the .pro file, - // but that would disable it for all .c files. - #undef __STRICT_ANSI__ -+#ifdef USING_V4L - #include <linux/videodev.h> -+#endif -+#ifdef USING_V4L2 - #include <linux/videodev2.h> -+#endif - - // vbitext headers - #include "vt.h" -@@ -29,8 +33,13 @@ static int rawbuf_size; // its current size - - - /***** bttv api *****/ -+#ifdef USING_V4L - #define BTTV_VBISIZE _IOR('v' , BASE_VIDIOCPRIVATE+8, int) -- -+#else // !USING_V4L -+#ifdef USING_V4L2 -+#define BTTV_VBISIZE _IOR('v' , BASE_VIDIOC_PRIVATE+8, int) -+#endif // USING_V4L2 -+#endif // !USING_V4L - - static void - error(const char *str, ...) -diff --git a/mythtv/libs/libmythtv/videosource.cpp b/mythtv/libs/libmythtv/videosource.cpp -index 5d7a508..635faeb 100644 ---- a/mythtv/libs/libmythtv/videosource.cpp -+++ b/mythtv/libs/libmythtv/videosource.cpp -@@ -45,7 +45,7 @@ using namespace std; - #include "dvbtypes.h" - #endif - --#ifdef USING_V4L -+#ifdef USING_V4L2 - #include <linux/videodev2.h> - #endif - -@@ -2012,7 +2012,7 @@ CaptureCardGroup::CaptureCardGroup(CaptureCard &parent) : - setTrigger(cardtype); - setSaveAll(false); - --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - addTarget("V4L", new V4LConfigurationGroup(parent)); - # ifdef USING_IVTV - addTarget("MPEG", new MPEGConfigurationGroup(parent)); -@@ -2020,7 +2020,7 @@ CaptureCardGroup::CaptureCardGroup(CaptureCard &parent) : - # ifdef USING_HDPVR - addTarget("HDPVR", new HDPVRConfigurationGroup(parent)); - # endif // USING_HDPVR --#endif // USING_V4L -+#endif // USING_V4L || USING_V4L2 - - #ifdef USING_DVB - addTarget("DVB", new DVBConfigurationGroup(parent)); -@@ -2201,7 +2201,7 @@ CardType::CardType(const CaptureCard &parent) : - - void CardType::fillSelections(SelectSetting* setting) - { --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - setting->addSelection( - QObject::tr("Analog V4L capture card"), "V4L"); - setting->addSelection( -@@ -2214,7 +2214,7 @@ void CardType::fillSelections(SelectSetting* setting) - setting->addSelection( - QObject::tr("H.264 encoder card (HD-PVR)"), "HDPVR"); - # endif // USING_HDPVR --#endif // USING_V4L -+#endif // USING_V4L || USING_V4L2 - - #ifdef USING_DVB - setting->addSelection( -@@ -2226,11 +2226,11 @@ void CardType::fillSelections(SelectSetting* setting) - QObject::tr("FireWire cable box"), "FIREWIRE"); - #endif // USING_FIREWIRE - --#ifdef USING_V4L -+#if defined(USING_V4L) || defined(USING_V4L2) - setting->addSelection( - QObject::tr("USB MPEG-4 encoder box (Plextor ConvertX, etc)"), - "GO7007"); --#endif // USING_V4L -+#endif // USING_V4L || USING_V4L2 - - #ifdef USING_HDHOMERUN - setting->addSelection( diff --git a/community-testing/mythtv/mythtv.install b/community-testing/mythtv/mythtv.install deleted file mode 100644 index c29a53454..000000000 --- a/community-testing/mythtv/mythtv.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - echo "See \"MythTV\" on the Archlinux Wiki for installation information - Extensive!!" -} - -post_upgrade() { - return -} - -post_remove() { - echo -e "NOTE: mysql database was not removed. To remove run:\nmysql -u root -e 'drop database mythconverg;'" -} diff --git a/community-testing/open-vm-tools-modules/PKGBUILD b/community-testing/open-vm-tools-modules/PKGBUILD deleted file mode 100644 index 41d09db91..000000000 --- a/community-testing/open-vm-tools-modules/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# $Id: PKGBUILD 57352 2011-10-26 12:09:45Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Krzysztof Raczkowski <raczkow@gmail.com> - -pkgname=open-vm-tools-modules -pkgver=2011.09.23 -_pkgsubver=491607 -pkgrel=2 -pkgdesc="The Open Virtual Machine Tools (open-vm-tools) are the open source implementation of VMware Tools" -arch=('i686' 'x86_64') -url="http://open-vm-tools.sourceforge.net/" -license=('GPL') -makedepends=('libdnet' 'icu' 'uriparser' 'linux-headers') -depends=("linux") -install=$pkgname.install -source=("http://downloads.sourceforge.net/open-vm-tools/open-vm-tools-$pkgver-${_pkgsubver}.tar.gz") -md5sums=('599342eee8d531b35ca1cc948b61868f') - -build() { - _kernver=`pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -` - KERNEL_RELEASE=`cat /lib/modules/extramodules-3.${_kernver}-ARCH/version` - - cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}" - [ $NOEXTRACT -eq 1 ] || ./configure --prefix=/usr \ - --without-x --with-kernel-release=$KERNEL_RELEASE - (cd modules && make modules) -} - -package() { - _kernver=`pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -` - depends=("linux>=3.${_kernver}" "linux<3.`expr ${_kernver} + 1`") - KERNEL_VERSION=`cat /lib/modules/extramodules-3.${_kernver}-ARCH/version` - msg "Kernel = $KERNEL_VERSION" - - cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}" - mkdir -p $pkgdir/lib/modules/extramodules-3.${_kernver}-ARCH/ - for MOD in `find -type f -name '*.ko'`; do - install -D -m644 $MOD $pkgdir/lib/modules/extramodules-3.${_kernver}-ARCH/ - done - sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='$KERNEL_VERSION'/" $startdir/$pkgname.install -} diff --git a/community-testing/open-vm-tools-modules/open-vm-tools-modules.install b/community-testing/open-vm-tools-modules/open-vm-tools-modules.install deleted file mode 100644 index 801d2c5b3..000000000 --- a/community-testing/open-vm-tools-modules/open-vm-tools-modules.install +++ /dev/null @@ -1,34 +0,0 @@ -KERNEL_VERSION='2.6.38-ARCH' - -post_install() { - depmod -a -v $KERNEL_VERSION > /dev/null 2>&1 - - VMXNET="install pcnet32 /sbin/modprobe -q --ignore-install vmxnet;" - VMXNET="$VMXNET /sbin/modprobe -q --ignore-install pcnet32 $CMDLINE_OPTS;" - VMXNET="$VMXNET /bin/true;" - - echo ">>> Enabling vmxnet driver in /etc/modprobe.d/modprobe.conf" - echo ">>> (this will disable pcnet32 driver)" - sed "$ a \\\n#VMware net driver\n$VMXNET" -i /etc/modprobe.d/modprobe.conf - echo - - echo ">>>" - echo ">>> If vmxnet driver doesn't handle your NIC, you have to manually" - echo ">>> disable loading of pcnet32 driver" - echo ">>>" -} - -post_upgrade() { - depmod -a -v $KERNEL_VERSION > /dev/null 2>&1 -} - -post_remove() { - depmod -a -v $KERNEL_VERSION > /dev/null 2>&1 - - echo ">>> Disabling vmxnet driver in /etc/modprobe.d/modprobe.conf" - sed "/VMware net driver/,+1 d" -i /etc/modprobe.d/modprobe.conf - - echo ">>>" - echo ">>> Remember to un-blacklist pcnet32 driver" - echo ">>>" -} diff --git a/community-testing/packagekit/PKGBUILD b/community-testing/packagekit/PKGBUILD deleted file mode 100644 index 107d17c51..000000000 --- a/community-testing/packagekit/PKGBUILD +++ /dev/null @@ -1,105 +0,0 @@ -# $Id: PKGBUILD 57602 2011-10-31 12:13:15Z jconder $ -# Maintainer: Jonathan Conder <jonno.conder@gmail.com> -pkgbase='packagekit' -pkgname=('packagekit' 'packagekit-qt' 'packagekit-qt2' 'packagekit-python') -pkgver=0.6.19 -pkgrel=2 -pkgdesc="A system designed to make installation and updates of packages easier." -arch=('i686' 'x86_64') -url="http://www.packagekit.org" -license=('GPL') -makedepends=('dbus-glib' 'gobject-introspection' 'gtk-doc' 'intltool' - 'networkmanager' 'pacman' 'pm-utils' 'polkit' 'python2' 'qt' - 'shared-mime-info' 'sqlite3' 'udev') -options=('!libtool') -source=("http://www.packagekit.org/releases/PackageKit-$pkgver.tar.xz" - 'alpm.patch') -sha256sums=('961c6408de08ebaf15c09e74afd06918d699be8974b5c35c2c9663e5b12b5223' - '5ae3330f28d98c2369fad2a1fb6f8c1edd95c096b8fb4f1b170de6e8b2b134d8') - -build() { - cd "$srcdir/PackageKit-$pkgver" - - patch -Np1 -i "$srcdir/alpm.patch" - - # TODO: remove when this is fixed upstream - find -name '*.moc' -print0 | xargs -0 rm - - sed -i 's@SUBDIRS = test@SUBDIRS =@' 'backends/Makefile.in' - sed -i 's@python @python2 @' 'lib/python/packagekit/Makefile.in' - sed -i 's@bin/python@bin/python2@' 'lib/python/packagekit/'*.py - - export PYTHON=/usr/bin/python2 - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --libexecdir=/usr/lib/PackageKit \ - --disable-static \ - --disable-gtk-doc \ - --disable-tests \ - --disable-local \ - --disable-browser-plugin \ - --disable-gstreamer-plugin \ - --disable-gtk-module \ - --disable-command-not-found \ - --disable-cron \ - --disable-debuginfo-install \ - --enable-pm-utils \ - --disable-dummy \ - --enable-alpm \ - --with-default-backend=alpm - make -s -} - -package_packagekit() { - backup=('var/lib/PackageKit/transactions.db' - 'etc/PackageKit/alpm.d/pacman.conf' - 'etc/PackageKit/alpm.d/repos.list') - depends=('dbus-glib' 'pacman>=4.0.0' 'pacman<4.1.0' 'polkit' - 'shared-mime-info' 'sqlite3' 'udev') - optdepends=('networkmanager') - install='packagekit.install' - - cd "$srcdir/PackageKit-$pkgver" - - make DESTDIR="$pkgdir" install - - rm -rf "$pkgdir/usr/include/PackageKit/packagekit-qt"* - rm -rf "$pkgdir/usr/lib/libpackagekit-qt"* - rm -rf "$pkgdir/usr/lib/pkgconfig/packagekit-qt"* - rm -rf "$pkgdir/usr/share/cmake" - - rm -rf "$pkgdir/usr/lib/python"* - rm -rf "$pkgdir/usr/share/PackageKit/website" - - mv "$pkgdir/etc/bash_completion.d/pk-completion.bash" \ - "$pkgdir/etc/bash_completion.d/pkcon" - touch "$pkgdir/var/log/PackageKit" -} - -package_packagekit-qt() { - depends=('packagekit' 'qt') - pkgdesc=('Qt bindings for PackageKit') - - cd "$srcdir/PackageKit-$pkgver/lib/packagekit-qt" - - make DESTDIR="$pkgdir" install -} - -package_packagekit-qt2() { - depends=('packagekit' 'qt') - pkgdesc=('Qt bindings for PackageKit') - - cd "$srcdir/PackageKit-$pkgver/lib/packagekit-qt2" - - make DESTDIR="$pkgdir" install -} - -package_packagekit-python() { - depends=('packagekit' 'python2') - pkgdesc=('Python bindings for PackageKit') - - cd "$srcdir/PackageKit-$pkgver/lib/python" - - make DESTDIR="$pkgdir" install -} diff --git a/community-testing/packagekit/alpm.patch b/community-testing/packagekit/alpm.patch deleted file mode 100644 index a6a6fcc0a..000000000 --- a/community-testing/packagekit/alpm.patch +++ /dev/null @@ -1,2991 +0,0 @@ -diff --git a/backends/alpm/Makefile.am b/backends/alpm/Makefile.am -index 5a5468a..d8c3dfc 100644 ---- a/backends/alpm/Makefile.am -+++ b/backends/alpm/Makefile.am -@@ -5,6 +5,7 @@ PK_BACKEND_REPO_FILE = $(confdir)/repos.list - PK_BACKEND_DEFAULT_PATH = "/bin:/usr/bin:/sbin:/usr/sbin" - PK_BACKEND_DEFAULT_ROOT = "/" - PK_BACKEND_DEFAULT_DBPATH = $(localstatedir)/lib/pacman/ -+PK_BACKEND_DEFAULT_GPGDIR = $(sysconfdir)/pacman.d/gnupg/ - PK_BACKEND_DEFAULT_CACHEDIR = $(localstatedir)/cache/pacman/pkg/ - PK_BACKEND_DEFAULT_LOGFILE = $(localstatedir)/log/pacman.log - -@@ -17,6 +18,7 @@ DEFS = -DPK_BACKEND_CONFIG_FILE=\"$(PK_BACKEND_CONFIG_FILE)\" \ - -DPK_BACKEND_DEFAULT_PATH=\"$(PK_BACKEND_DEFAULT_PATH)\" \ - -DPK_BACKEND_DEFAULT_ROOT=\"$(PK_BACKEND_DEFAULT_ROOT)\" \ - -DPK_BACKEND_DEFAULT_DBPATH=\"$(PK_BACKEND_DEFAULT_DBPATH)\" \ -+ -DPK_BACKEND_DEFAULT_GPGDIR=\"$(PK_BACKEND_DEFAULT_GPGDIR)\" \ - -DPK_BACKEND_DEFAULT_CACHEDIR=\"$(PK_BACKEND_DEFAULT_CACHEDIR)\" \ - -DPK_BACKEND_DEFAULT_LOGFILE=\"$(PK_BACKEND_DEFAULT_LOGFILE)\" \ - -DALPM_CACHE_PATH=\"$(ALPM_CACHE_PATH)\" \ -diff --git a/backends/alpm/pk-backend-alpm.c b/backends/alpm/pk-backend-alpm.c -index ba993f0..417714c 100644 ---- a/backends/alpm/pk-backend-alpm.c -+++ b/backends/alpm/pk-backend-alpm.c -@@ -26,6 +26,7 @@ - #include <sys/utsname.h> - - #include "pk-backend-alpm.h" -+#include "pk-backend-config.h" - #include "pk-backend-databases.h" - #include "pk-backend-error.h" - #include "pk-backend-groups.h" -@@ -35,7 +36,8 @@ PkBackend *backend = NULL; - GCancellable *cancellable = NULL; - static GStaticMutex mutex = G_STATIC_MUTEX_INIT; - --pmdb_t *localdb = NULL; -+alpm_handle_t *alpm = NULL; -+alpm_db_t *localdb = NULL; - - gchar *xfercmd = NULL; - alpm_list_t *holdpkgs = NULL; -@@ -162,7 +164,7 @@ out: - } - - static void --pk_backend_logcb (pmloglevel_t level, const gchar *format, va_list args) -+pk_backend_logcb (alpm_loglevel_t level, const gchar *format, va_list args) - { - gchar *output; - -@@ -176,12 +178,12 @@ pk_backend_logcb (pmloglevel_t level, const gchar *format, va_list args) - - /* report important output to PackageKit */ - switch (level) { -- case PM_LOG_DEBUG: -- case PM_LOG_FUNCTION: -+ case ALPM_LOG_DEBUG: -+ case ALPM_LOG_FUNCTION: - g_debug ("%s", output); - break; - -- case PM_LOG_WARNING: -+ case ALPM_LOG_WARNING: - g_warning ("%s", output); - pk_backend_output (backend, output); - break; -@@ -212,26 +214,21 @@ pk_backend_initialize_alpm (PkBackend *self, GError **error) - g_setenv ("HTTP_USER_AGENT", user_agent, FALSE); - g_free (user_agent); - -- g_debug ("initializing"); -- if (alpm_initialize () < 0) { -- g_set_error_literal (error, ALPM_ERROR, pm_errno, -- alpm_strerrorlast ()); -+ alpm = pk_backend_configure (PK_BACKEND_CONFIG_FILE, error); -+ if (alpm == NULL) { - return FALSE; - } - - backend = self; -- localdb = alpm_option_get_localdb (); -+ alpm_option_set_logcb (alpm, pk_backend_logcb); -+ -+ localdb = alpm_option_get_localdb (alpm); - if (localdb == NULL) { -- g_set_error (error, ALPM_ERROR, pm_errno, "[%s]: %s", "local", -- alpm_strerrorlast ()); -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error (error, ALPM_ERROR, errno, "[%s]: %s", "local", -+ alpm_strerror (errno)); - } - -- /* set some sane defaults */ -- alpm_option_set_logcb (pk_backend_logcb); -- alpm_option_set_root (PK_BACKEND_DEFAULT_ROOT); -- alpm_option_set_dbpath (PK_BACKEND_DEFAULT_DBPATH); -- alpm_option_set_logfile (PK_BACKEND_DEFAULT_LOGFILE); -- - return TRUE; - } - -@@ -240,17 +237,20 @@ pk_backend_destroy_alpm (PkBackend *self) - { - g_return_if_fail (self != NULL); - -- if (backend != NULL) { -- if (alpm_trans_get_flags () != -1) { -- alpm_trans_release (); -+ if (alpm != NULL) { -+ if (alpm_trans_get_flags (alpm) < 0) { -+ alpm_trans_release (alpm); - } -- alpm_release (); -+ alpm_release (alpm); -+ -+ alpm = NULL; - backend = NULL; - } - - FREELIST (syncfirsts); - FREELIST (holdpkgs); - g_free (xfercmd); -+ xfercmd = NULL; - } - - void -diff --git a/backends/alpm/pk-backend-alpm.h b/backends/alpm/pk-backend-alpm.h -index 23a2724..ecd6d0f 100644 ---- a/backends/alpm/pk-backend-alpm.h -+++ b/backends/alpm/pk-backend-alpm.h -@@ -28,7 +28,8 @@ - extern PkBackend *backend; - extern GCancellable *cancellable; - --extern pmdb_t *localdb; -+extern alpm_handle_t *alpm; -+extern alpm_db_t *localdb; - - extern gchar *xfercmd; - extern alpm_list_t *holdpkgs; -diff --git a/backends/alpm/pk-backend-config.c b/backends/alpm/pk-backend-config.c -index 21a4c54..a51a984 100644 ---- a/backends/alpm/pk-backend-config.c -+++ b/backends/alpm/pk-backend-config.c -@@ -28,29 +28,44 @@ - - #include "pk-backend-alpm.h" - #include "pk-backend-config.h" -+#include "pk-backend-databases.h" - #include "pk-backend-error.h" - --typedef struct { -- gboolean checkspace, ilovecandy, showsize, totaldl, usedelta, usesyslog; -+typedef struct -+{ -+ gboolean checkspace, ilovecandy, totaldl, usedelta, usesyslog, -+ verbosepkglists; - -- gchar *arch, *cleanmethod, *dbpath, *logfile, *root, *xfercmd; -+ gchar *arch, *cleanmethod, *dbpath, *gpgdir, *logfile, *root, -+ *xfercmd; - -- alpm_list_t *cachedirs, *holdpkgs, *ignoregrps, *ignorepkgs, -- *noextracts, *noupgrades, *syncfirsts; -+ alpm_list_t *cachedirs, *holdpkgs, *ignoregroups, *ignorepkgs, -+ *noextracts, *noupgrades, *syncfirsts; - -- alpm_list_t *repos; -- GHashTable *servers; -- GRegex *xrepo, *xarch; -+ alpm_list_t *repos; -+ GHashTable *servers; -+ GHashTable *levels; -+ GRegex *xrepo, *xarch; - } PkBackendConfig; - - static PkBackendConfig * - pk_backend_config_new (void) - { - PkBackendConfig *config = g_new0 (PkBackendConfig, 1); -+ alpm_siglevel_t *level = g_new0 (alpm_siglevel_t, 1); -+ - config->servers = g_hash_table_new_full (g_str_hash, g_str_equal, - g_free, NULL); -+ config->levels = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, -+ g_free); -+ -+ *level |= ALPM_SIG_PACKAGE | ALPM_SIG_PACKAGE_OPTIONAL; -+ *level |= ALPM_SIG_DATABASE | ALPM_SIG_DATABASE_OPTIONAL; -+ g_hash_table_insert (config->levels, g_strdup ("options"), level); -+ - config->xrepo = g_regex_new ("\\$repo", 0, 0, NULL); - config->xarch = g_regex_new ("\\$arch", 0, 0, NULL); -+ - return config; - } - -@@ -76,13 +91,14 @@ pk_backend_config_free (PkBackendConfig *config) - g_free (config->arch); - g_free (config->cleanmethod); - g_free (config->dbpath); -+ g_free (config->gpgdir); - g_free (config->logfile); - g_free (config->root); - g_free (config->xfercmd); - - FREELIST (config->cachedirs); - FREELIST (config->holdpkgs); -- FREELIST (config->ignoregrps); -+ FREELIST (config->ignoregroups); - FREELIST (config->ignorepkgs); - FREELIST (config->noextracts); - FREELIST (config->noupgrades); -@@ -92,6 +108,8 @@ pk_backend_config_free (PkBackendConfig *config) - g_hash_table_foreach_remove (config->servers, - pk_backend_config_servers_free, NULL); - g_hash_table_unref (config->servers); -+ g_hash_table_unref (config->levels); -+ - g_regex_unref (config->xrepo); - g_regex_unref (config->xarch); - } -@@ -113,14 +131,6 @@ pk_backend_config_set_ilovecandy (PkBackendConfig *config) - } - - static void --pk_backend_config_set_showsize (PkBackendConfig *config) --{ -- g_return_if_fail (config != NULL); -- -- config->showsize = TRUE; --} -- --static void - pk_backend_config_set_totaldl (PkBackendConfig *config) - { - g_return_if_fail (config != NULL); -@@ -144,19 +154,28 @@ pk_backend_config_set_usesyslog (PkBackendConfig *config) - config->usesyslog = TRUE; - } - --typedef struct { -- const gchar *name; -- void (*func) (PkBackendConfig *config); -+static void -+pk_backend_config_set_verbosepkglists (PkBackendConfig *config) -+{ -+ g_return_if_fail (config != NULL); -+ -+ config->verbosepkglists = TRUE; -+} -+ -+typedef struct -+{ -+ const gchar *name; -+ void (*func) (PkBackendConfig *config); - } PkBackendConfigBoolean; - - /* keep this in alphabetical order */ - static const PkBackendConfigBoolean pk_backend_config_boolean_options[] = { - { "CheckSpace", pk_backend_config_set_checkspace }, - { "ILoveCandy", pk_backend_config_set_ilovecandy }, -- { "ShowSize", pk_backend_config_set_showsize }, - { "TotalDownload", pk_backend_config_set_totaldl }, - { "UseDelta", pk_backend_config_set_usedelta }, - { "UseSyslog", pk_backend_config_set_usesyslog }, -+ { "VerbosePkgLists", pk_backend_config_set_verbosepkglists }, - { NULL, NULL } - }; - -@@ -234,6 +253,17 @@ pk_backend_config_set_dbpath (PkBackendConfig *config, const gchar *path) - } - - static void -+pk_backend_config_set_gpgdir (PkBackendConfig *config, const gchar *path) -+{ -+ g_return_if_fail (config != NULL); -+ g_return_if_fail (path != NULL); -+ -+ g_free (config->gpgdir); -+ config->gpgdir = g_strdup (path); -+} -+ -+ -+static void - pk_backend_config_set_logfile (PkBackendConfig *config, const gchar *filename) - { - g_return_if_fail (config != NULL); -@@ -263,9 +293,10 @@ pk_backend_config_set_xfercmd (PkBackendConfig *config, const gchar *command) - config->xfercmd = g_strdup (command); - } - --typedef struct { -- const gchar *name; -- void (*func) (PkBackendConfig *config, const gchar *s); -+typedef struct -+{ -+ const gchar *name; -+ void (*func) (PkBackendConfig *config, const gchar *s); - } PkBackendConfigString; - - /* keep this in alphabetical order */ -@@ -274,6 +305,7 @@ static const PkBackendConfigString pk_backend_config_string_options[] = { - { "CacheDir", pk_backend_config_add_cachedir }, - { "CleanMethod", pk_backend_config_set_cleanmethod }, - { "DBPath", pk_backend_config_set_dbpath }, -+ { "GPGDir", pk_backend_config_set_gpgdir }, - { "LogFile", pk_backend_config_set_logfile }, - { "RootDir", pk_backend_config_set_root }, - { "XferCommand", pk_backend_config_set_xfercmd }, -@@ -313,12 +345,12 @@ pk_backend_config_add_holdpkg (PkBackendConfig *config, gchar *package) - } - - static void --pk_backend_config_add_ignoregrp (PkBackendConfig *config, gchar *group) -+pk_backend_config_add_ignoregroup (PkBackendConfig *config, gchar *group) - { - g_return_if_fail (config != NULL); - g_return_if_fail (group != NULL); - -- config->ignoregrps = alpm_list_add (config->ignoregrps, group); -+ config->ignoregroups = alpm_list_add (config->ignoregroups, group); - } - - static void -@@ -357,15 +389,16 @@ pk_backend_config_add_syncfirst (PkBackendConfig *config, gchar *package) - config->syncfirsts = alpm_list_add (config->syncfirsts, package); - } - --typedef struct { -- const gchar *name; -- void (*func) (PkBackendConfig *config, gchar *value); -+typedef struct -+{ -+ const gchar *name; -+ void (*func) (PkBackendConfig *config, gchar *value); - } PkBackendConfigList; - - /* keep this in alphabetical order */ - static const PkBackendConfigList pk_backend_config_list_options[] = { - { "HoldPkg", pk_backend_config_add_holdpkg }, -- { "IgnoreGroup", pk_backend_config_add_ignoregrp }, -+ { "IgnoreGroup", pk_backend_config_add_ignoregroup }, - { "IgnorePkg", pk_backend_config_add_ignorepkg }, - { "NoExtract", pk_backend_config_add_noextract }, - { "NoUpgrade", pk_backend_config_add_noupgrade }, -@@ -451,7 +484,7 @@ pk_backend_config_repo_add_server (PkBackendConfig *config, const gchar *repo, - return FALSE; - } - } else if (strstr (url, "$arch") != NULL) { -- g_set_error (e, ALPM_ERROR, PM_ERR_CONFIG_INVALID, -+ g_set_error (e, ALPM_ERROR, ALPM_ERR_CONFIG_INVALID, - "url contained $arch, which is not set"); - } - -@@ -463,6 +496,95 @@ pk_backend_config_repo_add_server (PkBackendConfig *config, const gchar *repo, - } - - static gboolean -+pk_backend_config_set_siglevel (PkBackendConfig *config, const gchar *section, -+ const gchar *list, GError **error) -+{ -+ alpm_siglevel_t *level; -+ -+ g_return_val_if_fail (config != NULL, FALSE); -+ g_return_val_if_fail (section != NULL, FALSE); -+ g_return_val_if_fail (list != NULL, FALSE); -+ -+ level = g_hash_table_lookup (config->levels, section); -+ if (level == NULL) { -+ level = g_hash_table_lookup (config->levels, "options"); -+ level = g_memdup (level, sizeof (alpm_siglevel_t)); -+ g_hash_table_insert (config->levels, g_strdup (section), level); -+ } -+ -+ while (TRUE) { -+ gboolean package = TRUE, database = TRUE; -+ -+ if (g_str_has_prefix (list, "Package")) { -+ database = FALSE; -+ list += 7; -+ } else if (g_str_has_prefix (list, "Database")) { -+ package = FALSE; -+ list += 8; -+ } -+ -+ /* this also allows e.g. NeverEver, so put prefixes last */ -+ if (g_str_has_prefix (list, "Never") == 0) { -+ if (package) { -+ *level &= ~ALPM_SIG_PACKAGE; -+ } -+ if (database) { -+ *level &= ~ALPM_SIG_DATABASE; -+ } -+ } else if (g_str_has_prefix (list, "Optional") == 0) { -+ if (package) { -+ *level |= ALPM_SIG_PACKAGE; -+ *level |= ALPM_SIG_PACKAGE_OPTIONAL; -+ } -+ if (database) { -+ *level |= ALPM_SIG_DATABASE; -+ *level |= ALPM_SIG_DATABASE_OPTIONAL; -+ } -+ } else if (g_str_has_prefix (list, "Required") == 0) { -+ if (package) { -+ *level |= ALPM_SIG_PACKAGE; -+ *level &= ~ALPM_SIG_PACKAGE_OPTIONAL; -+ } -+ if (database) { -+ *level |= ALPM_SIG_DATABASE; -+ *level &= ~ALPM_SIG_DATABASE_OPTIONAL; -+ } -+ } else if (g_str_has_prefix (list, "TrustedOnly") == 0) { -+ if (package) { -+ *level &= ~ALPM_SIG_PACKAGE_MARGINAL_OK; -+ *level &= ~ALPM_SIG_PACKAGE_UNKNOWN_OK; -+ } -+ if (database) { -+ *level &= ~ALPM_SIG_DATABASE_MARGINAL_OK; -+ *level &= ~ALPM_SIG_DATABASE_UNKNOWN_OK; -+ } -+ } else if (g_str_has_prefix (list, "TrustAll") == 0) { -+ if (package) { -+ *level |= ALPM_SIG_PACKAGE_MARGINAL_OK; -+ *level |= ALPM_SIG_PACKAGE_UNKNOWN_OK; -+ } -+ if (database) { -+ *level |= ALPM_SIG_DATABASE_MARGINAL_OK; -+ *level |= ALPM_SIG_DATABASE_UNKNOWN_OK; -+ } -+ } else { -+ g_set_error (error, ALPM_ERROR, ALPM_ERR_CONFIG_INVALID, -+ "invalid SigLevel value: %s", list); -+ return FALSE; -+ } -+ -+ list = strchr (list, ' '); -+ if (list == NULL) { -+ break; -+ } else { -+ ++list; -+ } -+ } -+ -+ return TRUE; -+} -+ -+static gboolean - pk_backend_config_parse (PkBackendConfig *config, const gchar *filename, - gchar *section, GError **error) - { -@@ -515,7 +637,7 @@ pk_backend_config_parse (PkBackendConfig *config, const gchar *filename, - - if (*str == '\0') { - g_set_error (&e, ALPM_ERROR, -- PM_ERR_CONFIG_INVALID, -+ ALPM_ERR_CONFIG_INVALID, - "empty section name"); - break; - } -@@ -532,7 +654,7 @@ pk_backend_config_parse (PkBackendConfig *config, const gchar *filename, - - /* parse a directive */ - if (section == NULL) { -- g_set_error (&e, ALPM_ERROR, PM_ERR_CONFIG_INVALID, -+ g_set_error (&e, ALPM_ERROR, ALPM_ERR_CONFIG_INVALID, - "directive must belong to a section"); - break; - } -@@ -590,9 +712,18 @@ pk_backend_config_parse (PkBackendConfig *config, const gchar *filename, - continue; - } - } -+ -+ if (g_strcmp0 (key, "SigLevel") == 0 && str != NULL) { -+ if (!pk_backend_config_set_siglevel (config, section, -+ str, &e)) { -+ break; -+ } else { -+ continue; -+ } -+ } - - /* report errors from above */ -- g_set_error (&e, ALPM_ERROR, PM_ERR_CONFIG_INVALID, -+ g_set_error (&e, ALPM_ERROR, ALPM_ERR_CONFIG_INVALID, - "unrecognised directive '%s'", key); - break; - } -@@ -611,107 +742,100 @@ pk_backend_config_parse (PkBackendConfig *config, const gchar *filename, - } - } - --static gboolean --pk_backend_config_configure_paths (PkBackendConfig *config, GError **error) -+static alpm_handle_t * -+pk_backend_config_initialize_alpm (PkBackendConfig *config, GError **error) - { -+ alpm_handle_t *handle; -+ enum _alpm_errno_t errno; -+ gsize dir = 1; -+ - g_return_val_if_fail (config != NULL, FALSE); - -- if (config->root == NULL) { -+ if (config->root == NULL || *config->root == '\0') { - config->root = g_strdup (PK_BACKEND_DEFAULT_ROOT); -+ } else if (!g_str_has_suffix (config->root, G_DIR_SEPARATOR_S)) { -+ dir = 0; - } - -- if (alpm_option_set_root (config->root) < 0) { -- g_set_error (error, ALPM_ERROR, pm_errno, "RootDir: %s", -- alpm_strerrorlast ()); -- return FALSE; -+ if (config->dbpath == NULL) { -+ config->dbpath = g_strconcat (config->root, -+ PK_BACKEND_DEFAULT_DBPATH + dir, -+ NULL); - } - -- if (config->dbpath == NULL) { -- config->dbpath = g_strconcat (alpm_option_get_root (), -- PK_BACKEND_DEFAULT_DBPATH + 1, -+ g_debug ("initializing alpm"); -+ handle = alpm_initialize (config->root, config->dbpath, &errno); -+ if (handle == NULL) { -+ g_set_error_literal (error, ALPM_ERROR, errno, -+ alpm_strerror (errno)); -+ return handle; -+ } -+ -+ if (config->gpgdir == NULL) { -+ config->gpgdir = g_strconcat (config->root, -+ PK_BACKEND_DEFAULT_GPGDIR + dir, - NULL); - } - -- if (alpm_option_set_dbpath (config->dbpath) < 0) { -- g_set_error (error, ALPM_ERROR, pm_errno, "DBPath: %s", -- alpm_strerrorlast ()); -- return FALSE; -+ if (alpm_option_set_gpgdir (handle, config->gpgdir) < 0) { -+ errno = alpm_errno (handle); -+ g_set_error (error, ALPM_ERROR, errno, "GPGDir: %s", -+ alpm_strerror (errno)); -+ return handle; - } - - if (config->logfile == NULL) { -- config->logfile = g_strconcat (alpm_option_get_root (), -- PK_BACKEND_DEFAULT_LOGFILE + 1, -+ config->logfile = g_strconcat (config->root, -+ PK_BACKEND_DEFAULT_LOGFILE + dir, - NULL); - } - -- alpm_option_set_logfile (config->logfile); -+ if (alpm_option_set_logfile (handle, config->logfile) < 0) { -+ errno = alpm_errno (handle); -+ g_set_error (error, ALPM_ERROR, errno, "LogFile: %s", -+ alpm_strerror (errno)); -+ return handle; -+ } - - if (config->cachedirs == NULL) { -- gchar *path = g_strconcat (alpm_option_get_root (), -- PK_BACKEND_DEFAULT_CACHEDIR + 1, -+ gchar *path = g_strconcat (config->root, -+ PK_BACKEND_DEFAULT_CACHEDIR + dir, - NULL); - config->cachedirs = alpm_list_add (NULL, path); - } - - /* alpm takes ownership */ -- alpm_option_set_cachedirs (config->cachedirs); -+ if (alpm_option_set_cachedirs (handle, config->cachedirs) < 0) { -+ errno = alpm_errno (handle); -+ g_set_error (error, ALPM_ERROR, errno, "CacheDir: %s", -+ alpm_strerror (errno)); -+ return handle; -+ } - config->cachedirs = NULL; - -- return TRUE; -+ return handle; - } - --static gboolean --pk_backend_config_configure_repos (PkBackendConfig *config, GError **error) -+static alpm_handle_t * -+pk_backend_config_configure_alpm (PkBackendConfig *config, GError **error) - { -- const alpm_list_t *i; -+ alpm_handle_t *handle; -+ alpm_siglevel_t *level; - - g_return_val_if_fail (config != NULL, FALSE); - -- for (i = alpm_option_get_syncdbs (); i != NULL; i = i->next) { -- if (alpm_db_unregister (i->data) < 0) { -- g_set_error_literal (error, ALPM_ERROR, pm_errno, -- alpm_strerrorlast ()); -- return FALSE; -- } -- } -- -- for (i = config->repos; i != NULL; i = i->next) { -- const gchar *key; -- gpointer value; -- pmdb_t *db; -- alpm_list_t *j; -- -- key = (const gchar *) i->data; -- value = g_hash_table_lookup (config->servers, key); -- -- db = alpm_db_register_sync (key); -- if (db == NULL) { -- g_set_error (error, ALPM_ERROR, pm_errno, "[%s]: %s", -- key, alpm_strerrorlast ()); -- return FALSE; -- } -- -- for (j = (alpm_list_t *) value; j != NULL; j = j->next) { -- alpm_db_setserver (db, (const gchar *) j->data); -- } -+ handle = pk_backend_config_initialize_alpm (config, error); -+ if (handle == NULL) { -+ return NULL; - } - -- return TRUE; --} -- --static gboolean --pk_backend_config_configure_alpm (PkBackendConfig *config, GError **error) --{ -- g_return_val_if_fail (config != NULL, FALSE); -- -- if (!pk_backend_config_configure_paths (config, error)) { -- return FALSE; -- } -+ alpm_option_set_checkspace (handle, config->checkspace); -+ alpm_option_set_usedelta (handle, config->usedelta); -+ alpm_option_set_usesyslog (handle, config->usesyslog); -+ alpm_option_set_arch (handle, config->arch); - -- alpm_option_set_checkspace (config->checkspace); -- alpm_option_set_usedelta (config->usedelta); -- alpm_option_set_usesyslog (config->usesyslog); -- alpm_option_set_arch (config->arch); -+ level = g_hash_table_lookup (config->levels, "options"); -+ alpm_option_set_default_siglevel (handle, *level); - - /* backend takes ownership */ - g_free (xfercmd); -@@ -719,9 +843,9 @@ pk_backend_config_configure_alpm (PkBackendConfig *config, GError **error) - config->xfercmd = NULL; - - if (xfercmd != NULL) { -- alpm_option_set_fetchcb (pk_backend_fetchcb); -+ alpm_option_set_fetchcb (handle, pk_backend_fetchcb); - } else { -- alpm_option_set_fetchcb (NULL); -+ alpm_option_set_fetchcb (handle, NULL); - } - - /* backend takes ownership */ -@@ -735,41 +859,53 @@ pk_backend_config_configure_alpm (PkBackendConfig *config, GError **error) - config->syncfirsts = NULL; - - /* alpm takes ownership */ -- alpm_option_set_ignoregrps (config->ignoregrps); -- config->ignoregrps = NULL; -+ alpm_option_set_ignoregroups (handle, config->ignoregroups); -+ config->ignoregroups = NULL; - - /* alpm takes ownership */ -- alpm_option_set_ignorepkgs (config->ignorepkgs); -+ alpm_option_set_ignorepkgs (handle, config->ignorepkgs); - config->ignorepkgs = NULL; - - /* alpm takes ownership */ -- alpm_option_set_noextracts (config->noextracts); -+ alpm_option_set_noextracts (handle, config->noextracts); - config->noextracts = NULL; - - /* alpm takes ownership */ -- alpm_option_set_noupgrades (config->noupgrades); -+ alpm_option_set_noupgrades (handle, config->noupgrades); - config->noupgrades = NULL; - -- if (!pk_backend_config_configure_repos (config, error)) { -- return FALSE; -- } -+ pk_backend_configure_repos (config->repos, config->servers, -+ config->levels); - -- return TRUE; -+ return handle; - } - --gboolean -+alpm_handle_t * - pk_backend_configure (const gchar *filename, GError **error) - { - PkBackendConfig *config; -- gboolean result; -+ alpm_handle_t *handle; -+ GError *e = NULL; - - g_return_val_if_fail (filename != NULL, FALSE); - -+ g_debug ("reading config from %s", filename); - config = pk_backend_config_new (); - -- result = pk_backend_config_parse (config, filename, NULL, error) && -- pk_backend_config_configure_alpm (config, error); -+ if (pk_backend_config_parse (config, filename, NULL, &e)) { -+ handle = pk_backend_config_configure_alpm (config, &e); -+ } else { -+ handle = NULL; -+ } - - pk_backend_config_free (config); -- return result; -+ if (e != NULL) { -+ g_propagate_error (error, e); -+ if (handle != NULL) { -+ alpm_release (handle); -+ } -+ return NULL; -+ } else { -+ return handle; -+ } - } -diff --git a/backends/alpm/pk-backend-config.h b/backends/alpm/pk-backend-config.h -index cb8b8dc..412f59c 100644 ---- a/backends/alpm/pk-backend-config.h -+++ b/backends/alpm/pk-backend-config.h -@@ -21,6 +21,7 @@ - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - */ - -+#include <alpm.h> - #include <glib.h> - --gboolean pk_backend_configure (const gchar *filename, GError **error); -+alpm_handle_t *pk_backend_configure (const gchar *filename, GError **error); -diff --git a/backends/alpm/pk-backend-databases.c b/backends/alpm/pk-backend-databases.c -index f6ab06e..ac530c7 100644 ---- a/backends/alpm/pk-backend-databases.c -+++ b/backends/alpm/pk-backend-databases.c -@@ -26,7 +26,15 @@ - #include "pk-backend-databases.h" - #include "pk-backend-error.h" - -+typedef struct -+{ -+ gchar *name; -+ alpm_list_t *servers; -+ alpm_siglevel_t level; -+} PkBackendRepo; -+ - static GHashTable *disabled = NULL; -+static alpm_list_t *configured = NULL; - - static GHashTable * - disabled_repos_new (GError **error) -@@ -113,8 +121,8 @@ disabled_repos_free (GHashTable *table) - - /* write all disabled repos line by line */ - while (g_hash_table_iter_next (&iter, (gpointer *) &line, NULL) && -- g_data_output_stream_put_string (output, line, NULL, NULL) && -- g_data_output_stream_put_byte (output, '\n', NULL, NULL)); -+ g_data_output_stream_put_string (output, line, NULL, NULL) && -+ g_data_output_stream_put_byte (output, '\n', NULL, NULL)); - - g_object_unref (output); - g_object_unref (os); -@@ -128,37 +136,65 @@ disabled_repos_configure (GHashTable *table, GError **error) - { - const alpm_list_t *i; - -- g_debug ("reading config from %s", PK_BACKEND_CONFIG_FILE); -+ g_return_val_if_fail (table != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - -- /* read configuration from pacman.conf file */ -- if (!pk_backend_configure (PK_BACKEND_CONFIG_FILE, error)) { -+ if (alpm_db_unregister_all (alpm) < 0) { -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error_literal (error, ALPM_ERROR, errno, -+ alpm_strerror (errno)); - return FALSE; - } - -- /* disable disabled repos */ -- for (i = alpm_option_get_syncdbs (); i != NULL;) { -- pmdb_t *db = (pmdb_t *) i->data; -- const gchar *repo = alpm_db_get_name (db); -+ for (i = configured; i != NULL; i = i->next) { -+ PkBackendRepo *repo = (PkBackendRepo *) i->data; -+ alpm_db_t *db; - -- if (g_hash_table_lookup (table, repo) == NULL) { -- /* repo is not disabled */ -- i = i->next; -+ if (g_hash_table_lookup (table, repo->name) != NULL) { -+ /* repo is disabled */ - continue; - } - -- if (alpm_db_unregister (db) < 0) { -- g_set_error (error, ALPM_ERROR, pm_errno, "[%s]: %s", -- repo, alpm_strerrorlast ()); -+ db = alpm_db_register_sync (alpm, repo->name, repo->level); -+ if (db == NULL) { -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error (error, ALPM_ERROR, errno, "[%s]: %s", -+ repo->name, alpm_strerror (errno)); - return FALSE; - } - -- /* start again because the list gets invalidated */ -- i = alpm_option_get_syncdbs (); -+ alpm_db_set_servers (db, alpm_list_strdup (repo->servers)); - } - - return TRUE; - } - -+void -+pk_backend_configure_repos (alpm_list_t *repos, GHashTable *servers, -+ GHashTable *levels) -+{ -+ alpm_list_t *i; -+ -+ g_return_if_fail (servers != NULL); -+ -+ for (i = repos; i != NULL; i = i->next) { -+ PkBackendRepo *repo = g_new (PkBackendRepo, 1); -+ gpointer value = g_hash_table_lookup (servers, i->data); -+ -+ repo->name = g_strdup ((const gchar *) i->data); -+ repo->servers = alpm_list_strdup ((alpm_list_t *) value); -+ -+ value = g_hash_table_lookup (levels, i->data); -+ if (value != NULL) { -+ repo->level = *(alpm_siglevel_t *)value; -+ } else { -+ repo->level = ALPM_SIG_USE_DEFAULT; -+ } -+ -+ configured = alpm_list_add (configured, repo); -+ } -+} -+ - gboolean - pk_backend_initialize_databases (PkBackend *self, GError **error) - { -@@ -179,11 +215,21 @@ pk_backend_initialize_databases (PkBackend *self, GError **error) - void - pk_backend_destroy_databases (PkBackend *self) - { -+ alpm_list_t *i; -+ - g_return_if_fail (self != NULL); - - if (disabled != NULL) { - disabled_repos_free (disabled); - } -+ -+ for (i = configured; i != NULL; i = i->next) { -+ PkBackendRepo *repo = (PkBackendRepo *) i->data; -+ g_free (repo->name); -+ FREELIST (repo->servers); -+ g_free (repo); -+ } -+ alpm_list_free (configured); - } - - static gboolean -@@ -210,11 +256,12 @@ pk_backend_get_repo_list_thread (PkBackend *self) - gpointer key, value; - - g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - g_return_val_if_fail (disabled != NULL, FALSE); - - /* emit enabled repos */ -- for (i = alpm_option_get_syncdbs (); i != NULL; i = i->next) { -- pmdb_t *db = (pmdb_t *) i->data; -+ for (i = alpm_option_get_syncdbs (alpm); i != NULL; i = i->next) { -+ alpm_db_t *db = (alpm_db_t *) i->data; - const gchar *repo = alpm_db_get_name (db); - - if (pk_backend_cancelled (self)) { -@@ -269,7 +316,7 @@ pk_backend_repo_enable_thread (PkBackend *self) - pk_backend_repo_list_changed (self); - } - } else { -- int code = PM_ERR_DB_NOT_NULL; -+ int code = ALPM_ERR_DB_NOT_NULL; - g_set_error (&error, ALPM_ERROR, code, "[%s]: %s", - repo, alpm_strerror (code)); - } -@@ -292,21 +339,23 @@ pk_backend_repo_disable_thread (PkBackend *self) - GError *error = NULL; - - g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - g_return_val_if_fail (disabled != NULL, FALSE); - - repo = pk_backend_get_string (self, "repo_id"); - - g_return_val_if_fail (repo != NULL, FALSE); - -- for (i = alpm_option_get_syncdbs (); i != NULL; i = i->next) { -- pmdb_t *db = (pmdb_t *) i->data; -+ for (i = alpm_option_get_syncdbs (alpm); i != NULL; i = i->next) { -+ alpm_db_t *db = (alpm_db_t *) i->data; - const gchar *name = alpm_db_get_name (db); - - if (g_strcmp0 (repo, name) == 0) { - if (alpm_db_unregister (db) < 0) { -- g_set_error (&error, ALPM_ERROR, pm_errno, -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error (&error, ALPM_ERROR, errno, - "[%s]: %s", repo, -- alpm_strerrorlast ()); -+ alpm_strerror (errno)); - } else { - g_hash_table_insert (disabled, g_strdup (repo), - GINT_TO_POINTER (1)); -@@ -316,7 +365,7 @@ pk_backend_repo_disable_thread (PkBackend *self) - } - - if (i == NULL) { -- int code = PM_ERR_DB_NULL; -+ int code = ALPM_ERR_DB_NULL; - g_set_error (&error, ALPM_ERROR, code, "[%s]: %s", repo, - alpm_strerror (code)); - } -diff --git a/backends/alpm/pk-backend-databases.h b/backends/alpm/pk-backend-databases.h -index f9eb2f9..2636cae 100644 ---- a/backends/alpm/pk-backend-databases.h -+++ b/backends/alpm/pk-backend-databases.h -@@ -24,6 +24,10 @@ - #include <alpm.h> - #include <pk-backend.h> - -+void pk_backend_configure_repos (alpm_list_t *repos, -+ GHashTable *servers, -+ GHashTable *levels); -+ - gboolean pk_backend_initialize_databases (PkBackend *self, - GError **error); - -diff --git a/backends/alpm/pk-backend-depends.c b/backends/alpm/pk-backend-depends.c -index 8bb8567..7c7b45a 100644 ---- a/backends/alpm/pk-backend-depends.c -+++ b/backends/alpm/pk-backend-depends.c -@@ -29,7 +29,7 @@ - #include "pk-backend-error.h" - #include "pk-backend-packages.h" - --static pmpkg_t * -+static alpm_pkg_t * - alpm_list_find_pkg (const alpm_list_t *pkgs, const gchar *name) - { - g_return_val_if_fail (name != NULL, NULL); -@@ -50,11 +50,12 @@ pk_backend_find_provider (PkBackend *self, alpm_list_t *pkgs, - PkBitfield filters; - gboolean recursive, skip_local, skip_remote; - -- pmpkg_t *provider; -+ alpm_pkg_t *provider; - alpm_list_t *pkgcache, *syncdbs; - - g_return_val_if_fail (self != NULL, pkgs); - g_return_val_if_fail (depend != NULL, pkgs); -+ g_return_val_if_fail (alpm != NULL, pkgs); - g_return_val_if_fail (localdb != NULL, pkgs); - - recursive = pk_backend_get_bool (self, "recursive"); -@@ -84,8 +85,8 @@ pk_backend_find_provider (PkBackend *self, alpm_list_t *pkgs, - } - - /* look for remote dependencies */ -- syncdbs = alpm_option_get_syncdbs (); -- provider = alpm_find_dbs_satisfier (syncdbs, depend); -+ syncdbs = alpm_option_get_syncdbs (alpm); -+ provider = alpm_find_dbs_satisfier (alpm, syncdbs, depend); - - if (provider != NULL) { - if (!skip_remote) { -@@ -96,7 +97,7 @@ pk_backend_find_provider (PkBackend *self, alpm_list_t *pkgs, - pkgs = alpm_list_add (pkgs, provider); - } - } else { -- int code = PM_ERR_UNSATISFIED_DEPS; -+ int code = ALPM_ERR_UNSATISFIED_DEPS; - g_set_error (error, ALPM_ERROR, code, "%s: %s", depend, - alpm_strerror (code)); - } -@@ -108,7 +109,7 @@ static alpm_list_t * - pk_backend_find_requirer (PkBackend *self, alpm_list_t *pkgs, const gchar *name, - GError **error) - { -- pmpkg_t *requirer; -+ alpm_pkg_t *requirer; - - g_return_val_if_fail (self != NULL, pkgs); - g_return_val_if_fail (name != NULL, pkgs); -@@ -127,7 +128,7 @@ pk_backend_find_requirer (PkBackend *self, alpm_list_t *pkgs, const gchar *name, - pkgs = alpm_list_add (pkgs, requirer); - } - } else { -- int code = PM_ERR_PKG_NOT_FOUND; -+ int code = ALPM_ERR_PKG_NOT_FOUND; - g_set_error (error, ALPM_ERROR, code, "%s: %s", name, - alpm_strerror (code)); - } -@@ -150,7 +151,7 @@ pk_backend_get_depends_thread (PkBackend *self) - - /* construct an initial package list */ - for (; *packages != NULL; ++packages) { -- pmpkg_t *pkg; -+ alpm_pkg_t *pkg; - - if (pk_backend_cancelled (self)) { - break; -@@ -206,7 +207,7 @@ pk_backend_get_requires_thread (PkBackend *self) - - /* construct an initial package list */ - for (; *packages != NULL; ++packages) { -- pmpkg_t *pkg; -+ alpm_pkg_t *pkg; - - if (pk_backend_cancelled (self)) { - break; -diff --git a/backends/alpm/pk-backend-error.c b/backends/alpm/pk-backend-error.c -index 255f1fb..57c4b4b 100644 ---- a/backends/alpm/pk-backend-error.c -+++ b/backends/alpm/pk-backend-error.c -@@ -33,140 +33,159 @@ pk_backend_error (PkBackend *self, GError *error) - g_return_if_fail (self != NULL); - g_return_if_fail (error != NULL); - -- if (error->domain == ALPM_ERROR) { -- switch (error->code) { -- case PM_ERR_MEMORY: -- case PM_ERR_SYSTEM: -- code = PK_ERROR_ENUM_OOM; -- break; -+ if (error->domain != ALPM_ERROR) { -+ pk_backend_error_code (self, code, "%s", error->message); -+ return; -+ } -+ -+ switch (error->code) { -+ case ALPM_ERR_MEMORY: -+ case ALPM_ERR_SYSTEM: -+ code = PK_ERROR_ENUM_OOM; -+ break; -+ -+ case ALPM_ERR_BADPERMS: -+ code = PK_ERROR_ENUM_NOT_AUTHORIZED; -+ break; -+ -+ case ALPM_ERR_NOT_A_FILE: -+ case ALPM_ERR_NOT_A_DIR: -+ code = PK_ERROR_ENUM_FILE_NOT_FOUND; -+ break; -+ -+ case ALPM_ERR_WRONG_ARGS: -+ case ALPM_ERR_HANDLE_NULL: -+ case ALPM_ERR_DB_NULL: -+ case ALPM_ERR_TRANS_NULL: -+ case ALPM_ERR_TRANS_NOT_INITIALIZED: -+ case ALPM_ERR_TRANS_NOT_PREPARED: -+ case ALPM_ERR_TRANS_NOT_LOCKED: -+ case ALPM_ERR_INVALID_REGEX: -+ code = PK_ERROR_ENUM_INTERNAL_ERROR; -+ break; - -- case PM_ERR_BADPERMS: -- code = PK_ERROR_ENUM_NOT_AUTHORIZED; -- break; -+ case ALPM_ERR_DISK_SPACE: -+ code = PK_ERROR_ENUM_NO_SPACE_ON_DEVICE; -+ break; - -- case PM_ERR_NOT_A_FILE: -- case PM_ERR_NOT_A_DIR: -- code = PK_ERROR_ENUM_FILE_NOT_FOUND; -- break; -+ case ALPM_ERR_HANDLE_NOT_NULL: -+ case ALPM_ERR_DB_NOT_NULL: -+ case ALPM_ERR_TRANS_NOT_NULL: -+ code = PK_ERROR_ENUM_FAILED_INITIALIZATION; -+ break; - -- case PM_ERR_WRONG_ARGS: -- case PM_ERR_HANDLE_NULL: -- case PM_ERR_DB_NULL: -- case PM_ERR_TRANS_NULL: -- case PM_ERR_TRANS_NOT_INITIALIZED: -- case PM_ERR_TRANS_NOT_PREPARED: -- case PM_ERR_TRANS_NOT_LOCKED: -- case PM_ERR_INVALID_REGEX: -- code = PK_ERROR_ENUM_INTERNAL_ERROR; -- break; -+ case ALPM_ERR_HANDLE_LOCK: -+ code = PK_ERROR_ENUM_CANNOT_GET_LOCK; -+ break; - -- case PM_ERR_DISK_SPACE: -- code = PK_ERROR_ENUM_NO_SPACE_ON_DEVICE; -- break; -+ case ALPM_ERR_DB_OPEN: -+ case ALPM_ERR_DB_NOT_FOUND: -+ case ALPM_ERR_PKG_REPO_NOT_FOUND: -+ code = PK_ERROR_ENUM_REPO_NOT_FOUND; -+ break; - -- case PM_ERR_HANDLE_NOT_NULL: -- case PM_ERR_DB_NOT_NULL: -- case PM_ERR_TRANS_NOT_NULL: -- code = PK_ERROR_ENUM_FAILED_INITIALIZATION; -- break; -+ case ALPM_ERR_DB_CREATE: -+ code = PK_ERROR_ENUM_CANNOT_WRITE_REPO_CONFIG; -+ break; - -- case PM_ERR_HANDLE_LOCK: -- code = PK_ERROR_ENUM_CANNOT_GET_LOCK; -- break; -+ case ALPM_ERR_DB_INVALID: -+ case ALPM_ERR_DB_VERSION: -+ case ALPM_ERR_DB_REMOVE: -+ case ALPM_ERR_SERVER_BAD_URL: -+ code = PK_ERROR_ENUM_REPO_CONFIGURATION_ERROR; -+ break; - -- case PM_ERR_DB_OPEN: -- case PM_ERR_DB_NOT_FOUND: -- case PM_ERR_PKG_REPO_NOT_FOUND: -- code = PK_ERROR_ENUM_REPO_NOT_FOUND; -- break; -+ case ALPM_ERR_DB_INVALID_SIG: -+ case ALPM_ERR_PKG_INVALID_SIG: -+ case ALPM_ERR_SIG_INVALID: -+ code = PK_ERROR_ENUM_BAD_GPG_SIGNATURE; -+ break; - -- case PM_ERR_DB_CREATE: -- code = PK_ERROR_ENUM_CANNOT_WRITE_REPO_CONFIG; -- break; -+ case ALPM_ERR_DB_WRITE: -+ code = PK_ERROR_ENUM_REPO_NOT_AVAILABLE; -+ break; - -- case PM_ERR_DB_VERSION: -- case PM_ERR_DB_REMOVE: -- code = PK_ERROR_ENUM_REPO_CONFIGURATION_ERROR; -- break; -+ case ALPM_ERR_SERVER_NONE: -+ code = PK_ERROR_ENUM_NO_MORE_MIRRORS_TO_TRY; -+ break; - -- case PM_ERR_DB_WRITE: -- code = PK_ERROR_ENUM_REPO_NOT_AVAILABLE; -- break; -+ case ALPM_ERR_TRANS_DUP_TARGET: -+ case ALPM_ERR_TRANS_ABORT: -+ code = PK_ERROR_ENUM_TRANSACTION_ERROR; -+ break; - -- case PM_ERR_SERVER_BAD_URL: -- code = PK_ERROR_ENUM_REPO_CONFIGURATION_ERROR; -- break; -+ case ALPM_ERR_TRANS_TYPE: -+ code = PK_ERROR_ENUM_CANNOT_CANCEL; -+ break; - -- case PM_ERR_SERVER_NONE: -- code = PK_ERROR_ENUM_NO_MORE_MIRRORS_TO_TRY; -- break; -+ case ALPM_ERR_PKG_NOT_FOUND: -+ code = PK_ERROR_ENUM_PACKAGE_NOT_FOUND; -+ break; - -- case PM_ERR_TRANS_DUP_TARGET: -- case PM_ERR_TRANS_ABORT: -- code = PK_ERROR_ENUM_TRANSACTION_ERROR; -- break; -+ case ALPM_ERR_PKG_IGNORED: -+ code = PK_ERROR_ENUM_PACKAGE_INSTALL_BLOCKED; -+ break; - -- case PM_ERR_TRANS_TYPE: -- code = PK_ERROR_ENUM_CANNOT_CANCEL; -- break; -+ case ALPM_ERR_PKG_INVALID: -+ case ALPM_ERR_PKG_OPEN: -+ case ALPM_ERR_PKG_INVALID_NAME: -+ case ALPM_ERR_DLT_INVALID: -+ code = PK_ERROR_ENUM_INVALID_PACKAGE_FILE; -+ break; - -- case PM_ERR_PKG_NOT_FOUND: -- code = PK_ERROR_ENUM_PACKAGE_NOT_FOUND; -- break; -+ case ALPM_ERR_PKG_INVALID_CHECKSUM: -+ code = PK_ERROR_ENUM_PACKAGE_CORRUPT; -+ break; - -- case PM_ERR_PKG_IGNORED: -- code = PK_ERROR_ENUM_PACKAGE_INSTALL_BLOCKED; -- break; -+ case ALPM_ERR_PKG_CANT_REMOVE: -+ code = PK_ERROR_ENUM_PACKAGE_FAILED_TO_REMOVE; -+ break; - -- case PM_ERR_PKG_INVALID: -- case PM_ERR_PKG_OPEN: -- case PM_ERR_PKG_INVALID_NAME: -- case PM_ERR_DLT_INVALID: -- code = PK_ERROR_ENUM_INVALID_PACKAGE_FILE; -- break; -+ case ALPM_ERR_PKG_INVALID_ARCH: -+ code = PK_ERROR_ENUM_INCOMPATIBLE_ARCHITECTURE; -+ break; - -- case PM_ERR_PKG_CANT_REMOVE: -- code = PK_ERROR_ENUM_PACKAGE_FAILED_TO_REMOVE; -- break; -+ case ALPM_ERR_SIG_MISSING: -+ code = PK_ERROR_ENUM_MISSING_GPG_SIGNATURE; -+ break; - -- case PM_ERR_PKG_INVALID_ARCH: -- code = PK_ERROR_ENUM_INCOMPATIBLE_ARCHITECTURE; -- break; -+ case ALPM_ERR_DLT_PATCHFAILED: -+ code = PK_ERROR_ENUM_PACKAGE_FAILED_TO_BUILD; -+ break; - -- case PM_ERR_DLT_PATCHFAILED: -- code = PK_ERROR_ENUM_PACKAGE_FAILED_TO_BUILD; -- break; -+ case ALPM_ERR_UNSATISFIED_DEPS: -+ code = PK_ERROR_ENUM_DEP_RESOLUTION_FAILED; -+ break; - -- case PM_ERR_UNSATISFIED_DEPS: -- code = PK_ERROR_ENUM_DEP_RESOLUTION_FAILED; -- break; -+ case ALPM_ERR_CONFLICTING_DEPS: -+ code = PK_ERROR_ENUM_PACKAGE_CONFLICTS; -+ break; - -- case PM_ERR_CONFLICTING_DEPS: -- code = PK_ERROR_ENUM_PACKAGE_CONFLICTS; -- break; -+ case ALPM_ERR_FILE_CONFLICTS: -+ code = PK_ERROR_ENUM_FILE_CONFLICTS; -+ break; - -- case PM_ERR_FILE_CONFLICTS: -- code = PK_ERROR_ENUM_FILE_CONFLICTS; -- break; -+ case ALPM_ERR_RETRIEVE: -+ case ALPM_ERR_LIBCURL: -+ case ALPM_ERR_EXTERNAL_DOWNLOAD: -+ code = PK_ERROR_ENUM_PACKAGE_DOWNLOAD_FAILED; -+ break; - -- case PM_ERR_RETRIEVE: -- case PM_ERR_LIBFETCH: -- case PM_ERR_EXTERNAL_DOWNLOAD: -- code = PK_ERROR_ENUM_PACKAGE_DOWNLOAD_FAILED; -- break; -+ case ALPM_ERR_LIBARCHIVE: -+ code = PK_ERROR_ENUM_LOCAL_INSTALL_FAILED; -+ break; - -- case PM_ERR_LIBARCHIVE: -- code = PK_ERROR_ENUM_LOCAL_INSTALL_FAILED; -- break; -+ case ALPM_ERR_GPGME: -+ code = PK_ERROR_ENUM_GPG_FAILURE; -+ break; - -- case PM_ERR_CONFIG_INVALID: -- code = PK_ERROR_ENUM_CANNOT_REMOVE_SYSTEM_PACKAGE; -- break; -+ case ALPM_ERR_CONFIG_INVALID: -+ code = PK_ERROR_ENUM_FAILED_CONFIG_PARSING; -+ break; - -- case PM_ERR_PKG_HELD: -- code = PK_ERROR_ENUM_CANNOT_REMOVE_SYSTEM_PACKAGE; -- break; -- } -+ case ALPM_ERR_PKG_HELD: -+ code = PK_ERROR_ENUM_CANNOT_REMOVE_SYSTEM_PACKAGE; -+ break; - } - - pk_backend_error_code (self, code, "%s", error->message); -diff --git a/backends/alpm/pk-backend-error.h b/backends/alpm/pk-backend-error.h -index 83fe4a5..0a029e4 100644 ---- a/backends/alpm/pk-backend-error.h -+++ b/backends/alpm/pk-backend-error.h -@@ -26,8 +26,8 @@ - #define ALPM_ERROR (alpm_error_quark ()) - - enum { -- PM_ERR_CONFIG_INVALID = 0x10000, -- PM_ERR_PKG_HELD -+ ALPM_ERR_CONFIG_INVALID = 0x10000, -+ ALPM_ERR_PKG_HELD - }; - - void pk_backend_error (PkBackend *self, GError *error); -diff --git a/backends/alpm/pk-backend-groups.c b/backends/alpm/pk-backend-groups.c -index 59e304d..6056c54 100644 ---- a/backends/alpm/pk-backend-groups.c -+++ b/backends/alpm/pk-backend-groups.c -@@ -125,7 +125,7 @@ pk_backend_destroy_groups (PkBackend *self) - } - - const gchar * --alpm_pkg_get_group (pmpkg_t *pkg) -+alpm_pkg_get_group (alpm_pkg_t *pkg) - { - const alpm_list_t *i; - -diff --git a/backends/alpm/pk-backend-groups.h b/backends/alpm/pk-backend-groups.h -index 28dcf65..d736e37 100644 ---- a/backends/alpm/pk-backend-groups.h -+++ b/backends/alpm/pk-backend-groups.h -@@ -29,4 +29,4 @@ gboolean pk_backend_initialize_groups (PkBackend *self, - - void pk_backend_destroy_groups (PkBackend *self); - --const gchar *alpm_pkg_get_group (pmpkg_t *pkg); -+const gchar *alpm_pkg_get_group (alpm_pkg_t *pkg); -diff --git a/backends/alpm/pk-backend-install.c b/backends/alpm/pk-backend-install.c -index 65a6c11..5b5e2b2 100644 ---- a/backends/alpm/pk-backend-install.c -+++ b/backends/alpm/pk-backend-install.c -@@ -32,15 +32,19 @@ - static gint - alpm_add_file (const gchar *filename) - { -- pmpkg_t *pkg; -+ alpm_pkg_t *pkg; -+ alpm_siglevel_t level; - - g_return_val_if_fail (filename != NULL, -1); -+ g_return_val_if_fail (alpm != NULL, -1); - -- if (alpm_pkg_load (filename, 1, &pkg) < 0) { -+ level = alpm_option_get_default_siglevel (alpm); -+ -+ if (alpm_pkg_load (alpm, filename, 1, level, &pkg) < 0) { - return -1; - } - -- if (alpm_add_pkg (pkg) < 0) { -+ if (alpm_add_pkg (alpm, pkg) < 0) { - alpm_pkg_free (pkg); - return -1; - } -@@ -61,8 +65,9 @@ pk_backend_transaction_add_targets (PkBackend *self, GError **error) - - for (; *paths != NULL; ++paths) { - if (alpm_add_file (*paths) < 0) { -- g_set_error (error, ALPM_ERROR, pm_errno, "%s: %s", -- *paths, alpm_strerrorlast ()); -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error (error, ALPM_ERROR, errno, "%s: %s", -+ *paths, alpm_strerror (errno)); - return FALSE; - } - } -diff --git a/backends/alpm/pk-backend-packages.c b/backends/alpm/pk-backend-packages.c -index e9a7c94..2d057aa 100644 ---- a/backends/alpm/pk-backend-packages.c -+++ b/backends/alpm/pk-backend-packages.c -@@ -27,13 +27,11 @@ - #include "pk-backend-packages.h" - - gchar * --alpm_pkg_build_id (pmpkg_t *pkg) -+alpm_pkg_build_id (alpm_pkg_t *pkg) - { - const gchar *name, *version, *arch, *repo; -- pmdb_t *db; - - g_return_val_if_fail (pkg != NULL, NULL); -- g_return_val_if_fail (localdb != NULL, NULL); - - name = alpm_pkg_get_name (pkg); - version = alpm_pkg_get_version (pkg); -@@ -43,19 +41,18 @@ alpm_pkg_build_id (pmpkg_t *pkg) - arch = "any"; - } - -- db = alpm_pkg_get_db (pkg); -- /* TODO: check */ -- if (db == NULL || db == localdb) { -- repo = "installed"; -+ /* TODO: check correctness */ -+ if (alpm_pkg_get_origin (pkg) == PKG_FROM_SYNCDB) { -+ repo = alpm_db_get_name (alpm_pkg_get_db (pkg)); - } else { -- repo = alpm_db_get_name (db); -+ repo = "installed"; - } - - return pk_package_id_build (name, version, arch, repo); - } - - void --pk_backend_pkg (PkBackend *self, pmpkg_t *pkg, PkInfoEnum info) -+pk_backend_pkg (PkBackend *self, alpm_pkg_t *pkg, PkInfoEnum info) - { - gchar *package; - -@@ -67,16 +64,17 @@ pk_backend_pkg (PkBackend *self, pmpkg_t *pkg, PkInfoEnum info) - g_free (package); - } - --pmpkg_t * -+alpm_pkg_t * - pk_backend_find_pkg (PkBackend *self, const gchar *package_id, GError **error) - { - gchar **package; - const gchar *repo_id; -- pmdb_t *db = NULL; -- pmpkg_t *pkg; -+ alpm_db_t *db = NULL; -+ alpm_pkg_t *pkg; - - g_return_val_if_fail (self != NULL, NULL); - g_return_val_if_fail (package_id != NULL, NULL); -+ g_return_val_if_fail (alpm != NULL, NULL); - g_return_val_if_fail (localdb != NULL, NULL); - - package = pk_package_id_split (package_id); -@@ -86,8 +84,8 @@ pk_backend_find_pkg (PkBackend *self, const gchar *package_id, GError **error) - if (g_strcmp0 (repo_id, "installed") == 0) { - db = localdb; - } else { -- const alpm_list_t *i; -- for (i = alpm_option_get_syncdbs (); i != NULL; i = i->next) { -+ const alpm_list_t *i = alpm_option_get_syncdbs (alpm); -+ for (; i != NULL; i = i->next) { - const gchar *repo = alpm_db_get_name (i->data); - - if (g_strcmp0 (repo, repo_id) == 0) { -@@ -111,7 +109,7 @@ pk_backend_find_pkg (PkBackend *self, const gchar *package_id, GError **error) - } - - if (pkg == NULL) { -- int code = PM_ERR_PKG_NOT_FOUND; -+ int code = ALPM_ERR_PKG_NOT_FOUND; - g_set_error (error, ALPM_ERROR, code, "%s: %s", package_id, - alpm_strerror (code)); - } -@@ -123,7 +121,7 @@ static gboolean - pk_backend_resolve_package (PkBackend *self, const gchar *package, - GError **error) - { -- pmpkg_t *pkg; -+ alpm_pkg_t *pkg; - - PkBitfield filters; - gboolean skip_local, skip_remote; -@@ -142,7 +140,7 @@ pk_backend_resolve_package (PkBackend *self, const gchar *package, - PK_FILTER_ENUM_NOT_INSTALLED); - skip_remote = pk_bitfield_contain (filters, PK_FILTER_ENUM_INSTALLED); - -- if (alpm_pkg_get_db (pkg) == localdb) { -+ if (alpm_pkg_get_origin (pkg) == PKG_FROM_LOCALDB) { - if (!skip_local) { - pk_backend_pkg (self, pkg, PK_INFO_ENUM_INSTALLED); - } -@@ -158,7 +156,7 @@ pk_backend_resolve_package (PkBackend *self, const gchar *package, - static gboolean - pk_backend_resolve_name (PkBackend *self, const gchar *name, GError **error) - { -- pmpkg_t *pkg; -+ alpm_pkg_t *pkg; - int code; - - PkBitfield filters; -@@ -166,6 +164,7 @@ pk_backend_resolve_name (PkBackend *self, const gchar *name, GError **error) - - g_return_val_if_fail (self != NULL, FALSE); - g_return_val_if_fail (name != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - g_return_val_if_fail (localdb != NULL, FALSE); - - filters = pk_backend_get_uint (self, "filters"); -@@ -180,8 +179,8 @@ pk_backend_resolve_name (PkBackend *self, const gchar *name, GError **error) - return TRUE; - } - } else if (!skip_remote) { -- const alpm_list_t *i; -- for (i = alpm_option_get_syncdbs (); i != NULL; i = i->next) { -+ const alpm_list_t *i = alpm_option_get_syncdbs (alpm); -+ for (; i != NULL; i = i->next) { - pkg = alpm_db_get_pkg (i->data, name); - if (pkg != NULL) { - pk_backend_pkg (self, pkg, -@@ -191,7 +190,7 @@ pk_backend_resolve_name (PkBackend *self, const gchar *name, GError **error) - } - } - -- code = PM_ERR_PKG_NOT_FOUND; -+ code = ALPM_ERR_PKG_NOT_FOUND; - g_set_error (error, ALPM_ERROR, code, "%s: %s", name, - alpm_strerror (code)); - return FALSE; -@@ -254,7 +253,7 @@ pk_backend_get_details_thread (PkBackend *self) - g_return_val_if_fail (packages != NULL, FALSE); - - for (; *packages != NULL; ++packages) { -- pmpkg_t *pkg; -+ alpm_pkg_t *pkg; - const alpm_list_t *i; - - GString *licenses; -@@ -286,7 +285,7 @@ pk_backend_get_details_thread (PkBackend *self) - desc = alpm_pkg_get_desc (pkg); - url = alpm_pkg_get_url (pkg); - -- if (alpm_pkg_get_db (pkg) == localdb) { -+ if (alpm_pkg_get_origin (pkg) == PKG_FROM_LOCALDB) { - size = alpm_pkg_get_isize (pkg); - } else { - size = alpm_pkg_download_size (pkg); -@@ -317,17 +316,19 @@ pk_backend_get_files_thread (PkBackend *self) - GError *error = NULL; - - g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - - packages = pk_backend_get_strv (self, "package_ids"); - - g_return_val_if_fail (packages != NULL, FALSE); - - for (; *packages != NULL; ++packages) { -- pmpkg_t *pkg; -- const alpm_list_t *i; -+ alpm_pkg_t *pkg; -+ const gchar *root; - - GString *files; -- const gchar *root; -+ alpm_filelist_t *filelist; -+ gsize i; - - if (pk_backend_cancelled (self)) { - break; -@@ -338,11 +339,13 @@ pk_backend_get_files_thread (PkBackend *self) - break; - } - -+ root = alpm_option_get_root (alpm); - files = g_string_new (""); -- root = alpm_option_get_root (); -- for (i = alpm_pkg_get_files (pkg); i != NULL; i = i->next) { -- g_string_append_printf (files, ";%s%s", root, -- (const gchar *) i->data); -+ -+ filelist = alpm_pkg_get_files (pkg); -+ for (i = 0; i < filelist->count; ++i) { -+ const gchar *file = filelist->files[i].name; -+ g_string_append_printf (files, ";%s%s", root, file); - } - - pk_backend_files (self, *packages, files->str + 1); -diff --git a/backends/alpm/pk-backend-packages.h b/backends/alpm/pk-backend-packages.h -index 4b2d7f8..2d54684 100644 ---- a/backends/alpm/pk-backend-packages.h -+++ b/backends/alpm/pk-backend-packages.h -@@ -24,10 +24,11 @@ - #include <alpm.h> - #include <pk-backend.h> - --gchar *alpm_pkg_build_id (pmpkg_t *pkg); -+gchar *alpm_pkg_build_id (alpm_pkg_t *pkg); - --void pk_backend_pkg (PkBackend *self, pmpkg_t *pkg, -- PkInfoEnum info); -+void pk_backend_pkg (PkBackend *self, alpm_pkg_t *pkg, -+ PkInfoEnum info); - --pmpkg_t *pk_backend_find_pkg (PkBackend *self, const gchar *package_id, -- GError **error); -+alpm_pkg_t *pk_backend_find_pkg (PkBackend *self, -+ const gchar *package_id, -+ GError **error); -diff --git a/backends/alpm/pk-backend-remove.c b/backends/alpm/pk-backend-remove.c -index 03329b1..1993061 100644 ---- a/backends/alpm/pk-backend-remove.c -+++ b/backends/alpm/pk-backend-remove.c -@@ -29,29 +29,14 @@ - #include "pk-backend-remove.h" - #include "pk-backend-transaction.h" - --static gint --alpm_remove_local (const gchar *name) --{ -- pmpkg_t *pkg; -- -- g_return_val_if_fail (name != NULL, -1); -- g_return_val_if_fail (localdb != NULL, -1); -- -- pkg = alpm_db_get_pkg (localdb, name); -- if (pkg == NULL) { -- pm_errno = PM_ERR_PKG_NOT_FOUND; -- return -1; -- } -- -- return alpm_remove_pkg (pkg); --} -- - static gboolean - pk_backend_transaction_remove_targets (PkBackend *self, GError **error) - { - gchar **packages; - - g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); -+ g_return_val_if_fail (localdb != NULL, FALSE); - - packages = pk_backend_get_strv (self, "package_ids"); - -@@ -61,9 +46,11 @@ pk_backend_transaction_remove_targets (PkBackend *self, GError **error) - gchar **package = pk_package_id_split (*packages); - gchar *name = package[PK_PACKAGE_ID_NAME]; - -- if (alpm_remove_local (name) < 0) { -- g_set_error (error, ALPM_ERROR, pm_errno, "%s: %s", -- name, alpm_strerrorlast ()); -+ alpm_pkg_t *pkg = alpm_db_get_pkg (localdb, name); -+ if (pkg == NULL || alpm_remove_pkg (alpm, pkg) < 0) { -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error (error, ALPM_ERROR, errno, "%s: %s", name, -+ alpm_strerror (errno)); - g_strfreev (package); - return FALSE; - } -@@ -79,14 +66,17 @@ pk_backend_transaction_remove_simulate (PkBackend *self, GError **error) - { - const alpm_list_t *i; - -+ g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); -+ - if (!pk_backend_transaction_simulate (self, error)) { - return FALSE; - } - -- for (i = alpm_trans_get_remove (); i != NULL; i = i->next) { -+ for (i = alpm_trans_get_remove (alpm); i != NULL; i = i->next) { - const gchar *name = alpm_pkg_get_name (i->data); - if (alpm_list_find_str (holdpkgs, name)) { -- g_set_error (error, ALPM_ERROR, PM_ERR_PKG_HELD, -+ g_set_error (error, ALPM_ERROR, ALPM_ERR_PKG_HELD, - "%s: %s", name, - "could not remove HoldPkg"); - return FALSE; -@@ -99,14 +89,14 @@ pk_backend_transaction_remove_simulate (PkBackend *self, GError **error) - static gboolean - pk_backend_simulate_remove_packages_thread (PkBackend *self) - { -- pmtransflag_t flags = PM_TRANS_FLAG_CASCADE; -+ alpm_transflag_t flags = ALPM_TRANS_FLAG_CASCADE; - GError *error = NULL; - - g_return_val_if_fail (self != NULL, FALSE); - - /* remove unneeded packages that were required by those to be removed */ - if (pk_backend_get_bool (self, "autoremove")) { -- flags |= PM_TRANS_FLAG_RECURSE; -+ flags |= ALPM_TRANS_FLAG_RECURSE; - } - - if (pk_backend_transaction_initialize (self, flags, &error) && -@@ -121,18 +111,18 @@ pk_backend_simulate_remove_packages_thread (PkBackend *self) - static gboolean - pk_backend_remove_packages_thread (PkBackend *self) - { -- pmtransflag_t flags = 0; -+ alpm_transflag_t flags = 0; - GError *error = NULL; - - g_return_val_if_fail (self != NULL, FALSE); - - /* remove packages that depend on those to be removed */ - if (pk_backend_get_bool (self, "allow_deps")) { -- flags |= PM_TRANS_FLAG_CASCADE; -+ flags |= ALPM_TRANS_FLAG_CASCADE; - } - /* remove unneeded packages that were required by those to be removed */ - if (pk_backend_get_bool (self, "autoremove")) { -- flags |= PM_TRANS_FLAG_RECURSE; -+ flags |= ALPM_TRANS_FLAG_RECURSE; - } - - if (pk_backend_transaction_initialize (self, flags, &error) && -diff --git a/backends/alpm/pk-backend-search.c b/backends/alpm/pk-backend-search.c -index 592472d..c4e80ae 100644 ---- a/backends/alpm/pk-backend-search.c -+++ b/backends/alpm/pk-backend-search.c -@@ -55,9 +55,10 @@ static gpointer - pk_backend_pattern_chroot (const gchar *needle, GError **error) - { - g_return_val_if_fail (needle != NULL, NULL); -+ g_return_val_if_fail (alpm != NULL, NULL); - - if (G_IS_DIR_SEPARATOR (*needle)) { -- const gchar *file = needle, *root = alpm_option_get_root (); -+ const gchar *file = needle, *root = alpm_option_get_root (alpm); - - /* adjust needle to the correct prefix */ - for (; *file == *root; ++file, ++root) { -@@ -74,7 +75,7 @@ pk_backend_pattern_chroot (const gchar *needle, GError **error) - } - - static gboolean --pk_backend_match_all (pmpkg_t *pkg, gpointer pattern) -+pk_backend_match_all (alpm_pkg_t *pkg, gpointer pattern) - { - g_return_val_if_fail (pkg != NULL, FALSE); - g_return_val_if_fail (pattern != NULL, FALSE); -@@ -84,10 +85,10 @@ pk_backend_match_all (pmpkg_t *pkg, gpointer pattern) - } - - static gboolean --pk_backend_match_details (pmpkg_t *pkg, GRegex *regex) -+pk_backend_match_details (alpm_pkg_t *pkg, GRegex *regex) - { - const gchar *desc; -- pmdb_t *db; -+ alpm_db_t *db; - const alpm_list_t *i; - - g_return_val_if_fail (pkg != NULL, FALSE); -@@ -123,32 +124,38 @@ pk_backend_match_details (pmpkg_t *pkg, GRegex *regex) - } - - static gboolean --pk_backend_match_file (pmpkg_t *pkg, const gchar *needle) -+pk_backend_match_file (alpm_pkg_t *pkg, const gchar *needle) - { -- const alpm_list_t *i; -+ alpm_filelist_t *files; -+ gsize i; - - g_return_val_if_fail (pkg != NULL, FALSE); - g_return_val_if_fail (needle != NULL, FALSE); - -+ files = alpm_pkg_get_files (pkg); -+ - /* match any file the package contains */ - if (G_IS_DIR_SEPARATOR (*needle)) { -- for (i = alpm_pkg_get_files (pkg); i != NULL; i = i->next) { -+ for (i = 0; i < files->count; ++i) { -+ const gchar *file = files->files[i].name; - /* match the full path of file */ -- if (g_strcmp0 (i->data, needle + 1) == 0) { -+ if (g_strcmp0 (file, needle + 1) == 0) { - return TRUE; - } - } - } else { -- for (i = alpm_pkg_get_files (pkg); i != NULL; i = i->next) { -- const gchar *file = strrchr (i->data, G_DIR_SEPARATOR); -- if (file == NULL) { -- file = i->data; -+ for (i = 0; i < files->count; ++i) { -+ const gchar *file = files->files[i].name; -+ const gchar *name = strrchr (file, G_DIR_SEPARATOR); -+ -+ if (name == NULL) { -+ name = file; - } else { -- ++file; -+ ++name; - } - - /* match the basename of file */ -- if (g_strcmp0 (file, needle) == 0) { -+ if (g_strcmp0 (name, needle) == 0) { - return TRUE; - } - } -@@ -158,7 +165,7 @@ pk_backend_match_file (pmpkg_t *pkg, const gchar *needle) - } - - static gboolean --pk_backend_match_group (pmpkg_t *pkg, const gchar *needle) -+pk_backend_match_group (alpm_pkg_t *pkg, const gchar *needle) - { - g_return_val_if_fail (pkg != NULL, FALSE); - g_return_val_if_fail (needle != NULL, FALSE); -@@ -168,7 +175,7 @@ pk_backend_match_group (pmpkg_t *pkg, const gchar *needle) - } - - static gboolean --pk_backend_match_name (pmpkg_t *pkg, GRegex *regex) -+pk_backend_match_name (alpm_pkg_t *pkg, GRegex *regex) - { - g_return_val_if_fail (pkg != NULL, FALSE); - g_return_val_if_fail (regex != NULL, FALSE); -@@ -178,7 +185,7 @@ pk_backend_match_name (pmpkg_t *pkg, GRegex *regex) - } - - static gboolean --pk_backend_match_provides (pmpkg_t *pkg, gpointer pattern) -+pk_backend_match_provides (alpm_pkg_t *pkg, gpointer pattern) - { - /* TODO: implement GStreamer codecs, Pango fonts, etc. */ - const alpm_list_t *i; -@@ -215,7 +222,7 @@ typedef enum { - } SearchType; - - typedef gpointer (*PatternFunc) (const gchar *needle, GError **error); --typedef gboolean (*MatchFunc) (pmpkg_t *pkg, gpointer pattern); -+typedef gboolean (*MatchFunc) (alpm_pkg_t *pkg, gpointer pattern); - - static PatternFunc pattern_funcs[] = { - pk_backend_pattern_needle, -@@ -245,9 +252,9 @@ static MatchFunc match_funcs[] = { - }; - - static gboolean --alpm_pkg_is_local (pmpkg_t *pkg) -+alpm_pkg_is_local (alpm_pkg_t *pkg) - { -- pmpkg_t *local; -+ alpm_pkg_t *local; - - g_return_val_if_fail (pkg != NULL, FALSE); - g_return_val_if_fail (localdb != NULL, FALSE); -@@ -274,7 +281,7 @@ alpm_pkg_is_local (pmpkg_t *pkg) - } - - static void --pk_backend_search_db (PkBackend *self, pmdb_t *db, MatchFunc match, -+pk_backend_search_db (PkBackend *self, alpm_db_t *db, MatchFunc match, - const alpm_list_t *patterns) - { - const alpm_list_t *i, *j; -@@ -326,6 +333,7 @@ pk_backend_search_thread (PkBackend *self) - GError *error = NULL; - - g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - g_return_val_if_fail (localdb != NULL, FALSE); - - needles = pk_backend_get_strv (self, "search"); -@@ -366,7 +374,7 @@ pk_backend_search_thread (PkBackend *self) - goto out; - } - -- for (i = alpm_option_get_syncdbs (); i != NULL; i = i->next) { -+ for (i = alpm_option_get_syncdbs (alpm); i != NULL; i = i->next) { - if (pk_backend_cancelled (self)) { - break; - } -diff --git a/backends/alpm/pk-backend-sync.c b/backends/alpm/pk-backend-sync.c -index 9e1e02b..c770159 100644 ---- a/backends/alpm/pk-backend-sync.c -+++ b/backends/alpm/pk-backend-sync.c -@@ -30,41 +30,13 @@ - #include "pk-backend-sync.h" - #include "pk-backend-transaction.h" - --static gint --alpm_add_dbtarget (const gchar *repo, const gchar *name) --{ -- const alpm_list_t *i; -- pmpkg_t *pkg; -- -- g_return_val_if_fail (repo != NULL, -1); -- g_return_val_if_fail (name != NULL, -1); -- -- for (i = alpm_option_get_syncdbs (); i != NULL; i = i->next) { -- if (g_strcmp0 (alpm_db_get_name (i->data), repo) == 0) { -- break; -- } -- } -- -- if (i == NULL) { -- pm_errno = PM_ERR_DB_NOT_FOUND; -- return -1; -- } -- -- pkg = alpm_db_get_pkg (i->data, name); -- if (pkg == NULL) { -- pm_errno = PM_ERR_PKG_NOT_FOUND; -- return -1; -- } -- -- return alpm_add_pkg (pkg); --} -- - static gboolean - pk_backend_transaction_sync_targets (PkBackend *self, GError **error) - { - gchar **packages; - - g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - - packages = pk_backend_get_strv (self, "package_ids"); - -@@ -75,9 +47,28 @@ pk_backend_transaction_sync_targets (PkBackend *self, GError **error) - gchar *repo = package[PK_PACKAGE_ID_DATA]; - gchar *name = package[PK_PACKAGE_ID_NAME]; - -- if (alpm_add_dbtarget (repo, name) < 0) { -- g_set_error (error, ALPM_ERROR, pm_errno, "%s/%s: %s", -- repo, name, alpm_strerrorlast ()); -+ const alpm_list_t *i = alpm_option_get_syncdbs (alpm); -+ alpm_pkg_t *pkg; -+ -+ for (; i != NULL; i = i->next) { -+ if (g_strcmp0 (alpm_db_get_name (i->data), repo) == 0) { -+ break; -+ } -+ } -+ -+ if (i == NULL) { -+ enum _alpm_errno_t errno = ALPM_ERR_DB_NOT_FOUND; -+ g_set_error (error, ALPM_ERROR, errno, "%s/%s: %s", -+ repo, name, alpm_strerror (errno)); -+ g_strfreev (package); -+ return FALSE; -+ } -+ -+ pkg = alpm_db_get_pkg (i->data, name); -+ if (pkg == NULL || alpm_add_pkg (alpm, pkg) < 0) { -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error (error, ALPM_ERROR, errno, "%s/%s: %s", -+ repo, name, alpm_strerror (errno)); - g_strfreev (package); - return FALSE; - } -@@ -93,23 +84,27 @@ pk_backend_download_packages_thread (PkBackend *self) - { - alpm_list_t *cachedirs; - const gchar *directory; -- pmtransflag_t flags = 0; -+ alpm_transflag_t flags = 0; - GError *error = NULL; - - g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - - directory = pk_backend_get_string (self, "directory"); - - if (directory != NULL) { - /* download files to a PackageKit directory */ - gchar *cachedir = strdup (directory); -- cachedirs = alpm_list_strdup (alpm_option_get_cachedirs ()); -- alpm_option_set_cachedirs (alpm_list_add (NULL, cachedir)); -+ const alpm_list_t *old = alpm_option_get_cachedirs (alpm); -+ alpm_list_t *new = alpm_list_add (NULL, cachedir); -+ -+ cachedirs = alpm_list_strdup (old); -+ alpm_option_set_cachedirs (alpm, new); - } - -- flags |= PM_TRANS_FLAG_NODEPS; -- flags |= PM_TRANS_FLAG_NOCONFLICTS; -- flags |= PM_TRANS_FLAG_DOWNLOADONLY; -+ flags |= ALPM_TRANS_FLAG_NODEPS; -+ flags |= ALPM_TRANS_FLAG_NOCONFLICTS; -+ flags |= ALPM_TRANS_FLAG_DOWNLOADONLY; - - if (pk_backend_transaction_initialize (self, flags, &error) && - pk_backend_transaction_sync_targets (self, &error) && -@@ -118,7 +113,7 @@ pk_backend_download_packages_thread (PkBackend *self) - } - - if (directory != NULL) { -- alpm_option_set_cachedirs (cachedirs); -+ alpm_option_set_cachedirs (alpm, cachedirs); - } - - return pk_backend_transaction_finish (self, error); -@@ -190,16 +185,17 @@ pk_backend_install_packages (PkBackend *self, gboolean only_trusted, - } - - static gboolean --pk_backend_replaces_dependencies (PkBackend *self, pmpkg_t *pkg) -+pk_backend_replaces_dependencies (PkBackend *self, alpm_pkg_t *pkg) - { - const alpm_list_t *i, *replaces; - - g_return_val_if_fail (self != NULL, FALSE); - g_return_val_if_fail (pkg != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - - replaces = alpm_pkg_get_replaces (pkg); -- for (i = alpm_trans_get_remove (); i != NULL; i = i->next) { -- pmpkg_t *rpkg = (pmpkg_t *) i->data; -+ for (i = alpm_trans_get_remove (alpm); i != NULL; i = i->next) { -+ alpm_pkg_t *rpkg = (alpm_pkg_t *) i->data; - const gchar *rname = alpm_pkg_get_name (rpkg); - - if (pk_backend_cancelled (self)) { -@@ -208,7 +204,7 @@ pk_backend_replaces_dependencies (PkBackend *self, pmpkg_t *pkg) - continue; - } - -- if (alpm_pkg_get_reason (rpkg) == PM_PKG_REASON_EXPLICIT) { -+ if (alpm_pkg_get_reason (rpkg) == ALPM_PKG_REASON_EXPLICIT) { - return FALSE; - } - } -@@ -224,6 +220,7 @@ pk_backend_update_packages_thread (PkBackend *self) - GError *error = NULL; - - g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - g_return_val_if_fail (localdb != NULL, FALSE); - - if (!pk_backend_transaction_initialize (self, 0, &error) || -@@ -233,8 +230,8 @@ pk_backend_update_packages_thread (PkBackend *self) - } - - /* change the install reason of packages that replace dependencies */ -- for (i = alpm_trans_get_add (); i != NULL; i = i->next) { -- pmpkg_t *pkg = (pmpkg_t *) i->data; -+ for (i = alpm_trans_get_add (alpm); i != NULL; i = i->next) { -+ alpm_pkg_t *pkg = (alpm_pkg_t *) i->data; - const gchar *name = alpm_pkg_get_name (pkg); - - if (pk_backend_cancelled (self)) { -@@ -254,7 +251,8 @@ pk_backend_update_packages_thread (PkBackend *self) - - for (i = asdeps; i != NULL; i = i->next) { - const gchar *name = (const gchar *) i->data; -- alpm_db_set_pkgreason (localdb, name, PM_PKG_REASON_DEPEND); -+ alpm_pkg_t *pkg = alpm_db_get_pkg (localdb, name); -+ alpm_db_set_pkgreason (alpm, pkg, ALPM_PKG_REASON_DEPEND); - } - - out: -diff --git a/backends/alpm/pk-backend-transaction.c b/backends/alpm/pk-backend-transaction.c -index fdb840e..f812766 100644 ---- a/backends/alpm/pk-backend-transaction.c -+++ b/backends/alpm/pk-backend-transaction.c -@@ -29,10 +29,10 @@ - static off_t dcomplete = 0; - static off_t dtotal = 0; - --static pmpkg_t *dpkg = NULL; -+static alpm_pkg_t *dpkg = NULL; - static GString *dfiles = NULL; - --static pmpkg_t *tpkg = NULL; -+static alpm_pkg_t *tpkg = NULL; - static GString *toutput = NULL; - - static gchar * -@@ -51,25 +51,26 @@ pk_backend_resolve_path (PkBackend *self, const gchar *basename) - } - - static gboolean --alpm_pkg_has_basename (pmpkg_t *pkg, const gchar *basename) -+alpm_pkg_has_basename (alpm_pkg_t *pkg, const gchar *basename) - { - const alpm_list_t *i; - - g_return_val_if_fail (pkg != NULL, FALSE); - g_return_val_if_fail (basename != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - - if (g_strcmp0 (alpm_pkg_get_filename (pkg), basename) == 0) { - return TRUE; - } - -- if (alpm_option_get_usedelta () == 0) { -+ if (alpm_option_get_usedelta (alpm) == 0) { - return FALSE; - } - - for (i = alpm_pkg_get_deltas (pkg); i != NULL; i = i->next) { -- const gchar *patch = alpm_delta_get_filename (i->data); -+ alpm_delta_t *delta = (alpm_delta_t *) i->data; - -- if (g_strcmp0 (patch, basename) == 0) { -+ if (g_strcmp0 (delta->delta, basename) == 0) { - return TRUE; - } - } -@@ -109,6 +110,7 @@ pk_backend_transaction_download_start (PkBackend *self, const gchar *basename) - - g_return_if_fail (self != NULL); - g_return_if_fail (basename != NULL); -+ g_return_if_fail (alpm != NULL); - - /* continue or finish downloading the current package */ - if (dpkg != NULL) { -@@ -127,8 +129,8 @@ pk_backend_transaction_download_start (PkBackend *self, const gchar *basename) - } - - /* figure out what the next package is */ -- for (i = alpm_trans_get_add (); i != NULL; i = i->next) { -- pmpkg_t *pkg = (pmpkg_t *) i->data; -+ for (i = alpm_trans_get_add (alpm); i != NULL; i = i->next) { -+ alpm_pkg_t *pkg = (alpm_pkg_t *) i->data; - - if (alpm_pkg_has_basename (pkg, basename)) { - dpkg = pkg; -@@ -202,16 +204,17 @@ pk_backend_transaction_dlcb (const gchar *basename, off_t complete, off_t total) - } - - static void --pk_backend_transaction_progress_cb (pmtransprog_t type, const gchar *target, -+pk_backend_transaction_progress_cb (alpm_progress_t type, const gchar *target, - gint percent, gsize targets, gsize current) - { - static gint recent = 101; - gsize overall = percent + (current - 1) * 100; - - /* TODO: revert when fixed upstream */ -- if (type == PM_TRANS_PROGRESS_CONFLICTS_START || -- type == PM_TRANS_PROGRESS_DISKSPACE_START || -- type == PM_TRANS_PROGRESS_INTEGRITY_START) { -+ if (type == ALPM_PROGRESS_CONFLICTS_START || -+ type == ALPM_PROGRESS_DISKSPACE_START || -+ type == ALPM_PROGRESS_INTEGRITY_START || -+ type == ALPM_PROGRESS_LOAD_START) { - if (current < targets) { - overall = percent + current++ * 100; - } -@@ -228,12 +231,13 @@ pk_backend_transaction_progress_cb (pmtransprog_t type, const gchar *target, - - /* update transaction progress */ - switch (type) { -- case PM_TRANS_PROGRESS_ADD_START: -- case PM_TRANS_PROGRESS_UPGRADE_START: -- case PM_TRANS_PROGRESS_REMOVE_START: -- case PM_TRANS_PROGRESS_CONFLICTS_START: -- case PM_TRANS_PROGRESS_DISKSPACE_START: -- case PM_TRANS_PROGRESS_INTEGRITY_START: -+ case ALPM_PROGRESS_ADD_START: -+ case ALPM_PROGRESS_UPGRADE_START: -+ case ALPM_PROGRESS_REMOVE_START: -+ case ALPM_PROGRESS_CONFLICTS_START: -+ case ALPM_PROGRESS_DISKSPACE_START: -+ case ALPM_PROGRESS_INTEGRITY_START: -+ case ALPM_PROGRESS_LOAD_START: - if (percent == recent) { - break; - } -@@ -253,7 +257,7 @@ pk_backend_transaction_progress_cb (pmtransprog_t type, const gchar *target, - } - - static void --pk_backend_install_ignorepkg (PkBackend *self, pmpkg_t *pkg, gint *result) -+pk_backend_install_ignorepkg (PkBackend *self, alpm_pkg_t *pkg, gint *result) - { - gchar *output; - -@@ -280,50 +284,52 @@ pk_backend_install_ignorepkg (PkBackend *self, pmpkg_t *pkg, gint *result) - } - - static void --pk_backend_select_provider (PkBackend *self, pmdepend_t *dep, -+pk_backend_select_provider (PkBackend *self, alpm_depend_t *depend, - const alpm_list_t *providers) - { - gchar *output; - - g_return_if_fail (self != NULL); -- g_return_if_fail (dep != NULL); -+ g_return_if_fail (depend != NULL); - g_return_if_fail (providers != NULL); - - output = g_strdup_printf ("provider package was selected " - "(%s provides %s)\n", - alpm_pkg_get_name (providers->data), -- alpm_dep_get_name (dep)); -+ depend->name); - pk_backend_output (self, output); - g_free (output); - } - - static void --pk_backend_transaction_conv_cb (pmtransconv_t question, gpointer data1, -+pk_backend_transaction_conv_cb (alpm_question_t question, gpointer data1, - gpointer data2, gpointer data3, gint *result) - { - g_return_if_fail (result != NULL); - g_return_if_fail (backend != NULL); - - switch (question) { -- case PM_TRANS_CONV_INSTALL_IGNOREPKG: -+ case ALPM_QUESTION_INSTALL_IGNOREPKG: - pk_backend_install_ignorepkg (backend, data1, result); - break; - -- case PM_TRANS_CONV_REPLACE_PKG: -- case PM_TRANS_CONV_CONFLICT_PKG: -- case PM_TRANS_CONV_CORRUPTED_PKG: -- case PM_TRANS_CONV_LOCAL_NEWER: -+ case ALPM_QUESTION_REPLACE_PKG: -+ case ALPM_QUESTION_CONFLICT_PKG: -+ case ALPM_QUESTION_CORRUPTED_PKG: -+ case ALPM_QUESTION_LOCAL_NEWER: - /* these actions are mostly harmless */ - g_debug ("safe question %d", question); - *result = 1; - break; - -- case PM_TRANS_CONV_REMOVE_PKGS: -+ case ALPM_QUESTION_REMOVE_PKGS: -+ /* TODO: handle keys better */ -+ case ALPM_QUESTION_IMPORT_KEY: - g_debug ("unsafe question %d", question); - *result = 0; - break; - -- case PM_TRANS_CONV_SELECT_PROVIDER: -+ case ALPM_QUESTION_SELECT_PROVIDER: - pk_backend_select_provider (backend, data1, data2); - *result = 0; - break; -@@ -349,7 +355,7 @@ pk_backend_output_end (PkBackend *self) - } - - static void --pk_backend_output_start (PkBackend *self, pmpkg_t *pkg) -+pk_backend_output_start (PkBackend *self, alpm_pkg_t *pkg) - { - g_return_if_fail (self != NULL); - g_return_if_fail (pkg != NULL); -@@ -398,7 +404,7 @@ pk_backend_transaction_test_commit (PkBackend *self) - } - - static void --pk_backend_transaction_add_start (PkBackend *self, pmpkg_t *pkg) -+pk_backend_transaction_add_start (PkBackend *self, alpm_pkg_t *pkg) - { - g_return_if_fail (self != NULL); - g_return_if_fail (pkg != NULL); -@@ -409,18 +415,19 @@ pk_backend_transaction_add_start (PkBackend *self, pmpkg_t *pkg) - } - - static void --pk_backend_transaction_add_done (PkBackend *self, pmpkg_t *pkg) -+pk_backend_transaction_add_done (PkBackend *self, alpm_pkg_t *pkg) - { - const gchar *name, *version; - const alpm_list_t *i, *optdepends; - - g_return_if_fail (self != NULL); - g_return_if_fail (pkg != NULL); -+ g_return_if_fail (alpm != NULL); - - name = alpm_pkg_get_name (pkg); - version = alpm_pkg_get_version (pkg); - -- alpm_logaction ("installed %s (%s)\n", name, version); -+ alpm_logaction (alpm, "installed %s (%s)\n", name, version); - pk_backend_pkg (self, pkg, PK_INFO_ENUM_FINISHED); - - optdepends = alpm_pkg_get_optdepends (pkg); -@@ -438,7 +445,7 @@ pk_backend_transaction_add_done (PkBackend *self, pmpkg_t *pkg) - } - - static void --pk_backend_transaction_remove_start (PkBackend *self, pmpkg_t *pkg) -+pk_backend_transaction_remove_start (PkBackend *self, alpm_pkg_t *pkg) - { - g_return_if_fail (self != NULL); - g_return_if_fail (pkg != NULL); -@@ -449,24 +456,25 @@ pk_backend_transaction_remove_start (PkBackend *self, pmpkg_t *pkg) - } - - static void --pk_backend_transaction_remove_done (PkBackend *self, pmpkg_t *pkg) -+pk_backend_transaction_remove_done (PkBackend *self, alpm_pkg_t *pkg) - { - const gchar *name, *version; - - g_return_if_fail (self != NULL); - g_return_if_fail (pkg != NULL); -+ g_return_if_fail (alpm != NULL); - - name = alpm_pkg_get_name (pkg); - version = alpm_pkg_get_version (pkg); - -- alpm_logaction ("removed %s (%s)\n", name, version); -+ alpm_logaction (alpm, "removed %s (%s)\n", name, version); - pk_backend_pkg (self, pkg, PK_INFO_ENUM_FINISHED); - pk_backend_output_end (self); - } - - static void --pk_backend_transaction_upgrade_start (PkBackend *self, pmpkg_t *pkg, -- pmpkg_t *old) -+pk_backend_transaction_upgrade_start (PkBackend *self, alpm_pkg_t *pkg, -+ alpm_pkg_t *old) - { - PkRoleEnum role; - PkStatusEnum state; -@@ -491,8 +499,8 @@ pk_backend_transaction_upgrade_start (PkBackend *self, pmpkg_t *pkg, - } - - static void --pk_backend_transaction_upgrade_done (PkBackend *self, pmpkg_t *pkg, -- pmpkg_t *old) -+pk_backend_transaction_upgrade_done (PkBackend *self, alpm_pkg_t *pkg, -+ alpm_pkg_t *old) - { - const gchar *name, *pre, *post; - const alpm_list_t *i; -@@ -501,12 +509,13 @@ pk_backend_transaction_upgrade_done (PkBackend *self, pmpkg_t *pkg, - g_return_if_fail (self != NULL); - g_return_if_fail (pkg != NULL); - g_return_if_fail (old != NULL); -+ g_return_if_fail (alpm != NULL); - - name = alpm_pkg_get_name (pkg); - pre = alpm_pkg_get_version (old); - post = alpm_pkg_get_version (pkg); - -- alpm_logaction ("upgraded %s (%s -> %s)\n", name, pre, post); -+ alpm_logaction (alpm, "upgraded %s (%s -> %s)\n", name, pre, post); - pk_backend_pkg (self, pkg, PK_INFO_ENUM_FINISHED); - - optdepends = alpm_list_diff (alpm_pkg_get_optdepends (pkg), -@@ -528,53 +537,65 @@ pk_backend_transaction_upgrade_done (PkBackend *self, pmpkg_t *pkg, - } - - static void --pk_backend_transaction_event_cb (pmtransevt_t event, gpointer data, -+pk_backend_transaction_setup (PkBackend *self) -+{ -+ g_return_if_fail (self != NULL); -+ -+ pk_backend_set_status (self, PK_STATUS_ENUM_SETUP); -+} -+ -+static void -+pk_backend_transaction_event_cb (alpm_event_t event, gpointer data, - gpointer old) - { - g_return_if_fail (backend != NULL); - - /* figure out the backend status and package info */ - switch (event) { -- case PM_TRANS_EVT_CHECKDEPS_START: -- case PM_TRANS_EVT_RESOLVEDEPS_START: -+ case ALPM_EVENT_CHECKDEPS_START: -+ case ALPM_EVENT_RESOLVEDEPS_START: - pk_backend_transaction_dep_resolve (backend); - break; - -- case PM_TRANS_EVT_FILECONFLICTS_START: -- case PM_TRANS_EVT_INTERCONFLICTS_START: -- case PM_TRANS_EVT_INTEGRITY_START: -- case PM_TRANS_EVT_DELTA_INTEGRITY_START: -- case PM_TRANS_EVT_DISKSPACE_START: -+ case ALPM_EVENT_FILECONFLICTS_START: -+ case ALPM_EVENT_INTERCONFLICTS_START: -+ case ALPM_EVENT_INTEGRITY_START: -+ case ALPM_EVENT_DELTA_INTEGRITY_START: -+ case ALPM_EVENT_DISKSPACE_START: - pk_backend_transaction_test_commit (backend); - break; - -- case PM_TRANS_EVT_ADD_START: -+ case ALPM_EVENT_ADD_START: - pk_backend_transaction_add_start (backend, data); - break; - -- case PM_TRANS_EVT_ADD_DONE: -+ case ALPM_EVENT_ADD_DONE: - pk_backend_transaction_add_done (backend, data); - break; - -- case PM_TRANS_EVT_REMOVE_START: -+ case ALPM_EVENT_REMOVE_START: - pk_backend_transaction_remove_start (backend, data); - break; - -- case PM_TRANS_EVT_REMOVE_DONE: -+ case ALPM_EVENT_REMOVE_DONE: - pk_backend_transaction_remove_done (backend, data); - break; - -- case PM_TRANS_EVT_UPGRADE_START: -+ case ALPM_EVENT_UPGRADE_START: - pk_backend_transaction_upgrade_start (backend, data, - old); - break; - -- case PM_TRANS_EVT_UPGRADE_DONE: -+ case ALPM_EVENT_UPGRADE_DONE: - pk_backend_transaction_upgrade_done (backend, data, - old); - break; - -- case PM_TRANS_EVT_SCRIPTLET_INFO: -+ case ALPM_EVENT_LOAD_START: -+ pk_backend_transaction_setup (backend); -+ break; -+ -+ case ALPM_EVENT_SCRIPTLET_INFO: - pk_backend_output (backend, data); - break; - -@@ -588,27 +609,32 @@ static void - transaction_cancelled_cb (GCancellable *object, gpointer data) - { - g_return_if_fail (data != NULL); -+ g_return_if_fail (alpm != NULL); - -- alpm_trans_interrupt (); -+ alpm_trans_interrupt (alpm); - } - - gboolean --pk_backend_transaction_initialize (PkBackend *self, pmtransflag_t flags, -+pk_backend_transaction_initialize (PkBackend *self, alpm_transflag_t flags, - GError **error) - { - g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - g_return_val_if_fail (cancellable != NULL, FALSE); - -- if (alpm_trans_init (flags, pk_backend_transaction_event_cb, -- pk_backend_transaction_conv_cb, -- pk_backend_transaction_progress_cb) < 0) { -- g_set_error_literal (error, ALPM_ERROR, pm_errno, -- alpm_strerrorlast ()); -+ if (alpm_trans_init (alpm, flags) < 0) { -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error_literal (error, ALPM_ERROR, errno, -+ alpm_strerror (errno)); - return FALSE; - } - -- alpm_option_set_dlcb (pk_backend_transaction_dlcb); -- alpm_option_set_totaldlcb (pk_backend_transaction_totaldlcb); -+ alpm_option_set_eventcb (alpm, pk_backend_transaction_event_cb); -+ alpm_option_set_questioncb (alpm, pk_backend_transaction_conv_cb); -+ alpm_option_set_progresscb (alpm, pk_backend_transaction_progress_cb); -+ -+ alpm_option_set_dlcb (alpm, pk_backend_transaction_dlcb); -+ alpm_option_set_totaldlcb (alpm, pk_backend_transaction_totaldlcb); - - g_cancellable_connect (cancellable, - G_CALLBACK (transaction_cancelled_cb), -@@ -649,10 +675,11 @@ alpm_miss_build_list (const alpm_list_t *i) - } - - for (; i != NULL; i = i->next) { -- pmdepend_t *dep = alpm_miss_get_dep (i->data); -- gchar *depend = alpm_dep_compute_string (dep); -+ alpm_depmissing_t *miss = (alpm_depmissing_t *) i->data; -+ gchar *depend = alpm_dep_compute_string (miss->depend); -+ - g_string_append_printf (list, "%s <- %s, ", depend, -- alpm_miss_get_target (i->data)); -+ miss->target); - free (depend); - } - -@@ -661,25 +688,21 @@ alpm_miss_build_list (const alpm_list_t *i) - } - - static void --alpm_dep_free (gpointer dep) -+alpm_depend_free (alpm_depend_t *depend) - { -- /* TODO: remove when implemented in libalpm */ -- free ((gpointer) alpm_dep_get_name (dep)); -- free ((gpointer) alpm_dep_get_version (dep)); -- free (dep); -+ free (depend->name); -+ free (depend->version); -+ free (depend); - } - - static void --alpm_miss_free (gpointer miss) -+alpm_depmissing_free (gpointer miss) - { -- /* TODO: remove when implemented in libalpm */ -- const gchar *temp = alpm_miss_get_causingpkg (miss); -- if (temp != NULL) { -- free ((gpointer) temp); -- } -+ alpm_depmissing_t *self = (alpm_depmissing_t *) miss; - -- free ((gpointer) alpm_miss_get_target (miss)); -- alpm_dep_free (alpm_miss_get_dep (miss)); -+ free (self->target); -+ alpm_depend_free (self->depend); -+ free (self->causingpkg); - free (miss); - } - -@@ -695,17 +718,20 @@ alpm_conflict_build_list (const alpm_list_t *i) - } - - for (; i != NULL; i = i->next) { -- const gchar *first = alpm_conflict_get_package1 (i->data); -- const gchar *second = alpm_conflict_get_package2 (i->data); -- const gchar *reason = alpm_conflict_get_reason (i->data); -+ alpm_conflict_t *conflict = (alpm_conflict_t *) i->data; -+ alpm_depend_t *depend = conflict->reason; - -- if (g_strcmp0 (first, reason) == 0 || -- g_strcmp0 (second, reason) == 0) { -- g_string_append_printf (list, "%s <-> %s, ", first, -- second); -+ if (g_strcmp0 (conflict->package1, depend->name) == 0 || -+ g_strcmp0 (conflict->package2, depend->name) == 0) { -+ g_string_append_printf (list, "%s <-> %s, ", -+ conflict->package1, -+ conflict->package2); - } else { -- g_string_append_printf (list, "%s <-> %s (%s), ", first, -- second, reason); -+ gchar *reason = alpm_dep_compute_string (depend); -+ g_string_append_printf (list, "%s <-> %s (%s), ", -+ conflict->package1, -+ conflict->package2, reason); -+ g_free (reason); - } - } - -@@ -716,10 +742,10 @@ alpm_conflict_build_list (const alpm_list_t *i) - static void - alpm_conflict_free (gpointer conflict) - { -- /* TODO: remove when implemented in libalpm */ -- free ((gpointer) alpm_conflict_get_package1 (conflict)); -- free ((gpointer) alpm_conflict_get_package2 (conflict)); -- free ((gpointer) alpm_conflict_get_reason (conflict)); -+ alpm_conflict_t *self = (alpm_conflict_t *) conflict; -+ -+ free (self->package1); -+ free (self->package2); - free (conflict); - } - -@@ -735,15 +761,17 @@ alpm_fileconflict_build_list (const alpm_list_t *i) - } - - for (; i != NULL; i = i->next) { -- const gchar *target = alpm_fileconflict_get_target (i->data); -- const gchar *file = alpm_fileconflict_get_file (i->data); -- const gchar *ctarget = alpm_fileconflict_get_ctarget (i->data); -- if (*ctarget != '\0') { -+ alpm_fileconflict_t *conflict = (alpm_fileconflict_t *) i->data; -+ -+ if (*conflict->ctarget != '\0') { - g_string_append_printf (list, "%s <-> %s (%s), ", -- target, ctarget, file); -+ conflict->target, -+ conflict->ctarget, -+ conflict->file); - } else { -- g_string_append_printf (list, "%s (%s), ", target, -- file); -+ g_string_append_printf (list, "%s (%s), ", -+ conflict->target, -+ conflict->file); - } - } - -@@ -754,14 +782,11 @@ alpm_fileconflict_build_list (const alpm_list_t *i) - static void - alpm_fileconflict_free (gpointer conflict) - { -- /* TODO: remove when implemented in libalpm */ -- const gchar *temp = alpm_fileconflict_get_ctarget (conflict); -- if (*temp != '\0') { -- free ((gpointer) temp); -- } -+ alpm_fileconflict_t *self = (alpm_fileconflict_t *) conflict; - -- free ((gpointer) alpm_fileconflict_get_target (conflict)); -- free ((gpointer) alpm_fileconflict_get_file (conflict)); -+ free (self->target); -+ free (self->file); -+ free (self->ctarget); - free (conflict); - } - -@@ -771,29 +796,32 @@ pk_backend_transaction_simulate (PkBackend *self, GError **error) - alpm_list_t *data = NULL; - gchar *prefix; - -- if (alpm_trans_prepare (&data) >= 0) { -+ g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); -+ -+ if (alpm_trans_prepare (alpm, &data) >= 0) { - return TRUE; - } - -- switch (pm_errno) { -- case PM_ERR_PKG_INVALID_ARCH: -+ switch (alpm_errno (alpm)) { -+ case ALPM_ERR_PKG_INVALID_ARCH: - prefix = alpm_pkg_build_list (data); - alpm_list_free (data); - break; - -- case PM_ERR_UNSATISFIED_DEPS: -+ case ALPM_ERR_UNSATISFIED_DEPS: - prefix = alpm_miss_build_list (data); -- alpm_list_free_inner (data, alpm_miss_free); -+ alpm_list_free_inner (data, alpm_depmissing_free); - alpm_list_free (data); - break; - -- case PM_ERR_CONFLICTING_DEPS: -+ case ALPM_ERR_CONFLICTING_DEPS: - prefix = alpm_conflict_build_list (data); - alpm_list_free_inner (data, alpm_conflict_free); - alpm_list_free (data); - break; - -- case PM_ERR_FILE_CONFLICTS: -+ case ALPM_ERR_FILE_CONFLICTS: - prefix = alpm_fileconflict_build_list (data); - alpm_list_free_inner (data, alpm_fileconflict_free); - alpm_list_free (data); -@@ -802,18 +830,21 @@ pk_backend_transaction_simulate (PkBackend *self, GError **error) - default: - prefix = NULL; - if (data != NULL) { -- g_warning ("unhandled error %d", pm_errno); -+ g_warning ("unhandled error %d", -+ alpm_errno (alpm)); - } - break; - } - - if (prefix != NULL) { -- g_set_error (error, ALPM_ERROR, pm_errno, "%s: %s", prefix, -- alpm_strerrorlast ()); -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error (error, ALPM_ERROR, errno, "%s: %s", prefix, -+ alpm_strerror (errno)); - g_free (prefix); - } else { -- g_set_error_literal (error, ALPM_ERROR, pm_errno, -- alpm_strerrorlast ()); -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error_literal (error, ALPM_ERROR, errno, -+ alpm_strerror (errno)); - } - - return FALSE; -@@ -826,10 +857,11 @@ pk_backend_transaction_packages (PkBackend *self) - PkInfoEnum info; - - g_return_if_fail (self != NULL); -+ g_return_if_fail (alpm != NULL); - g_return_if_fail (localdb != NULL); - - /* emit packages that would have been installed */ -- for (i = alpm_trans_get_add (); i != NULL; i = i->next) { -+ for (i = alpm_trans_get_add (alpm); i != NULL; i = i->next) { - if (pk_backend_cancelled (self)) { - break; - } else { -@@ -856,7 +888,7 @@ pk_backend_transaction_packages (PkBackend *self) - } - - /* emit packages that would have been removed */ -- for (i = alpm_trans_get_remove (); i != NULL; i = i->next) { -+ for (i = alpm_trans_get_remove (alpm); i != NULL; i = i->next) { - if (pk_backend_cancelled (self)) { - break; - } else { -@@ -890,6 +922,9 @@ pk_backend_transaction_commit (PkBackend *self, GError **error) - alpm_list_t *data = NULL; - gchar *prefix; - -+ g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); -+ - if (pk_backend_cancelled (self)) { - return TRUE; - } -@@ -897,19 +932,19 @@ pk_backend_transaction_commit (PkBackend *self, GError **error) - pk_backend_set_allow_cancel (self, FALSE); - pk_backend_set_status (self, PK_STATUS_ENUM_RUNNING); - -- if (alpm_trans_commit (&data) >= 0) { -+ if (alpm_trans_commit (alpm, &data) >= 0) { - return TRUE; - } - -- switch (pm_errno) { -- case PM_ERR_FILE_CONFLICTS: -+ switch (alpm_errno (alpm)) { -+ case ALPM_ERR_FILE_CONFLICTS: - prefix = alpm_fileconflict_build_list (data); - alpm_list_free_inner (data, alpm_fileconflict_free); - alpm_list_free (data); - break; - -- case PM_ERR_PKG_INVALID: -- case PM_ERR_DLT_INVALID: -+ case ALPM_ERR_PKG_INVALID: -+ case ALPM_ERR_DLT_INVALID: - prefix = alpm_string_build_list (data); - alpm_list_free (data); - break; -@@ -917,18 +952,21 @@ pk_backend_transaction_commit (PkBackend *self, GError **error) - default: - prefix = NULL; - if (data != NULL) { -- g_warning ("unhandled error %d", pm_errno); -+ g_warning ("unhandled error %d", -+ alpm_errno (alpm)); - } - break; - } - - if (prefix != NULL) { -- g_set_error (error, ALPM_ERROR, pm_errno, "%s: %s", prefix, -- alpm_strerrorlast ()); -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error (error, ALPM_ERROR, errno, "%s: %s", prefix, -+ alpm_strerror (errno)); - g_free (prefix); - } else { -- g_set_error_literal (error, ALPM_ERROR, pm_errno, -- alpm_strerrorlast ()); -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error_literal (error, ALPM_ERROR, errno, -+ alpm_strerror (errno)); - } - - return FALSE; -@@ -938,9 +976,14 @@ gboolean - pk_backend_transaction_end (PkBackend *self, GError **error) - { - g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); -+ -+ alpm_option_set_eventcb (alpm, NULL); -+ alpm_option_set_questioncb (alpm, NULL); -+ alpm_option_set_progresscb (alpm, NULL); - -- alpm_option_set_dlcb (NULL); -- alpm_option_set_totaldlcb (NULL); -+ alpm_option_set_dlcb (alpm, NULL); -+ alpm_option_set_totaldlcb (alpm, NULL); - - if (dpkg != NULL) { - pk_backend_transaction_download_end (self); -@@ -949,9 +992,10 @@ pk_backend_transaction_end (PkBackend *self, GError **error) - pk_backend_output_end (self); - } - -- if (alpm_trans_release () < 0) { -- g_set_error_literal (error, ALPM_ERROR, pm_errno, -- alpm_strerrorlast ()); -+ if (alpm_trans_release (alpm) < 0) { -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error_literal (error, ALPM_ERROR, errno, -+ alpm_strerror (errno)); - return FALSE; - } - -diff --git a/backends/alpm/pk-backend-transaction.h b/backends/alpm/pk-backend-transaction.h -index 6bb1d69..e3733d6 100644 ---- a/backends/alpm/pk-backend-transaction.h -+++ b/backends/alpm/pk-backend-transaction.h -@@ -25,7 +25,7 @@ - #include <pk-backend.h> - - gboolean pk_backend_transaction_initialize (PkBackend *self, -- pmtransflag_t flags, -+ alpm_transflag_t flags, - GError **error); - - gboolean pk_backend_transaction_simulate (PkBackend *self, -diff --git a/backends/alpm/pk-backend-update.c b/backends/alpm/pk-backend-update.c -index a281953..37ade1e 100644 ---- a/backends/alpm/pk-backend-update.c -+++ b/backends/alpm/pk-backend-update.c -@@ -34,7 +34,7 @@ - #include "pk-backend-update.h" - - static gchar * --alpm_pkg_build_replaces (pmpkg_t *pkg) -+alpm_pkg_build_replaces (alpm_pkg_t *pkg) - { - const alpm_list_t *i; - GString *string = NULL; -@@ -44,7 +44,7 @@ alpm_pkg_build_replaces (pmpkg_t *pkg) - - /* make a list of the packages that package replaces */ - for (i = alpm_pkg_get_replaces (pkg); i != NULL; i = i->next) { -- pmpkg_t *replaces = alpm_db_get_pkg (localdb, i->data); -+ alpm_pkg_t *replaces = alpm_db_get_pkg (localdb, i->data); - - if (replaces != NULL) { - gchar *package = alpm_pkg_build_id (replaces); -@@ -65,7 +65,7 @@ alpm_pkg_build_replaces (pmpkg_t *pkg) - } - - static gchar * --alpm_pkg_build_urls (pmpkg_t *pkg) -+alpm_pkg_build_urls (alpm_pkg_t *pkg) - { - GString *string = g_string_new (""); - #ifdef ALPM_PACKAGE_URL -@@ -97,7 +97,7 @@ alpm_pkg_build_urls (pmpkg_t *pkg) - } - - static gboolean --alpm_pkg_same_pkgver (pmpkg_t *a, pmpkg_t *b) -+alpm_pkg_same_pkgver (alpm_pkg_t *a, alpm_pkg_t *b) - { - const gchar *version_a, *version_b, *last_a, *last_b; - gsize length_a, length_b; -@@ -145,8 +145,8 @@ pk_backend_get_update_detail_thread (PkBackend *self) - - /* collect details about updates */ - for (; *packages != NULL; ++packages) { -- pmpkg_t *pkg, *old; -- pmdb_t *db; -+ alpm_pkg_t *pkg, *old; -+ alpm_db_t *db; - - gchar *upgrades, *replaces, *urls; - const gchar *reason; -@@ -245,18 +245,19 @@ pk_backend_update_databases (PkBackend *self, gint force, GError **error) { - const alpm_list_t *i; - - g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - - if (!pk_backend_transaction_initialize (self, 0, error)) { - return FALSE; - } - -- alpm_logaction ("synchronizing package lists\n"); -+ alpm_logaction (alpm, "synchronizing package lists\n"); - -- dlcb = alpm_option_get_dlcb (); -- totaldlcb = alpm_option_get_totaldlcb (); -+ dlcb = alpm_option_get_dlcb (alpm); -+ totaldlcb = alpm_option_get_totaldlcb (alpm); - - /* set total size to minus the number of databases */ -- i = alpm_option_get_syncdbs (); -+ i = alpm_option_get_syncdbs (alpm); - totaldlcb (-alpm_list_count (i)); - - for (; i != NULL; i = i->next) { -@@ -274,9 +275,10 @@ pk_backend_update_databases (PkBackend *self, gint force, GError **error) { - /* fake the download when already up to date */ - dlcb ("", 1, 1); - } else if (result < 0) { -- g_set_error (error, ALPM_ERROR, pm_errno, "[%s]: %s", -+ enum _alpm_errno_t errno = alpm_errno (alpm); -+ g_set_error (error, ALPM_ERROR, errno, "[%s]: %s", - alpm_db_get_name (i->data), -- alpm_strerrorlast ()); -+ alpm_strerror (errno)); - break; - } - } -@@ -292,20 +294,21 @@ pk_backend_update_databases (PkBackend *self, gint force, GError **error) { - } - - static gboolean --alpm_pkg_is_ignorepkg (pmpkg_t *pkg) -+alpm_pkg_is_ignorepkg (alpm_pkg_t *pkg) - { -- const alpm_list_t *ignorepkgs, *ignoregrps, *i; -+ const alpm_list_t *ignorepkgs, *ignoregroups, *i; - - g_return_val_if_fail (pkg != NULL, TRUE); -+ g_return_val_if_fail (alpm != NULL, TRUE); - -- ignorepkgs = alpm_option_get_ignorepkgs (); -+ ignorepkgs = alpm_option_get_ignorepkgs (alpm); - if (alpm_list_find_str (ignorepkgs, alpm_pkg_get_name (pkg)) != NULL) { - return TRUE; - } - -- ignoregrps = alpm_option_get_ignoregrps (); -+ ignoregroups = alpm_option_get_ignoregroups (alpm); - for (i = alpm_pkg_get_groups (pkg); i != NULL; i = i->next) { -- if (alpm_list_find_str (ignoregrps, i->data) != NULL) { -+ if (alpm_list_find_str (ignoregroups, i->data) != NULL) { - return TRUE; - } - } -@@ -314,7 +317,7 @@ alpm_pkg_is_ignorepkg (pmpkg_t *pkg) - } - - static gboolean --alpm_pkg_is_syncfirst (pmpkg_t *pkg) -+alpm_pkg_is_syncfirst (alpm_pkg_t *pkg) - { - g_return_val_if_fail (pkg != NULL, FALSE); - -@@ -325,8 +328,18 @@ alpm_pkg_is_syncfirst (pmpkg_t *pkg) - return FALSE; - } - --static pmpkg_t * --alpm_pkg_find_update (pmpkg_t *pkg, const alpm_list_t *dbs) -+static gboolean -+alpm_pkg_replaces (alpm_pkg_t *pkg, const gchar *name) -+{ -+ g_return_val_if_fail (pkg != NULL, FALSE); -+ g_return_val_if_fail (name != NULL, FALSE); -+ -+ return alpm_list_find_str (alpm_pkg_get_replaces (pkg), name) != NULL; -+} -+ -+ -+static alpm_pkg_t * -+alpm_pkg_find_update (alpm_pkg_t *pkg, const alpm_list_t *dbs) - { - const gchar *name; - const alpm_list_t *i; -@@ -336,7 +349,7 @@ alpm_pkg_find_update (pmpkg_t *pkg, const alpm_list_t *dbs) - name = alpm_pkg_get_name (pkg); - - for (; dbs != NULL; dbs = dbs->next) { -- pmpkg_t *update = alpm_db_get_pkg (dbs->data, name); -+ alpm_pkg_t *update = alpm_db_get_pkg (dbs->data, name); - - if (update != NULL) { - if (alpm_pkg_vercmp (alpm_pkg_get_version (update), -@@ -349,8 +362,7 @@ alpm_pkg_find_update (pmpkg_t *pkg, const alpm_list_t *dbs) - - i = alpm_db_get_pkgcache (dbs->data); - for (; i != NULL; i = i->next) { -- if (alpm_list_find_str (alpm_pkg_get_replaces (i->data), -- name) != NULL) { -+ if (alpm_pkg_replaces (i->data, name)) { - return i->data; - } - } -@@ -367,6 +379,7 @@ pk_backend_get_updates_thread (PkBackend *self) - const alpm_list_t *i, *syncdbs; - - g_return_val_if_fail (self != NULL, FALSE); -+ g_return_val_if_fail (alpm != NULL, FALSE); - g_return_val_if_fail (localdb != NULL, FALSE); - - time (&one_hour_ago); -@@ -385,9 +398,9 @@ pk_backend_get_updates_thread (PkBackend *self) - } - - /* find outdated and replacement packages */ -- syncdbs = alpm_option_get_syncdbs (); -+ syncdbs = alpm_option_get_syncdbs (alpm); - for (i = alpm_db_get_pkgcache (localdb); i != NULL; i = i->next) { -- pmpkg_t *upgrade = alpm_pkg_find_update (i->data, syncdbs); -+ alpm_pkg_t *upgrade = alpm_pkg_find_update (i->data, syncdbs); - - if (pk_backend_cancelled (self)) { - break; diff --git a/community-testing/packagekit/packagekit.install b/community-testing/packagekit/packagekit.install deleted file mode 100644 index 7c8a8bd2b..000000000 --- a/community-testing/packagekit/packagekit.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - update-mime-database usr/share/mime &> /dev/null -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/community-testing/paraview/PKGBUILD b/community-testing/paraview/PKGBUILD deleted file mode 100644 index 00a42b410..000000000 --- a/community-testing/paraview/PKGBUILD +++ /dev/null @@ -1,86 +0,0 @@ -# Maintainer: Thomas Dziedzic < gostrc at gmail > -# Contributor: Michele Mocciola <mickele> -# Contributor: Simon Zilliken <simon____AT____zilliken____DOT____name> - -pkgname=paraview -pkgver=3.10.1 -pkgrel=5 -pkgdesc='Parallel Visualization Application using VTK.' -arch=('i686' 'x86_64') -url='http://www.paraview.org' -license=('custom') -depends=('qt' 'python2' 'libgl' 'libxml2' 'unixodbc' 'postgresql-libs' 'libxt' 'libmysqlclient' 'mesa' 'openmpi') #'hdf5' -makedepends=('cmake' 'desktop-file-utils') -source=("http://paraview.org/files/v${pkgver:0:4}/ParaView-${pkgver}.tar.gz" - 'paraview.png' - 'paraview.desktop' - 'fixkernelversioncheck.diff') -md5sums=('d8a9d4a997a720589ffd57568bcdd449' - 'db623002bc71a257ddfdd0c9c7b14c3f' - '4e4b7172ed18171c37446fd7c4f1e8f5' - '9e137af23701f76fc727222ebac23389') - -build() { - cd ParaView-${pkgver} - - # patch vtk to fix http://www.vtk.org/Bug/view.php?id=12568 - # remove next pkgver bump - cd VTK - patch -Np1 -i ${srcdir}/fixkernelversioncheck.diff - cd .. - - sed -i '20 i#include <stddef.h>' VTK/Utilities/vtkmetaio/metaUtils.cxx - sed -i 's/stddef.h/cstddef/' VTK/Wrapping/Python/vtkPythonUtil.cxx - sed -i '36 i#include <vtksys/cstddef>' VTK/Wrapping/Python/PyVTKObject.cxx - - # Paraview wants to be built out of source - mkdir -p build - cd build - - # use -DPARAVIEW_INSTALL_THIRD_PARTY_LIBRARIES:BOOL=OFF \ to fix make install error: http://www.cmake.org/pipermail/paraview/2011-February/020268.html - cmake \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_USE_PTHREADS:BOOL=ON \ - -DCMAKE_INSTALL_PREFIX:PATH=/usr \ - -DCMAKE_SKIP_RPATH:BOOL=YES \ - -DCMAKE_VERBOSE_MAKEFILE:BOOL=OFF \ - -DCMAKE_COLOR_MAKEFILE:BOOL=TRUE \ - -DBUILD_SHARED_LIBS:BOOL=ON \ - -DBUILD_DOCUMENTATION:BOOL=OFF \ - -DBUILD_EXAMPLES:BOOL=OFF \ - -DVTK_USE_SYSTEM_FREETYPE:BOOL=ON \ - -DVTK_USE_SYSTEM_JPEG:BOOL=ON \ - -DVTK_USE_SYSTEM_PNG:BOOL=ON \ - -DVTK_USE_SYSTEM_TIFF:BOOL=ON \ - -DVTK_USE_SYSTEM_ZLIB:BOOL=ON \ - -DVTK_USE_SYSTEM_EXPAT:BOOL=ON \ - -DVTK_USE_SYSTEM_LIBXML2:BOOL=ON \ - -DVTK_USE_BOOST:BOOL=OFF \ - -DVTK_USE_OFFSCREEN=TRUE \ - -DPARAVIEW_USE_SYSTEM_HDF5:BOOL=ON \ - -DPARAVIEW_USE_MPI:BOOL=ON \ - -DPARAVIEW_ENABLE_PYTHON:BOOL=ON \ - -DPARAVIEW_BUILD_QT_GUI:BOOL=ON \ - -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \ - -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \ - -DPARAVIEW_INSTALL_THIRD_PARTY_LIBRARIES:BOOL=OFF \ - .. - - make -} - -package() { - cd ParaView-${pkgver}/build - - make DESTDIR=${pkgdir} install - - # Install license - install -Dm644 ${srcdir}/ParaView-${pkgver}/License_v1.2.txt ${pkgdir}/usr/share/licenses/paraview/LICENSE - - # Install desktop shortcuts - install -Dm644 ${srcdir}/paraview.png ${pkgdir}/usr/share/pixmaps/paraview.png - desktop-file-install --dir=${pkgdir}/usr/share/applications ${srcdir}/paraview.desktop - - # Removes VTK plugin for designer - if you need, you can install vtk - #rm -rf ${pkgdir}/opt/paraview/plugins -} diff --git a/community-testing/paraview/fixkernelversioncheck.diff b/community-testing/paraview/fixkernelversioncheck.diff deleted file mode 100644 index 165f07366..000000000 --- a/community-testing/paraview/fixkernelversioncheck.diff +++ /dev/null @@ -1,19 +0,0 @@ ---- a/Utilities/vtkhdf5/ConfigureChecks.cmake -+++ b/Utilities/vtkhdf5/ConfigureChecks.cmake -@@ -75,14 +75,14 @@ IF (HDF5_WANT_DCONV_EXCEPTION) - ENDIF (HDF5_WANT_DCONV_EXCEPTION) - - SET (LINUX_LFS 0) --IF (CMAKE_SYSTEM MATCHES "Linux-([3-9]\\.[0-9]|2\\.[4-9])\\.") -+IF (CMAKE_SYSTEM MATCHES "Linux") - # Linux Specific flags - ADD_DEFINITIONS (-D_POSIX_SOURCE -D_BSD_SOURCE) - OPTION (HDF5_ENABLE_LARGE_FILE "Enable support for large (64-bit) files on Linux." ON) - IF (HDF5_ENABLE_LARGE_FILE) - SET (LARGEFILE 1) - ENDIF (HDF5_ENABLE_LARGE_FILE) --ENDIF (CMAKE_SYSTEM MATCHES "Linux-([3-9]\\.[0-9]|2\\.[4-9])\\.") -+ENDIF (CMAKE_SYSTEM MATCHES "Linux") - SET (HDF5_EXTRA_FLAGS) - IF (LINUX_LFS) - SET (HDF5_EXTRA_FLAGS -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE) diff --git a/community-testing/paraview/paraview.desktop b/community-testing/paraview/paraview.desktop deleted file mode 100644 index 2f5b8ec69..000000000 --- a/community-testing/paraview/paraview.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Version=1.0 -Name=ParaView -GenericName=Data Viewer -Comment=ParaView allows visualization of large data sets -Type=Application -Terminal=false -Icon=paraview -Categories=Graphics; -Exec=/usr/bin/paraview diff --git a/community-testing/paraview/paraview.png b/community-testing/paraview/paraview.png Binary files differdeleted file mode 100644 index 6e39f3d4f..000000000 --- a/community-testing/paraview/paraview.png +++ /dev/null diff --git a/community-testing/percona-server/PKGBUILD b/community-testing/percona-server/PKGBUILD deleted file mode 100644 index acf9a20ad..000000000 --- a/community-testing/percona-server/PKGBUILD +++ /dev/null @@ -1,99 +0,0 @@ -# Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com> - -pkgname=percona-server -pkgver=5.5.16_rel22.0 -pkgrel=1 -pkgdesc="A backwards-compatible drop-in replacement for MySQL that provides improved performance, diagnostics and instrumentation, and manageability of the server" -arch=('i686' 'x86_64') - -depends=('mysql-clients' 'net-tools' 'libaio') -conflicts=('mysql') -provides=('mysql') -optdepends=('perl-dbi' 'perl-dbd-mysql') -makedepends=('cmake' 'openssl' 'zlib') - -license=('GPL') -url="http://www.percona.com/software/percona-server/" -options=('!libtool' 'emptydirs') -backup=('etc/mysql/my.cnf') -install=percona.install -source=("http://www.percona.com/redir/downloads/Percona-Server-${pkgver%.*_*}/Percona-Server-${pkgver/_rel/-}/source/Percona-Server-${pkgver/_/-}.tar.gz" - 'mysqld' - 'my.cnf') - -build() { - cd "${srcdir}/Percona-Server-${pkgver/_/-}" - sed -i 's|ADD_SUBDIRECTORY(libmysqld/examples)|# ADD_SUBDIRECTORY(libmysqld/examples)|' CMakeLists.txt - - cd "${srcdir}" - rm -rf build - mkdir build - cd build - - # CFLAGS/CXXFLAGS as suggested upstream - CFLAGS="-fPIC ${CFLAGS} -fno-strict-aliasing -DBIG_JOINS=1 -fomit-frame-pointer" \ - CXXFLAGS="-fPIC ${CXXFLAGS} -fno-strict-aliasing -DBIG_JOINS=1 -felide-constructors -fno-rtti" \ - - cmake "${srcdir}/Percona-Server-${pkgver/_/-}" \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DSYSCONFDIR=/etc/mysql \ - -DMYSQL_DATADIR=/var/lib/mysql \ - -DMYSQL_UNIX_ADDR=/var/run/mysqld/mysqld.sock \ - -DDEFAULT_CHARSET=utf8 \ - -DDEFAULT_COLLATION=utf8_general_ci \ - -DENABLED_LOCAL_INFILE=ON \ - -DINSTALL_INFODIR=share/mysql/docs \ - -DINSTALL_MANDIR=share/man \ - -DINSTALL_PLUGINDIR=/usr/lib/mysql/plugin \ - -DINSTALL_SCRIPTDIR=bin \ - -DINSTALL_INCLUDEDIR=include/mysql \ - -DINSTALL_DOCREADMEDIR=share/mysql \ - -DINSTALL_SUPPORTFILESDIR=share/mysql \ - -DINSTALL_MYSQLSHAREDIR=share/mysql \ - -DINSTALL_DOCDIR=share/mysql/docs \ - -DINSTALL_SHAREDIR=share/mysql \ - -DWITH_READLINE=ON \ - -DWITH_ZLIB=system \ - -DWITH_SSL=system \ - -DWITH_LIBWRAP=OFF \ - -DWITH_MYSQLD_LDFLAGS="${LDFLAGS}" \ - -DWITH_EXTRA_CHARSETS=complex \ - -DWITH_EMBEDDED_SERVER=ON \ - -DWITH_INNOBASE_STORAGE_ENGINE=1 \ - -DWITH_PARTITION_STORAGE_ENGINE=1 \ - -DWITHOUT_EXAMPLE_STORAGE_ENGINE=1 \ - -DWITHOUT_ARCHIVE_STORAGE_ENGINE=1 \ - -DWITHOUT_BLACKHOLE_STORAGE_ENGINE=1 \ - -DWITHOUT_FEDERATED_STORAGE_ENGINE=1 - - make -} - -package() { - cd "${srcdir}"/build - make DESTDIR=${pkgdir} install - - install -Dm644 ${srcdir}/my.cnf ${pkgdir}/etc/mysql/my.cnf - install -Dm755 ${srcdir}/mysqld ${pkgdir}/etc/rc.d/mysqld - - # provided by libmysqlclient - rm ${pkgdir}/usr/bin/mysql_config - rm ${pkgdir}/usr/lib/libmysql* - rm -r ${pkgdir}/usr/include/ - rm ${pkgdir}/usr/share/man/man1/{mysql_config,mysql_client_test_embedded,mysqltest_embedded}.1 - - # provided by mysql-clients - rm ${pkgdir}/usr/bin/{mysql,mysqladmin,mysqlcheck,mysqldump,mysqlimport,mysqlshow,mysqlslap} - rm ${pkgdir}/usr/share/man/man1/{mysql,mysqladmin,mysqlcheck,mysqldump,mysqlimport,mysqlshow,mysqlslap}.1 - - # not needed - rm -r ${pkgdir}/usr/{data,mysql-test,sql-bench} - rm "${pkgdir}"/usr/share/man/man1/mysql-test-run.pl.1 - - install -dm700 "${pkgdir}"/var/lib/mysql -} - -md5sums=('cfc4523a7110f07c193391f3e73d59ae' - '243864805611764a7e5883c1dba7afd8' - '1c949c0dbea5206af0db14942d9927b6') diff --git a/community-testing/percona-server/my.cnf b/community-testing/percona-server/my.cnf deleted file mode 100644 index 9a41b4fc3..000000000 --- a/community-testing/percona-server/my.cnf +++ /dev/null @@ -1,145 +0,0 @@ -# MySQL config file for medium systems. -# -# This is for a system with little memory (32M - 64M) where MySQL plays -# an important part, or systems up to 128M where MySQL is used together with -# other programs (such as a web server) -# -# MySQL programs look for option files in a set of -# locations which depend on the deployment platform. -# You can copy this option file to one of those -# locations. For information about these locations, see: -# http://dev.mysql.com/doc/mysql/en/option-files.html -# -# In this file, you can use all long options that a program supports. -# If you want to know which options a program supports, run the program -# with the "--help" option. - -# The following options will be passed to all MySQL clients -[client] -#password = your_password -port = 3306 -socket = /var/run/mysqld/mysqld.sock - -# Here follows entries for some specific programs - -# The MySQL server -[mysqld] -port = 3306 -socket = /var/run/mysqld/mysqld.sock -datadir = /var/lib/mysql -skip-external-locking -key_buffer_size = 16M -max_allowed_packet = 1M -table_open_cache = 64 -sort_buffer_size = 512K -net_buffer_length = 8K -read_buffer_size = 256K -read_rnd_buffer_size = 512K -myisam_sort_buffer_size = 8M - -# Don't listen on a TCP/IP port at all. This can be a security enhancement, -# if all processes that need to connect to mysqld run on the same host. -# All interaction with mysqld must be made via Unix sockets or named pipes. -# Note that using this option without enabling named pipes on Windows -# (via the "enable-named-pipe" option) will render mysqld useless! -# -skip-networking - -# Replication Master Server (default) -# binary logging is required for replication -log-bin=mysql-bin - -# binary logging format - mixed recommended -binlog_format=mixed - -# required unique id between 1 and 2^32 - 1 -# defaults to 1 if master-host is not set -# but will not function as a master if omitted -server-id = 1 - -# Replication Slave (comment out master section to use this) -# -# To configure this host as a replication slave, you can choose between -# two methods : -# -# 1) Use the CHANGE MASTER TO command (fully described in our manual) - -# the syntax is: -# -# CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>, -# MASTER_USER=<user>, MASTER_PASSWORD=<password> ; -# -# where you replace <host>, <user>, <password> by quoted strings and -# <port> by the master's port number (3306 by default). -# -# Example: -# -# CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306, -# MASTER_USER='joe', MASTER_PASSWORD='secret'; -# -# OR -# -# 2) Set the variables below. However, in case you choose this method, then -# start replication for the first time (even unsuccessfully, for example -# if you mistyped the password in master-password and the slave fails to -# connect), the slave will create a master.info file, and any later -# change in this file to the variables' values below will be ignored and -# overridden by the content of the master.info file, unless you shutdown -# the slave server, delete master.info and restart the slaver server. -# For that reason, you may want to leave the lines below untouched -# (commented) and instead use CHANGE MASTER TO (see above) -# -# required unique id between 2 and 2^32 - 1 -# (and different from the master) -# defaults to 2 if master-host is set -# but will not function as a slave if omitted -#server-id = 2 -# -# The replication master for this slave - required -#master-host = <hostname> -# -# The username the slave will use for authentication when connecting -# to the master - required -#master-user = <username> -# -# The password the slave will authenticate with when connecting to -# the master - required -#master-password = <password> -# -# The port the master is listening on. -# optional - defaults to 3306 -#master-port = <port> -# -# binary logging - not required for slaves, but recommended -#log-bin=mysql-bin - -# Uncomment the following if you are using InnoDB tables -#innodb_data_home_dir = /var/lib/mysql -#innodb_data_file_path = ibdata1:10M:autoextend -#innodb_log_group_home_dir = /var/lib/mysql -# You can set .._buffer_pool_size up to 50 - 80 % -# of RAM but beware of setting memory usage too high -#innodb_buffer_pool_size = 16M -#innodb_additional_mem_pool_size = 2M -# Set .._log_file_size to 25 % of buffer pool size -#innodb_log_file_size = 5M -#innodb_log_buffer_size = 8M -#innodb_flush_log_at_trx_commit = 1 -#innodb_lock_wait_timeout = 50 - -[mysqldump] -quick -max_allowed_packet = 16M - -[mysql] -no-auto-rehash -# Remove the next comment character if you are not familiar with SQL -#safe-updates - -[myisamchk] -key_buffer_size = 20M -sort_buffer_size = 20M -read_buffer = 2M -write_buffer = 2M - -[mysqlhotcopy] -interactive-timeout diff --git a/community-testing/percona-server/mysqld b/community-testing/percona-server/mysqld deleted file mode 100755 index 07f6b7e4c..000000000 --- a/community-testing/percona-server/mysqld +++ /dev/null @@ -1,77 +0,0 @@ -#!/bin/bash - -# general config -. /etc/rc.conf -. /etc/rc.d/functions - -getPID() { - echo $(pgrep -u mysql mysqld 2>/dev/null); -} - -case "$1" in - start) - stat_busy "Starting Percona Server" - [ ! -d /var/run/mysqld ] && install -d -g mysql -o mysql /var/run/mysqld &>/dev/null - if [ -z "$(getPID)" ]; then - /usr/bin/mysqld_safe --user=mysql &>/dev/null & - if [ $? -gt 0 ]; then - stat_fail - exit 1 - else - timeo=30 - while [ $timeo -gt 0 ]; do - response=`/usr/bin/mysqladmin -uUNKNOWN_USER ping 2>&1` && break - echo "$response" | grep -q "mysqld is alive" && break - sleep 1 - let timeo=${timeo}-1 - done - if [ $timeo -eq 0 ]; then - stat_fail - exit 1 - else - echo $(getPID) > /var/run/mysqld/mysqld.pid - add_daemon mysqld - stat_done - fi - fi - else - stat_fail - exit 1 - fi - ;; - - stop) - stat_busy "Stopping Percona Server" - if [ ! -z "$(getPID)" ]; then - timeo=30 - kill $(getPID) &> /dev/null - if [ $? -gt 0 ]; then - stat_fail - exit 1 - fi - while [ ! -z "$(getPID)" -a $timeo -gt 0 ]; do - sleep 1 - let timeo=${timeo}-1 - done - if [ -z "$(getPID)" ]; then - rm -f /var/run/mysqld/mysqld.pid &>/dev/null - rm_daemon mysqld - stat_done - else - stat_fail - exit 1 - fi - else - stat_fail - exit 1 - fi - ;; - - restart) - $0 stop - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac -exit 0 diff --git a/community-testing/percona-server/percona.install b/community-testing/percona-server/percona.install deleted file mode 100644 index caacccf1b..000000000 --- a/community-testing/percona-server/percona.install +++ /dev/null @@ -1,26 +0,0 @@ -post_install(){ - groupadd -g 89 mysql &>/dev/null - useradd -u 89 -g mysql -d /var/lib/mysql -s /bin/false mysql &>/dev/null - /usr/bin/mysql_install_db --user=mysql --basedir=/usr - chown -R mysql:mysql var/lib/mysql &>/dev/null -} - -post_upgrade(){ - getent group mysql >/dev/null 2>&1 || groupadd -g 89 mysql &>/dev/null - getent passwd mysql >/dev/null 2>&1 || useradd -u 89 -g mysql -d /var/lib/mysql -s /bin/false mysql &>/dev/null - - if [ "$(vercmp $2 5.5)" -lt 0 ]; then - echo " >> " - echo " >> Major version update. Consider restart the service, and then running mysql_upgrade after it." - echo " >> " - fi -} - -post_remove(){ - if getent passwd mysql >/dev/null 2>&1; then - userdel mysql - fi - if getent group mysql >/dev/null 2>&1; then - groupdel mysql - fi -} diff --git a/community-testing/pysfml/PKGBUILD b/community-testing/pysfml/PKGBUILD deleted file mode 100644 index 204197c1b..000000000 --- a/community-testing/pysfml/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# $Id: PKGBUILD 29367 2010-10-13 15:58:47Z svenstaro $ -# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> -# Contributor: scj <scj(at)archlinux(dot)us> - -pkgname=('python-pysfml' 'python2-pysfml') -pkgbase=python-pysfml -pkgver=1.6 -pkgrel=2 -pkgdesc="Python bindings for the SFML library" -arch=('i686' 'x86_64') -url="http://www.sfml-dev.org" -makedepends=('sfml' 'python' 'python2') -license=('zlib') -depends=() -replaces=('pysfml') -source=(http://downloads.sourceforge.net/sfml/SFML-${pkgver}-python-sdk.zip) -md5sums=('9acaf793ae9a498a51f7f6fc74307b32') - -build() { - cd "${srcdir}/SFML-${pkgver}/python" -} - -package_python-pysfml() { - depends=('sfml' 'python') - - cd "${srcdir}/SFML-${pkgver}/python" - - python3 setup.py install --root=${pkgdir} -} - -package_python2-pysfml() { - depends=('sfml' 'python2') - - cd "${srcdir}/SFML-${pkgver}/python" - - python2 setup.py install --root=${pkgdir} -} - -# vim:set ts=2 sw=2 et: diff --git a/community-testing/python2-poppler/PKGBUILD b/community-testing/python2-poppler/PKGBUILD deleted file mode 100644 index 42a670494..000000000 --- a/community-testing/python2-poppler/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# $Id: PKGBUILD 57166 2011-10-22 19:04:38Z schiv $ -# Maintainer: Ray Rashif <schiv@archlinux.org -# Contributor: György Balló <ballogy@freestart.hu> - -pkgname=python2-poppler -_realname=pypoppler -pkgver=0.12.1 -pkgrel=6 -pkgdesc="Python 2.x bindings for Poppler" -arch=('i686' 'x86_64') -url="https://launchpad.net/poppler-python" -license=('GPL') -depends=('pygtk' 'poppler-glib' 'glib2' 'freetype2') -provides=('pypoppler' 'python-poppler') -conflicts=('python-poppler') -replaces=('python-poppler') -options=(!libtool) -source=("http://launchpad.net/poppler-python/trunk/development/+download/$_realname-$pkgver.tar.gz" - 'pypoppler-0.12.1-poppler-0.16.0.patch') -md5sums=('1a89e5ed3042afc81bbd4d02e0cf640a' - '683c5b67866d56adc2494120cc329dc8') - -build() { - cd "$srcdir/$_realname-$pkgver" - - # poppler 0.16 compat - patch -Np0 -i \ - "$srcdir/pypoppler-0.12.1-poppler-0.16.0.patch" - - # poppler 0.18 compat - sed -i "/pixbuf/,/^)/d" poppler.defs - - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --disable-static \ - PYTHON=python2 - make -} - -package() { - cd "$srcdir/$_realname-$pkgver" - - make DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: diff --git a/community-testing/python2-poppler/pypoppler-0.12.1-poppler-0.16.0.patch b/community-testing/python2-poppler/pypoppler-0.12.1-poppler-0.16.0.patch deleted file mode 100644 index 0e99b57ec..000000000 --- a/community-testing/python2-poppler/pypoppler-0.12.1-poppler-0.16.0.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- poppler.defs.orig 2010-12-30 05:55:07.000000000 +0000 -+++ poppler.defs 2010-12-30 05:55:27.000000000 +0000 -@@ -1794,7 +1794,7 @@ - - (define-method get_text - (of-object "PopplerPage") -- (c-name "poppler_page_get_text") -+ (c-name "poppler_page_get_selected_text") - (return-type "char*") - (parameters - '("PopplerSelectionStyle" "style") diff --git a/community-testing/qbittorrent/PKGBUILD b/community-testing/qbittorrent/PKGBUILD deleted file mode 100644 index 67abebe07..000000000 --- a/community-testing/qbittorrent/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# Maintainer: Thomas Dziedzic < gostrc at gmail > -# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> -# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> - -pkgname=qbittorrent -pkgver=2.9.2 -pkgrel=4 -pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent library" -arch=('i686' 'x86_64') -url="http://www.qbittorrent.org/" -license=('GPL') -depends=('qt' 'libtorrent-rasterbar' 'xdg-utils') -makedepends=('boost' 'geoip') -optdepends=('python2: needed for search' - 'geoip: improves peer country resolution') -install='qbittorrent.install' -source=("http://downloads.sourceforge.net/sourceforge/qbittorrent/qbittorrent-${pkgver}.tar.gz") -md5sums=('0c2188e0065be57e50c06f5934d5f7a2') - -build() { - cd qbittorrent-${pkgver} - - sed -i \ - -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \ - -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \ - $(find ./ -name '*.py') - - ./configure \ - --prefix=/usr - - make -} - -package() { - cd qbittorrent-${pkgver} - - make INSTALL_ROOT=${pkgdir} install -} diff --git a/community-testing/qbittorrent/qbittorrent.install b/community-testing/qbittorrent/qbittorrent.install deleted file mode 100644 index e70c054ec..000000000 --- a/community-testing/qbittorrent/qbittorrent.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/community-testing/qlandkartegt/PKGBUILD b/community-testing/qlandkartegt/PKGBUILD deleted file mode 100644 index 51fc7aaf5..000000000 --- a/community-testing/qlandkartegt/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# $Id: PKGBUILD 57247 2011-10-24 20:34:11Z andrea $ -# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> -# Contributor: Matthias Maennich <arch@maennich.net> -# Contributor: <boenki@gmx.de> - -pkgname=qlandkartegt -pkgver=1.2.4 -pkgrel=2 -pkgdesc="Use your GPS with Linux" -arch=('i686' 'x86_64') -url="http://www.qlandkarte.org/" -license=('GPL') -depends=('gdal' 'gpsd' 'libdmtx' 'libexif' 'libmysqlclient' 'mesa' 'postgresql-libs' 'qt' 'shared-mime-info' 'qtwebkit') -makedepends=('cmake' 'garmindev') -optdepends=('garmindev: to connect garmin devices') -install=$pkgname.install -changelog=$pkgname.changelog -source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz - $pkgname-mimetypes.xml - 'fix-glu-header.patch') -sha256sums=('3f87667ceffde60a7c533df7e25f375793a093970d89bfa1cd842b3595c58f2c' - 'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0' - '8e8c6440e1674a87d5a221c978f2be832457fb43980894725044837581625618') - -build() { - cd "${srcdir}/$pkgname-$pkgver" - - patch -R -p2 -i "${srcdir}"/fix-glu-header.patch - - cd "${srcdir}" - mkdir build - cd build - - cmake ../${pkgname}-${pkgver} \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_BUILD_TYPE=Release - make -} - -package(){ - cd "${srcdir}/build" - - make DESTDIR="${pkgdir}" install - - install -D -m644 "${srcdir}/$pkgname-mimetypes.xml" \ - "${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml" -} diff --git a/community-testing/qlandkartegt/fix-glu-header.patch b/community-testing/qlandkartegt/fix-glu-header.patch deleted file mode 100644 index 214ad395d..000000000 --- a/community-testing/qlandkartegt/fix-glu-header.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- QLandkarteGT/trunk/src/CMap3D.cpp 2011/08/23 16:34:50 2943 -+++ QLandkarteGT/trunk/src/CMap3D.cpp 2011/09/03 07:58:02 2961 -@@ -31,8 +31,8 @@ - #include "CWptDB.h" - #include "WptIcons.h" - --#include <GL/glu.h> - #include <QtGui> -+#include <QtOpenGL> - #include <math.h> - - #ifndef GL_CLAMP_TO_EDGE diff --git a/community-testing/qlandkartegt/qlandkartegt-mimetypes.xml b/community-testing/qlandkartegt/qlandkartegt-mimetypes.xml deleted file mode 100644 index 46d3d402c..000000000 --- a/community-testing/qlandkartegt/qlandkartegt-mimetypes.xml +++ /dev/null @@ -1,7 +0,0 @@ -<?xml version="1.0"?> -<mime-info xmlns='http://www.freedesktop.org/standards/shared-mime-info'> - <mime-type type="application/vnd.qlandkartegt.qlb"> - <comment>QLandkarteGT File</comment> - <glob pattern="*.qlb"/> - </mime-type> -</mime-info> diff --git a/community-testing/qlandkartegt/qlandkartegt.changelog b/community-testing/qlandkartegt/qlandkartegt.changelog deleted file mode 100644 index 531d2ebe5..000000000 --- a/community-testing/qlandkartegt/qlandkartegt.changelog +++ /dev/null @@ -1,27 +0,0 @@ -2011-10-09 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * qlandkartegt 1.2.4-1 - -2011-09-09 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * qlandkartegt 1.2.3-1 - -2011-07-19 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * qlandkartegt 1.2.2-1 - -2011-07-07 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * qlandkartegt 1.2.1-1 - -2011-06-22 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * qlandkartegt 1.2.0-1 - -2011-05-22 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * qlandkartegt 1.1.2-1 - -2011-03-21 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * qlandkartegt 1.1.1-1 - -2011-02-23 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * qlandkartegt 1.1.0-1 - -2011-02-05 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> - * qlandkartegt 1.0.1-2 - * moved to [community] with 59 AUR votes diff --git a/community-testing/qlandkartegt/qlandkartegt.install b/community-testing/qlandkartegt/qlandkartegt.install deleted file mode 100644 index e55805570..000000000 --- a/community-testing/qlandkartegt/qlandkartegt.install +++ /dev/null @@ -1,7 +0,0 @@ -post_install() { - update-mime-database usr/share/mime > /dev/null -} - -post_remove() { - post_install $1 -} diff --git a/community-testing/qmc2/PKGBUILD b/community-testing/qmc2/PKGBUILD deleted file mode 100644 index 779aff5bd..000000000 --- a/community-testing/qmc2/PKGBUILD +++ /dev/null @@ -1,28 +0,0 @@ -# $Id: PKGBUILD 57249 2011-10-24 20:34:16Z andrea $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Maintainer: JJDaNiMoTh <jjdanimoth@gmail.com> - -pkgname=qmc2 -pkgver=0.2.b20 -pkgrel=2 -pkgdesc="Qt 4 based UNIX MAME frontend supporting SDLMAME." -url="http://qmc2.arcadehits.net" -license=("GPL") -arch=('i686' 'x86_64') -depends=('qt' 'phonon' 'sdl' 'libxmu' 'qtwebkit') -makedepends=('rsync' 'mesa') -source=("http://downloads.sourceforge.net/project/qmc2/qmc2/$pkgver/qmc2-$pkgver.tar.bz2") -md5sums=('e868144815ff44a2146e839c2395c6d1') - -build() { - cd "$srcdir/$pkgname" - export CTIME=0 - make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr -} - -package() { - cd "$srcdir/$pkgname" - make PREFIX=/usr DATADIR=/usr/share SYSCONFDIR=/etc QTDIR=/usr DESTDIR=$pkgdir install - mkdir -p $pkgdir/usr/share/{applications,pixmaps} - install -D -m644 "$srcdir/qmc2/data/img/mame.png" "$pkgdir/usr/share/pixmaps" -} diff --git a/community-testing/qtcreator/PKGBUILD b/community-testing/qtcreator/PKGBUILD deleted file mode 100644 index 3ac8fa55a..000000000 --- a/community-testing/qtcreator/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# $Id: PKGBUILD 57251 2011-10-24 20:34:23Z andrea $ -# Maintainer: Imanol Celaya <ornitorrincos@archlinux-es.org> -# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> -# Contributor: Lukas Jirkovsky <l.jirkovsky@gmail.com> -# Contributor: Dan Vratil <progdan@progdansoft.com> -# Contributor: thotypous <matiasΘarchlinux-br·org> -# Contributor: delor <bartekpiech gmail com> - -pkgname="qtcreator" -pkgver=2.3.1 -pkgrel=2 -pkgdesc='Lightweight, cross-platform integrated development environment' -arch=('i686' 'x86_64') -url='http://qt.nokia.com/products/developer-tools' -license=('LGPL') -depends=('qt>=4.7.4') -makedepends=('qt-private-headers>=4.7.4' 'git') -options=('docs') -source=("http://get.qt.nokia.com/qtcreator/qt-creator-${pkgver}-src.tar.gz" - 'qtcreator.desktop') -md5sums=('8aa296ed9034f847bd53ee0424e5ef08' - 'f1f4680b9838ff0b8f4cf11eb850d662') - -build() { - cd ${srcdir} - [[ -d build ]] && rm -r build - mkdir build && cd build - - qmake ${srcdir}/qt-creator-${pkgver}-src/qtcreator.pro - make -} - -package() { - optdepends=('qt-doc: for the integrated Qt documentation' - 'gdb: for the debugger' - 'cmake: for cmake project suppport' - 'openssh-askpass: for ssh support' - 'git: for git support' - 'mercurial: for mercurial support' - 'bzr: for bazaar support') - - cd ${srcdir}/build - - make INSTALL_ROOT="${pkgdir}/usr/" install - - install -Dm644 ${srcdir}/qtcreator.desktop \ - ${pkgdir}/usr/share/applications/qtcreator.desktop - install -Dm644 ${srcdir}/qt-creator-${pkgver}-src/LGPL_EXCEPTION.TXT \ - ${pkgdir}/usr/share/licenses/qtcreator/LGPL_EXCEPTION.TXT -} diff --git a/community-testing/qtcreator/qtcreator.desktop b/community-testing/qtcreator/qtcreator.desktop deleted file mode 100644 index 0fd562bd9..000000000 --- a/community-testing/qtcreator/qtcreator.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Exec=/usr/bin/qtcreator -Name=Qt-Creator -GenericName=C++ IDE -X-KDE-StartupNotify=true -Icon=/usr/share/icons/hicolor/128x128/apps/qtcreator.png -Terminal=false -Type=Application -Categories=Qt;Development diff --git a/community-testing/shotwell/PKGBUILD b/community-testing/shotwell/PKGBUILD deleted file mode 100644 index 4e238db97..000000000 --- a/community-testing/shotwell/PKGBUILD +++ /dev/null @@ -1,49 +0,0 @@ -# $Id: PKGBUILD 57683 2011-11-01 08:40:42Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Maintainer : Ionut Biru <ibiru@archlinux.org> -# Contributor: Joeny Ang <ang(dot)joeny(at)gmail(dot)com> - -pkgname=shotwell -pkgver=0.11.5 -pkgrel=2 -pkgdesc="A digital photo organizer designed for the GNOME desktop environment" -arch=('i686' 'x86_64') -url="http://yorba.org/shotwell/" -license=('LGPL2.1') -depends=('gconf' 'libgee' 'libgphoto2' 'libunique' 'libwebkit' 'libgexiv2' 'libraw' - 'librsvg' 'json-glib' 'desktop-file-utils' 'dconf') -makedepends=('intltool') -# 'vala' -install=shotwell.install -source=("http://yorba.org/download/shotwell/0.11/shotwell-${pkgver}.tar.bz2" - "http://ftp.gnome.org/pub/gnome/sources/vala/0.12/vala-0.12.1.tar.bz2" - "fix-with-libraw-0.4.patch") -md5sums=('d437c73127b1cb29a8f9c014effc6aa0' - 'bf35262cc611de447147d01cbac33767' - '488787b6d2cbc7348bc88348b78b6005') - -build() { - cd "${srcdir}/vala-0.12.1" - ./configure --prefix=$srcdir/vala --enable-vapigen - make - make install - export PATH=$srcdir/vala/bin:$PATH - - cd "${srcdir}/${pkgname}-${pkgver}" - - patch -Np1 -i ../fix-with-libraw-0.4.patch - - ./configure --prefix=/usr \ - --with-gconf-schema-file-dir=/usr/share/gconf/schemas \ - --disable-schemas-install \ - --disable-desktop-update \ - --disable-icon-update - - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - rm -f $pkgdir/usr/share/glib-2.0/schemas/gschemas.compiled -} diff --git a/community-testing/shotwell/build-hack.patch b/community-testing/shotwell/build-hack.patch deleted file mode 100644 index 8c65f6a8f..000000000 --- a/community-testing/shotwell/build-hack.patch +++ /dev/null @@ -1,81 +0,0 @@ -diff -wbBur shotwell-0.11.4/src/photos/GRaw.c shotwell-0.11.4.my/src/photos/GRaw.c ---- shotwell-0.11.4/src/photos/GRaw.c 2011-10-28 12:44:04.000000000 +0400 -+++ shotwell-0.11.4.my/src/photos/GRaw.c 2011-10-28 12:41:48.000000000 +0400 -@@ -210,7 +210,7 @@ - }; - GRawProcessor* graw_processor_new (enum LibRaw_constructor_flags options); - GRawProcessor* graw_processor_construct (GType object_type, enum LibRaw_constructor_flags options); --void graw_processor_add_masked_borders_to_bitmap (GRawProcessor* self); -+//void graw_processor_add_masked_borders_to_bitmap (GRawProcessor* self); - void graw_processor_adjust_sizes_info_only (GRawProcessor* self, GError** error); - void graw_processor_document_mode_processing (GRawProcessor* self, GError** error); - libraw_imgother_t graw_processor_get_image_other (GRawProcessor* self); -@@ -223,7 +223,7 @@ - void graw_processor_open_file (GRawProcessor* self, const gchar* filename, GError** error); - void graw_processor_process (GRawProcessor* self, GError** error); - void graw_processor_ppm_tiff_writer (GRawProcessor* self, const gchar* filename, GError** error); --void graw_processor_rotate_fuji_raw (GRawProcessor* self, GError** error); -+//void graw_processor_rotate_fuji_raw (GRawProcessor* self, GError** error); - void graw_processor_thumb_writer (GRawProcessor* self, const gchar* filename, GError** error); - void graw_processor_recycle (GRawProcessor* self); - void graw_processor_unpack (GRawProcessor* self, GError** error); -@@ -677,12 +677,12 @@ - return graw_processor_construct (GRAW_TYPE_PROCESSOR, options); - } - -- -+#if 0 - void graw_processor_add_masked_borders_to_bitmap (GRawProcessor* self) { - g_return_if_fail (GRAW_IS_PROCESSOR (self)); - libraw_add_masked_borders_to_bitmap (self->priv->proc); - } -- -+#endif - - void graw_processor_adjust_sizes_info_only (GRawProcessor* self, GError** error) { - enum LibRaw_errors _tmp0_; -@@ -909,7 +909,7 @@ - } - } - -- -+#if 0 - void graw_processor_rotate_fuji_raw (GRawProcessor* self, GError** error) { - enum LibRaw_errors _tmp0_; - GError * _inner_error_ = NULL; -@@ -927,7 +927,7 @@ - } - } - } -- -+#endif - - void graw_processor_thumb_writer (GRawProcessor* self, const gchar* filename, GError** error) { - enum LibRaw_errors _tmp0_; -@@ -1044,8 +1044,8 @@ - (*_tmp8_).use_camera_matrix = TRUE; - _tmp9_ = graw_processor_get_output_params (self); - (*_tmp9_).output_color = (gint) GRAW_COLORSPACE_SRGB; -- _tmp10_ = graw_processor_get_output_params (self); -- (*_tmp10_).filtering_mode = LIBRAW_FILTERING_AUTOMATIC; -+// _tmp10_ = graw_processor_get_output_params (self); -+// (*_tmp10_).filtering_mode = LIBRAW_FILTERING_AUTOMATIC; - _tmp11_ = graw_processor_get_output_params (self); - (*_tmp11_).output_bps = 8; - _tmp12_ = graw_processor_get_output_params (self); -@@ -1356,6 +1356,7 @@ - return; - } - } -+#if 0 - case LIBRAW_CANNOT_ADDMASK: - { - GError* _tmp10_ = NULL; -@@ -1372,6 +1373,7 @@ - return; - } - } -+#endif - case LIBRAW_UNSUFFICIENT_MEMORY: - { - GError* _tmp11_ = NULL; diff --git a/community-testing/shotwell/shotwell.install b/community-testing/shotwell/shotwell.install deleted file mode 100644 index bab8ecd29..000000000 --- a/community-testing/shotwell/shotwell.install +++ /dev/null @@ -1,17 +0,0 @@ -pkgname=shotwell - -post_install() { - gtk-update-icon-cache -fq -t usr/share/icons/hicolor - update-desktop-database -q - glib-compile-schemas usr/share/glib-2.0/schemas -} - -post_upgrade() { - post_install $1 -} - -post_remove() { - update-desktop-database -q - gtk-update-icon-cache -fq -t usr/share/icons/hicolor - glib-compile-schemas usr/share/glib-2.0/schemas -} diff --git a/community-testing/sigil/PKGBUILD b/community-testing/sigil/PKGBUILD deleted file mode 100644 index 934bbbad7..000000000 --- a/community-testing/sigil/PKGBUILD +++ /dev/null @@ -1,45 +0,0 @@ -# $Id: PKGBUILD 57253 2011-10-24 20:34:33Z andrea $ -# Maintainer: Giovanni Scafora <giovanni@archlinux.org> -# Contributor: Larry Hajali <larryhaja [at] gmail [dot] com> - -pkgname=sigil -pkgver=0.4.2 -pkgrel=2 -pkgdesc="A WYSIWYG ebook editor" -arch=('i686' 'x86_64') -url="http://code.google.com/p/sigil/" -license=('GPL3') -depends=('qt' 'qtwebkit') -makedepends=('cmake') -install=sigil.install -source=(http://sigil.googlecode.com/files/Sigil-${pkgver}-Code.zip - ${pkgname}.desktop) -md5sums=('ce27976254236f8b11b787fd05be9acb' - 'fef6aa492af487ccccd6b133635cee5a') - -build() { - cd "${srcdir}" - mkdir build - cd build - cmake -G "Unix Makefiles" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_C_FLAGS:STRING="${CFLAGS}" \ - -DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_SKIP_RPATH=ON .. - - make -} - -package() { - cd "${srcdir}"/build - make install DESTDIR="${pkgdir}" - - install -d -m 0755 "${pkgdir}"/usr/share/applications - install -m 0644 "${srcdir}"/${pkgname}.desktop "${pkgdir}"/usr/share/applications - - for _pic in 16 32 48 128 256; do - install -D -m 0644 ../src/Sigil/Resource_Files/icon/app_icon_${_pic}.png \ - "${pkgdir}"/usr/share/icons/hicolor/${_pic}x${_pic}/apps/${pkgname}.png - done -} diff --git a/community-testing/sigil/sigil.desktop b/community-testing/sigil/sigil.desktop deleted file mode 100755 index 4f3a14d20..000000000 --- a/community-testing/sigil/sigil.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Type=Application -Name=Sigil -Comment=E-book reader and WYSIWYG editor -TryExec=sigil -Exec=sigil -Icon=sigil -Categories=Office; -Terminal=false -StartupNotify=false diff --git a/community-testing/sigil/sigil.install b/community-testing/sigil/sigil.install deleted file mode 100644 index ec506fa93..000000000 --- a/community-testing/sigil/sigil.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - update-desktop-database -q - xdg-icon-resource forceupdate --theme hicolor &> /dev/null -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/community-testing/speed-dreams/PKGBUILD b/community-testing/speed-dreams/PKGBUILD deleted file mode 100644 index 757a901fe..000000000 --- a/community-testing/speed-dreams/PKGBUILD +++ /dev/null @@ -1,55 +0,0 @@ -# $Id: PKGBUILD 54504 2011-08-19 10:27:23Z svenstaro $ -# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> -# Contributor: Adrián Chaves Fernández, aka Gallaecio <adriyetichaves@gmail.com> -# Contributor: Shahar Weiss <sweiss4@gmx.net> (build() code from his TORCS' PKGBUILD) -pkgname=speed-dreams -pkgver=2.0.0a3 -_pkgver=2.0.0-a3-r3412 -pkgrel=1 -pkgdesc="A racing simulator with rich graphics and physics" -arch=('i686' 'x86_64') -url="http://speed-dreams.sourceforge.net/" -license=('GPL2') -depends=('sdl' 'freealut' 'freeglut' 'libpng' 'libxi' 'libxmu' 'libxrandr' 'plib>=1.8.3' 'libjpeg' 'zlib' 'enet' 'speed-dreams-data') -makedepends=('cmake' 'p7zip') -source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${_pkgver}-src.tar.7z" - "${pkgname}.desktop") -md5sums=('659837e8866c59c85279c31fcaba4144' - 'bd5c81bac696ec53628ba42684ef8369') - -build() { - 7z x ${pkgname}-${_pkgver}-src.tar.7z - tar xf ${pkgname}-${_pkgver}-src.tar - - cd "${pkgname}-${_pkgver}-src" - - cmake . \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DSD_BINDIR=/usr/bin \ - -DSD_DATADIR=/usr/share/speed-dreams-2 \ - -DSD_LIBDIR=/usr/lib/speed-dreams-2 - - make -} - -package() { - cd "$srcdir/${pkgname}-${_pkgver}-src" - - make DESTDIR="${pkgdir}/" install - - rm -r "${pkgdir}/usr/share" - - install -Dm644 "data/data/icons/icon.png" "${pkgdir}/usr/share/pixmaps/speed-dreams.png" - install -Dm644 "data/data/icons/icon.svg" "${pkgdir}/usr/share/pixmaps/speed-dreams.svg" - install -Dm644 "${srcdir}/${pkgname}.desktop" "${pkgdir}/usr/share/applications/speed-dreams.desktop" - - mkdir -p "${pkgdir}/usr/share/doc/${pkgname}" - cp -r doc "${pkgdir}/usr/share/doc/${pkgname}/" - - mkdir -p "${pkgdir}/usr/share/man/man6/${pkgname}" - rm doc/man/speed-dreams.es.6 - cp doc/man/* "${pkgdir}/usr/share/man/man6/${pkgname}" -} - -# vim:set ts=2 sw=2 et: diff --git a/community-testing/speed-dreams/speed-dreams.desktop b/community-testing/speed-dreams/speed-dreams.desktop deleted file mode 100644 index 8c86d85cc..000000000 --- a/community-testing/speed-dreams/speed-dreams.desktop +++ /dev/null @@ -1,9 +0,0 @@ -[Desktop Entry] -Name=Speed Dreams -Comment=The Open Racing Car Simulator Fork -Exec=speed-dreams -Icon=speed-dreams.svg -Terminal=false -Type=Application -Encoding=UTF-8 -Categories=Application;Game; diff --git a/community-testing/speed-dreams/speed-dreams.sh b/community-testing/speed-dreams/speed-dreams.sh deleted file mode 100644 index fa6dde97a..000000000 --- a/community-testing/speed-dreams/speed-dreams.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -cd /opt/speed-dreams/bin -./speed-dreams diff --git a/community-testing/systemd/PKGBUILD b/community-testing/systemd/PKGBUILD deleted file mode 100644 index 6d4171a6e..000000000 --- a/community-testing/systemd/PKGBUILD +++ /dev/null @@ -1,81 +0,0 @@ -# $Id: PKGBUILD 57607 2011-10-31 13:05:22Z dreisner $ -# Maintainer: Dave Reisner <dreisner@archlinux.org> - -pkgname=systemd -pkgver=37 -pkgrel=2 -pkgdesc="Session and Startup manager" -arch=('i686' 'x86_64') -url="http://www.freedesktop.org/wiki/Software/systemd" -license=('GPL2') -depends=('dbus-core' 'kbd' 'libcap' 'util-linux>=2.19' 'udev>=172') -makedepends=('gperf' 'cryptsetup' 'gtk2' 'intltool' 'libnotify') -optdepends=('cryptsetup: required for encrypted block devices' - 'dbus-python: systemd-analyze' - 'gtk2: systemadm' - 'initscripts: legacy support for hostname and vconsole setup' - 'initscripts-systemd: native boot and initialization scripts' - 'libnotify: systemadm' - 'python2-cairo: systemd-analyze' - 'systemd-arch-units: collection of native unit files for Arch daemon/init scripts') -groups=('systemd') -options=('!libtool' '!strip') -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/systemd-logind.conf) -install=systemd.install -source=("http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.bz2" - "os-release" - systemctl-completion.patch) -md5sums=('1435f23be79c8c38d1121c6b150510f3' - '752636def0db3c03f121f8b4f44a63cd' - '8acca6b7be4bfebe4174d89e4625b0ee') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - # Don't unset locale in getty - # https://bugzilla.redhat.com/show_bug.cgi?id=663900 - sed -i -e '/^Environ.*LANG/s/^/#/' \ - -e '/^ExecStart/s/agetty/& -8/' units/getty@.service.m4 - - # fix bash completion - patch -Np1 < "$srcdir"/systemctl-completion.patch - - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --libexecdir=/usr/lib/systemd \ - --libdir=/usr/lib \ - --localstatedir=/var \ - --with-rootdir= \ - --with-rootlibdir=/lib - - make - - # fix .so links in manpages - sed -i 's|\.so halt\.8|.so systemd.halt.8|' man/{halt,poweroff}.8 - sed -i 's|\.so systemd\.1|.so man1/systemd.1|' man/init.1 -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - - make DESTDIR="$pkgdir" install - - install -Dm644 "$srcdir/os-release" "$pkgdir/etc/os-release" - printf "d /run/console 755 root root\n" > "$pkgdir/usr/lib/tmpfiles.d/console.conf" - - # fix systemd-analyze for python2 - sed -i '1s/python$/python2/' "$pkgdir/usr/bin/systemd-analyze" - - # rename man pages to avoid conflicts with sysvinit - cd "$pkgdir/usr/share/man/man8" - for manpage in telinit halt reboot poweroff runlevel shutdown; do - mv {,systemd.}"$manpage.8" - done -} diff --git a/community-testing/systemd/os-release b/community-testing/systemd/os-release deleted file mode 100644 index 5e24a6031..000000000 --- a/community-testing/systemd/os-release +++ /dev/null @@ -1,5 +0,0 @@ -NAME="Arch Linux" -ID=arch -PRETTY_NAME="Arch Linux" -ANSI_COLOR="1;36" - diff --git a/community-testing/systemd/systemctl-completion.patch b/community-testing/systemd/systemctl-completion.patch deleted file mode 100644 index afa1ae73f..000000000 --- a/community-testing/systemd/systemctl-completion.patch +++ /dev/null @@ -1,77 +0,0 @@ -From 255e63837bc985ce6f3c3b5ce5d2856e2240138b Mon Sep 17 00:00:00 2001 -From: Dave Reisner <dreisner@archlinux.org> -Date: Tue, 11 Oct 2011 20:53:05 -0400 -Subject: [PATCH] systemctl-completion: always invoke with --no-legend - -In the case of completion for the 'restart' verb, passing the invalid -unit name (the colums header) causes completion to cease functioning -entirely, with the error: - - Failed to issue method call: Unit name UNIT is not valid. - -This adds a small wrapper function for systemctl which can have common -options added to it. - ---- - src/systemctl-bash-completion.sh | 20 ++++++++++++-------- - 1 files changed, 12 insertions(+), 8 deletions(-) - -diff --git a/src/systemctl-bash-completion.sh b/src/systemctl-bash-completion.sh -index 6369a6c..6ebb792 100644 ---- a/src/systemctl-bash-completion.sh -+++ b/src/systemctl-bash-completion.sh -@@ -15,6 +15,10 @@ - # You should have received a copy of the GNU General Public License - # along with systemd; If not, see <http://www.gnu.org/licenses/>. - -+__systemctl() { -+ systemctl --no-legend "$@" -+} -+ - __contains_word () { - local word=$1; shift - for w in $*; do [[ $w = $word ]] && return 0; done -@@ -24,7 +28,7 @@ __contains_word () { - __filter_units_by_property () { - local property=$1 value=$2 ; shift ; shift - local -a units=( $* ) -- local -a props=( $(systemctl show --property "$property" -- ${units[*]} | grep -v ^$) ) -+ local -a props=( $(__systemctl show --property "$property" -- ${units[*]} | grep -v ^$) ) - for ((i=0; $i < ${#units[*]}; i++)); do - if [[ "${props[i]}" = "$property=$value" ]]; then - echo "${units[i]}" -@@ -32,10 +36,10 @@ __filter_units_by_property () { - done - } - --__get_all_units () { systemctl list-units --full --all | awk ' {print $1}' ; } --__get_active_units () { systemctl list-units --full | awk ' {print $1}' ; } --__get_inactive_units () { systemctl list-units --full --all | awk '$3 == "inactive" {print $1}' ; } --__get_failed_units () { systemctl list-units --full | awk '$3 == "failed" {print $1}' ; } -+__get_all_units () { __systemctl list-units --full --all | awk ' {print $1}' ; } -+__get_active_units () { __systemctl list-units --full | awk ' {print $1}' ; } -+__get_inactive_units () { __systemctl list-units --full --all | awk '$3 == "inactive" {print $1}' ; } -+__get_failed_units () { __systemctl list-units --full | awk '$3 == "failed" {print $1}' ; } - - _systemctl () { - local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]} -@@ -134,13 +138,13 @@ _systemctl () { - comps='' - - elif __contains_word "$verb" ${VERBS[JOBS]}; then -- comps=$( systemctl list-jobs | awk '{print $1}' ) -+ comps=$( __systemctl list-jobs | awk '{print $1}' ) - - elif __contains_word "$verb" ${VERBS[SNAPSHOTS]}; then -- comps=$( systemctl list-units --type snapshot --full --all | awk '{print $1}' ) -+ comps=$( __systemctl list-units --type snapshot --full --all | awk '{print $1}' ) - - elif __contains_word "$verb" ${VERBS[ENVS]}; then -- comps=$( systemctl show-environment | sed 's_\([^=]\+=\).*_\1_' ) -+ comps=$( __systemctl show-environment | sed 's_\([^=]\+=\).*_\1_' ) - compopt -o nospace - fi - --- -1.7.7 - diff --git a/community-testing/systemd/systemd.install b/community-testing/systemd/systemd.install deleted file mode 100644 index 04b29688a..000000000 --- a/community-testing/systemd/systemd.install +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh - -checkgroups() { - if ! usr/bin/getent group lock >/dev/null; then - usr/sbin/groupadd -g 54 lock - fi -} - -sd_booted() { - [ -e sys/fs/cgroups/systemd ] -} - -post_install() { - checkgroups - - if [ ! -f etc/machine-id ]; then - bin/systemd-machine-id-setup - fi - - echo "systemd has been installed to /bin/systemd. Please ensure you append" - echo "init=/bin/systemd to your kernel command line in your bootloader." -} - -post_upgrade() { - checkgroups - - if [ ! -f etc/machine-id ]; then - bin/systemd-machine-id-setup - fi - - if sd_booted; then - bin/systemctl daemon-reexec >/dev/null - fi - - newpkgver=${1%-*} - oldpkgver=${2%-*} - - # catch v31 need for restarting systemd-logind.service - if [ "$newpkgver" -ge 31 ] && [ "$oldpkgver" -lt 31 ]; then - # but only if systemd is running - if sd_booted; then - bin/systemctl try-restart systemd-logind.service - fi - fi -} - -post_remove() { - if usr/bin/getent group lock >/dev/null; then - usr/sbin/groupdel lock - fi -} - -# vim:set ts=2 sw=2 et: diff --git a/community-testing/texmaker/PKGBUILD b/community-testing/texmaker/PKGBUILD deleted file mode 100644 index 7db874e08..000000000 --- a/community-testing/texmaker/PKGBUILD +++ /dev/null @@ -1,34 +0,0 @@ -# Maintainer: Thomas Dziedzic < gostrc at gmail > -# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> -# Contributor: furester <xfurester@hotmail.com> -# Contributor: Firmicus <firmicus gmx net> -# Contributor: Paulo Matias <matiasΘarchlinux-br·org> - -pkgname=texmaker -pkgver=3.1 -pkgrel=2 -pkgdesc='Free cross-platform latex editor' -arch=('i686' 'x86_64') -url="http://www.xm1math.net/texmaker/index.html" -license=('GPL') -depends=('poppler-qt' 'ghostscript' 'qtwebkit') -source=("http://www.xm1math.net/texmaker/${pkgname}-${pkgver}.tar.bz2") -md5sums=('10a14c75abbb7234d4e5e58a7c85b110') - -build() { - cd ${pkgname}-${pkgver} - - export INSTALL_ROOT=${pkgdir} - - qmake -unix PREFIX=//usr texmaker.pro - - make -} - -package() { - cd ${pkgname}-${pkgver} - - export INSTALL_PATH=${pkgdir} - - make install -} diff --git a/community-testing/virtualbox-modules/60-vboxguest.rules b/community-testing/virtualbox-modules/60-vboxguest.rules deleted file mode 100644 index 6285f7249..000000000 --- a/community-testing/virtualbox-modules/60-vboxguest.rules +++ /dev/null @@ -1,2 +0,0 @@ -ACTION=="add", KERNEL=="vboxguest", SUBSYSTEM=="misc", OWNER="root", MODE="0600" -ACTION=="add", KERNEL=="vboxuser", SUBSYSTEM=="misc", OWNER="root", MODE="0666" diff --git a/community-testing/virtualbox-modules/LocalConfig.kmk b/community-testing/virtualbox-modules/LocalConfig.kmk deleted file mode 100644 index af79f90cd..000000000 --- a/community-testing/virtualbox-modules/LocalConfig.kmk +++ /dev/null @@ -1,19 +0,0 @@ -VBOX_WITH_ADDITION_DRIVERS = -VBOX_WITH_INSTALLER = 1 -VBOX_WITH_LINUX_ADDITIONS = 1 -VBOX_WITH_X11_ADDITIONS = -VBOX_WITH_TESTCASES = -VBOX_WITH_TESTSUITE = -VBOX_WITH_ORIGIN := -VBOX_PATH_APP_PRIVATE_ARCH := /usr/lib/virtualbox -VBOX_PATH_SHARED_LIBS := $(VBOX_PATH_APP_PRIVATE_ARCH) -VBOX_WITH_RUNPATH := $(VBOX_PATH_APP_PRIVATE_ARCH) -VBOX_PATH_APP_PRIVATE := /usr/share/virtualbox -VBOX_PATH_APP_DOCS := /usr/share/virtualbox -VBOX_WITH_REGISTRATION_REQUEST = -VBOX_WITH_UPDATE_REQUEST = -VBOX_WITH_VNC := 1 -VBOX_BLD_PYTHON = python2 -VBOX_JAVA_HOME = /usr/lib/jvm/java-6-openjdk -VBOX_GCC_WERR = -VBOX_GCC_WARN = diff --git a/community-testing/virtualbox-modules/PKGBUILD b/community-testing/virtualbox-modules/PKGBUILD deleted file mode 100644 index 1851f8317..000000000 --- a/community-testing/virtualbox-modules/PKGBUILD +++ /dev/null @@ -1,101 +0,0 @@ -# $Id: PKGBUILD 57949 2011-11-04 18:45:15Z ibiru $ -#Maintainer: Ionut Biru <ibiru@archlinux.org> - -pkgbase=virtualbox-modules -pkgname=('virtualbox-modules' 'virtualbox-archlinux-modules') -pkgver=4.1.6 -pkgrel=1 -arch=('i686' 'x86_64') -url='http://virtualbox.org' -license=('GPL') -makedepends=('libstdc++5' 'bin86' 'dev86' 'iasl' 'libxslt' 'libxml2' 'libpng' 'libidl2' 'xalan-c' 'sdl' 'linux-headers') -[[ $CARCH == "x86_64" ]] && makedepends=("${makedepends[@]}" 'gcc-multilib' 'lib32-glibc') -source=(http://download.virtualbox.org/virtualbox/${pkgver}/VirtualBox-${pkgver}.tar.bz2 - LocalConfig.kmk 60-vboxguest.rules) -md5sums=('03cd0875729558a46f910483e1984316' - '4c88bd122677a35f68abd76eb01b378b' - 'ed1341881437455d9735875ddf455fbe') - -_extramodules=extramodules-3.1-ARCH -_kernver="$(cat /lib/modules/${_extramodules}/version || true)" - -export KERN_DIR=/lib/modules/${_kernver}/build -export KERN_INCL=/usr/src/linux-${_kernver}/include/ - -build() { - cd "$srcdir/VirtualBox-${pkgver}_OSE" - - cp "$srcdir/LocalConfig.kmk" . - - ./configure \ - --with-linux=/usr/src/linux-${_kernver} \ - --disable-java \ - --disable-docs \ - --disable-xpcom \ - --disable-python \ - --disable-sdl-ttf \ - --disable-alsa \ - --disable-pulse \ - --disable-dbus \ - --disable-opengl \ - --build-headless \ - --nofatal - source ./env.sh - kmk all - - make -C "$srcdir/VirtualBox-${pkgver}_OSE/out/linux.$BUILD_PLATFORM_ARCH/release/bin/src" - make -C "$srcdir/VirtualBox-${pkgver}_OSE/out/linux.$BUILD_PLATFORM_ARCH/release/bin/additions/src" -} - -package_virtualbox-archlinux-modules(){ - pkgdesc="Additions only for Arch Linux guests (kernel modules)" - license=('GPL') - install=virtualbox-archlinux-modules.install - depends=('linux>=3.1' 'linux<3.2') - replaces=('virtualbox-guest-modules') - conflicts=('virtualbox-guest-modules') - - source "$srcdir/VirtualBox-${pkgver}_OSE/env.sh" - - cd "$srcdir/VirtualBox-${pkgver}_OSE/out/linux.$BUILD_PLATFORM_ARCH/release/bin/additions/src" - - for module in vboxguest.ko vboxsf.ko vboxvideo.ko; do - install -D -m644 ${module} \ - "$pkgdir/lib/modules/${_extramodules}/${module}" - done - - install -D -m 0644 "$srcdir/60-vboxguest.rules" \ - "$pkgdir/lib/udev/rules.d/60-vboxguest.rules" - - find "${pkgdir}" -name '*.ko' -exec gzip -9 {} \; - - sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" "$startdir/virtualbox-archlinux-modules.install" -} - -package_virtualbox-modules(){ - pkgdesc="Kernel modules for VirtualBox" - license=('GPL') - install=virtualbox-modules.install - depends=('linux>=3.1' 'linux<3.2') - - source "$srcdir/VirtualBox-${pkgver}_OSE/env.sh" - - - cd "$srcdir/VirtualBox-${pkgver}_OSE/out/linux.$BUILD_PLATFORM_ARCH/release/bin/src" - - install -D -m644 vboxdrv.ko \ - "$pkgdir/lib/modules/${_extramodules}/vboxdrv.ko" - - install -D -m644 vboxnetadp.ko \ - "$pkgdir/lib/modules/${_extramodules}/vboxnetadp.ko" - - install -D -m644 vboxnetflt.ko \ - "$pkgdir/lib/modules/${_extramodules}/vboxnetflt.ko" - - install -D -m644 vboxpci.ko \ - "$pkgdir/lib/modules/${_extramodules}/vboxpci.ko" - - find "${pkgdir}" -name '*.ko' -exec gzip -9 {} \; - - sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" "$startdir/virtualbox-modules.install" -} diff --git a/community-testing/virtualbox-modules/virtualbox-archlinux-modules.install b/community-testing/virtualbox-modules/virtualbox-archlinux-modules.install deleted file mode 100644 index 39a0e4063..000000000 --- a/community-testing/virtualbox-modules/virtualbox-archlinux-modules.install +++ /dev/null @@ -1,17 +0,0 @@ -post_install() { -cat << EOF -===> You may want to load vboxguest, vboxsf and vboxvideo -EOF - EXTRAMODULES='extramodules-3.1-ARCH' - depmod $(cat /lib/modules/$EXTRAMODULES/version) -} - -post_upgrade() { - EXTRAMODULES='extramodules-3.1-ARCH' - depmod $(cat /lib/modules/$EXTRAMODULES/version) -} - -post_remove() { - EXTRAMODULES='extramodules-3.1-ARCH' - depmod $(cat /lib/modules/$EXTRAMODULES/version) -} diff --git a/community-testing/virtualbox-modules/virtualbox-modules.install b/community-testing/virtualbox-modules/virtualbox-modules.install deleted file mode 100644 index ec29d3a87..000000000 --- a/community-testing/virtualbox-modules/virtualbox-modules.install +++ /dev/null @@ -1,19 +0,0 @@ -post_install() { -/bin/cat << EOF -===> You must load vboxdrv module before starting VirtualBox: -===> # modprobe vboxdrv -EOF - EXTRAMODULES='extramodules-3.1-ARCH' - depmod $(cat /lib/modules/$EXTRAMODULES/version) -} - -post_upgrade() { - EXTRAMODULES='extramodules-3.1-ARCH' - depmod $(cat /lib/modules/$EXTRAMODULES/version) - echo 'In order to use the new version, reload all virtualbox modules manually.' -} - -post_remove() { - EXTRAMODULES='extramodules-3.1-ARCH' - depmod $(cat /lib/modules/$EXTRAMODULES/version) -} diff --git a/community-testing/virtualbox/10-vboxdrv.rules b/community-testing/virtualbox/10-vboxdrv.rules deleted file mode 100644 index 37403ae2f..000000000 --- a/community-testing/virtualbox/10-vboxdrv.rules +++ /dev/null @@ -1,5 +0,0 @@ -KERNEL=="vboxdrv", NAME="vboxdrv", OWNER="root", GROUP="root", MODE="0600" ENV{ACL_MANAGE}="1" -SUBSYSTEM=="usb_device", ACTION=="add", RUN="/usr/share/virtualbox/VBoxCreateUSBNode.sh $major $minor $attr{bDeviceClass} vboxusers" -SUBSYSTEM=="usb", ACTION=="add", ENV{DEVTYPE}=="usb_device", RUN="/usr/share/virtualbox/VBoxCreateUSBNode.sh $major $minor $attr{bDeviceClass} vboxusers" -SUBSYSTEM=="usb_device", ACTION=="remove", RUN="/usr/share/virtualbox/VBoxCreateUSBNode.sh --remove $major $minor" -SUBSYSTEM=="usb", ACTION=="remove", ENV{DEVTYPE}=="usb_device", RUN="/usr/share/virtualbox/VBoxCreateUSBNode.sh --remove $major $minor" diff --git a/community-testing/virtualbox/LocalConfig.kmk b/community-testing/virtualbox/LocalConfig.kmk deleted file mode 100644 index e5cbcebcd..000000000 --- a/community-testing/virtualbox/LocalConfig.kmk +++ /dev/null @@ -1,19 +0,0 @@ -VBOX_WITH_ADDITION_DRIVERS = -VBOX_WITH_INSTALLER = 1 -VBOX_WITH_LINUX_ADDITIONS = 1 -VBOX_WITH_X11_ADDITIONS = 1 -VBOX_WITH_TESTCASES = -VBOX_WITH_TESTSUITE = -VBOX_WITH_ORIGIN := -VBOX_PATH_APP_PRIVATE_ARCH := /usr/lib/virtualbox -VBOX_PATH_SHARED_LIBS := $(VBOX_PATH_APP_PRIVATE_ARCH) -VBOX_WITH_RUNPATH := $(VBOX_PATH_APP_PRIVATE_ARCH) -VBOX_PATH_APP_PRIVATE := /usr/share/virtualbox -VBOX_PATH_APP_DOCS := /usr/share/virtualbox -VBOX_WITH_REGISTRATION_REQUEST = -VBOX_WITH_UPDATE_REQUEST = -VBOX_WITH_VNC := 1 -VBOX_BLD_PYTHON = python2 -VBOX_JAVA_HOME = /usr/lib/jvm/java-6-openjdk -VBOX_GCC_WERR = -VBOX_GCC_WARN = diff --git a/community-testing/virtualbox/PKGBUILD b/community-testing/virtualbox/PKGBUILD deleted file mode 100644 index cebea94bf..000000000 --- a/community-testing/virtualbox/PKGBUILD +++ /dev/null @@ -1,186 +0,0 @@ -# $Id: PKGBUILD 57944 2011-11-04 18:30:05Z ibiru $ -#Maintainer: Ionut Biru <ibiru@archlinux.org> -pkgbase=virtualbox -pkgname=('virtualbox' 'virtualbox-archlinux-additions' 'virtualbox-sdk' 'virtualbox-source') -pkgver=4.1.6 -pkgrel=1 -arch=('i686' 'x86_64') -url='http://virtualbox.org' -license=('GPL' 'custom') -makedepends=('libstdc++5' 'bin86' 'dev86' 'iasl' 'libxslt' 'libxml2' 'libxcursor' 'qt' 'libidl2' 'sdl_ttf' 'alsa-lib' 'libpulse' 'libxtst' -'xalan-c' 'sdl' 'libxmu' 'curl' 'python2' 'linux-headers' 'mesa' 'libxrandr' 'libxinerama' 'libvncserver' 'openjdk6' 'gsoap' 'vde2') -#'xorg-server-devel' 'xf86driproto' 'libxcomposite') -[[ $CARCH == "x86_64" ]] && makedepends=("${makedepends[@]}" 'gcc-multilib' 'lib32-glibc') -source=(http://download.virtualbox.org/virtualbox/${pkgver}/VirtualBox-${pkgver}.tar.bz2 - UserManual-$pkgver.pdf::http://download.virtualbox.org/virtualbox/${pkgver}/UserManual.pdf - 10-vboxdrv.rules vboxdrv-reference.patch LocalConfig.kmk vboxbuild - change_default_driver_dir.patch vbox-service.conf vbox-service.rc) - -_extramodules=extramodules-3.1-ARCH -_kernver="$(cat /lib/modules/${_extramodules}/version)" - -build() { - cd "$srcdir/VirtualBox-${pkgver}_OSE" - - patch -Np1 -i "$srcdir/vboxdrv-reference.patch" - patch -Np1 -i "$srcdir/change_default_driver_dir.patch" - - cp "$srcdir/LocalConfig.kmk" . - - ./configure --disable-docs \ - --enable-webservice \ - --enable-vde \ - --enable-vnc \ - --nofatal \ - --with-linux=/usr/src/linux-${_kernver} - source ./env.sh - kmk all - sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' "out/linux.$BUILD_PLATFORM_ARCH/release/bin/vboxshell.py" -} - -package_virtualbox() { - pkgdesc="Powerful x86 virtualization for enterprise as well as home use" - depends=('virtualbox-modules' 'libxml2' 'libxcursor' 'libidl2' 'libxinerama' 'sdl' 'libxmu' 'curl' 'libvncserver' 'libpng') - optdepends=('qt: for VirtualBox GUI' - 'vde2: Virtual Distributed Ethernet support' - 'virtualbox-sdk: developer kit' - 'virtualbox-source: host kernel source modules for non-stock kernels') - - backup=('etc/vbox/vbox.cfg') - replaces=('virtualbox-ose') - conflicts=('virtualbox-ose') - install=virtualbox.install - - source "$srcdir/VirtualBox-${pkgver}_OSE/env.sh" - - cd "$srcdir/VirtualBox-${pkgver}_OSE/out/linux.$BUILD_PLATFORM_ARCH/release/bin" - mkdir -p "$pkgdir"/usr/{bin,lib/virtualbox/components,lib/virtualbox/ExtensionPacks,share/virtualbox/nls} - - #doc - install -m 0644 "$srcdir/UserManual-$pkgver.pdf" "$pkgdir/usr/share/virtualbox/UserManual.pdf" - - #Binaries and Wrapper with Launchers - install -m 0755 VBox.sh "$pkgdir/usr/bin/VBox" - - for i in VBoxHeadless vboxheadless VBoxManage vboxmanage VBoxSDL vboxsdl VirtualBox virtualbox vboxwebsrv VBoxBalloonCtrl vboxballoonctrl; do - ln -sf VBox "$pkgdir/usr/bin/$i" - done - install -m 0755 VBoxTunctl "$pkgdir/usr/bin" - - #components - install -m 0755 components/* -t "$pkgdir/usr/lib/virtualbox/components" - - #lib - install -m 0755 *.so "$pkgdir/usr/lib/virtualbox" - install -m 0644 *.gc *.r0 VBoxEFI*.fd "$pkgdir/usr/lib/virtualbox" - - #setuid root binaries - install -m 4755 VBoxSDL VirtualBox VBoxHeadless VBoxNetDHCP VBoxNetAdpCtl -t "$pkgdir/usr/lib/virtualbox" - #other binaries - install -m 0755 VBoxManage VBoxSVC VBoxExtPackHelperApp VBoxXPCOMIPCD VBoxTestOGL VBoxBalloonCtrl vboxwebsrv webtest -t "$pkgdir/usr/lib/virtualbox" - - #language - install -m 0755 nls/*.qm -t "$pkgdir/usr/share/virtualbox/nls" - - #useless scripts - install -m 0755 VBoxCreateUSBNode.sh VBoxSysInfo.sh -t "$pkgdir/usr/share/virtualbox" - - #icons - install -D -m 0644 VBox.png "$pkgdir/usr/share/pixmaps/VBox.png" - - pushd icons - for i in *; do - install -d "$pkgdir/usr/share/icons/hicolor/$i/mimetypes" - cp $i/* "$pkgdir/usr/share/icons/hicolor/$i/mimetypes" - done - popd - - #desktop - install -D -m 0644 virtualbox.desktop "$pkgdir/usr/share/applications/virtualbox.desktop" - install -D -m 0644 virtualbox.xml "$pkgdir/usr/share/mime/packages/virtualbox.xml" - - #install configuration - mkdir -p "$pkgdir/etc/vbox" - echo 'INSTALL_DIR=/usr/lib/virtualbox' > "$pkgdir/etc/vbox/vbox.cfg" - - #udev and licence - install -D -m 0644 "$srcdir/VirtualBox-${pkgver}_OSE/COPYING" \ - "$pkgdir/usr/share/licenses/virtualbox/LICENSE" - install -D -m 0644 "$srcdir/10-vboxdrv.rules" \ - "$pkgdir/lib/udev/rules.d/10-vboxdrv.rules" -} - -package_virtualbox-source() { - pkgdesc="VirtualBox kernel modules source" - depends=(linux-headers gcc make) - install=virtualbox-source.install - - source "$srcdir/VirtualBox-${pkgver}_OSE/env.sh" - mkdir -p $pkgdir/usr/lib/virtualbox - - cd "$srcdir/VirtualBox-${pkgver}_OSE/out/linux.$BUILD_PLATFORM_ARCH/release/bin" - - #sources for modules - cp -r src ${pkgdir}/usr/lib/virtualbox - #install compilation script - install -D -m 755 "${srcdir}/vboxbuild" "${pkgdir}/usr/bin/vboxbuild" -} - -package_virtualbox-sdk() { - pkgdesc="VirtualBox Software Developer Kit (SDK)" - depends=('python2') - - mkdir -p "$pkgdir/usr/lib/virtualbox" - - source "$srcdir/VirtualBox-${pkgver}_OSE/env.sh" - cd "$srcdir/VirtualBox-${pkgver}_OSE/out/linux.$BUILD_PLATFORM_ARCH/release/bin" - - install -D -m 0755 vboxshell.py "$pkgdir/usr/lib/virtualbox/vboxshell.py" - #python sdk - pushd sdk/installer - VBOX_INSTALL_PATH="/usr/lib/virtualbox" python2 vboxapisetup.py install --root "${pkgdir}" - popd - rm -rf sdk/installer - mv sdk "$pkgdir/usr/lib/virtualbox" -} - -package_virtualbox-archlinux-additions(){ - pkgdesc="Additions only for Arch Linux guests (userspace tools)" - depends=("virtualbox-archlinux-modules=$pkgver" 'gcc-libs' 'libxmu' 'xorg-xrandr') - replaces=('virtualbox-guest-additions') - conflicts=('virtualbox-guest-additions') - - source "$srcdir/VirtualBox-${pkgver}_OSE/env.sh" - - cd "$srcdir/VirtualBox-${pkgver}_OSE/out/linux.$BUILD_PLATFORM_ARCH/release/bin/additions" - - install -d "$pkgdir"/{usr/bin,sbin} - install -m755 VBoxClient VBoxControl VBoxService "$pkgdir/usr/bin" - install -m755 mount.vboxsf "$pkgdir/sbin" - - install -m755 -D "$srcdir"/VirtualBox-${pkgver}_OSE/src/VBox/Additions/x11/Installer/98vboxadd-xclient \ - "$pkgdir"/usr/bin/VBoxClient-all - install -m755 -D "$srcdir"/VirtualBox-${pkgver}_OSE/src/VBox/Additions/x11/Installer/vboxclient.desktop \ - "$pkgdir"/etc/xdg/autostart/vboxclient.desktop - install -D vboxvideo_drv_111.so \ - "$pkgdir/usr/lib/xorg/modules/drivers/vboxvideo.so" - install -d "$pkgdir/usr/lib/xorg/modules/dri" - install -m755 VBoxOGL*.so "$pkgdir/usr/lib" - ln -s /usr/lib/VBoxOGL.so "$pkgdir/usr/lib/xorg/modules/dri/vboxvideo_dri.so" - install -m755 -D pam_vbox.so "$pkgdir/lib/security/pam_vbox.so" - - # install rc.d script - install -D -m755 "${srcdir}/vbox-service.rc" "${pkgdir}/etc/rc.d/vbox-service" - - # install sample config - install -D -m644 "${srcdir}/vbox-service.conf" "${pkgdir}/etc/conf.d/vbox-service" -} -md5sums=('03cd0875729558a46f910483e1984316' - 'af534f713993eb077df26ff9a44fb080' - '5f85710e0b8606de967716ded7b2d351' - '88b847c3480df14139980d62597329ec' - '78ffa67ff131680f1d2b6f06d4325c5b' - 'a82d698e7868315cdf876cfb02fd2268' - '97e193f050574dd272a38e5ee5ebe62b' - '3c08ad30b89add47d3f45121200a5360' - '778d865e56e31cc592fbfa257fdcfce7') diff --git a/community-testing/virtualbox/change_default_driver_dir.patch b/community-testing/virtualbox/change_default_driver_dir.patch deleted file mode 100644 index d8531499d..000000000 --- a/community-testing/virtualbox/change_default_driver_dir.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff -Nur VirtualBox-4.1.0_OSE.orig/src/VBox/Additions/common/crOpenGL/fakedri_drv.c VirtualBox-4.1.0_OSE/src/VBox/Additions/common/crOpenGL/fakedri_drv.c ---- VirtualBox-4.1.0_OSE.orig/src/VBox/Additions/common/crOpenGL/fakedri_drv.c 2011-07-19 15:11:37.903456612 +0000 -+++ VirtualBox-4.1.0_OSE/src/VBox/Additions/common/crOpenGL/fakedri_drv.c 2011-07-19 15:12:41.024021274 +0000 -@@ -36,13 +36,8 @@ - //#define DEBUG_DRI_CALLS - - //@todo this could be different... --#ifdef RT_ARCH_AMD64 --# define DRI_DEFAULT_DRIVER_DIR "/usr/lib64/dri:/usr/lib/dri:/usr/lib/x86_64-linux-gnu/dri" -+# define DRI_DEFAULT_DRIVER_DIR "/usr/lib/xorg/modules/dri" - # define DRI_XORG_DRV_DIR "/usr/lib/xorg/modules/drivers/" --#else --# define DRI_DEFAULT_DRIVER_DIR "/usr/lib/dri:/usr/lib/i386-linux-gnu/dri" --# define DRI_XORG_DRV_DIR "/usr/lib/xorg/modules/drivers/" --#endif - - #ifdef DEBUG_DRI_CALLS - #define SWDRI_SHOWNAME(pext, func) \ diff --git a/community-testing/virtualbox/vbox-service.conf b/community-testing/virtualbox/vbox-service.conf deleted file mode 100644 index 9d4ec629f..000000000 --- a/community-testing/virtualbox/vbox-service.conf +++ /dev/null @@ -1,2 +0,0 @@ -# VBoxService -h -VBOX_SERVICE_OPTION="" diff --git a/community-testing/virtualbox/vbox-service.rc b/community-testing/virtualbox/vbox-service.rc deleted file mode 100755 index c1af2134d..000000000 --- a/community-testing/virtualbox/vbox-service.rc +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions -. /etc/conf.d/vbox-service - -name=VBoxService -PID=$(pidof -o %PPID $name) - -case "$1" in - start) - stat_busy "Starting $name service" - [[ -z "$PID" ]] && ${name} $VBOX_SERVICE_OPTION &>/dev/null \ - && { add_daemon $name; stat_done; } \ - || { stat_fail; exit 1; } - ;; - stop) - stat_busy "Stopping $name service" - [[ -n "$PID" ]] && kill $PID &>/dev/null \ - && { rm_daemon $name; stat_done; } \ - || { stat_fail; exit 1; } - ;; - restart) - $0 stop - sleep 1 - $0 start - ;; - status) - stat_busy "Checking $name status"; - ck_status $name - ;; - *) - echo "usage: $0 {start|stop|restart|status}" - exit 1 -esac - -exit 0 - -# vim:set ts=2 sw=2 ft=sh et: diff --git a/community-testing/virtualbox/vboxbuild b/community-testing/virtualbox/vboxbuild deleted file mode 100755 index cfc3c0a66..000000000 --- a/community-testing/virtualbox/vboxbuild +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions -. /etc/vbox/vbox.cfg - -MODLIST=() -LOG="/var/log/vbox-install.log" ->| "$LOG" - -if [[ $INSTALL_DIR ]]; then - VBOXMANAGE=$INSTALL_DIR/VBoxManage - BUILDVBOXDRV=$INSTALL_DIR/src/vboxdrv/build_in_tmp - BUILDVBOXNETFLT=$INSTALL_DIR/src/vboxnetflt/build_in_tmp - BUILDVBOXNETADP=$INSTALL_DIR/src/vboxnetadp/build_in_tmp - BUILDVBOXPCI=$INSTALL_DIR/src/vboxpci/build_in_tmp -else - echo "error: missing vbox.cfg" - exit 1 -fi - -if [[ -f /proc/modules ]]; then - IFS=$'\n' read -r -d '' -a MODLIST < \ - <(grep -oE '^vbox(pci|netflt|netadp|drv)' /proc/modules) -fi - -if (( ${#MODLIST[*]} )); then - stat_busy "Unloading VirtualBox kernel modules" - modprobe -ar "${MODLIST[@]}" && stat_done || stat_fail -fi - -for kdir in /lib/modules/[2-3]*; do - if [[ ! -d $kdir/kernel ]]; then - # found a stale kernel - mods=("$kdir/misc/vbox"{drv,netadp,netflt,pci}.ko*) - if (( ${#mods[@]} )); then - stat_busy "Removing all old VirtualBox kernel modules" - if rm -f "${mods[@]}" && - rmdir -p --ignore-fail-on-non-empty "$p/misc/" 2>/dev/null; then - stat_done - else - stat_fail - fi - fi - fi -done - -# default to the currently running kernel -if (( ! $# )); then - set -- $(uname -r) -fi - -for kernver; do - export KERN_DIR=/lib/modules/$kernver/build - if [[ ! -d $KERN_DIR ]]; then - printf "error: \`%s' does not appear to be a valid kernel build directory.\n" \ - "$KERN_DIR" - continue - fi - - stat_busy "Recompiling VirtualBox kernel modules ($kernver)" - for build in BUILDVBOX{DRV,NETFLT,NETADP,PCI}; do - if ! ${!build} \ - --save-module-symvers /tmp/vboxdrv-Module.symvers \ - --no-print-directory install >> $LOG 2>&1; then - echo "Look at $LOG to find out what went wrong" - stat_fail - continue - fi - done - stat_done -done - -if (( ${#MODLIST[*]} )); then - stat_busy "Reloading VirtualBox kernel modules" - modprobe -a "${MODLIST[@]}" && stat_done || stat_fail -fi - diff --git a/community-testing/virtualbox/vboxdrv-reference.patch b/community-testing/virtualbox/vboxdrv-reference.patch deleted file mode 100644 index 9f4b127cd..000000000 --- a/community-testing/virtualbox/vboxdrv-reference.patch +++ /dev/null @@ -1,57 +0,0 @@ -diff -Nur VirtualBox-4.1.6_OSE.orig/src/VBox/Frontends/VirtualBox/src/main.cpp VirtualBox-4.1.6_OSE/src/VBox/Frontends/VirtualBox/src/main.cpp ---- VirtualBox-4.1.6_OSE.orig/src/VBox/Frontends/VirtualBox/src/main.cpp 2011-11-04 17:22:13.636083176 +0000 -+++ VirtualBox-4.1.6_OSE/src/VBox/Frontends/VirtualBox/src/main.cpp 2011-11-04 17:48:58.915541368 +0000 -@@ -75,10 +75,9 @@ - "The VirtualBox Linux kernel driver (vboxdrv) is either not loaded or " - "there is a permission problem with /dev/vboxdrv. Please reinstall the kernel " - "module by executing<br/><br/>" -- " <font color=blue>'/etc/init.d/vboxdrv setup'</font><br/><br/>" -- "as root. If it is available in your distribution, you should install the " -- "DKMS package first. This package keeps track of Linux kernel changes and " -- "recompiles the vboxdrv kernel module if necessary." -+ " <font color=blue>'pacman -S virtualbox-modules'</font><br/><br/>" -+ "as root. If you don't use our stock kernel, install virtualbox-source and" -+ "execute /usr/bin/vboxbuild ." - ); - - QString g_QStrHintOtherWrongDriverVersion = QApplication::tr( -@@ -90,11 +89,8 @@ - - QString g_QStrHintLinuxWrongDriverVersion = QApplication::tr( - "The VirtualBox kernel modules do not match this version of " -- "VirtualBox. The installation of VirtualBox was apparently not " -- "successful. Executing<br/><br/>" -- " <font color=blue>'/etc/init.d/vboxdrv setup'</font><br/><br/>" -- "may correct this. Make sure that you do not mix the " -- "OSE version and the PUEL version of VirtualBox." -+ "VirtualBox. Reload the modules or if you don't use our stock kernel execute<br/><br/> " -+ " <font color=blue>'/usr/bin/vboxbuild'</font><br/><br/>" - ); - - QString g_QStrHintOtherNoDriver = QApplication::tr( -diff -Nur VirtualBox-4.1.6_OSE.orig/src/VBox/Installer/linux/VBox.sh VirtualBox-4.1.6_OSE/src/VBox/Installer/linux/VBox.sh ---- VirtualBox-4.1.6_OSE.orig/src/VBox/Installer/linux/VBox.sh 2011-11-04 17:22:13.549415814 +0000 -+++ VirtualBox-4.1.6_OSE/src/VBox/Installer/linux/VBox.sh 2011-11-04 17:56:50.735874087 +0000 -@@ -32,17 +32,18 @@ - cat << EOF - WARNING: The vboxdrv kernel module is not loaded. Either there is no module - available for the current kernel (`uname -r`) or it failed to -- load. Please recompile the kernel module and install it by -+ load. Please recompile the kernel module virtualbox-modules or -+ if you don't use our stock kernel compile the modules with - -- sudo /etc/init.d/vboxdrv setup -+ sudo /usr/bin/vboxbuild - - You will not be able to start VMs until this problem is fixed. - EOF - elif [ ! -c /dev/vboxdrv ]; then - cat << EOF --WARNING: The character device /dev/vboxdrv does not exist. Try -+WARNING: The character device /dev/vboxdrv does not exist. Try to load the module - -- sudo /etc/init.d/vboxdrv restart -+ sudo modprobe vboxdrv - - and if that is not successful, try to re-install the package. - diff --git a/community-testing/virtualbox/virtualbox-source.install b/community-testing/virtualbox/virtualbox-source.install deleted file mode 100644 index 24d90b1c2..000000000 --- a/community-testing/virtualbox/virtualbox-source.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { -/bin/cat << EOF -===> To compile the modules do /usr/bin/vboxbuild -EOF - -} - -post_upgrade() { -/bin/cat << EOF -===> To recompile the modules do /usr/bin/vboxbuild -EOF -} diff --git a/community-testing/virtualbox/virtualbox.install b/community-testing/virtualbox/virtualbox.install deleted file mode 100644 index c794b857d..000000000 --- a/community-testing/virtualbox/virtualbox.install +++ /dev/null @@ -1,34 +0,0 @@ -utils() { - if [ -x usr/bin/update-mime-database ]; then - update-mime-database usr/share/mime > /dev/null 2>&1 - fi - - if [ -x usr/bin/xdg-icon-resource ]; then - xdg-icon-resource forceupdate --theme hicolor > /dev/null 2>&1 - fi - - if [ -x usr/bin/update-desktop-database ]; then - usr/bin/update-desktop-database -q - fi -} - -post_install() { - getent group vboxusers >> /dev/null || usr/sbin/groupadd -g 108 vboxusers - utils -} - -post_upgrade() { - getent group vboxusers >> /dev/null || usr/sbin/groupadd -g 108 vboxusers - utils - if [ "$(vercmp $2 4.1.6-1)" -lt 0 ]; then -/bin/cat << EOF -===> Starting with virtualbox version 4.1.6-1, kernel modules handling is done by virtualbox-modules. -===> Use virtualbox-source package if you don't use our stock linux package. -EOF - fi -} - -post_remove() { - groupdel vboxusers >/dev/null 2>&1 || true - utils -} diff --git a/community-testing/vtk/PKGBUILD b/community-testing/vtk/PKGBUILD deleted file mode 100644 index bb2c3f13d..000000000 --- a/community-testing/vtk/PKGBUILD +++ /dev/null @@ -1,107 +0,0 @@ -# Maintainer: Thomas Dziedzic < gostrc at gmail > -# Contributor: Christofer Bertonha <christoferbertonha at gmail dot com> -# Contributor: leepesjee <lpeschier at xs4all dot nl> -# Contributor: Olivier Medoc -# Contributor: ignotus -# Contributor: Fabian Moser -# Contributor: djscholl - -pkgname=vtk -pkgver=5.8.0 -pkgrel=5 -pkgdesc='A software system for 3D computer graphics, image processing, and visualization which supports a wide variety of visualization algorithms and advanced modeling techniques.' -arch=('i686' 'x86_64') -url='http://www.vtk.org' -license=('BSD') -depends=('libpng' 'libtiff' 'freetype2' 'boost' 'ffmpeg' 'qt' 'lesstif' 'mysql') -makedepends=('cmake' 'java-environment' 'doxygen' 'gnuplot' 'mesa' 'python2' 'tk') -optdepends=('python2: python bindings' - 'java-runtime: java bindings' - 'tk: tcl bindings' - 'gnuplot: plotting tools' - 'graphviz: drawing tools') -source=("http://www.vtk.org/files/release/${pkgver:0:3}/vtk-${pkgver}.tar.gz" - "http://www.vtk.org/files/release/${pkgver:0:3}/vtkdata-${pkgver}.tar.gz" - 'fixkernelversioncheck.diff' - 'ffmpeg-0.8.diff') -md5sums=('37b7297d02d647cc6ca95b38174cb41f' - 'a05295b81930e894fc0e31866f399151' - '9e137af23701f76fc727222ebac23389' - 'e992321c9d1def6034d0fa6607b40c5a') - -build() { - cd VTK - - # fix compilation error: http://vtk.org/Bug/view.php?id=12568 - # remove next pkgver bump - patch -Np1 -i ${srcdir}/fixkernelversioncheck.diff - - # fix compilation error: - # remove next pkgver bump - patch -Np1 -i ${srcdir}/ffmpeg-0.8.diff - - cd ${srcdir} - - rm -rf build - mkdir build - cd build - - cmake \ - -Wno-dev \ - -DBUILD_SHARED_LIBS:BOOL=ON \ - -DCMAKE_INSTALL_PREFIX:FILEPATH=/usr \ - -DVTK_DATA_ROOT:FILEPATH=${srcdir}/VTKData \ - -DBUILD_DOCUMENTATION:BOOL=ON \ - -DDOCUMENTATION_HTML_HELP:BOOL=ON \ - -DDOCUMENTATION_HTML_TARZ:BOOL=ON \ - -DBUILD_EXAMPLES:BOOL=ON \ - -DVTK_USE_HYBRID:BOOL=ON \ - -DVTK_USE_PARALLEL:BOOL=ON \ - -DVTK_USE_PATENTED:BOOL=ON \ - -DVTK_USE_SYSTEM_EXPAT:BOOL=ON \ - -DVTK_USE_SYSTEM_FREETYPE:BOOL=ON \ - -DVTK_USE_SYSTEM_JPEG:BOOL=ON \ - -DVTK_USE_SYSTEM_PNG:BOOL=ON \ - -DVTK_USE_SYSTEM_TIFF:BOOL=ON \ - -DVTK_USE_SYSTEM_ZLIB:BOOL=ON \ - -DVTK_USE_SYSTEM_LIBXML2:BOOL=ON \ - -DVTK_USE_BOOST:BOOL=ON \ - -DVTK_USE_INFOVIS:BOOL=ON \ - -DVTK_USE_GL2PS:BOOL=ON \ - -DVTK_USE_MYSQL:BOOL=ON \ - -DVTK_USE_FFMPEG_ENCODER:BOOL=ON \ - -DVTK_USE_TEXT_ANALYSIS:BOOL=ON \ - -DVTK_WRAP_JAVA:BOOL=ON \ - -DVTK_WRAP_PYTHON:BOOL=ON \ - -DVTK_WRAP_TCL:BOOL=ON \ - -DVTK_PYTHON_SETUP_ARGS:STRING="--root=${pkgdir}" \ - -DVTK_USE_QT:BOOL=ON \ - -DVTK_INSTALL_QT_PLUGIN_DIR:STRING="/usr/lib/qt/plugins" \ - -DVTK_USE_GUISUPPORT:BOOL=ON \ - -DCMAKE_CXX_FLAGS="-D__STDC_CONSTANT_MACROS" \ - -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \ - -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \ - ${srcdir}/VTK - - make -} - -package() { - cd build - - make DESTDIR=${pkgdir} install - - # Move the vtk.jar to the arch-specific location - install -dv ${pkgdir}/usr/share/java/vtk - mv -v ${pkgdir}/usr/lib/vtk-${pkgver:0:3}/java/vtk.jar \ - ${pkgdir}/usr/share/java/vtk - - # Install license - install -dv ${pkgdir}/usr/share/licenses/vtk - install -m644 ${srcdir}/VTK/Copyright.txt \ - ${pkgdir}/usr/share/licenses/vtk - - # Put an entry in /etc/ld.so.conf.d - install -dv ${pkgdir}/etc/ld.so.conf.d - echo "/usr/lib/vtk-${pkgver:0:3}" > ${pkgdir}/etc/ld.so.conf.d/vtk.conf -} diff --git a/community-testing/vtk/fixkernelversioncheck.diff b/community-testing/vtk/fixkernelversioncheck.diff deleted file mode 100644 index 165f07366..000000000 --- a/community-testing/vtk/fixkernelversioncheck.diff +++ /dev/null @@ -1,19 +0,0 @@ ---- a/Utilities/vtkhdf5/ConfigureChecks.cmake -+++ b/Utilities/vtkhdf5/ConfigureChecks.cmake -@@ -75,14 +75,14 @@ IF (HDF5_WANT_DCONV_EXCEPTION) - ENDIF (HDF5_WANT_DCONV_EXCEPTION) - - SET (LINUX_LFS 0) --IF (CMAKE_SYSTEM MATCHES "Linux-([3-9]\\.[0-9]|2\\.[4-9])\\.") -+IF (CMAKE_SYSTEM MATCHES "Linux") - # Linux Specific flags - ADD_DEFINITIONS (-D_POSIX_SOURCE -D_BSD_SOURCE) - OPTION (HDF5_ENABLE_LARGE_FILE "Enable support for large (64-bit) files on Linux." ON) - IF (HDF5_ENABLE_LARGE_FILE) - SET (LARGEFILE 1) - ENDIF (HDF5_ENABLE_LARGE_FILE) --ENDIF (CMAKE_SYSTEM MATCHES "Linux-([3-9]\\.[0-9]|2\\.[4-9])\\.") -+ENDIF (CMAKE_SYSTEM MATCHES "Linux") - SET (HDF5_EXTRA_FLAGS) - IF (LINUX_LFS) - SET (HDF5_EXTRA_FLAGS -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE) diff --git a/community-testing/wkhtmltopdf/PKGBUILD b/community-testing/wkhtmltopdf/PKGBUILD deleted file mode 100644 index 040e13dd1..000000000 --- a/community-testing/wkhtmltopdf/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# $Id: PKGBUILD 57259 2011-10-24 20:34:47Z andrea $ -# Maintainer: Evangelos Foutras <evangelos@foutrelis.com> - -pkgname=wkhtmltopdf -pkgver=0.9.9 -pkgrel=2 -pkgdesc="Simple shell utility to convert html to pdf using the webkit rendering engine, and qt" -arch=('i686' 'x86_64') -url="http://code.google.com/p/wkhtmltopdf/" -license=('GPL3') -depends=('qt' 'qtwebkit') -optdepends=('xorg-server: wkhtmltopdf needs X or Xvfb to operate') -source=(http://wkhtmltopdf.googlecode.com/files/$pkgname-$pkgver.tar.bz2) -sha1sums=('41f598c0103326e7c13101391447b0284b4ba3cb') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - qmake wkhtmltopdf.pro - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make INSTALL_ROOT="$pkgdir/usr" install - - # Generate and install man page - install -d "$pkgdir/usr/share/man/man1" - ./wkhtmltopdf --manpage >"$pkgdir/usr/share/man/man1/wkhtmltopdf.1" -} diff --git a/community/6tunnel/PKGBUILD b/community/6tunnel/PKGBUILD index a873e8817..a3c169763 100644 --- a/community/6tunnel/PKGBUILD +++ b/community/6tunnel/PKGBUILD @@ -5,7 +5,7 @@ pkgrel=4 pkgdesc="Tunnels IPv6 connections for IPv4-only applications" url="http://toxygen.net/6tunnel/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=(glibc) source=(http://toxygen.net/6tunnel/$pkgname-$pkgver.tar.gz) md5sums=('74e02d4f0704b3083a01feda66033449') diff --git a/community/9base/PKGBUILD b/community/9base/PKGBUILD index 06fd6be71..aa2dbb008 100644 --- a/community/9base/PKGBUILD +++ b/community/9base/PKGBUILD @@ -13,7 +13,7 @@ source=(http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz 9 plan9.sh) depends=(sh) conflicts=('plan9port' '9rc-devel') provides=('plan9') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') build() diff --git a/community/acetoneiso2/PKGBUILD b/community/acetoneiso2/PKGBUILD index 7ae5c20e2..f6429515e 100644 --- a/community/acetoneiso2/PKGBUILD +++ b/community/acetoneiso2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=acetoneiso2 pkgver=2.3 pkgrel=2 pkgdesc="An all in one ISO tool (bin mdf nrg img daa dmg cdi b5i bwi pdi iso)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.acetoneteam.org" license=('GPL3') depends=('qt>=4' 'fuseiso' 'cdrdao' 'cdrkit' 'dvd+rw-tools' 'gnupg2' 'pinentry' 'mplayer' 'phonon') diff --git a/community/acpitool/PKGBUILD b/community/acpitool/PKGBUILD index 7fc0ac9d3..95c0534e9 100644 --- a/community/acpitool/PKGBUILD +++ b/community/acpitool/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.5.1 pkgrel=3 pkgdesc="ACPI client - replacement for apm tool" url="http://sourceforge.net/projects/acpitool/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gcc-libs') source=(http://downloads.sourceforge.net/sourceforge/acpitool/acpitool-$pkgver.tar.bz2 diff --git a/community/adesklets/PKGBUILD b/community/adesklets/PKGBUILD index d7f97a0c7..6a2a10ade 100644 --- a/community/adesklets/PKGBUILD +++ b/community/adesklets/PKGBUILD @@ -6,7 +6,7 @@ pkgname=adesklets pkgver=0.6.1 pkgrel=11 pkgdesc="An imlib2-based system to have interactive 'desklets'." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://adesklets.sourceforge.net/" license=('GPL2') depends=('imlib2' 'fontconfig' 'python2' 'perl' 'ttf-bitstream-vera' 'libx11') diff --git a/community/adns-python/PKGBUILD b/community/adns-python/PKGBUILD index 30dec848a..c6c393de7 100644 --- a/community/adns-python/PKGBUILD +++ b/community/adns-python/PKGBUILD @@ -6,7 +6,7 @@ pkgname=adns-python pkgver=1.2.1 pkgrel=4 pkgdesc="python bindings for adns" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/adns-python/" depends=('adns' 'python2') makedepends=() diff --git a/community/adns/PKGBUILD b/community/adns/PKGBUILD index 3165436a8..4e2dacb81 100644 --- a/community/adns/PKGBUILD +++ b/community/adns/PKGBUILD @@ -5,7 +5,7 @@ pkgname=adns pkgver=1.4 pkgrel=2 pkgdesc="adns is an asyncronous replacement resolver library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.chiark.greenend.org.uk/~ian/adns/" license=('GPL') depends=('glibc') diff --git a/community/agave/PKGBUILD b/community/agave/PKGBUILD index 219e5150a..3998f6d51 100644 --- a/community/agave/PKGBUILD +++ b/community/agave/PKGBUILD @@ -7,7 +7,7 @@ pkgname=agave pkgver=0.4.7 pkgrel=2 pkgdesc="An colorscheme designer for the Gnome desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://home.gna.org/colorscheme" license=('GPL') depends=('gtkmm' 'libgnomeui' 'libglademm' 'gconfmm>=2.18.1' 'hicolor-icon-theme') diff --git a/community/agg/PKGBUILD b/community/agg/PKGBUILD index 7a50506a2..4ac0172da 100644 --- a/community/agg/PKGBUILD +++ b/community/agg/PKGBUILD @@ -5,7 +5,7 @@ pkgname=agg pkgver=2.5 pkgrel=4 pkgdesc="A High Quality Rendering Engine for C++" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.antigrain.com/" license=('GPL') depends=('gcc-libs' 'sdl' 'freetype2') diff --git a/community/agsync/PKGBUILD b/community/agsync/PKGBUILD index 9278d80fb..318010c22 100644 --- a/community/agsync/PKGBUILD +++ b/community/agsync/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.2_pre _xpkgver=${pkgver/_/-} pkgrel=3 pkgdesc="AvantGo sync plugin" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://duskwood.lownewulf.com/" license=("GPL") depends=('synce-librapi') diff --git a/community/aide/PKGBUILD b/community/aide/PKGBUILD index 3f0f17bcb..bec57db22 100644 --- a/community/aide/PKGBUILD +++ b/community/aide/PKGBUILD @@ -6,7 +6,7 @@ pkgname=aide pkgver=0.15.1 pkgrel=1 pkgdesc='A file integrity checker and intrusion detection program.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cs.tut.fi/~rammer/aide.html" license=('GPL') makedepends=('mhash') diff --git a/community/aircrack-ng/PKGBUILD b/community/aircrack-ng/PKGBUILD index 27f257e5c..e4bbc4250 100644 --- a/community/aircrack-ng/PKGBUILD +++ b/community/aircrack-ng/PKGBUILD @@ -8,7 +8,7 @@ pkgbase=aircrack-ng pkgname=(aircrack-ng aircrack-ng-scripts) pkgver=1.1 pkgrel=7 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.aircrack-ng.org" license=('GPL2') source=("http://download.aircrack-ng.org/${pkgname}-${pkgver}.tar.gz") diff --git a/community/alltray/PKGBUILD b/community/alltray/PKGBUILD index 602aa9e00..b61827550 100644 --- a/community/alltray/PKGBUILD +++ b/community/alltray/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.7.5dev pkgrel=1 pkgdesc="Drops any app in the tray." license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://alltray.trausch.us/" depends=('libxpm' 'libgtop' 'libwnck') options=('!libtool') diff --git a/community/alure/PKGBUILD b/community/alure/PKGBUILD index 2426a5ec7..a7aac2f8b 100644 --- a/community/alure/PKGBUILD +++ b/community/alure/PKGBUILD @@ -5,7 +5,7 @@ pkgname=alure pkgver=1.2 pkgrel=1 pkgdesc='Utility library to help manage common tasks with OpenAL applications.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://kcat.strangesoft.net/alure.html' license=('MIT') depends=('openal') diff --git a/community/amaya/PKGBUILD b/community/amaya/PKGBUILD index b054eb7ad..909d4871a 100644 --- a/community/amaya/PKGBUILD +++ b/community/amaya/PKGBUILD @@ -8,7 +8,7 @@ pkgname=amaya pkgver=11.3.1 pkgrel=8 pkgdesc="W3C's Editor/Browser" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.w3.org/Amaya/" license=('Custom/BSD') depends=('wxgtk' 'libgl' 'raptor1' 'libxt') diff --git a/community/amidi-plug/PKGBUILD b/community/amidi-plug/PKGBUILD index ba29a076c..249bf8494 100644 --- a/community/amidi-plug/PKGBUILD +++ b/community/amidi-plug/PKGBUILD @@ -6,7 +6,7 @@ pkgname=amidi-plug pkgver=0.7 pkgrel=5 pkgdesc="A MIDI input plugin for XMMS" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.develia.org/projects.php?l=2&f=1&p=amidiplug" license=('GPL2') depends=('xmms' 'fluidsynth') diff --git a/community/amsn/PKGBUILD b/community/amsn/PKGBUILD index c96ccf33c..8159f68f7 100644 --- a/community/amsn/PKGBUILD +++ b/community/amsn/PKGBUILD @@ -7,7 +7,7 @@ pkgname=amsn pkgver=0.98.4 pkgrel=1 pkgdesc="MSN client written in Tcl/Tk" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://amsn.sourceforge.net/" license=('GPL2') depends=('tk' 'tls') diff --git a/community/antiword/PKGBUILD b/community/antiword/PKGBUILD index 3d5c45644..260633c73 100644 --- a/community/antiword/PKGBUILD +++ b/community/antiword/PKGBUILD @@ -7,7 +7,7 @@ pkgname=antiword pkgver=0.37 pkgrel=3 pkgdesc="A free MS Word reader for Linux and RISC OS" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.winfield.demon.nl/" license=('GPL') depends=('bash') diff --git a/community/anyfs-tools/PKGBUILD b/community/anyfs-tools/PKGBUILD index 47d550208..41643d5a1 100644 --- a/community/anyfs-tools/PKGBUILD +++ b/community/anyfs-tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=anyfs-tools pkgver=0.85.1c pkgrel=1 pkgdesc="unix-way toolset for recovering and converting filesystems" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://anyfs-tools.sourceforge.net/" license=('GPL') depends=(bzip2 e2fsprogs libmpeg2 xfsprogs fuse) diff --git a/community/apcupsd/PKGBUILD b/community/apcupsd/PKGBUILD index 0e50f3466..1cec8981d 100644 --- a/community/apcupsd/PKGBUILD +++ b/community/apcupsd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=apcupsd pkgver=3.14.10 pkgrel=1 pkgdesc="power mangement and controlling most of APC's UPS models" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.apcupsd.org" license=('GPL') depends=('gcc-libs') diff --git a/community/apg/PKGBUILD b/community/apg/PKGBUILD index 9af58f37d..707c5a6af 100644 --- a/community/apg/PKGBUILD +++ b/community/apg/PKGBUILD @@ -6,7 +6,7 @@ pkgname=apg pkgver=2.2.3 pkgrel=2 pkgdesc="Automated Password Generator." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.adel.nursat.kz/apg/index.shtml" license=('custom') depends=('glibc') diff --git a/community/apparix/PKGBUILD b/community/apparix/PKGBUILD index c5a128a1a..10072bee7 100644 --- a/community/apparix/PKGBUILD +++ b/community/apparix/PKGBUILD @@ -6,7 +6,7 @@ pkgver=08.331 _ver="08-331" pkgrel=2 pkgdesc="Command line file browser with bookmark support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://micans.org/apparix/" license=('GPL2') depends=('bash') diff --git a/community/apvlv/PKGBUILD b/community/apvlv/PKGBUILD index 2b1e7cc8a..b3e7346c6 100644 --- a/community/apvlv/PKGBUILD +++ b/community/apvlv/PKGBUILD @@ -7,7 +7,7 @@ pkgname=apvlv pkgver=0.1.2 pkgrel=2 pkgdesc="A PDF Viewer which behaves like Vim" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://naihe2010.github.com/apvlv/" license=('GPL') depends=('gtk2' 'cairo' 'poppler-glib' 'djvulibre') diff --git a/community/aqbanking/PKGBUILD b/community/aqbanking/PKGBUILD index e817394ef..03cb2247e 100644 --- a/community/aqbanking/PKGBUILD +++ b/community/aqbanking/PKGBUILD @@ -7,7 +7,7 @@ pkgver=5.0.16 _dnrel=87 pkgrel=1 pkgdesc="A library for online banking and financial applications" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') options=('!libtool') url="http://www.aquamaniac.de/aqbanking" license=('GPL') diff --git a/community/arch/PKGBUILD b/community/arch/PKGBUILD index 2be3a270a..de474a313 100644 --- a/community/arch/PKGBUILD +++ b/community/arch/PKGBUILD @@ -5,7 +5,7 @@ pkgname='arch' pkgver=1.3.5 pkgrel=8 pkgdesc="a modern and remarkable revision control system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://regexps.srparish.net/www/#Gnu-arch" depends=('zlib' 'expat' 'krb5') diff --git a/community/aria2/PKGBUILD b/community/aria2/PKGBUILD index 0fb4e866b..fed44e432 100644 --- a/community/aria2/PKGBUILD +++ b/community/aria2/PKGBUILD @@ -7,7 +7,7 @@ pkgname=aria2 pkgver=1.13.0 pkgrel=2 pkgdesc='Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://aria2.sourceforge.net/' license=('GPL') depends=('gnutls' 'libxml2' 'sqlite3' 'c-ares' 'ca-certificates') diff --git a/community/ario/PKGBUILD b/community/ario/PKGBUILD index cc59a56fd..d96fa671c 100644 --- a/community/ario/PKGBUILD +++ b/community/ario/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ario pkgver=1.5.1 pkgrel=1 pkgdesc="A GTK client for MPD (Music player daemon) inspired by Rhythmbox but much lighter and faster" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ario-player.sourceforge.net/" license=('GPL') depends=('avahi' 'curl' 'dbus-glib' 'gnutls' 'hicolor-icon-theme' 'libglade' 'libmpdclient' 'libnotify' 'libsoup' 'libunique' 'taglib' 'xdg-utils') diff --git a/community/armagetronad/PKGBUILD b/community/armagetronad/PKGBUILD index c3606bde1..a6ab55b6b 100644 --- a/community/armagetronad/PKGBUILD +++ b/community/armagetronad/PKGBUILD @@ -6,7 +6,7 @@ pkgname=armagetronad pkgver=0.2.8.3.1 pkgrel=2 pkgdesc='A Tron Clone in 3D.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://armagetronad.net/' license=('GPL') depends=('sdl_image' 'libxml2' 'sdl_mixer' 'mesa' 'ftgl') diff --git a/community/arp-scan/PKGBUILD b/community/arp-scan/PKGBUILD index 6987f26d9..e0d034389 100644 --- a/community/arp-scan/PKGBUILD +++ b/community/arp-scan/PKGBUILD @@ -6,7 +6,7 @@ pkgname=arp-scan pkgver=1.8.1 pkgrel=1 pkgdesc="A tool that uses ARP to discover and fingerprint IP hosts on the local network" -arch=('i686' 'x86_64') +arch=(mips64el) url="http://www.nta-monitor.com/tools/arp-scan/" license=('GPL') depends=('libpcap' 'perl-libwww') diff --git a/community/arpack/PKGBUILD b/community/arpack/PKGBUILD index 0f909d106..5b92af19f 100644 --- a/community/arpack/PKGBUILD +++ b/community/arpack/PKGBUILD @@ -6,7 +6,7 @@ pkgname=arpack pkgver=2.1 pkgrel=4 pkgdesc="A collection of Fortran77 subroutines designed to solve large scale eigenvalue problems" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.caam.rice.edu/software/ARPACK" license=('custom:BSD') depends=('glibc' 'gcc-fortran') diff --git a/community/arpwatch/PKGBUILD b/community/arpwatch/PKGBUILD index fd01fb64e..ae9acd0c2 100644 --- a/community/arpwatch/PKGBUILD +++ b/community/arpwatch/PKGBUILD @@ -6,7 +6,7 @@ pkgname=arpwatch pkgver=2.1a15 pkgrel=7 pkgdesc="arpwatch and arpsnmp network monitoring tools" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="ftp://ftp.ee.lbl.gov/" license=("GPL") depends=(libpcap) diff --git a/community/ascii/PKGBUILD b/community/ascii/PKGBUILD index 243e6aafe..fc86b799a 100644 --- a/community/ascii/PKGBUILD +++ b/community/ascii/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ascii pkgver=3.11 pkgrel=1 pkgdesc="Utility for conversion between various byte representations and the ASCII character table" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.catb.org/~esr/ascii" license=('BSD') source=("http://www.catb.org/~esr/ascii/ascii-${pkgver}.tar.gz") diff --git a/community/asciijump/PKGBUILD b/community/asciijump/PKGBUILD index 3be130f09..137c3dc92 100644 --- a/community/asciijump/PKGBUILD +++ b/community/asciijump/PKGBUILD @@ -5,7 +5,7 @@ pkgname=asciijump pkgver=1.0.2beta pkgrel=5 pkgdesc="Ski jumping in ASCII" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://asciijump.prv.pl/" license=('GPL') depends=('slang' 'ctags') diff --git a/community/aspell-ca/PKGBUILD b/community/aspell-ca/PKGBUILD index 9a5686ef2..70fafa27d 100644 --- a/community/aspell-ca/PKGBUILD +++ b/community/aspell-ca/PKGBUILD @@ -4,7 +4,7 @@ pkgname=aspell-ca pkgver=2.1.5 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="Catalan dictionary for aspell" depends=('aspell') url="http://aspell.net/" diff --git a/community/aspell-cs/PKGBUILD b/community/aspell-cs/PKGBUILD index fa8a54422..e9aef2380 100644 --- a/community/aspell-cs/PKGBUILD +++ b/community/aspell-cs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=aspell-cs pkgver=20040614 pkgrel=5 pkgdesc="Czech dictionary for aspell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://aspell.net/" license=('GPL') depends=('aspell') diff --git a/community/aspell-pl/PKGBUILD b/community/aspell-pl/PKGBUILD index b96f9ac35..35b2fd534 100644 --- a/community/aspell-pl/PKGBUILD +++ b/community/aspell-pl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=aspell-pl pkgver=20111022 pkgrel=1 pkgdesc="Polish dictionary for aspell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.sjp.pl/slownik/en/" license=('GPL' 'LGPL' 'MPL') depends=('aspell') diff --git a/community/aspell-uk/PKGBUILD b/community/aspell-uk/PKGBUILD index f3252b56a..421678246 100644 --- a/community/aspell-uk/PKGBUILD +++ b/community/aspell-uk/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.6.0 _ftpver=1.4.0 pkgrel=3 pkgdesc="Ukrainian dictionary for aspell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ispell-uk.sourceforge.net/" license=('GPL' 'LGPL' 'MPL') depends=('aspell') diff --git a/community/astromenace/PKGBUILD b/community/astromenace/PKGBUILD index 9c3e7849a..93d1f9ecd 100644 --- a/community/astromenace/PKGBUILD +++ b/community/astromenace/PKGBUILD @@ -8,7 +8,7 @@ pkgname=astromenace pkgver=1.2.0 pkgrel=4 pkgdesc="Hardcore 3D space shooter with spaceship upgrade possibilities. English version" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.viewizard.com/astromenace/index_linux.php" license=('GPL3') depends=('sdl' 'freealut' 'libjpeg' 'libvorbis') diff --git a/community/astyle/PKGBUILD b/community/astyle/PKGBUILD index 231621751..670efdf1b 100644 --- a/community/astyle/PKGBUILD +++ b/community/astyle/PKGBUILD @@ -8,7 +8,7 @@ pkgname=astyle pkgver=2.02 pkgrel=1 pkgdesc="A Free, Fast and Small Automatic Formatter for C, C++, C#, and Java Source Code" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/astyle/" license=('LGPL') depends=('gcc-libs') diff --git a/community/asunder/PKGBUILD b/community/asunder/PKGBUILD index bb26a85e5..e4c017bb4 100644 --- a/community/asunder/PKGBUILD +++ b/community/asunder/PKGBUILD @@ -8,7 +8,7 @@ pkgname=asunder pkgver=2.1 pkgrel=1 pkgdesc="a graphical CD ripper and encoder" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://littlesvr.ca/asunder/" license=('GPL2') depends=('gtk2' 'libcddb' 'cdparanoia') diff --git a/community/atanks/PKGBUILD b/community/atanks/PKGBUILD index 3cc5b8da4..5dfb0c657 100644 --- a/community/atanks/PKGBUILD +++ b/community/atanks/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc="Atomic Tanks" url="http://atanks.sourceforge.net" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=('sed') depends=('allegro4>=4.4.0.1' 'gcc-libs') source=("http://downloads.sourceforge.net/project/atanks/atanks/atanks-${pkgver}/atanks-${pkgver}.tar.gz") diff --git a/community/atop/PKGBUILD b/community/atop/PKGBUILD index b265f2361..909c10bd3 100644 --- a/community/atop/PKGBUILD +++ b/community/atop/PKGBUILD @@ -6,7 +6,7 @@ pkgname=atop pkgver=1.26 pkgrel=2 pkgdesc="A system and process level monitor." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.atoptool.nl/" license=('GPL') depends=('ncurses' 'sh' 'zlib') diff --git a/community/audex/PKGBUILD b/community/audex/PKGBUILD index 1572774dc..3b0e855f3 100644 --- a/community/audex/PKGBUILD +++ b/community/audex/PKGBUILD @@ -7,7 +7,7 @@ pkgname=audex pkgver=0.74b1 pkgrel=3 pkgdesc="A CDDA extraction tool with a ftp upload function for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kde-apps.org/content/show.php?content=77125" license=('GPL') depends=('kdemultimedia-kioslave' 'cdparanoia') diff --git a/community/augeas/PKGBUILD b/community/augeas/PKGBUILD index 51cd9aa07..9367bc7f7 100644 --- a/community/augeas/PKGBUILD +++ b/community/augeas/PKGBUILD @@ -5,7 +5,7 @@ pkgname=augeas pkgver=0.8.0 pkgrel=1 pkgdesc="A configuration editing tool that parses config files and transforms them into a tree" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://augeas.net" depends=('readline') diff --git a/community/aumix/PKGBUILD b/community/aumix/PKGBUILD index bc409ec84..023533364 100644 --- a/community/aumix/PKGBUILD +++ b/community/aumix/PKGBUILD @@ -5,7 +5,7 @@ pkgname=aumix pkgver=2.9.1 pkgrel=2 pkgdesc="A color text mode sound mixer with GPM support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=() optdepends=('gtk2: aumix' diff --git a/community/autocutsel/PKGBUILD b/community/autocutsel/PKGBUILD index 452350efe..9d14f623f 100644 --- a/community/autocutsel/PKGBUILD +++ b/community/autocutsel/PKGBUILD @@ -7,7 +7,7 @@ pkgname=autocutsel pkgver=0.9.0 pkgrel=6 pkgdesc="synchronizes the two copy/paste buffers mainly used by X applications" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libxaw') source=(http://lepton.fr/tools/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('ba4a6f632cb4815ae4e5c3027c24cfc5') diff --git a/community/autofs/PKGBUILD b/community/autofs/PKGBUILD index 9c09a332e..618933cfa 100644 --- a/community/autofs/PKGBUILD +++ b/community/autofs/PKGBUILD @@ -8,7 +8,7 @@ pkgname=autofs pkgver=5.0.6 pkgrel=2 pkgdesc='A kernel-based automounter for Linux.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://freshmeat.net/projects/autofs' license=('GPL2') depends=('libldap' 'libxml2' 'krb5') diff --git a/community/autossh/PKGBUILD b/community/autossh/PKGBUILD index dae94ca80..dc3634f58 100644 --- a/community/autossh/PKGBUILD +++ b/community/autossh/PKGBUILD @@ -4,7 +4,7 @@ pkgname=autossh pkgver=1.4c pkgrel=1 pkgdesc="Automatically restart SSH sessions and tunnels" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.harding.motd.ca/autossh/" license=('custom') depends=('openssh') diff --git a/community/avant-window-navigator/PKGBUILD b/community/avant-window-navigator/PKGBUILD index 0208571dd..3813dd1c3 100644 --- a/community/avant-window-navigator/PKGBUILD +++ b/community/avant-window-navigator/PKGBUILD @@ -7,7 +7,7 @@ pkgname=avant-window-navigator pkgver=0.4.0 pkgrel=10 pkgdesc="Fully customisable dock-like window navigator for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/awn" license=('GPL') # bzr needs to be in depends: see FS#21434 diff --git a/community/avifile/PKGBUILD b/community/avifile/PKGBUILD index f468c2a5b..c8ffc89c3 100644 --- a/community/avifile/PKGBUILD +++ b/community/avifile/PKGBUILD @@ -7,7 +7,7 @@ pkgname=avifile pkgver=0.7.45 pkgrel=7 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') diff --git a/community/avrdude/PKGBUILD b/community/avrdude/PKGBUILD index a3f7a537b..d0c903298 100644 --- a/community/avrdude/PKGBUILD +++ b/community/avrdude/PKGBUILD @@ -6,7 +6,7 @@ pkgname=avrdude pkgver=5.11 pkgrel=1 pkgdesc="Download/upload/manipulate the ROM and EEPROM contents of AVR microcontrollers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nongnu.org/avrdude/" license=('GPL') depends=('libusb-compat' 'readline') diff --git a/community/awn-extras-applets/PKGBUILD b/community/awn-extras-applets/PKGBUILD index 2379fd74e..4b29d8403 100644 --- a/community/awn-extras-applets/PKGBUILD +++ b/community/awn-extras-applets/PKGBUILD @@ -7,7 +7,7 @@ pkgname=awn-extras-applets pkgver=0.4.0 pkgrel=8 pkgdesc="A collection of applets for avant-window-navigator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/awn-extras" license=('GPL2') depends=('avant-window-navigator' 'gnome-menus' 'libgtop' 'libnotify' diff --git a/community/axel/PKGBUILD b/community/axel/PKGBUILD index eddad131c..14dbd8691 100644 --- a/community/axel/PKGBUILD +++ b/community/axel/PKGBUILD @@ -6,7 +6,7 @@ pkgname=axel pkgver=2.4 pkgrel=2 pkgdesc="Download accelerator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://axel.alioth.debian.org/" license=('GPL') depends=('glibc') diff --git a/community/bacula/PKGBUILD b/community/bacula/PKGBUILD index 4093fe1a7..f775387d1 100644 --- a/community/bacula/PKGBUILD +++ b/community/bacula/PKGBUILD @@ -7,7 +7,7 @@ pkgname=bacula pkgver=5.0.3 pkgrel=6 pkgdesc="An advanced backup tool with network and tape changer support (MySQL backend)" -arch=("i686" "x86_64") +arch=(mips64el) url="http://www.${pkgname}.org" license=("GPL") depends=("libmysqlclient") diff --git a/community/balsa/PKGBUILD b/community/balsa/PKGBUILD index c0d0468f3..da1d77a3f 100644 --- a/community/balsa/PKGBUILD +++ b/community/balsa/PKGBUILD @@ -7,7 +7,7 @@ pkgname=balsa pkgver=2.4.10 pkgrel=1 pkgdesc="An e-mail client for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url='http://pawsa.fedorapeople.org/balsa/' depends=('gmime' 'libwebkit' 'libesmtp' 'libnotify' 'gpgme' 'gtksourceview2' 'gtkspell' 'gnome-icon-theme') diff --git a/community/barrage/PKGBUILD b/community/barrage/PKGBUILD index 365ca015a..f0b9f4fc1 100644 --- a/community/barrage/PKGBUILD +++ b/community/barrage/PKGBUILD @@ -7,7 +7,7 @@ pkgname=barrage pkgver=1.0.4 pkgrel=1 pkgdesc="A violent point-and-click shooting game with nice effects" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lgames.sourceforge.net/index.php?project=Barrage" license=('GPL') depends=('hicolor-icon-theme' 'sdl_mixer') diff --git a/community/bbpager/PKGBUILD b/community/bbpager/PKGBUILD index fa059de30..9440101d6 100644 --- a/community/bbpager/PKGBUILD +++ b/community/bbpager/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bbpager pkgver=0.4.7 pkgrel=3 pkgdesc="A dockable pager for Blackbox and other window managers" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://bbtools.sourceforge.net/download.php?file=6" license=("GPL") depends=('gcc-libs' 'libxft' 'libxext') diff --git a/community/bbrun/PKGBUILD b/community/bbrun/PKGBUILD index 728a36c9c..24df597dd 100644 --- a/community/bbrun/PKGBUILD +++ b/community/bbrun/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bbrun pkgver=1.6 pkgrel=3 pkgdesc="A run - component for blackbox window manager" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.darkops.net/bbrun/" license=('GPL') depends=('gtk2' 'libxpm') diff --git a/community/bchunk/PKGBUILD b/community/bchunk/PKGBUILD index c6d286b29..61493b795 100644 --- a/community/bchunk/PKGBUILD +++ b/community/bchunk/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.2.0 pkgrel=2 pkgdesc="A Tool to Convert *.raw *.bin files to an ISO file" url="http://hes.iki.fi/bchunk/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('glibc') source=(http://hes.iki.fi/$pkgname/$pkgname-$pkgver.tar.gz) diff --git a/community/beaver/PKGBUILD b/community/beaver/PKGBUILD index 61c35656b..b0d67aaad 100644 --- a/community/beaver/PKGBUILD +++ b/community/beaver/PKGBUILD @@ -9,7 +9,7 @@ pkgname=beaver pkgver=0.4.1 pkgrel=1 pkgdesc='Beaver is an Early AdVanced EditoR.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://beaver-editor.sourceforge.net/' license=('GPL2') depends=('gtk2>=2.0.0' 'hicolor-icon-theme') diff --git a/community/beye/PKGBUILD b/community/beye/PKGBUILD index f9515d303..9272f8eb6 100644 --- a/community/beye/PKGBUILD +++ b/community/beye/PKGBUILD @@ -7,7 +7,7 @@ pkgver=6.1.0 _lver=610 pkgrel=1 pkgdesc="Binary viewer" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=(slang gpm) replaces=(biew) diff --git a/community/bin2iso/PKGBUILD b/community/bin2iso/PKGBUILD index 8c2e2b7a9..cba38728a 100644 --- a/community/bin2iso/PKGBUILD +++ b/community/bin2iso/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.9b _dlver=${pkgver/./} pkgrel=2 pkgdesc="bin2iso converts RAW format (.bin/.cue) files to ISO/WAV format" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://users.eastlink.ca/~doiron/bin2iso/" license=('GPL') depends=('glibc') diff --git a/community/bind-geodns/PKGBUILD b/community/bind-geodns/PKGBUILD index 176e1b84e..d2899c826 100644 --- a/community/bind-geodns/PKGBUILD +++ b/community/bind-geodns/PKGBUILD @@ -6,7 +6,7 @@ pkgver=9.4.1 _pkgver=9.4.1-P1 pkgrel=4 pkgdesc="bind named server with geoip patch can return ip depending on requester location" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.caraytech.com/geodns/" license=('custom:ISC') backup=(etc/named.conf etc/logrotate.d/named etc/conf.d/named etc/rndc.key) diff --git a/community/binutils-avr/PKGBUILD b/community/binutils-avr/PKGBUILD index f9e1a176d..4f8edf09c 100644 --- a/community/binutils-avr/PKGBUILD +++ b/community/binutils-avr/PKGBUILD @@ -7,7 +7,7 @@ pkgname=binutils-avr pkgver=2.21.1 pkgrel=1 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.12-5' 'zlib') diff --git a/community/blackbox/PKGBUILD b/community/blackbox/PKGBUILD index b312b37c5..36179c8f8 100644 --- a/community/blackbox/PKGBUILD +++ b/community/blackbox/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.70.1 pkgrel=9 pkgdesc="A window manager for X11" url="http://blackboxwm.sourceforge.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gcc-libs' 'libxft' 'libxext' 'libx11') license=('MIT') options=('!libtool') diff --git a/community/bless/PKGBUILD b/community/bless/PKGBUILD index e00e6d3c1..87a3034e9 100644 --- a/community/bless/PKGBUILD +++ b/community/bless/PKGBUILD @@ -5,7 +5,7 @@ pkgname=bless pkgver=0.6.0 pkgrel=2 pkgdesc="A high-quality, full-featured hex editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://home.gna.org/bless/" license=('GPL') depends=('gtk-sharp-2>=2.8') diff --git a/community/blobby2/PKGBUILD b/community/blobby2/PKGBUILD index 29b405fb5..be9eaf157 100644 --- a/community/blobby2/PKGBUILD +++ b/community/blobby2/PKGBUILD @@ -4,7 +4,7 @@ pkgname=blobby2 pkgver=0.9b -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') pkgrel=1 pkgdesc="A beach ball game with blobs of goo" url="http://sourceforge.net/projects/blobby/" diff --git a/community/blueman/PKGBUILD b/community/blueman/PKGBUILD index f4311acdd..21e070311 100644 --- a/community/blueman/PKGBUILD +++ b/community/blueman/PKGBUILD @@ -6,7 +6,7 @@ pkgname=blueman pkgver=1.23 pkgrel=1 pkgdesc="GTK+ bluetooth manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://blueman-project.org" depends=('python-notify' 'bluez' 'dbus-python' 'gtk2' 'pygobject' 'startup-notification' 'obex-data-server' 'polkit-gnome' 'xdg-utils' 'hicolor-icon-theme') diff --git a/community/bmpanel/PKGBUILD b/community/bmpanel/PKGBUILD index 58dcb1874..51a16900e 100644 --- a/community/bmpanel/PKGBUILD +++ b/community/bmpanel/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bmpanel pkgver=0.9.27 pkgrel=3 pkgdesc="A modern, NETWM compliant, bitmap theme-based x11 panel." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://nsf.110mb.com/bmpanel/" license=('custom') depends=('imlib2' 'fontconfig' 'libxrender' 'libxcomposite' 'ttf-dejavu') diff --git a/community/bomberclone/PKGBUILD b/community/bomberclone/PKGBUILD index 749ca0a78..21d94a1da 100644 --- a/community/bomberclone/PKGBUILD +++ b/community/bomberclone/PKGBUILD @@ -7,7 +7,7 @@ pkgname=bomberclone pkgver=0.11.9 pkgrel=1 pkgdesc='A clone of the game AtomicBomberMan.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.bomberclone.de/" license=('GPL') depends=('sdl_mixer' 'sdl_image') diff --git a/community/bonnie++/PKGBUILD b/community/bonnie++/PKGBUILD index 8a32091ac..f787b68ee 100644 --- a/community/bonnie++/PKGBUILD +++ b/community/bonnie++/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bonnie++ pkgver=1.03e pkgrel=5 pkgdesc="Based on the Bonnie hard drive benchmark by Tim Bray" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.coker.com.au/bonnie++/" license=('GPL') depends=('perl') diff --git a/community/box2d/PKGBUILD b/community/box2d/PKGBUILD index e0c5a3db5..64d037453 100644 --- a/community/box2d/PKGBUILD +++ b/community/box2d/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="2D rigid body simulation library for games" url="http://www.box2d.org/" license=('zlib') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') #depends=('freeglut') makedepends=('cmake') optdepends=() diff --git a/community/bsd-games/PKGBUILD b/community/bsd-games/PKGBUILD index 88b330f80..c625183c3 100644 --- a/community/bsd-games/PKGBUILD +++ b/community/bsd-games/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.17 pkgrel=10 pkgdesc="A linux port for a collection of BSD command line games." url="ftp://ftp.ibiblio.org/pub/Linux/games/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') install=$pkgname.install license=('BSD') depends=(gcc-libs words sh) diff --git a/community/bsdiff/PKGBUILD b/community/bsdiff/PKGBUILD index 64d63ddf2..25ed02f70 100644 --- a/community/bsdiff/PKGBUILD +++ b/community/bsdiff/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=6 pkgdesc="bsdiff and bspatch are tools for building and applying patches to binary files." url="http://www.daemonology.net/bsdiff/" license=('BSD') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('bzip2') source=(http://www.daemonology.net/${pkgname}/${pkgname}-${pkgver}.tar.gz Makefile.patch) diff --git a/community/btanks/PKGBUILD b/community/btanks/PKGBUILD index 1cb857a22..4506cdc51 100644 --- a/community/btanks/PKGBUILD +++ b/community/btanks/PKGBUILD @@ -3,7 +3,7 @@ pkgname=btanks pkgver=0.9.8083 pkgrel=1 pkgdesc="Fast 2d tank arcade game with multiplayer and split-screen modes." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://btanks.sourceforge.net" license=('GPL') depends=('expat' 'libgl' 'libsigc++2.0' 'libvorbis' 'lua' 'openal' 'sdl' 'sdl_image' 'smpeg' 'btanks-data') diff --git a/community/bti/PKGBUILD b/community/bti/PKGBUILD index ae63a4c2b..a89339b72 100644 --- a/community/bti/PKGBUILD +++ b/community/bti/PKGBUILD @@ -7,7 +7,7 @@ pkgname=bti pkgver=031 pkgrel=1 pkgdesc='Console client for Twitter and identi.ca' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://gregkh.github.com/bti/' license=('GPL') depends=('pcre' 'libxml2' 'curl' 'liboauth') diff --git a/community/bullet/PKGBUILD b/community/bullet/PKGBUILD index d847b6037..48f49d067 100644 --- a/community/bullet/PKGBUILD +++ b/community/bullet/PKGBUILD @@ -7,7 +7,7 @@ pkgname=('bullet' 'bullet-docs') pkgver=2.79 pkgrel=1 pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games and animation" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.bulletphysics.com/Bullet/" license=('custom:zlib') depends=('freeglut') diff --git a/community/buoh/PKGBUILD b/community/buoh/PKGBUILD index 3d4fb093f..371abe0e0 100644 --- a/community/buoh/PKGBUILD +++ b/community/buoh/PKGBUILD @@ -6,7 +6,7 @@ pkgname=buoh pkgver=0.8.2 pkgrel=4 pkgdesc="A reader for online strips comics" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://buoh.steve-o.org/" license=('GPL') depends=('libgnomeui' 'libsoup>=2.4.0' 'gconf' 'hicolor-icon-theme') diff --git a/community/busybox/PKGBUILD b/community/busybox/PKGBUILD index 7af95150b..8d34c17d3 100644 --- a/community/busybox/PKGBUILD +++ b/community/busybox/PKGBUILD @@ -6,8 +6,8 @@ pkgname=busybox pkgver=1.19.2 pkgrel=3 pkgdesc="Utilities for rescue and embedded systems" -arch=("i686" "x86_64") -url="http://www.busybox.net" +arch=("i686" "x86_64" 'mips64el') +url="http://busybox.net" license=('GPL') makedepends=("make" "gcc" "sed" "ncurses") source=($url/downloads/$pkgname-$pkgver.tar.bz2 diff --git a/community/bwbar/PKGBUILD b/community/bwbar/PKGBUILD index 9e26b7e68..ee73fab6e 100644 --- a/community/bwbar/PKGBUILD +++ b/community/bwbar/PKGBUILD @@ -3,7 +3,7 @@ pkgname=bwbar pkgver=1.2.3 pkgrel=2 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') pkgdesc="Generates text and graphical readout of the current bandwidth usage." url="http://www.kernel.org/pub/software/web/bwbar/" license=("GPL") diff --git a/community/bwm-ng/PKGBUILD b/community/bwm-ng/PKGBUILD index fca5ed161..5a8495dd5 100644 --- a/community/bwm-ng/PKGBUILD +++ b/community/bwm-ng/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bwm-ng pkgver=0.6 pkgrel=3 pkgdesc="A small and simple console-based live bandwidth monitor" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.gropp.org/" license=('GPL') depends=('ncurses') diff --git a/community/cabextract/PKGBUILD b/community/cabextract/PKGBUILD index 70ec10920..3801ff4b8 100644 --- a/community/cabextract/PKGBUILD +++ b/community/cabextract/PKGBUILD @@ -5,7 +5,7 @@ pkgname=cabextract pkgver=1.4 pkgrel=1 pkgdesc="A program to extract Microsoft cabinet (.CAB) files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.cabextract.org.uk/" depends=('glibc') diff --git a/community/cadaver/PKGBUILD b/community/cadaver/PKGBUILD index ec11fd70f..48f5205db 100644 --- a/community/cadaver/PKGBUILD +++ b/community/cadaver/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cadaver pkgver=0.23.3 pkgrel=2 pkgdesc="Command-line WebDAV client for Unix" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.webdav.org/cadaver" license=('GPL') depends=('neon') diff --git a/community/cairo-clock/PKGBUILD b/community/cairo-clock/PKGBUILD index 110270fc2..31900493c 100644 --- a/community/cairo-clock/PKGBUILD +++ b/community/cairo-clock/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cairo-clock pkgver=0.3.4 pkgrel=1 pkgdesc="It's an analog clock displaying the system-time." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://macslow.thepimp.net/?page_id=23' license=('GPL') depends=('cairo' 'libglade>=2.6.0' 'librsvg>=2.14.0') diff --git a/community/cairo-compmgr/PKGBUILD b/community/cairo-compmgr/PKGBUILD index dde0b7713..7edc07f86 100644 --- a/community/cairo-compmgr/PKGBUILD +++ b/community/cairo-compmgr/PKGBUILD @@ -13,7 +13,7 @@ _commit=348f149af30bc829c2100d0e622c5dcaf43925b7 pkgrel=1 epoch=1 pkgdesc="A Cairo based composite manager" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://cairo-compmgr.tuxfamily.org/" license=(GPL) makedepends=(gettext gtk-doc "intltool>=0.41" git) diff --git a/community/calc/PKGBUILD b/community/calc/PKGBUILD index 911d7facb..33ec82e75 100644 --- a/community/calc/PKGBUILD +++ b/community/calc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=calc pkgver=2.12.4.3 pkgrel=1 pkgdesc="console calculator" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.isthe.com/chongo/tech/comp/calc/" license=('GPL') depends=(glibc) diff --git a/community/calcurse/PKGBUILD b/community/calcurse/PKGBUILD index a3cae0512..7deb25387 100644 --- a/community/calcurse/PKGBUILD +++ b/community/calcurse/PKGBUILD @@ -7,7 +7,7 @@ pkgname=calcurse pkgver=2.9.2 pkgrel=1 pkgdesc='A text-based personal organizer.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://calcurse.org/' license=('BSD') depends=('ncurses') diff --git a/community/calibre/PKGBUILD b/community/calibre/PKGBUILD index 4f53862a7..4b3e0291b 100644 --- a/community/calibre/PKGBUILD +++ b/community/calibre/PKGBUILD @@ -7,7 +7,7 @@ pkgname=calibre pkgver=0.8.24 pkgrel=2 pkgdesc="Ebook management application" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://calibre-ebook.com/" license=('GPL3') depends=('python2-dateutil' 'python2-cssutils' 'python2-cherrypy' diff --git a/community/camlp5/PKGBUILD b/community/camlp5/PKGBUILD index 615926708..9e6f0e5ce 100644 --- a/community/camlp5/PKGBUILD +++ b/community/camlp5/PKGBUILD @@ -8,7 +8,7 @@ _baseversion=6.02.3 _patchlevel=1 pkgver=${_baseversion}.${_patchlevel} pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://pauillac.inria.fr/~ddr/camlp5/' license=('BSD') depends=('sh') diff --git a/community/canorus/PKGBUILD b/community/canorus/PKGBUILD index c7df6e5b5..51297121f 100644 --- a/community/canorus/PKGBUILD +++ b/community/canorus/PKGBUILD @@ -7,7 +7,7 @@ pkgname=canorus pkgver=0.7.R1002 pkgrel=3 pkgdesc="A free music score editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.canorus.org/" license=('GPL') depends=('qt' 'alsa-lib' 'python2' 'swig') diff --git a/community/caph/PKGBUILD b/community/caph/PKGBUILD index 99c4e4366..2a1de1674 100644 --- a/community/caph/PKGBUILD +++ b/community/caph/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: jose <jose1711 [at] gmail (dot) com> pkgname=caph -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgver=1.1 pkgrel=1 pkgdesc="A sandbox game based on physics which uses doodles as a primary gameplay element" diff --git a/community/castget/PKGBUILD b/community/castget/PKGBUILD index c46124cef..df0ee279c 100644 --- a/community/castget/PKGBUILD +++ b/community/castget/PKGBUILD @@ -6,7 +6,7 @@ pkgname=castget pkgver=1.1.0 pkgrel=1 pkgdesc="A simple, command-line based RSS enclosure downloader" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nongnu.org/castget/" license=('GPL') depends=('glib2' 'libxml2' 'curl' 'id3lib') diff --git a/community/catdvi/PKGBUILD b/community/catdvi/PKGBUILD index a15f0e3e1..d75c81ab1 100644 --- a/community/catdvi/PKGBUILD +++ b/community/catdvi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=catdvi pkgver=0.14 pkgrel=4 pkgdesc="A DVI to plain text translator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://catdvi.sourceforge.net" license=('GPL') depends=('glibc' 'texlive-core') diff --git a/community/ccd2iso/PKGBUILD b/community/ccd2iso/PKGBUILD index 999e55d53..907e8fae1 100644 --- a/community/ccd2iso/PKGBUILD +++ b/community/ccd2iso/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ccd2iso pkgver=0.3 pkgrel=6 pkgdesc="Converts CCD/IMG CloneCD images to ISO format" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/ccd2iso" license=('GPL') depends=('glibc') diff --git a/community/ccid/PKGBUILD b/community/ccid/PKGBUILD index 9888ffd92..843ccca9b 100644 --- a/community/ccid/PKGBUILD +++ b/community/ccid/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ccid pkgver=1.4.5 pkgrel=1 pkgdesc="A generic USB Chip/Smart Card Interface Devices driver" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pcsclite.alioth.debian.org/ccid.html" license=('LGPL' 'GPL') depends=('pcsclite') diff --git a/community/cclive/PKGBUILD b/community/cclive/PKGBUILD index 101f4950e..f84a0aa74 100644 --- a/community/cclive/PKGBUILD +++ b/community/cclive/PKGBUILD @@ -7,7 +7,7 @@ pkgname=cclive pkgver=0.7.7 pkgrel=1 pkgdesc='Commandline downloader for popular video websites.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://cclive.sourceforge.net/' license=('GPL3') depends=('boost-libs' 'pcre' 'curl' 'libquvi') diff --git a/community/ccmalloc/PKGBUILD b/community/ccmalloc/PKGBUILD index bbb271bf8..95df39a45 100644 --- a/community/ccmalloc/PKGBUILD +++ b/community/ccmalloc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ccmalloc pkgver=0.4.0 pkgrel=2 pkgdesc="Track down memory related problems with C and C++ programs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://packages.debian.org/sid/ccmalloc" license=('GPL2') depends=('sh') diff --git a/community/ccrtp/PKGBUILD b/community/ccrtp/PKGBUILD index 13ac0026b..e50fdefcc 100644 --- a/community/ccrtp/PKGBUILD +++ b/community/ccrtp/PKGBUILD @@ -8,7 +8,7 @@ pkgname=ccrtp pkgver=1.8.0 pkgrel=1 pkgdesc="GNU ccRTP" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/ccrtp" license=('GPL' 'custom') depends=('commoncpp2' 'zlib' 'libxml2' 'libgcrypt') diff --git a/community/ccrypt/PKGBUILD b/community/ccrypt/PKGBUILD index c2960de0e..eda5acd9e 100644 --- a/community/ccrypt/PKGBUILD +++ b/community/ccrypt/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ccrypt pkgver=1.9 pkgrel=1 pkgdesc="A command-line utility for encrypting and decrypting files and streams" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ccrypt.sourceforge.net" license=('GPL2') depends=('glibc') diff --git a/community/ccze/PKGBUILD b/community/ccze/PKGBUILD index 0ff0df300..5780f95a7 100644 --- a/community/ccze/PKGBUILD +++ b/community/ccze/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ccze pkgver=0.2.1 pkgrel=5 pkgdesc="Robust and modular log colorizer with many plugins" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freshmeat.net/projects/ccze/" license=('GPL') depends=('ncurses' 'pcre') diff --git a/community/cdbxx/PKGBUILD b/community/cdbxx/PKGBUILD index 3caa5d468..671485ef7 100644 --- a/community/cdbxx/PKGBUILD +++ b/community/cdbxx/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cdbxx pkgver=0.0.1rc2 pkgrel=2 pkgdesc="cdbxx is a small STL style C++ library for TinyCDB implementation of Constant Database" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://cdbxx.sourceforge.net/" license=("GPL") depends=(gcc) diff --git a/community/cdcd/PKGBUILD b/community/cdcd/PKGBUILD index f9d78ad68..57338fc35 100644 --- a/community/cdcd/PKGBUILD +++ b/community/cdcd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cdcd pkgver=0.6.6 pkgrel=6 pkgdesc="A commandline cd-player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libcdaudio' 'readline') url="http://libcdaudio.sourceforge.net/" license=('GPL2') diff --git a/community/cdck/PKGBUILD b/community/cdck/PKGBUILD index 260a77374..bfe461b59 100644 --- a/community/cdck/PKGBUILD +++ b/community/cdck/PKGBUILD @@ -8,7 +8,7 @@ pkgname=cdck pkgver=0.7.0 pkgrel=3 pkgdesc="A simple program to verify CD/DVD quality" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://swaj.net/unix/" license=('GPL') depends=(gcc-libs) diff --git a/community/cdcover/PKGBUILD b/community/cdcover/PKGBUILD index 9c82180a0..30d6e9780 100644 --- a/community/cdcover/PKGBUILD +++ b/community/cdcover/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cdcover pkgver=0.7.4 pkgrel=4 pkgdesc="cdcover allows the creation of inlay-sheets for cd-cases and dvd's" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cdcover.sourceforge.net" license=('GPL') depends=('python2' 'tk') diff --git a/community/cddb-py/PKGBUILD b/community/cddb-py/PKGBUILD index 6c745cbf7..2c871e955 100644 --- a/community/cddb-py/PKGBUILD +++ b/community/cddb-py/PKGBUILD @@ -8,7 +8,7 @@ pkgname=cddb-py pkgver=1.4 pkgrel=5 pkgdesc="CDDB-Server access from Python" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cddb-py.sourceforge.net" license=('GPL') depends=('python2') diff --git a/community/cdemu-client/PKGBUILD b/community/cdemu-client/PKGBUILD index 25cfe59f7..278fa33dd 100644 --- a/community/cdemu-client/PKGBUILD +++ b/community/cdemu-client/PKGBUILD @@ -5,7 +5,7 @@ pkgname=cdemu-client pkgver=1.4.0 pkgrel=1 pkgdesc="Simple command-line client for controlling cdemu-daemon" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cdemu.sourceforge.net/" license=('GPL') depends=('python2' 'dbus-python' 'cdemu-daemon') diff --git a/community/cdemu-daemon/PKGBUILD b/community/cdemu-daemon/PKGBUILD index dd47d1248..da6024658 100644 --- a/community/cdemu-daemon/PKGBUILD +++ b/community/cdemu-daemon/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cdemu-daemon pkgver=1.4.0 pkgrel=1 pkgdesc="CD/DVD-ROM device emulator daemon" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') backup=('etc/conf.d/cdemud' 'etc/dbus-1/system.d/cdemud-dbus.conf') url="http://cdemu.sourceforge.net/" diff --git a/community/cdfs/PKGBUILD b/community/cdfs/PKGBUILD index dc31bc915..8b79de1f5 100644 --- a/community/cdfs/PKGBUILD +++ b/community/cdfs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cdfs pkgver=2.6.27 pkgrel=16 pkgdesc="File system module that 'exports' all tracks and boot images on a CD as normal files." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.elis.UGent.be/~ronsse/cdfs/" license=('GPL') makedepends=('linux-headers') diff --git a/community/cegui/PKGBUILD b/community/cegui/PKGBUILD index 704b9ea0c..9bd00f25a 100644 --- a/community/cegui/PKGBUILD +++ b/community/cegui/PKGBUILD @@ -8,7 +8,7 @@ pkgname=cegui pkgver=0.7.5 pkgrel=5 pkgdesc="A free library providing windowing and widgets for graphics APIs/engines" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://crayzedsgui.sourceforge.net" #options=('!libtool') license=("MIT") diff --git a/community/celt-0.7/PKGBUILD b/community/celt-0.7/PKGBUILD index ab728998d..4b7c5aa1c 100644 --- a/community/celt-0.7/PKGBUILD +++ b/community/celt-0.7/PKGBUILD @@ -8,7 +8,7 @@ _realname=celt pkgver=0.7.1 pkgrel=2 pkgdesc="Low-latency audio communication codec" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.celt-codec.org" license=('BSD') depends=('libogg') diff --git a/community/celt/PKGBUILD b/community/celt/PKGBUILD index 5eb99975d..0b8efa1c4 100644 --- a/community/celt/PKGBUILD +++ b/community/celt/PKGBUILD @@ -6,7 +6,7 @@ pkgname=celt pkgver=0.11.1 pkgrel=1 pkgdesc='Low-latency audio communication codec' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.celt-codec.org' license=('BSD') depends=('libogg') diff --git a/community/centerim/PKGBUILD b/community/centerim/PKGBUILD index b846f526c..6fc3f9646 100644 --- a/community/centerim/PKGBUILD +++ b/community/centerim/PKGBUILD @@ -8,7 +8,7 @@ pkgname=centerim pkgver=4.22.10 pkgrel=1 pkgdesc="Fork of CenterICQ - A text mode menu- and window-driven IM interface" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.centerim.org" license=('GPL') depends=('python2' 'libjpeg' 'gpgme') diff --git a/community/cgit/PKGBUILD b/community/cgit/PKGBUILD index edc48fe55..7f536231d 100644 --- a/community/cgit/PKGBUILD +++ b/community/cgit/PKGBUILD @@ -10,7 +10,7 @@ pkgver=0.9.0.2 _gitver=1.7.4 pkgrel=2 pkgdesc="A web interface for git written in plain C" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hjemli.net/git/cgit" license=('GPL') depends=('openssl') diff --git a/community/checkinstall/PKGBUILD b/community/checkinstall/PKGBUILD index d983ef86c..6d15ab543 100644 --- a/community/checkinstall/PKGBUILD +++ b/community/checkinstall/PKGBUILD @@ -6,7 +6,7 @@ pkgname=checkinstall pkgver=1.6.2 pkgrel=1 pkgdesc="spy for 'make install' and build rpm or deb" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://asic-linux.com.mx/~izto/checkinstall/" license=('GPL') backup=(etc/checkinstall/checkinstallrc) diff --git a/community/cherokee/PKGBUILD b/community/cherokee/PKGBUILD index 8619bbbc8..ecb74afd1 100644 --- a/community/cherokee/PKGBUILD +++ b/community/cherokee/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cherokee pkgver=1.2.101 pkgrel=1 pkgdesc="A very fast, flexible and easy to configure Web Server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cherokee-project.com/" license=('GPL2') depends=('openssl' 'pcre') diff --git a/community/chicken/PKGBUILD b/community/chicken/PKGBUILD index 713974d5f..842cf4fe4 100644 --- a/community/chicken/PKGBUILD +++ b/community/chicken/PKGBUILD @@ -5,7 +5,7 @@ pkgname=chicken pkgver=4.7.0 pkgrel=1 pkgdesc='A compiler for R5RS scheme, featuring handy extensions' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.call-with-current-continuation.org/' license=('BSD') depends=('gcc') diff --git a/community/chmsee/PKGBUILD b/community/chmsee/PKGBUILD index a6c963e13..63b548ca5 100644 --- a/community/chmsee/PKGBUILD +++ b/community/chmsee/PKGBUILD @@ -6,7 +6,7 @@ pkgname=chmsee pkgver=1.99.05 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="A chm (MS HTML help file format) viewer based on xulrunner." url="http://chmsee.googlecode.com/" license="GPL" diff --git a/community/chntpw/PKGBUILD b/community/chntpw/PKGBUILD index bbbc62e13..9393e9e36 100644 --- a/community/chntpw/PKGBUILD +++ b/community/chntpw/PKGBUILD @@ -6,7 +6,7 @@ pkgname=chntpw pkgver=110511 pkgrel=1 pkgdesc='Offline NT Password Editor - reset passwords in a Windows NT SAM userdatabase file' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://pogostick.net/~pnh/ntpasswd/' license=('GPL' 'LGPL') makedepends=('openssl') diff --git a/community/choqok/PKGBUILD b/community/choqok/PKGBUILD index 558018682..741b8e036 100644 --- a/community/choqok/PKGBUILD +++ b/community/choqok/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=2 pkgdesc="A Twitter/identi.ca/laconica client for KDE" url="http://choqok.gnufolks.org/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('kdebase-runtime' 'qjson' 'qoauth' 'qca-ossl') makedepends=('cmake' 'automoc4') optdepends=('kdebase-konqueror: proxy support') diff --git a/community/chrony/PKGBUILD b/community/chrony/PKGBUILD index dd6d1d9ec..a957f837a 100644 --- a/community/chrony/PKGBUILD +++ b/community/chrony/PKGBUILD @@ -9,7 +9,7 @@ pkgname=chrony pkgver=1.26 pkgrel=1 pkgdesc="Dial-up friendly NTP daemon and excellent replacement for NTP on desktop systems" -arch=('i686' 'x86_64') +arch=(mips64el) url="http://chrony.tuxfamily.org/" options=('strip') license=('GPL') diff --git a/community/chrootuid/PKGBUILD b/community/chrootuid/PKGBUILD index fc1075436..0f33c5971 100644 --- a/community/chrootuid/PKGBUILD +++ b/community/chrootuid/PKGBUILD @@ -7,7 +7,7 @@ pkgname=chrootuid pkgver=1.3 pkgrel=4 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') pkgdesc="Runs a command in a restricted environment." url="ftp://ftp.porcupine.org/pub/security/index.html" license=("BSD") diff --git a/community/chrpath/PKGBUILD b/community/chrpath/PKGBUILD index c978d17a9..52f6c4a6c 100644 --- a/community/chrpath/PKGBUILD +++ b/community/chrpath/PKGBUILD @@ -6,7 +6,7 @@ pkgname=chrpath pkgver=0.13 pkgrel=3 pkgdesc="Change or delete the rpath or runpath in ELF files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://directory.fsf.org/project/chrpath/" license=('GPL2') depends=('glibc') diff --git a/community/cksfv/PKGBUILD b/community/cksfv/PKGBUILD index 4365b3ed3..b8b4192d0 100644 --- a/community/cksfv/PKGBUILD +++ b/community/cksfv/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cksfv pkgver=1.3.14 pkgrel=2 pkgdesc="SFV (Simple File Verification) Checker" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://zakalwe.virtuaalipalvelin.net/~shd/foss/cksfv/" license=('GPL') depends=('glibc') diff --git a/community/clamz/PKGBUILD b/community/clamz/PKGBUILD index ada02b3dc..ae887294d 100644 --- a/community/clamz/PKGBUILD +++ b/community/clamz/PKGBUILD @@ -6,7 +6,7 @@ pkgname=clamz pkgver=0.5 pkgrel=1 pkgdesc="Command-line program to download MP3 files from Amazon.com's music store." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://code.google.com/p/clamz/' license=('GPL3') depends=('libgcrypt' 'curl' 'expat' 'shared-mime-info' 'desktop-file-utils') diff --git a/community/clanlib/PKGBUILD b/community/clanlib/PKGBUILD index 7abf7ebdd..d102689c1 100644 --- a/community/clanlib/PKGBUILD +++ b/community/clanlib/PKGBUILD @@ -5,7 +5,7 @@ pkgname=clanlib pkgver=2.3.3 pkgrel=1 pkgdesc="A multi-platform game development library." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://clanlib.org/" license=('zlib') depends=('alsa-lib' 'libjpeg' 'libmikmod' 'libpng' 'libvorbis' 'libxi' 'libxmu' 'mesa' 'sdl_gfx' 'freetype2' 'pcre' 'sqlite3') diff --git a/community/classpath/PKGBUILD b/community/classpath/PKGBUILD index 36fec1cc8..7e592886b 100644 --- a/community/classpath/PKGBUILD +++ b/community/classpath/PKGBUILD @@ -7,7 +7,7 @@ pkgname=classpath pkgver=0.98 pkgrel=3 pkgdesc="A free replacement for Sun's proprietary core Java class libraries." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/classpath/" license=('GPL') depends=('gtk2>=2.8' 'libxtst') diff --git a/community/clearsilver/PKGBUILD b/community/clearsilver/PKGBUILD index 2aa924249..0f19cd85c 100644 --- a/community/clearsilver/PKGBUILD +++ b/community/clearsilver/PKGBUILD @@ -7,7 +7,7 @@ pkgname=clearsilver pkgver=0.10.5 pkgrel=7 pkgdesc="clearsilver is a fast, powerful, and language-neutral HTML template system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.clearsilver.net' license=('custom') depends=('python2' 'perl' 'ruby' 'java-runtime') diff --git a/community/clementine/PKGBUILD b/community/clementine/PKGBUILD index 9c55871e2..32f7ebcb0 100644 --- a/community/clementine/PKGBUILD +++ b/community/clementine/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=7 pkgdesc="A music player and library organizer" url="http://www.clementine-player.org/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gstreamer0.10' 'taglib' 'glew' 'liblastfm' 'libgpod' 'libmtp' 'libplist' 'hicolor-icon-theme' 'qt' 'libimobiledevice') makedepends=('cmake' 'boost') optdepends=('gstreamer0.10-base-plugins: for more open formats' diff --git a/community/clewn/PKGBUILD b/community/clewn/PKGBUILD index f557aa50b..b3314f4e3 100644 --- a/community/clewn/PKGBUILD +++ b/community/clewn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=clewn pkgver=1.15 pkgrel=5 pkgdesc="gdb support for vim" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://clewn.sourceforge.net" license=('GPL') depends=("gvim" "gdb") diff --git a/community/clipgrab/PKGBUILD b/community/clipgrab/PKGBUILD index 52618ef13..e7ad135ca 100644 --- a/community/clipgrab/PKGBUILD +++ b/community/clipgrab/PKGBUILD @@ -4,7 +4,7 @@ pkgname=clipgrab pkgver=3.1.0.2 pkgrel=1 pkgdesc='A video downloader and converter for YouTube, Veoh, DailyMotion, MyVideo, ...' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://clipgrab.de/' license=('GPL') depends=('qt') diff --git a/community/clucene/PKGBUILD b/community/clucene/PKGBUILD index d99078c74..ed52f0128 100644 --- a/community/clucene/PKGBUILD +++ b/community/clucene/PKGBUILD @@ -7,7 +7,7 @@ pkgname=clucene pkgver=2.3.3.4 pkgrel=1 pkgdesc="A C++ port of Lucene: the high-performance, full-featured text search engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://clucene.sourceforge.net" license=('APACHE' 'LGPL') depends=('gcc-libs' 'zlib' 'boost-libs') diff --git a/community/clusterssh/PKGBUILD b/community/clusterssh/PKGBUILD index 6c2445121..6962a2369 100644 --- a/community/clusterssh/PKGBUILD +++ b/community/clusterssh/PKGBUILD @@ -7,7 +7,7 @@ pkgname=clusterssh pkgver=3.28 pkgrel=2 pkgdesc="Cluster SSH opens terminal windows with connections to specified hosts and an administration console." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://clusterssh.sourceforge.net/" license=('GPL') depends=('perl-tk' 'perl-x11-protocol' 'xterm') diff --git a/community/codeblocks/PKGBUILD b/community/codeblocks/PKGBUILD index a9ac9ff41..46484ec4b 100644 --- a/community/codeblocks/PKGBUILD +++ b/community/codeblocks/PKGBUILD @@ -6,7 +6,7 @@ pkgname=codeblocks pkgver=10.05 pkgrel=1 pkgdesc="An open source and cross-platform C/C++ IDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.codeblocks.org" license=('GPL3') depends=('wxgtk' 'hicolor-icon-theme' 'bzip2' 'shared-mime-info') diff --git a/community/collectd/PKGBUILD b/community/collectd/PKGBUILD index da196a7eb..9d4d70ec6 100644 --- a/community/collectd/PKGBUILD +++ b/community/collectd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=collectd pkgver=5.0.1 pkgrel=1 pkgdesc='Daemon which collects system performance statistics periodically' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://collectd.org/' license=('GPL') options=('!libtool') diff --git a/community/commoncpp2/PKGBUILD b/community/commoncpp2/PKGBUILD index 411a1d3f2..5eedfa17a 100644 --- a/community/commoncpp2/PKGBUILD +++ b/community/commoncpp2/PKGBUILD @@ -9,7 +9,7 @@ pkgname=commoncpp2 pkgver=1.8.1 pkgrel=2 pkgdesc="GNU Common C++ 2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.gnu.org/software/commoncpp/' license=('GPL' 'custom') depends=('gcc-libs' 'zlib' 'sh') diff --git a/community/compiz-bcop/PKGBUILD b/community/compiz-bcop/PKGBUILD index 40d0d28a2..1f21e760f 100644 --- a/community/compiz-bcop/PKGBUILD +++ b/community/compiz-bcop/PKGBUILD @@ -7,7 +7,7 @@ pkgname=compiz-bcop pkgver=0.8.8 pkgrel=1 pkgdesc="Compiz option code generator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.compiz.org" license=('GPL') depends=('compiz-core>=0.8.8' 'libxslt') diff --git a/community/compiz-fusion-plugins-extra/PKGBUILD b/community/compiz-fusion-plugins-extra/PKGBUILD index e542877e0..5698e5c6d 100644 --- a/community/compiz-fusion-plugins-extra/PKGBUILD +++ b/community/compiz-fusion-plugins-extra/PKGBUILD @@ -7,7 +7,7 @@ pkgname=compiz-fusion-plugins-extra pkgver=0.8.8 pkgrel=1 pkgdesc="Compiz Fusion Extra plugins" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.compiz.org" license=('GPL') depends=('compiz-core' 'compiz-bcop' 'compiz-fusion-plugins-main' 'libnotify') diff --git a/community/compiz-fusion-plugins-main/PKGBUILD b/community/compiz-fusion-plugins-main/PKGBUILD index 6720a6850..08115867a 100644 --- a/community/compiz-fusion-plugins-main/PKGBUILD +++ b/community/compiz-fusion-plugins-main/PKGBUILD @@ -7,7 +7,7 @@ pkgname=compiz-fusion-plugins-main pkgver=0.8.8 pkgrel=1 pkgdesc="Compiz Fusion Main plugins" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.compiz.org" license=('GPL') depends=('compiz-core' 'libjpeg>=7' 'librsvg' 'compiz-bcop' 'libxdamage' 'libxcomposite' diff --git a/community/compiz/PKGBUILD b/community/compiz/PKGBUILD index eb4a0c1fb..8f5e14815 100644 --- a/community/compiz/PKGBUILD +++ b/community/compiz/PKGBUILD @@ -13,7 +13,7 @@ pkgrel=2 pkgdesc="Composite manager for Aiglx and Xgl" url="http://www.compiz.org/" license=('GPL' 'LGPL' 'MIT') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('compiz' 'compiz-kde' 'compiz-gtk' 'compiz-fusion') makedepends=('intltool' 'gnome-control-center' 'libwnck' 'kdebase-workspace' 'startup-notification' 'librsvg' 'libgl' 'dbus' 'mesa' 'libxslt' 'fuse' 'metacity') diff --git a/community/compizconfig-backend-gconf/PKGBUILD b/community/compizconfig-backend-gconf/PKGBUILD index cf0df3ba9..8d21fbbea 100644 --- a/community/compizconfig-backend-gconf/PKGBUILD +++ b/community/compizconfig-backend-gconf/PKGBUILD @@ -7,7 +7,7 @@ pkgname=compizconfig-backend-gconf pkgver=0.8.8 pkgrel=1 pkgdesc="Compizconfig backend for gconf" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://opencompositing.org" license=('GPL') depends=('libcompizconfig' 'gconf') diff --git a/community/compizconfig-backend-kconfig4/PKGBUILD b/community/compizconfig-backend-kconfig4/PKGBUILD index 8c404704c..c063ffd06 100644 --- a/community/compizconfig-backend-kconfig4/PKGBUILD +++ b/community/compizconfig-backend-kconfig4/PKGBUILD @@ -6,7 +6,7 @@ pkgname=compizconfig-backend-kconfig4 pkgver=0.8.8 pkgrel=1 pkgdesc="Compizconfig backend for kconfig4" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.compiz.org/" license=('GPL2') depends=('libcompizconfig' 'kdelibs' 'libxcomposite' 'libxinerama') diff --git a/community/compizconfig-python/PKGBUILD b/community/compizconfig-python/PKGBUILD index 0aeb565e6..3dd61035e 100644 --- a/community/compizconfig-python/PKGBUILD +++ b/community/compizconfig-python/PKGBUILD @@ -7,7 +7,7 @@ pkgname=compizconfig-python pkgver=0.8.4 pkgrel=2 pkgdesc="Compizconfig bindings for python" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://opencompositing.org" license=('GPL') depends=('compiz-core>=0.8.4' 'libcompizconfig>=0.8.4' 'glib2' 'python2') diff --git a/community/confuse/PKGBUILD b/community/confuse/PKGBUILD index 6f713df50..b64aab760 100755 --- a/community/confuse/PKGBUILD +++ b/community/confuse/PKGBUILD @@ -7,7 +7,7 @@ pkgname=confuse pkgver=2.7 pkgrel=1 pkgdesc="C-library for parsing configuration files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nongnu.org/confuse" license=('LGPL') depends=('glibc') diff --git a/community/conkeror-git/PKGBUILD b/community/conkeror-git/PKGBUILD index ad91cbccd..d44bd1188 100644 --- a/community/conkeror-git/PKGBUILD +++ b/community/conkeror-git/PKGBUILD @@ -6,7 +6,7 @@ pkgname=conkeror-git pkgver=1.0pre pkgrel=2 pkgdesc="A highly programmable web browser based on Mozilla XULRunner." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://conkeror.mozdev.org/" license=('MPL' 'GPL' 'LGPL') depends=('xulrunner' 'desktop-file-utils') diff --git a/community/coq/PKGBUILD b/community/coq/PKGBUILD index ede4757ef..4fd420e77 100644 --- a/community/coq/PKGBUILD +++ b/community/coq/PKGBUILD @@ -5,7 +5,7 @@ pkgname=coq pkgver=8.3pl2 pkgrel=3 pkgdesc='Formal proof management system.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://coq.inria.fr/' license=('GPL') depends=('gtk2') diff --git a/community/corkscrew/PKGBUILD b/community/corkscrew/PKGBUILD index 547e7980f..207f74aec 100644 --- a/community/corkscrew/PKGBUILD +++ b/community/corkscrew/PKGBUILD @@ -6,7 +6,7 @@ pkgname=corkscrew pkgver=2.0 pkgrel=4 pkgdesc="A tool for tunneling SSH through HTTP proxies" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.agroman.net/corkscrew/" license=('GPL') source=(http://www.agroman.net/$pkgname/$pkgname-$pkgver.tar.gz) diff --git a/community/couchdb/PKGBUILD b/community/couchdb/PKGBUILD index 656b713b7..7b6b4faaa 100644 --- a/community/couchdb/PKGBUILD +++ b/community/couchdb/PKGBUILD @@ -7,7 +7,7 @@ pkgname=couchdb pkgver=1.1.0 pkgrel=1.svn20110829 pkgdesc="A document-oriented database that can be queried and indexed in a MapReduce fashion using JSON" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://couchdb.apache.org" license=('APACHE') depends=('icu' 'erlang' 'js' 'openssl' 'curl') diff --git a/community/courier-authlib/PKGBUILD b/community/courier-authlib/PKGBUILD index 5f8ec29e8..90460fe5a 100644 --- a/community/courier-authlib/PKGBUILD +++ b/community/courier-authlib/PKGBUILD @@ -7,7 +7,7 @@ pkgname=courier-authlib pkgver=0.63.0 pkgrel=4 pkgdesc="Authentification library for the courier mailserver(s)" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://courier-mta.org/authlib/" backup=('etc/authlib/authdaemonrc' 'etc/authlib/authldaprc' \ diff --git a/community/courier-imap/PKGBUILD b/community/courier-imap/PKGBUILD index 400ed830f..d716b3ca6 100644 --- a/community/courier-imap/PKGBUILD +++ b/community/courier-imap/PKGBUILD @@ -7,7 +7,7 @@ pkgname=courier-imap pkgver=4.9.3 pkgrel=4 pkgdesc="IMAP(s)/POP3(s) Server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.courier-mta.org/imap/" depends=('courier-maildrop>=2.5.0' 'gcc-libs' 'gamin' 'gdbm' 'openssl') diff --git a/community/courier-maildrop/PKGBUILD b/community/courier-maildrop/PKGBUILD index 7ac0627a9..7507da822 100644 --- a/community/courier-maildrop/PKGBUILD +++ b/community/courier-maildrop/PKGBUILD @@ -8,7 +8,7 @@ _srcname=maildrop pkgver=2.5.4 pkgrel=2 pkgdesc="mail delivery agent - procmail like but nicer syntax" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://courier-mta.org/maildrop/" depends=('courier-authlib>=0.63.0' 'gamin' 'pcre' 'gdbm') diff --git a/community/courier-mta/PKGBUILD b/community/courier-mta/PKGBUILD index d4ceae821..0a506281b 100644 --- a/community/courier-mta/PKGBUILD +++ b/community/courier-mta/PKGBUILD @@ -10,7 +10,7 @@ pkgname=courier-mta pkgver=0.66.3 pkgrel=4 pkgdesc="IMAP(s)/POP3(s) and SMTP Server with ML-manager, webmail and webconfig" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') backup=('etc/courier/imapd.cnf' 'etc/courier/pop3d.cnf' \ 'etc/courier/imapd' 'etc/courier/imapd-ssl' \ diff --git a/community/cppcheck/PKGBUILD b/community/cppcheck/PKGBUILD index 186d4cae9..66b96cc50 100644 --- a/community/cppcheck/PKGBUILD +++ b/community/cppcheck/PKGBUILD @@ -4,7 +4,7 @@ pkgname=cppcheck pkgver=1.51 pkgrel=1 pkgdesc="A tool for static C/C++ code analysis" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cppcheck.wiki.sourceforge.net/" license=('GPL') depends=('pcre') diff --git a/community/cpuburn/PKGBUILD b/community/cpuburn/PKGBUILD index a6ab49089..1f99ca267 100644 --- a/community/cpuburn/PKGBUILD +++ b/community/cpuburn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cpuburn pkgver=1.4a pkgrel=2 pkgdesc="CPU testing utilities in optimized assembler for maximum loading of CPUs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/ubuntu/+source/cpuburn/" license=('GPL') depends=() diff --git a/community/cpulimit/PKGBUILD b/community/cpulimit/PKGBUILD index 7ef5ab146..6cebcda00 100644 --- a/community/cpulimit/PKGBUILD +++ b/community/cpulimit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cpulimit pkgver=1.1 pkgrel=2 pkgdesc="Limit cpu usage in %. Actualy sends SIGSTOP/SIGCONT" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cpulimit.sourceforge.net/" license=("GPL") depends=(glibc) diff --git a/community/critter/PKGBUILD b/community/critter/PKGBUILD index 56769ac4f..52d6fe97d 100644 --- a/community/critter/PKGBUILD +++ b/community/critter/PKGBUILD @@ -7,7 +7,7 @@ _origname=CriticalMass pkgver=1.0.2 pkgrel=5 pkgdesc="Critical Mass (aka Critter) is an SDL/OpenGL space shoot'em up game" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/criticalmass" license=('GPL') depends=('sdl_image' 'sdl_mixer' 'mesa') diff --git a/community/cross-arm-elf-binutils/PKGBUILD b/community/cross-arm-elf-binutils/PKGBUILD index 406f2d7b9..743787974 100644 --- a/community/cross-arm-elf-binutils/PKGBUILD +++ b/community/cross-arm-elf-binutils/PKGBUILD @@ -6,7 +6,7 @@ pkgver=2.21 pkgrel=2 _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/cross-arm-elf-gcc-base/PKGBUILD b/community/cross-arm-elf-gcc-base/PKGBUILD index a46c4185f..a7140315f 100644 --- a/community/cross-arm-elf-gcc-base/PKGBUILD +++ b/community/cross-arm-elf-gcc-base/PKGBUILD @@ -5,7 +5,7 @@ pkgname=cross-arm-elf-gcc-base pkgver=4.6.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=('cross-arm-elf-binutils' 'libmpc' 'libelf') diff --git a/community/cross-arm-wince-cegcc-binutils/PKGBUILD b/community/cross-arm-wince-cegcc-binutils/PKGBUILD index 491004df4..31b880376 100644 --- a/community/cross-arm-wince-cegcc-binutils/PKGBUILD +++ b/community/cross-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/cross-arm-wince-cegcc-cegccdll-dummy/PKGBUILD b/community/cross-arm-wince-cegcc-cegccdll-dummy/PKGBUILD index 278bd0e6f..28afeba12 100644 --- a/community/cross-arm-wince-cegcc-cegccdll-dummy/PKGBUILD +++ b/community/cross-arm-wince-cegcc-cegccdll-dummy/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/cross-arm-wince-cegcc-cegccdll/PKGBUILD b/community/cross-arm-wince-cegcc-cegccdll/PKGBUILD index f2a0c0259..503b4e483 100644 --- a/community/cross-arm-wince-cegcc-cegccdll/PKGBUILD +++ b/community/cross-arm-wince-cegcc-cegccdll/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/cross-arm-wince-cegcc-cegccthrddll/PKGBUILD b/community/cross-arm-wince-cegcc-cegccthrddll/PKGBUILD index bd17767ba..0ec08aafd 100644 --- a/community/cross-arm-wince-cegcc-cegccthrddll/PKGBUILD +++ b/community/cross-arm-wince-cegcc-cegccthrddll/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/cross-arm-wince-cegcc-gcc-base/PKGBUILD b/community/cross-arm-wince-cegcc-gcc-base/PKGBUILD index 19dc96ccc..669408bb8 100644 --- a/community/cross-arm-wince-cegcc-gcc-base/PKGBUILD +++ b/community/cross-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/cross-arm-wince-cegcc-gcc/PKGBUILD b/community/cross-arm-wince-cegcc-gcc/PKGBUILD index dcd86193c..4185152dc 100644 --- a/community/cross-arm-wince-cegcc-gcc/PKGBUILD +++ b/community/cross-arm-wince-cegcc-gcc/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/cross-arm-wince-cegcc-libstdcppdll/PKGBUILD b/community/cross-arm-wince-cegcc-libstdcppdll/PKGBUILD index bbc8c0d6c..d40d22404 100644 --- a/community/cross-arm-wince-cegcc-libstdcppdll/PKGBUILD +++ b/community/cross-arm-wince-cegcc-libstdcppdll/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/cross-arm-wince-cegcc-newlib/PKGBUILD b/community/cross-arm-wince-cegcc-newlib/PKGBUILD index 79270520b..ab4e1f494 100644 --- a/community/cross-arm-wince-cegcc-newlib/PKGBUILD +++ b/community/cross-arm-wince-cegcc-newlib/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/cross-arm-wince-cegcc-profile/PKGBUILD b/community/cross-arm-wince-cegcc-profile/PKGBUILD index 02d58ef3c..ee7d1e6e4 100644 --- a/community/cross-arm-wince-cegcc-profile/PKGBUILD +++ b/community/cross-arm-wince-cegcc-profile/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/cross-arm-wince-cegcc-w32api/PKGBUILD b/community/cross-arm-wince-cegcc-w32api/PKGBUILD index 22eb7a4e2..abd8c329b 100644 --- a/community/cross-arm-wince-cegcc-w32api/PKGBUILD +++ b/community/cross-arm-wince-cegcc-w32api/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/csfml/PKGBUILD b/community/csfml/PKGBUILD index d3e3c309c..c3a11e47d 100644 --- a/community/csfml/PKGBUILD +++ b/community/csfml/PKGBUILD @@ -11,7 +11,7 @@ fi pkgrel=1 pkgdesc='C bindings for sfml' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.sfml-dev.org/' license=('zlib') depends=('sfml') diff --git a/community/ctpl/PKGBUILD b/community/ctpl/PKGBUILD index f2d098254..ba37f84d9 100644 --- a/community/ctpl/PKGBUILD +++ b/community/ctpl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ctpl pkgver=0.3.3 pkgrel=1 pkgdesc="CTPL is a template engine library written in C" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ctpl.tuxfamily.org/" license=('GPL') depends=('glib2' 'gvfs') diff --git a/community/cuetools/PKGBUILD b/community/cuetools/PKGBUILD index 6626f9944..e7c28db65 100644 --- a/community/cuetools/PKGBUILD +++ b/community/cuetools/PKGBUILD @@ -4,7 +4,7 @@ pkgname=cuetools pkgver=1.3.1 pkgrel=4 pkgdesc="Set of utilities for working with cue files and toc files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://developer.berlios.de/projects/cuetools/" license=('GPL') depends=('glibc') diff --git a/community/cuneiform/PKGBUILD b/community/cuneiform/PKGBUILD index 2c5f9afb0..606685173 100644 --- a/community/cuneiform/PKGBUILD +++ b/community/cuneiform/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.1.0 _dpkgver=1.1 pkgrel=2 pkgdesc="Linux port of an OCR system developed in Russia. Supports more than 20 languages." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/cuneiform-linux" license=('BSD') depends=('imagemagick') diff --git a/community/cupsddk/PKGBUILD b/community/cupsddk/PKGBUILD index 7c39b38da..661181208 100644 --- a/community/cupsddk/PKGBUILD +++ b/community/cupsddk/PKGBUILD @@ -9,7 +9,7 @@ url="http://cups.org" license="GPL" depends=('libcups') makedepends=('libcups') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!emptydirs') source=(http://ftp.easysw.com/pub/cupsddk/$pkgver/$pkgname-$pkgver-source.tar.bz2) md5sums=('3ec52813bf12bf9b34d34f8a81bab508') diff --git a/community/curlftpfs/PKGBUILD b/community/curlftpfs/PKGBUILD index e0570edaf..722cd9659 100644 --- a/community/curlftpfs/PKGBUILD +++ b/community/curlftpfs/PKGBUILD @@ -11,7 +11,7 @@ url="http://curlftpfs.sourceforge.net/" license=('GPL') depends=('curl>=7.15.4' 'fuse' 'glib2') makedepends=('pkgconfig>=0.9.0') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=(http://downloads.sourceforge.net/sourceforge/curlftpfs/$pkgname-$pkgver.tar.gz ioerror.patch) md5sums=('b452123f755114cd4461d56c648d9f12' diff --git a/community/cutter/PKGBUILD b/community/cutter/PKGBUILD index e48ce17d4..010919ae2 100644 --- a/community/cutter/PKGBUILD +++ b/community/cutter/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cutter pkgver=1.03 pkgrel=3 pkgdesc="TCP/IP Connection cutting on Linux Firewalls and Routers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lowth.com/cutter/" license=('GPL') depends=(glibc) diff --git a/community/cuyo/PKGBUILD b/community/cuyo/PKGBUILD index eb3e84019..b1d1a20fa 100644 --- a/community/cuyo/PKGBUILD +++ b/community/cuyo/PKGBUILD @@ -5,7 +5,7 @@ pkgname=cuyo pkgver=2.1.1 pkgrel=4 pkgdesc="Tetris-style puzzle game for up to two players with a twist." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.karimmi.de/cuyo/" license=('GPL') depends=('sdl' 'sdl_mixer' 'sdl_image' 'xdg-utils') diff --git a/community/cwiid/PKGBUILD b/community/cwiid/PKGBUILD index 8f928328a..044545eb6 100644 --- a/community/cwiid/PKGBUILD +++ b/community/cwiid/PKGBUILD @@ -7,7 +7,7 @@ pkgname=cwiid pkgver=0.6.00 pkgrel=9 pkgdesc="Linux Nintendo Wiimote interface" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://abstrakraft.org/cwiid" depends=('bluez' 'gtk2' 'python2') makedepends=('flex' 'bison') diff --git a/community/cython/PKGBUILD b/community/cython/PKGBUILD index 4d4e547f3..24093969c 100644 --- a/community/cython/PKGBUILD +++ b/community/cython/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cython pkgver=0.15.1 pkgrel=1 pkgdesc="C-Extensions for Python " -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.cython.org" license=('APACHE') depends=('python2') diff --git a/community/dangerdeep/PKGBUILD b/community/dangerdeep/PKGBUILD index bd8309cb3..5cbef469f 100644 --- a/community/dangerdeep/PKGBUILD +++ b/community/dangerdeep/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dangerdeep pkgver=0.3.0 pkgrel=4 pkgdesc="submarine simulator" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://dangerdeep.sourceforge.net" license=('GPL') depends=(libgl sdl_net fftw sdl_image sdl_mixer mesa dangerdeep-data) diff --git a/community/dante/PKGBUILD b/community/dante/PKGBUILD index a2cecbd7b..f073ceb5f 100644 --- a/community/dante/PKGBUILD +++ b/community/dante/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.3.2 pkgrel=1 pkgdesc="SOCKS v4 and v5 compatible proxy server and client" url="http://www.inet.no/dante" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') depends=('pam' 'krb5') backup=('etc/socks.conf' diff --git a/community/dar/PKGBUILD b/community/dar/PKGBUILD index be82f3409..b139ca88b 100644 --- a/community/dar/PKGBUILD +++ b/community/dar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dar pkgver=2.4.2 pkgrel=1 pkgdesc='A full featured command-line backup tool, short for Disk ARchive' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://dar.linux.free.fr/' license=('GPL') depends=('bzip2' 'lzo2' 'libgcrypt') diff --git a/community/darcs/PKGBUILD b/community/darcs/PKGBUILD index d23e917a5..506374c5a 100644 --- a/community/darcs/PKGBUILD +++ b/community/darcs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=darcs pkgver=2.5.2 pkgrel=1.1 pkgdesc="Decentralized replacement for CVS with roots in quantum mechanics" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://darcs.net/" license=('GPL') depends=('curl' 'gmp' 'ncurses>=5.6-7') diff --git a/community/darkhttpd/PKGBUILD b/community/darkhttpd/PKGBUILD index 03079eb52..b2c3b85bb 100644 --- a/community/darkhttpd/PKGBUILD +++ b/community/darkhttpd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=darkhttpd pkgver=1.8 pkgrel=1 pkgdesc="A small, static webserver" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://dmr.ath.cx/net/darkhttpd/" license=('BSD') depends=('glibc') diff --git a/community/darkstat/PKGBUILD b/community/darkstat/PKGBUILD index de207b747..bc5710cc4 100644 --- a/community/darkstat/PKGBUILD +++ b/community/darkstat/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Network statistics gatherer (packet sniffer)." url="http://dmr.ath.cx/net/darkstat/" license=("GPL") -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('libpcap' 'zlib') source=(http://dmr.ath.cx/net/darkstat/$pkgname-$pkgver.tar.bz2) md5sums=('eef385fadc8dbb611d3d4c4d8fa94817') diff --git a/community/darktable/PKGBUILD b/community/darktable/PKGBUILD index 6f6bfdc34..e2f16517a 100644 --- a/community/darktable/PKGBUILD +++ b/community/darktable/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.9.2 _pkgver=0.9 pkgrel=2 pkgdesc="Utility to organize and develop raw images" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url=http://darktable.sf.net/ license=('GPL3') depends=('exiv2>=0.18' 'gconf>=2.26' 'intltool>=0.40' 'lcms2' 'lensfun>=0.2.3' 'libglade' diff --git a/community/datemath/PKGBUILD b/community/datemath/PKGBUILD index f4ce236b5..1f8a1e0d1 100644 --- a/community/datemath/PKGBUILD +++ b/community/datemath/PKGBUILD @@ -7,7 +7,7 @@ pkgname=datemath pkgver=2.0.10 pkgrel=2 pkgdesc="Command line date and time math utility." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.unixwiz.net/tools/datemath.html" license=("GPL") depends=('glibc') diff --git a/community/dbmail/PKGBUILD b/community/dbmail/PKGBUILD index 9610e41c8..182925d56 100644 --- a/community/dbmail/PKGBUILD +++ b/community/dbmail/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dbmail pkgver=2.2.17 pkgrel=2 pkgdesc="Fast and scalable sql based mail services" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') # mhash libevent libzdb depends=('gmime22') makedepends=('asciidoc' 'xmlto' 'docbook-xsl' 'docbook-xml' 'postgresql-libs>=8.4.1' 'sqlite3' 'libmysqlclient' 'libldap>=2.4.18' 'libsieve') diff --git a/community/dbus-sharp-glib/PKGBUILD b/community/dbus-sharp-glib/PKGBUILD index bd28aeede..e1a72c763 100644 --- a/community/dbus-sharp-glib/PKGBUILD +++ b/community/dbus-sharp-glib/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dbus-sharp-glib pkgver=0.5.0 pkgrel=3 pkgdesc="C# GLib implementation of D-Bus" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://github.com/mono/dbus-sharp/" license=('custom') depends=('dbus-sharp>=0.7') diff --git a/community/deadbeef/PKGBUILD b/community/deadbeef/PKGBUILD index 8d4a63c9e..6886b088e 100644 --- a/community/deadbeef/PKGBUILD +++ b/community/deadbeef/PKGBUILD @@ -6,7 +6,7 @@ pkgname=deadbeef pkgver=0.5.1 pkgrel=2 pkgdesc='An audio player for GNU/Linux based on GTK2.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://deadbeef.sourceforge.net' license=('GPL2') depends=('gtk2' 'alsa-lib' 'hicolor-icon-theme' 'desktop-file-utils') diff --git a/community/delegate/PKGBUILD b/community/delegate/PKGBUILD index 450698d29..b6dea8016 100644 --- a/community/delegate/PKGBUILD +++ b/community/delegate/PKGBUILD @@ -6,7 +6,7 @@ pkgname=delegate pkgver=9.9.7 pkgrel=1 pkgdesc="Caching and converting multyprotocol proxy. For example, you may use it as NNTP web interface" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.delegate.org/" license=('GPL') depends=('pam') diff --git a/community/denemo/PKGBUILD b/community/denemo/PKGBUILD index 1be1aa213..b04dd2eac 100644 --- a/community/denemo/PKGBUILD +++ b/community/denemo/PKGBUILD @@ -8,7 +8,7 @@ pkgname=denemo pkgver=0.9.0 pkgrel=1 pkgdesc="A music score editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.denemo.org" license=('GPL') depends=('aubio' 'portaudio' 'lilypond' 'gtk2' 'libxml2' 'guile' 'fftw' 'gtksourceview2' diff --git a/community/dev86/PKGBUILD b/community/dev86/PKGBUILD index 28d31b13e..2f1499e52 100644 --- a/community/dev86/PKGBUILD +++ b/community/dev86/PKGBUILD @@ -7,7 +7,7 @@ pkgname=dev86 pkgver=0.16.18 pkgrel=1 pkgdesc="Simple C compiler to generate 8086 code" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') #url="http://homepage.ntlworld.com/robert.debath/dev86" url="http://www.debath.co.uk/dev86/" license=(GPL) diff --git a/community/devil/PKGBUILD b/community/devil/PKGBUILD index 42b0688a1..fddb3cc7c 100644 --- a/community/devil/PKGBUILD +++ b/community/devil/PKGBUILD @@ -6,7 +6,7 @@ pkgname=devil pkgver=1.7.8 pkgrel=8 pkgdesc="Library for reading several different image formats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://openil.sourceforge.net/" depends=('allegro4' 'sdl' 'libpng' 'libmng' 'freeglut' 'jasper' 'lcms' 'openexr') diff --git a/community/dfm/PKGBUILD b/community/dfm/PKGBUILD index 0c290ebd2..bbf143dd5 100644 --- a/community/dfm/PKGBUILD +++ b/community/dfm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=dfm pkgver=0.99.9 pkgrel=2 pkgdesc="A graphical file manager including desktop icons" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gtk' 'imlib' 'libxpm') license=('GPL') source=(http://www.kaisersite.de/dfm/$pkgname-$pkgver.tar.gz) diff --git a/community/dia/PKGBUILD b/community/dia/PKGBUILD index 54da1eeae..c6597a9ac 100644 --- a/community/dia/PKGBUILD +++ b/community/dia/PKGBUILD @@ -8,7 +8,7 @@ pkgname=dia pkgver=0.97.1 pkgrel=5 pkgdesc="A GTK+ based diagram creation program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://live.gnome.org/Dia" install=dia.install diff --git a/community/diacanvas/PKGBUILD b/community/diacanvas/PKGBUILD index 06b34d4e1..7bea06d0d 100644 --- a/community/diacanvas/PKGBUILD +++ b/community/diacanvas/PKGBUILD @@ -6,7 +6,7 @@ pkgname=diacanvas pkgver=0.15.4 pkgrel=6 pkgdesc="Library for drawing diagrams" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/diacanvas" license=('LGPL') depends=('libgnomecanvas' 'libgnomeprint' 'gnome-python') diff --git a/community/dictd/PKGBUILD b/community/dictd/PKGBUILD index 7ba6a1d1d..db4218b2b 100644 --- a/community/dictd/PKGBUILD +++ b/community/dictd/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=3 pkgdesc="Online dictionary client and server" url="http://sourceforge.net/projects/dict/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('sh' 'zlib' 'libmaa') makedepends=('flex') backup=(etc/dict/dictd.conf diff --git a/community/dietlibc/PKGBUILD b/community/dietlibc/PKGBUILD index 6ba4d9331..4f33fa7df 100644 --- a/community/dietlibc/PKGBUILD +++ b/community/dietlibc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dietlibc pkgver=0.32 pkgrel=2 pkgdesc="a libc optimized for small size" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.fefe.de/dietlibc/" license=("GPL") source=(http://www.kernel.org/pub/linux/libs/dietlibc/$pkgname-$pkgver.tar.bz2) diff --git a/community/dillo/PKGBUILD b/community/dillo/PKGBUILD index c0476bb17..af53031ec 100644 --- a/community/dillo/PKGBUILD +++ b/community/dillo/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dillo pkgver=3.0.1 pkgrel=1 pkgdesc="A small, fast graphical web browser built on FLTK" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.dillo.org" license=('GPL') depends=('fltk' 'libjpeg' 'perl' 'openssl' 'libpng' 'gcc-libs' 'libxcursor' diff --git a/community/directfb/PKGBUILD b/community/directfb/PKGBUILD index 322155d9f..cc80362f8 100644 --- a/community/directfb/PKGBUILD +++ b/community/directfb/PKGBUILD @@ -6,7 +6,7 @@ pkgname=directfb pkgver=1.4.14 pkgrel=1 pkgdesc="A thin library that provides hardware graphics acceleration, input device handling and abstraction, integrated windowing system on top of the Linux Framebuffer Device" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.directfb.org" license=('LGPL') depends=('gcc-libs' 'libjpeg' 'sdl' 'sysfsutils' 'libpng' 'freetype2') diff --git a/community/discid/PKGBUILD b/community/discid/PKGBUILD index d77a3a02c..a78f15c1a 100644 --- a/community/discid/PKGBUILD +++ b/community/discid/PKGBUILD @@ -6,7 +6,7 @@ pkgname=discid pkgver=0.1.3 pkgrel=4 pkgdesc="A program to calculate the disc-ID for audio compact discs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://discid.sourceforge.net" license=("GPL") depends=(gcc-libs) diff --git a/community/distcc/PKGBUILD b/community/distcc/PKGBUILD index 42edd6cb8..3e33ace62 100644 --- a/community/distcc/PKGBUILD +++ b/community/distcc/PKGBUILD @@ -7,7 +7,7 @@ pkgname=distcc pkgver=3.1 pkgrel=6 pkgdesc="A distributed C, C++, Obj C compiler" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/distcc/" license=('GPL') depends=('gcc' 'popt' 'avahi') diff --git a/community/djview4/PKGBUILD b/community/djview4/PKGBUILD index 3923d1b2d..acccf6688 100644 --- a/community/djview4/PKGBUILD +++ b/community/djview4/PKGBUILD @@ -11,7 +11,7 @@ pkgrel=1 pkgdesc='Portable DjVu viewer and browser plugin' url='http://djvu.sourceforge.net/djview4.html' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('qt' 'djvulibre') source=("http://downloads.sourceforge.net/djvu/djview-${pkgver}.tar.gz") sha1sums=('266d207afb63a1ee63eed054190bf88888fda572') diff --git a/community/dmenu/PKGBUILD b/community/dmenu/PKGBUILD index db7dc7373..f05d6d694 100644 --- a/community/dmenu/PKGBUILD +++ b/community/dmenu/PKGBUILD @@ -9,7 +9,7 @@ pkgver=4.4.1 pkgrel=1 pkgdesc="A generic menu for X" url="http://tools.suckless.org/dmenu/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('MIT') depends=('sh' 'libxinerama') source=("http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz") @@ -25,3 +25,4 @@ package() { make PREFIX=/usr DESTDIR=$pkgdir install install -m644 -D LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE } +md5sums=('85204de9ac040e0ba544978ce6d6a105') diff --git a/community/dnstracer/PKGBUILD b/community/dnstracer/PKGBUILD index 3964c47f3..cb5a80ae5 100644 --- a/community/dnstracer/PKGBUILD +++ b/community/dnstracer/PKGBUILD @@ -4,7 +4,7 @@ pkgname=dnstracer pkgver=1.9 pkgrel=3 pkgdesc='Determines where a given DNS server gets its information from, and follows the chain of DNS servers' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.mavetju.org/unix/dnstracer.php' license=('BSD') source=("http://www.mavetju.org/download/$pkgname-$pkgver.tar.gz") diff --git a/community/docbook2x/PKGBUILD b/community/docbook2x/PKGBUILD index 42dab69b1..c44257c3d 100644 --- a/community/docbook2x/PKGBUILD +++ b/community/docbook2x/PKGBUILD @@ -6,7 +6,7 @@ pkgname=docbook2x pkgver=0.8.8 pkgrel=9 pkgdesc="A software package that converts DocBook documents into the traditional Unix man page format and the GNU Texinfo format." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://docbook2x.sourceforge.net" license=("MIT") depends=('glibc' 'perl-sgmls' 'perlxml' 'perl-xml-sax' 'libxslt') diff --git a/community/dockmanager/PKGBUILD b/community/dockmanager/PKGBUILD index 0d91fb975..11248a9b5 100644 --- a/community/dockmanager/PKGBUILD +++ b/community/dockmanager/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.1.0 pkgrel=0.20110211 pkgdesc="Dock-independent helper scripts for compatible docks" url="https://launchpad.net/dockmanager" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=(GPL) depends=('libdesktop-agnostic>=0.3.90-2' gconf dbus-glib python2) makedepends=(bzr 'vala>=0.10' pkgconfig intltool autoconf gnome-common) diff --git a/community/docky/PKGBUILD b/community/docky/PKGBUILD index 636d2e762..29807f42f 100644 --- a/community/docky/PKGBUILD +++ b/community/docky/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.1.3 pkgrel=1 pkgdesc="The finest dock no money can buy!" url="https://launchpad.net/docky" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=(GPL) depends=(gnome-desktop-sharp gnome-keyring-sharp gtk2 mono-addins hicolor-icon-theme ndesk-dbus-glib notify-sharp-svn xdg-utils diff --git a/community/dopewars/PKGBUILD b/community/dopewars/PKGBUILD index a240c3a0a..4116a23d3 100644 --- a/community/dopewars/PKGBUILD +++ b/community/dopewars/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=6 pkgdesc="A drug dealing game set in New York" url="http://dopewars.sourceforge.net/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gtk2' 'alsa-lib' 'audiofile' 'sdl_mixer' 'ncurses') install='dopewars.install' source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") diff --git a/community/driftnet/PKGBUILD b/community/driftnet/PKGBUILD index 7a128014d..ab64be823 100644 --- a/community/driftnet/PKGBUILD +++ b/community/driftnet/PKGBUILD @@ -6,7 +6,7 @@ pkgname=driftnet pkgver=0.1.6 pkgrel=5 pkgdesc="Listens to network traffic and picks out images from TCP streams it observes." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url=('http://www.ex-parrot.com/~chris/driftnet/') license=('GPL') depends=('libjpeg' 'libpcap' 'gtk' 'giflib') diff --git a/community/drivel/PKGBUILD b/community/drivel/PKGBUILD index 82ae3dda9..6931a5aae 100644 --- a/community/drivel/PKGBUILD +++ b/community/drivel/PKGBUILD @@ -8,7 +8,7 @@ pkgver=3.0.3 pkgrel=1 pkgdesc="GTK client for working with online journals (blogs)." url="http://www.dropline.net/drivel/index.php" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=("GPL") depends=('curl' 'gtksourceview2' 'gtkspell' 'libgnomeui>=2.0.0' 'libsoup') makedepends=('perlxml' 'pkgconfig' 'intltool>=0.21' 'gnome-doc-utils>=0.3.2') diff --git a/community/dsniff/PKGBUILD b/community/dsniff/PKGBUILD index f7428aa09..c96239a66 100644 --- a/community/dsniff/PKGBUILD +++ b/community/dsniff/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2.4b1 pkgrel=20 pkgdesc="Collection of tools for network auditing and penetration testing" url="http://www.monkey.org/~dugsong/dsniff/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('BSD') depends=('libpcap' 'openssl' 'libxmu' 'glib2' 'libnet' 'libnids') source=("http://www.monkey.org/~dugsong/${pkgname}/beta/$pkgname-$pkgver.tar.gz" diff --git a/community/dspam/PKGBUILD b/community/dspam/PKGBUILD index 35b78dcb7..99ccfa5ba 100644 --- a/community/dspam/PKGBUILD +++ b/community/dspam/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dspam pkgver=3.10.1 pkgrel=1 pkgdesc="A scalable, open-source statistical anti-spam filter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://dspam.nuclearelephant.com/" backup=(etc/dspam/dspam.conf) license=("GPL") diff --git a/community/dtach/PKGBUILD b/community/dtach/PKGBUILD index 1324f4731..2ea069b5c 100644 --- a/community/dtach/PKGBUILD +++ b/community/dtach/PKGBUILD @@ -7,7 +7,7 @@ pkgname=dtach pkgver=0.8 pkgrel=4 pkgdesc="emulates the detach feature of screen" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://dtach.sourceforge.net/" license=('GPL') depends=('glibc') diff --git a/community/duff/PKGBUILD b/community/duff/PKGBUILD index c97271ca7..304178bb1 100644 --- a/community/duff/PKGBUILD +++ b/community/duff/PKGBUILD @@ -5,7 +5,7 @@ pkgname=duff pkgver=0.5 pkgrel=1 pkgdesc="A command-line utility for quickly finding duplicates in a given set of files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://duff.sourceforge.net/" license=('custom') depends=('glibc' 'sh') diff --git a/community/dumb/PKGBUILD b/community/dumb/PKGBUILD index c8701a37b..ccbbbb04b 100644 --- a/community/dumb/PKGBUILD +++ b/community/dumb/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dumb pkgver=0.9.3 pkgrel=5 pkgdesc="An IT, XM, S3M and MOD player library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom:dumb' 'GPL') url="http://dumb.sourceforge.net/" depends=('glibc' 'allegro4') diff --git a/community/duplicity/PKGBUILD b/community/duplicity/PKGBUILD index 1d03ff210..4cc7fc406 100644 --- a/community/duplicity/PKGBUILD +++ b/community/duplicity/PKGBUILD @@ -6,7 +6,7 @@ pkgname=duplicity pkgver=0.6.15 pkgrel=1 pkgdesc='A utility for encrypted, bandwidth-efficient backups using the rsync algorithm' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.nongnu.org/duplicity/' license=('GPL') depends=('librsync' 'ncftp' 'python2' 'python-boto' 'python-gnupginterface') diff --git a/community/dvdisaster/PKGBUILD b/community/dvdisaster/PKGBUILD index d9b1130c9..6a07af6e0 100644 --- a/community/dvdisaster/PKGBUILD +++ b/community/dvdisaster/PKGBUILD @@ -7,7 +7,7 @@ pkgname=dvdisaster pkgver=0.72.2 pkgrel=1 pkgdesc="Provides a margin of safety against data loss on CD and DVD media caused by aging or scratches" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.dvdisaster.com/" license=('GPL') depends=('gtk2') diff --git a/community/dvdstyler/PKGBUILD b/community/dvdstyler/PKGBUILD index 7ffd429be..63bb86166 100644 --- a/community/dvdstyler/PKGBUILD +++ b/community/dvdstyler/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dvdstyler pkgver=2.0 pkgrel=1 pkgdesc="Cross-platform DVD authoring application" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.dvdstyler.de/" license=('GPL') depends=('cdrkit' 'dvdauthor' 'dvd+rw-tools' 'wxsvg' 'xine-ui' 'mjpegtools' 'libgnomeui') diff --git a/community/dvtm/PKGBUILD b/community/dvtm/PKGBUILD index 358b4251d..fc06ca202 100644 --- a/community/dvtm/PKGBUILD +++ b/community/dvtm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=dvtm pkgver=0.7 pkgrel=1 pkgdesc='Dynamic virtual terminal manager.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.brain-dump.org/projects/dvtm/' license=('MIT') depends=('ncurses') diff --git a/community/dwdiff/PKGBUILD b/community/dwdiff/PKGBUILD index a7dbde031..5042e9358 100644 --- a/community/dwdiff/PKGBUILD +++ b/community/dwdiff/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dwdiff pkgver=2.0 pkgrel=1 pkgdesc="a front-end for the diff program that operates at the word level instead of the line level" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://os.ghalkes.nl/dwdiff.html" depends=('diffutils' 'icu') license=('GPL') diff --git a/community/dwm/PKGBUILD b/community/dwm/PKGBUILD index 0c5b1a448..721aa7e91 100644 --- a/community/dwm/PKGBUILD +++ b/community/dwm/PKGBUILD @@ -8,7 +8,7 @@ pkgver=5.9 pkgrel=2 pkgdesc="A dynamic window manager for X" url="http://dwm.suckless.org" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('MIT') options=(zipman) depends=('libx11' 'libxinerama') diff --git a/community/dxpc/PKGBUILD b/community/dxpc/PKGBUILD index 8d4993f99..bf290ae13 100644 --- a/community/dxpc/PKGBUILD +++ b/community/dxpc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dxpc pkgver=3.9.2 pkgrel=3 pkgdesc="Differential X Protocol Compressor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.vigor.nu/dxpc/" license=('GPL') depends=('lzo2' 'gcc-libs') diff --git a/community/dynamite/PKGBUILD b/community/dynamite/PKGBUILD index 9f8828426..82cf42c5e 100644 --- a/community/dynamite/PKGBUILD +++ b/community/dynamite/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dynamite pkgver=0.1.1 pkgrel=2 pkgdesc="Dynamite is a tool and library for decompressing data compressed with PKWARE Data Compression Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://synce.sourceforge.net/" license=("GPL") source=(http://downloads.sourceforge.net/sourceforge/synce/libdynamite-$pkgver.tar.gz) diff --git a/community/dzen2/PKGBUILD b/community/dzen2/PKGBUILD index 810d8ba52..841626991 100644 --- a/community/dzen2/PKGBUILD +++ b/community/dzen2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dzen2 pkgver=0.8.5 pkgrel=7 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') pkgdesc="X notification utility" url="http://gotmor.googlepages.com/dzen" license=("MIT") diff --git a/community/e-modules-extra-svn/PKGBUILD b/community/e-modules-extra-svn/PKGBUILD index 1a977d7bd..b34f32956 100755 --- a/community/e-modules-extra-svn/PKGBUILD +++ b/community/e-modules-extra-svn/PKGBUILD @@ -5,7 +5,7 @@ pkgname=e-modules-extra-svn pkgver=62844 pkgrel=1 pkgdesc="Extra gadgets for e17" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('e17-extra-svn') url="http://www.enlightenment.org" license=('BSD') diff --git a/community/e-svn/PKGBUILD b/community/e-svn/PKGBUILD index 47bd88946..07e74dc04 100755 --- a/community/e-svn/PKGBUILD +++ b/community/e-svn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=e-svn pkgver=62822 pkgrel=1 pkgdesc="Enlightenment window manager DR17 (aka e17)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('e17-svn') url="http://www.enlightenment.org" license=('BSD') diff --git a/community/e_dbus-svn/PKGBUILD b/community/e_dbus-svn/PKGBUILD index 5fa4c1f32..60f06d611 100755 --- a/community/e_dbus-svn/PKGBUILD +++ b/community/e_dbus-svn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=e_dbus-svn pkgver=61974 pkgrel=1 pkgdesc="dbus abstraction layer for e17" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('e17-libs-svn' 'e17-svn') url="http://www.enlightenment.org" license=('BSD') diff --git a/community/echat/PKGBUILD b/community/echat/PKGBUILD index ff17db8f2..4eeb15a50 100644 --- a/community/echat/PKGBUILD +++ b/community/echat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=echat pkgver=0.04beta1 pkgrel=2 pkgdesc="vypress compatible ncurses chat (can work without server)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://echat.deep.perm.ru/" license=(GPL) depends=(ncurses) diff --git a/community/ecore-svn/PKGBUILD b/community/ecore-svn/PKGBUILD index 1f970b620..9d16458e5 100755 --- a/community/ecore-svn/PKGBUILD +++ b/community/ecore-svn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ecore-svn pkgver=62785 pkgrel=1 pkgdesc="Ecore is an abstraction layer for e17" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('e17-libs-svn' 'e17-svn') url="http://www.enlightenment.org" license=('BSD') diff --git a/community/edje-svn/PKGBUILD b/community/edje-svn/PKGBUILD index ad2b036e2..9f711d493 100755 --- a/community/edje-svn/PKGBUILD +++ b/community/edje-svn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=edje-svn pkgver=62791 pkgrel=1 pkgdesc="A graphical design and layout library based on Evas" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('e17-libs-svn' 'e17-svn') url="http://www.enlightenment.org" license=('BSD') diff --git a/community/eet-svn/PKGBUILD b/community/eet-svn/PKGBUILD index 8c7f85846..be2ed3d41 100755 --- a/community/eet-svn/PKGBUILD +++ b/community/eet-svn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=eet-svn pkgver=62590 pkgrel=1 pkgdesc="A data storage and compression library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('e17-libs-svn' 'e17-svn') url="http://www.enlightenment.org" license=('BSD') diff --git a/community/eeze-svn/PKGBUILD b/community/eeze-svn/PKGBUILD index 38abf7c37..b4612d458 100644 --- a/community/eeze-svn/PKGBUILD +++ b/community/eeze-svn/PKGBUILD @@ -7,7 +7,7 @@ pkgname=eeze-svn pkgver=62160 pkgrel=1 pkgdesc="A data storage and compression library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('e17-libs-svn' 'e17-svn') url="http://www.enlightenment.org" license=('BSD') diff --git a/community/efreet-svn/PKGBUILD b/community/efreet-svn/PKGBUILD index 921a470cc..2c1f5c7ca 100755 --- a/community/efreet-svn/PKGBUILD +++ b/community/efreet-svn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=efreet-svn pkgver=62616 pkgrel=1 pkgdesc="freedesktop.org specifications for e17" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('e17-libs-svn' 'e17-svn') url="http://www.enlightenment.org" license=('BSD') diff --git a/community/egoboo/PKGBUILD b/community/egoboo/PKGBUILD index bbb759c28..b7fe83637 100644 --- a/community/egoboo/PKGBUILD +++ b/community/egoboo/PKGBUILD @@ -8,7 +8,7 @@ pkgname=egoboo pkgver=2.8.1 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') pkgdesc="An open-source action RPG/dungeon crawling adventure with OpenGL 3D graphics" url="http://egoboo.sourceforge.net/" diff --git a/community/eiciel/PKGBUILD b/community/eiciel/PKGBUILD index 057c3fe28..0c3556667 100644 --- a/community/eiciel/PKGBUILD +++ b/community/eiciel/PKGBUILD @@ -6,7 +6,7 @@ pkgname=eiciel pkgver=0.9.8.1 pkgrel=1 pkgdesc="GNOME file ACL editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://rofi.roger-ferrer.org/eiciel/" license=('GPL') depends=('acl' 'gtkmm3' 'nautilus' 'desktop-file-utils' 'gnome-vfs') diff --git a/community/eina-svn/PKGBUILD b/community/eina-svn/PKGBUILD index 9a78eb3c0..2a437b4a5 100755 --- a/community/eina-svn/PKGBUILD +++ b/community/eina-svn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=eina-svn pkgver=62813 pkgrel=1 pkgdesc="E17 file chunk reading/writing library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('e17-libs-svn' 'e17-svn') url="http://www.enlightenment.org" license=('LGPL2') diff --git a/community/ejabberd/PKGBUILD b/community/ejabberd/PKGBUILD index 999899238..9ea4b77bf 100644 --- a/community/ejabberd/PKGBUILD +++ b/community/ejabberd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ejabberd pkgver=2.1.9 pkgrel=1 pkgdesc="An erlang jabber server" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.ejabberd.im/" license=("GPL") depends=('expat' 'openssl' 'zlib' 'erlang' 'pam') diff --git a/community/ekg/PKGBUILD b/community/ekg/PKGBUILD index 2c504ff40..4bca941b7 100644 --- a/community/ekg/PKGBUILD +++ b/community/ekg/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ekg pkgver=1.8rc2 pkgrel=1 pkgdesc="A text-mode Gadu-Gadu client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ekg.chmurka.net/" license=('GPL') depends=('libjpeg' 'aspell' 'python2' 'giflib' 'libgadu') diff --git a/community/ekg2/PKGBUILD b/community/ekg2/PKGBUILD index ed73f1dc5..811ebe14f 100644 --- a/community/ekg2/PKGBUILD +++ b/community/ekg2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ekg2 pkgver=0.3.1 pkgrel=1 pkgdesc="ncurses based Jabber, Gadu-Gadu, Tlen and IRC client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ekg2.org/" license=('GPL') depends=('aspell' 'libjpeg' 'python2' 'libgadu' 'gnutls' 'gpm' 'libidn' 'giflib' 'gpgme') diff --git a/community/electricsheep/PKGBUILD b/community/electricsheep/PKGBUILD index c4b934aad..f76f336b0 100644 --- a/community/electricsheep/PKGBUILD +++ b/community/electricsheep/PKGBUILD @@ -5,7 +5,7 @@ pkgname=electricsheep pkgver=2.7b12 pkgrel=3 pkgdesc="A screensaver that realize the collective dream of sleeping computers from all over the internet" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://community.electricsheep.org/" license=('GPL') depends=('curl' 'expat' 'flam3' 'ffmpeg' 'mplayer' 'libglade') diff --git a/community/elementary-svn/PKGBUILD b/community/elementary-svn/PKGBUILD index 6b77a578a..c59daec30 100644 --- a/community/elementary-svn/PKGBUILD +++ b/community/elementary-svn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=elementary-svn pkgver=62830 pkgrel=1 pkgdesc="Enlightenment's basic widget set" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('e17-libs-svn' 'e17-svn') url="http://www.enlightenment.org" license=('BSD') diff --git a/community/elinks/PKGBUILD b/community/elinks/PKGBUILD index 57957d67c..afb04adac 100644 --- a/community/elinks/PKGBUILD +++ b/community/elinks/PKGBUILD @@ -10,7 +10,7 @@ pkgver=0.13 _commit="30c485af4c4ba128d82171a6066594f3cfaeae5d" pkgrel=9 pkgdesc="An advanced and well-established feature-rich text mode web browser." -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://elinks.or.cz" license=('GPL') depends=('bzip2' 'expat>=2.0' 'gpm>=1.20.4' 'openssl' 'lua>=5.1.1' 'libidn' 'js' diff --git a/community/emacs-nox/PKGBUILD b/community/emacs-nox/PKGBUILD index 56333d367..f9798663b 100644 --- a/community/emacs-nox/PKGBUILD +++ b/community/emacs-nox/PKGBUILD @@ -6,7 +6,7 @@ pkgname=emacs-nox pkgver=23.3 pkgrel=2 pkgdesc="The Emacs Editor, without X11 support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/emacs/emacs.html" license=('GPL') replaces=('cedet') diff --git a/community/embryo-svn/PKGBUILD b/community/embryo-svn/PKGBUILD index 2b3046f8f..6c854b492 100755 --- a/community/embryo-svn/PKGBUILD +++ b/community/embryo-svn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=embryo-svn pkgver=62382 pkgrel=1 pkgdesc="implementation of a C like scripting language for e17" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('e17-libs-svn' 'e17-svn') url="http://www.enlightenment.org" license=('BSD') diff --git a/community/emerald/PKGBUILD b/community/emerald/PKGBUILD index bbed29dc5..b811963bd 100644 --- a/community/emerald/PKGBUILD +++ b/community/emerald/PKGBUILD @@ -7,7 +7,7 @@ pkgname=emerald pkgver=0.8.8 pkgrel=1 pkgdesc="Emerald window decorator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.compiz.org" license=('GPL') depends=('compiz-core' 'libwnck' 'gtk2' 'libxres' 'shared-mime-info' 'xdg-utils') diff --git a/community/emesene/PKGBUILD b/community/emesene/PKGBUILD index fca66e6b2..2e9b856fa 100755 --- a/community/emesene/PKGBUILD +++ b/community/emesene/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="A pygtk MSN Messenger client" url="http://www.emesene.org/" license=('custom:PSF' 'GPL' 'LGPL2.1') -arch=('i686' 'x86_64') # libmimic is hardcoded, so no 'any' package +arch=('i686' 'x86_64' 'mips64el') # libmimic is hardcoded, so no 'any' package depends=('python2' 'pygtk' 'python-dnspython' 'pylint' 'python-notify' 'openssl' \ 'papyon' 'python-imaging' 'dbus-python' 'xdg-utils' 'hicolor-icon-theme' \ 'gstreamer0.10-python' 'gstreamer0.10-good') diff --git a/community/emprint-svn/PKGBUILD b/community/emprint-svn/PKGBUILD index d428dfe0a..f2023c285 100755 --- a/community/emprint-svn/PKGBUILD +++ b/community/emprint-svn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=emprint-svn pkgver=61738 pkgrel=1 pkgdesc="screenshot module for e17" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('e17-extra-svn') url="http://www.enlightenment.org" license=('BSD') diff --git a/community/encfs/PKGBUILD b/community/encfs/PKGBUILD index d0c4950fe..ca88d1188 100644 --- a/community/encfs/PKGBUILD +++ b/community/encfs/PKGBUILD @@ -8,7 +8,7 @@ pkgname=encfs pkgver=1.7.4 pkgrel=5 pkgdesc='Encrypted filesystem in user-space' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.arg0.net/encfs' license=('GPL') depends=('rlog' 'openssl' 'fuse' 'boost-libs') diff --git a/community/enet/PKGBUILD b/community/enet/PKGBUILD index 42f66822f..b2c08e8b2 100644 --- a/community/enet/PKGBUILD +++ b/community/enet/PKGBUILD @@ -5,7 +5,7 @@ pkgname=enet pkgver=1.3.3 pkgrel=1 pkgdesc='A relatively thin, simple and robust network communication layer on top of UDP.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://enet.bespin.org/' license=('custom') depends=('glibc') diff --git a/community/enigma/PKGBUILD b/community/enigma/PKGBUILD index d29811b7f..d7923a073 100644 --- a/community/enigma/PKGBUILD +++ b/community/enigma/PKGBUILD @@ -7,7 +7,7 @@ pkgname=enigma pkgver=1.04 pkgrel=3 pkgdesc=" Enigma is a puzzle game involving falling blocks" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.chiark.greenend.org.uk/~sgtatham/enigma/" license=('custom') depends=('ncurses') diff --git a/community/enter/PKGBUILD b/community/enter/PKGBUILD index e79442e48..49b07c5f4 100644 --- a/community/enter/PKGBUILD +++ b/community/enter/PKGBUILD @@ -5,7 +5,7 @@ pkgname=enter pkgver=0.0.9 pkgrel=2 pkgdesc="Enter is a lightweight graphical login manager for X." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://enter.sf.net" license=('GPL') depends=('libxft' 'imlib2' 'xorg-server') diff --git a/community/epic4/PKGBUILD b/community/epic4/PKGBUILD index f975aa7c5..472f701fc 100644 --- a/community/epic4/PKGBUILD +++ b/community/epic4/PKGBUILD @@ -8,7 +8,7 @@ pkgname=epic4 pkgver=2.10.1 pkgrel=2 pkgdesc="EPIC4 is a new direction in ircII development" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.epicsol.org/" license=('custom') depends=('openssl' 'ncurses' 'tcl' 'perl') diff --git a/community/esekeyd/PKGBUILD b/community/esekeyd/PKGBUILD index b0122e70f..a3e513814 100644 --- a/community/esekeyd/PKGBUILD +++ b/community/esekeyd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=esekeyd pkgver=1.2.7 pkgrel=1 pkgdesc="Multimedia keyboard driver for Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freshmeat.net/projects/esekeyd/" license=('GPL') depends=('glibc' 'sh') diff --git a/community/esmtp/PKGBUILD b/community/esmtp/PKGBUILD index b275244ff..a29008e29 100644 --- a/community/esmtp/PKGBUILD +++ b/community/esmtp/PKGBUILD @@ -7,7 +7,7 @@ pkgname=esmtp pkgver=1.2 pkgrel=4 pkgdesc="An easy SMTP forwarder." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://esmtp.sourceforge.net' license=('GPL') depends=('libesmtp' 'openssl') diff --git a/community/espeak/PKGBUILD b/community/espeak/PKGBUILD index e07c5e235..9e51a6a47 100644 --- a/community/espeak/PKGBUILD +++ b/community/espeak/PKGBUILD @@ -7,7 +7,7 @@ pkgname=espeak pkgver=1.45.05 pkgrel=1 pkgdesc="Text to Speech engine for good quality English, with support for other languages" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://espeak.sourceforge.net/" license=('GPL') depends=('gcc-libs' 'portaudio') diff --git a/community/espeakup/PKGBUILD b/community/espeakup/PKGBUILD index 89061f262..2345d7f6c 100644 --- a/community/espeakup/PKGBUILD +++ b/community/espeakup/PKGBUILD @@ -4,7 +4,7 @@ pkgname=espeakup pkgver=0.71 pkgrel=3 pkgdesc='Allows the Speakup screen review system to use the ESpeak synthesizer.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://github.com/williamh/espeakup" license=('GPL3') source=("ftp://linux-speakup.org/pub/linux/goodies/${pkgname}-${pkgver}.tar.bz2" diff --git a/community/eterm/PKGBUILD b/community/eterm/PKGBUILD index cfb3d5613..332dfcd9b 100644 --- a/community/eterm/PKGBUILD +++ b/community/eterm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=eterm pkgver=0.9.6 pkgrel=1 pkgdesc="A vt102 terminal emulator intended as a replacement for xterm." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.eterm.org/" license=('custom') depends=('freetype2>=2.3.5' 'libast>=0.7' 'libxmu' 'libxres') diff --git a/community/etherape/PKGBUILD b/community/etherape/PKGBUILD index eb7e1f045..2e3713e94 100644 --- a/community/etherape/PKGBUILD +++ b/community/etherape/PKGBUILD @@ -7,7 +7,7 @@ pkgname=etherape pkgver=0.9.12 pkgrel=1 pkgdesc="A graphical network monitor for various OSI layers and protocols" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://etherape.sourceforge.net/" license=('GPL2') depends=('libgnomeui' 'libpcap') diff --git a/community/etl/PKGBUILD b/community/etl/PKGBUILD index 844fd7b56..25aaf34b9 100644 --- a/community/etl/PKGBUILD +++ b/community/etl/PKGBUILD @@ -4,7 +4,7 @@ pkgname=etl pkgver=0.04.14 pkgrel=1 pkgdesc="VoriaETL: C++ STL complementory multiplatform template library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://synfig.org" license=('GPL2') depends=() diff --git a/community/evas-svn/PKGBUILD b/community/evas-svn/PKGBUILD index f62152dc8..514616637 100755 --- a/community/evas-svn/PKGBUILD +++ b/community/evas-svn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=evas-svn pkgver=62798 pkgrel=1 pkgdesc="A hardware-accelerated canvas API for X-Windows" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('e17-libs-svn' 'e17-svn') url="http://www.enlightenment.org" license=('BSD') diff --git a/community/exim/PKGBUILD b/community/exim/PKGBUILD index 37ae39bdc..e5a90878c 100644 --- a/community/exim/PKGBUILD +++ b/community/exim/PKGBUILD @@ -5,7 +5,7 @@ pkgname=exim pkgver=4.77 pkgrel=1 pkgdesc="A Message Transfer Agent" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.exim.org/" license=('GPL') backup=(etc/mail/aliases etc/mail/exim.conf \ diff --git a/community/expac/PKGBUILD b/community/expac/PKGBUILD index f34b2938a..325f89f12 100644 --- a/community/expac/PKGBUILD +++ b/community/expac/PKGBUILD @@ -5,7 +5,7 @@ pkgname=expac pkgver=0.05 pkgrel=1 pkgdesc="pacman database extraction utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://github.com/falconindy/expac" license=('GPL') depends=('pacman') diff --git a/community/ext3grep/PKGBUILD b/community/ext3grep/PKGBUILD index 4e70cdc95..b44e3a01e 100644 --- a/community/ext3grep/PKGBUILD +++ b/community/ext3grep/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ext3grep pkgver=0.10.2 pkgrel=1 pkgdesc="A tool to investigate an ext3 file system for deleted content and possibly recover it" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/ext3grep/" license=('GPL') depends=('gcc-libs') diff --git a/community/extrema/PKGBUILD b/community/extrema/PKGBUILD index 317ea83d4..ad0e8a6b1 100644 --- a/community/extrema/PKGBUILD +++ b/community/extrema/PKGBUILD @@ -5,7 +5,7 @@ pkgname=extrema pkgver=4.4.5 pkgrel=1 pkgdesc='Extrema is a powerful visualization and data analysis tool.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://exsitewebware.com/extrema/index.html' license=('GPL') depends=('wxgtk' 'zlib' 'libxml2' 'libpng') diff --git a/community/extremetuxracer/PKGBUILD b/community/extremetuxracer/PKGBUILD index 7206154f9..5a7561b7f 100644 --- a/community/extremetuxracer/PKGBUILD +++ b/community/extremetuxracer/PKGBUILD @@ -7,7 +7,7 @@ pkgname=extremetuxracer pkgver=0.4 pkgrel=2 pkgdesc="Downhill racing game starring Tux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.extremetuxracer.com" license=('GPL') depends=('sdl_mixer' 'tcl>=8.5.0' 'mesa' 'libpng>=1.4.0' 'freetype2' 'libxi' 'libxmu') diff --git a/community/extundelete/PKGBUILD b/community/extundelete/PKGBUILD index 6f34fb6d0..9d28c5acb 100644 --- a/community/extundelete/PKGBUILD +++ b/community/extundelete/PKGBUILD @@ -6,7 +6,7 @@ pkgname=extundelete pkgver=0.2.0 pkgrel=1 pkgdesc="Utility for recovering deleted files from ext2, ext3 or ext4 partitions by parsing the journal" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://extundelete.sourceforge.net" license=('GPL') makedepends=('e2fsprogs') diff --git a/community/fail2ban/PKGBUILD b/community/fail2ban/PKGBUILD index a776cdd82..ee0328324 100644 --- a/community/fail2ban/PKGBUILD +++ b/community/fail2ban/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc="Bans IPs after too many failed authentification attempts against common daemons" url="http://www.fail2ban.org/" license=("GPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('python2' 'iptables') backup=('etc/fail2ban/fail2ban.conf' 'etc/fail2ban/jail.conf') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2 \ diff --git a/community/fatrat/PKGBUILD b/community/fatrat/PKGBUILD index 70fdfc489..5eeeb3155 100644 --- a/community/fatrat/PKGBUILD +++ b/community/fatrat/PKGBUILD @@ -4,7 +4,7 @@ pkgname=fatrat pkgver=1.1.3 pkgrel=5 pkgdesc="QT4 based download manager with support for HTTP, FTP, SFTP, BitTorrent, rapidshare and more" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://fatrat.dolezel.info/" license=('GPL') depends=('gloox' 'curl' 'qt' 'libtorrent-rasterbar') diff --git a/community/fb-client/PKGBUILD b/community/fb-client/PKGBUILD index 3b52e6968..c629faea3 100644 --- a/community/fb-client/PKGBUILD +++ b/community/fb-client/PKGBUILD @@ -3,7 +3,7 @@ pkgname=fb-client pkgver=0.9 pkgrel=1 pkgdesc="Client for paste.xinu.at" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://paste.xinu.at" license=('GPL3') depends=('curl') diff --git a/community/fbdump/PKGBUILD b/community/fbdump/PKGBUILD index 1d26f0436..9fece9574 100644 --- a/community/fbdump/PKGBUILD +++ b/community/fbdump/PKGBUILD @@ -5,7 +5,7 @@ pkgname=fbdump pkgver=0.4.2 pkgrel=2 pkgdesc="captures the contents of the visible portion of the Linux framebuffer to stdout" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.rcdrummond.net/fbdump/" license=("GPL") depends=(glibc) diff --git a/community/fbgetty/PKGBUILD b/community/fbgetty/PKGBUILD index 67d344aa9..3741aa404 100644 --- a/community/fbgetty/PKGBUILD +++ b/community/fbgetty/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.1.698 pkgrel=3 license=("GPL") pkgdesc="fbgetty is a console getty like mingetty, which supports framebuffers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://projects.meuh.org/fbgetty" source=('http://projects.meuh.org/fbgetty/downloads/fbgetty-'$pkgver'.tar.gz') md5sums=('1705bc0f8f1e03fe50d324ba84ac4e56') diff --git a/community/fbgrab/PKGBUILD b/community/fbgrab/PKGBUILD index 6ea2b333c..21b937397 100644 --- a/community/fbgrab/PKGBUILD +++ b/community/fbgrab/PKGBUILD @@ -4,7 +4,7 @@ pkgname=fbgrab pkgver=1.0 pkgrel=5 pkgdesc="A framebuffer screenshot grabber" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://hem.bredband.net/gmogmo/fbgrab/" license=("GPL") depends=('libpng') diff --git a/community/fbpanel/PKGBUILD b/community/fbpanel/PKGBUILD index 0a33d0f38..08a89da45 100644 --- a/community/fbpanel/PKGBUILD +++ b/community/fbpanel/PKGBUILD @@ -7,7 +7,7 @@ pkgname=fbpanel pkgver=6.1 pkgrel=2 pkgdesc="NetWM compliant desktop panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://fbpanel.sourceforge.net/" depends=('gtk2') license=('GPL') diff --git a/community/fbreader/PKGBUILD b/community/fbreader/PKGBUILD index a5df7c37f..7ce430482 100644 --- a/community/fbreader/PKGBUILD +++ b/community/fbreader/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fbreader pkgver=0.12.10 pkgrel=2 pkgdesc="An e-book reader for Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.fbreader.org/" license=('GPL') depends=('fribidi' 'bzip2' 'curl' 'gtk2' 'liblinebreak' 'sqlite3') diff --git a/community/fbshot/PKGBUILD b/community/fbshot/PKGBUILD index 752c53faa..48d6ce110 100644 --- a/community/fbshot/PKGBUILD +++ b/community/fbshot/PKGBUILD @@ -4,7 +4,7 @@ pkgname=fbshot pkgver=0.3 pkgrel=3 pkgdesc="Takes screenshots (PNG) from your framebuffer device (e.g. console)." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.sfires.net/fbshot/" license=('GPL') depends=('libpng') diff --git a/community/fbv/PKGBUILD b/community/fbv/PKGBUILD index e1cc13f69..9c86079ca 100644 --- a/community/fbv/PKGBUILD +++ b/community/fbv/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fbv pkgver=1.0b pkgrel=4 pkgdesc="FrameBuffer image viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://s-tech.elsat.net.pl/fbv/" license=('GPL') depends=('libpng' 'libungif' 'libjpeg') diff --git a/community/fceux/PKGBUILD b/community/fceux/PKGBUILD new file mode 100644 index 000000000..fe25715f7 --- /dev/null +++ b/community/fceux/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 49458 2011-06-16 19:25:29Z angvp $ +# Maintainer: Eric Belanger <eric@archlinux.org> +# Contributor: Jo Christian Bergsks <jcberg@gmail.com> + +pkgname=fceux +pkgver=2.1.5 +pkgrel=1 +arch=('i686' 'x86_64' 'mips64el') +url="http://fceux.com/web/home.html" +pkgdesc="A fast and ultra-compatible NES/Famicom emulator with SDL, OpenGL and SVGALIB support" +license=('GPL') +depends=('sdl' 'lua' 'gtk2') +makedepends=('scons' 'mesa') +optdepends=('xchm: for viewing the help manual') +provides=('fceu' 'gfceux') +replaces=('fceu' 'gfceux') +source=(http://downloads.sourceforge.net/fceultra/$pkgname-${pkgver}.src.tar.bz2 \ + fceux.desktop fceux.png) + +build() { + cd "${srcdir}/fceu$pkgver" + scons + + sed -i "s|/usr/local|${pkgdir}/usr|" SConstruct + scons install + + install -D -m644 bin/$pkgname.chm "${pkgdir}/usr/share/doc/$pkgname/$pkgname.chm" + install -D -m644 "$srcdir"/fceux.desktop "${pkgdir}"/usr/share/applications/fceux.desktop + install -D -m644 "$srcdir"/fceux.png "$pkgdir"/usr/share/pixmaps/fceux.png +} + +# vim:set ts=2 sw=2 et: +md5sums=('e8b20e62bbbb061b1a59d51b47c827bd' + '30baf915c936926fa50f59d8276f6575' + '3fe753731ac46b5fee528b1f73abd3e3') diff --git a/community/fcgiwrap/PKGBUILD b/community/fcgiwrap/PKGBUILD index e3c68122d..a4d9e558e 100644 --- a/community/fcgiwrap/PKGBUILD +++ b/community/fcgiwrap/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.0.3 _gitrev='2e301c8' pkgrel=2 pkgdesc='A simple server for running CGI applications over FastCGI.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://nginx.localdomain.pl/wiki/FcgiWrap' license=('MIT') depends=('fcgi' 'spawn-fcgi') diff --git a/community/fcrackzip/PKGBUILD b/community/fcrackzip/PKGBUILD index 58f3821ba..745b6f4fa 100644 --- a/community/fcrackzip/PKGBUILD +++ b/community/fcrackzip/PKGBUILD @@ -5,7 +5,7 @@ pkgname=fcrackzip pkgver=1.0 pkgrel=2 pkgdesc="A zip file password cracker" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.goof.com/pcg/marc/$pkgname.html" license=('GPL') depends=(glibc) diff --git a/community/fcron/PKGBUILD b/community/fcron/PKGBUILD index 4bb0100c0..67b8e026f 100755 --- a/community/fcron/PKGBUILD +++ b/community/fcron/PKGBUILD @@ -8,7 +8,7 @@ pkgname=fcron pkgver=3.0.6 pkgrel=4 pkgdesc="feature-rich cron implementation" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://fcron.free.fr" license=('GPL') depends=('sh') diff --git a/community/fdm/PKGBUILD b/community/fdm/PKGBUILD index 5546042ad..bf8c6bad6 100644 --- a/community/fdm/PKGBUILD +++ b/community/fdm/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=3 pkgdesc='Program to fetch and deliver mail' url='http://fdm.sourceforge.net/' license=('BSD') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!makeflags') depends=('openssl' 'tdb' 'zlib') source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz" diff --git a/community/fdupes/PKGBUILD b/community/fdupes/PKGBUILD index 220f932ac..00e0bf8f0 100644 --- a/community/fdupes/PKGBUILD +++ b/community/fdupes/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fdupes pkgver=1.40 pkgrel=5 pkgdesc="a program for identifying or deleting duplicate files residing within specified directories" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://premium.caribe.net/~adrian2/fdupes.html" license=('MIT') source=(http://premium.caribe.net/~adrian2/programs/$pkgname-$pkgver.tar.gz LICENSE) diff --git a/community/ffmpeg2theora/PKGBUILD b/community/ffmpeg2theora/PKGBUILD index 093fe7296..c9516ffb6 100644 --- a/community/ffmpeg2theora/PKGBUILD +++ b/community/ffmpeg2theora/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ffmpeg2theora pkgver=0.28 pkgrel=1 pkgdesc="A simple converter to create Ogg Theora files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.v2v.cc/~j/ffmpeg2theora/" license=('GPL3') depends=('ffmpeg') diff --git a/community/fftw2/PKGBUILD b/community/fftw2/PKGBUILD index e46a44e49..2980711e9 100644 --- a/community/fftw2/PKGBUILD +++ b/community/fftw2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fftw2 pkgver=2.1.5 pkgrel=5 pkgdesc="A C subroutine library for computing the discrete Fourier transform (DFT)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.fftw.org/" license=('GPL2') depends=('glibc') diff --git a/community/fgetty/PKGBUILD b/community/fgetty/PKGBUILD index f179868f2..ae47360e9 100644 --- a/community/fgetty/PKGBUILD +++ b/community/fgetty/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fgetty pkgver=0.7 pkgrel=3 pkgdesc="A mingetty stripped of the printfs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.fefe.de/fgetty/' license=('GPL') depends=() diff --git a/community/filezilla/PKGBUILD b/community/filezilla/PKGBUILD index d81c7e6f8..8a3c1cc65 100644 --- a/community/filezilla/PKGBUILD +++ b/community/filezilla/PKGBUILD @@ -6,7 +6,7 @@ pkgname=filezilla pkgver=3.5.1 pkgrel=2 pkgdesc="Fast and reliable FTP, FTPS and SFTP client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://filezilla-project.org/" license=('GPL') depends=('dbus-core' 'xdg-utils' 'wxgtk' 'libidn' 'hicolor-icon-theme' 'sqlite3') diff --git a/community/fillets-ng/PKGBUILD b/community/fillets-ng/PKGBUILD index 07a38da89..31b822703 100644 --- a/community/fillets-ng/PKGBUILD +++ b/community/fillets-ng/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.0.0 pkgrel=1 pkgdesc="A port of the wonderful puzzle game Fish Fillets" url="http://fillets.sf.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('fillets-ng-data' 'lua' 'fribidi' 'gcc-libs' 'libx11' 'sdl_mixer' 'sdl_ttf' 'sdl_image' 'desktop-file-utils') install=$pkgname.install diff --git a/community/fio/PKGBUILD b/community/fio/PKGBUILD index ef83cbd82..4918aecde 100644 --- a/community/fio/PKGBUILD +++ b/community/fio/PKGBUILD @@ -3,7 +3,7 @@ pkgname=fio pkgver=1.50 pkgrel=2 pkgdesc="I/O tool meant to be used both for benchmark and stress/hardware verification" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://freshmeat.net/projects/fio" license=('GPL2') makedepends=('gcc') diff --git a/community/fish/PKGBUILD b/community/fish/PKGBUILD index 6be578f71..204b07db1 100644 --- a/community/fish/PKGBUILD +++ b/community/fish/PKGBUILD @@ -8,11 +8,10 @@ pkgname=fish pkgver=1.23.1 pkgrel=4 pkgdesc="User friendly shell intended mostly for interactive use" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://fishshell.com/" license=("GPL" "LGPL" "BSD" "MIT") depends=('ncurses' 'bc') -makedepends=('doxygen') install=fish.install source=(http://fishshell.com/files/$pkgver/$pkgname-$pkgver.tar.bz2) md5sums=('ead6b7c6cdb21f35a3d4aa1d5fa596f1') diff --git a/community/fityk/PKGBUILD b/community/fityk/PKGBUILD index 143d60c29..669d2d45d 100644 --- a/community/fityk/PKGBUILD +++ b/community/fityk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fityk pkgver=1.1.1 pkgrel=2 pkgdesc='A program for nonlinear fitting of analytical functions to data.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.unipress.waw.pl/fityk/' license=('GPL') depends=('xylib' 'shared-mime-info' 'lua' 'gnuplot') # wxgtk supplied by statically linked wxWidgets diff --git a/community/flac123/PKGBUILD b/community/flac123/PKGBUILD index b6849ca3e..1f79c330c 100644 --- a/community/flac123/PKGBUILD +++ b/community/flac123/PKGBUILD @@ -6,7 +6,7 @@ pkgname=flac123 pkgver=0.0.11 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') pkgdesc="A command-line program for playing FLAC audio files" url="http://flac-tools.sourceforge.net/" diff --git a/community/flam3/PKGBUILD b/community/flam3/PKGBUILD index ec2af543b..f9207b5ff 100644 --- a/community/flam3/PKGBUILD +++ b/community/flam3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=flam3 pkgver=3.0 pkgrel=1 pkgdesc="Tools to create/display fractal flames: algorithmically generated images and animations" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://flam3.com/" license=('GPL') depends=('libjpeg' 'libpng' 'libxml2') diff --git a/community/flashrom/PKGBUILD b/community/flashrom/PKGBUILD index 442622f79..10eb5391f 100644 --- a/community/flashrom/PKGBUILD +++ b/community/flashrom/PKGBUILD @@ -9,7 +9,7 @@ pkgver=0.9.4 pkgrel=1 pkgdesc="Utility for reading, writing, erasing and verifying flash ROM chips" url="http://www.coreboot.org/Flashrom" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libftdi') makedepends=('zlib' 'pciutils') diff --git a/community/fldiff/PKGBUILD b/community/fldiff/PKGBUILD index ab25a3240..a61574824 100644 --- a/community/fldiff/PKGBUILD +++ b/community/fldiff/PKGBUILD @@ -7,7 +7,7 @@ pkgname=fldiff pkgver=1.1 pkgrel=6 pkgdesc="graphical diff program" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.easysw.com/~mike/fldiff/" license=('GPL') install=fldiff.install diff --git a/community/flickcurl/PKGBUILD b/community/flickcurl/PKGBUILD index c168a2416..6171fed8b 100644 --- a/community/flickcurl/PKGBUILD +++ b/community/flickcurl/PKGBUILD @@ -5,7 +5,7 @@ pkgname=flickcurl pkgver=1.21 pkgrel=2 pkgdesc="C library for the Flickr API" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://librdf.org/flickcurl/" license=('GPL') depends=(raptor) diff --git a/community/flightgear-atlas/PKGBUILD b/community/flightgear-atlas/PKGBUILD index 8cbd7a8ee..ee36ea5ae 100644 --- a/community/flightgear-atlas/PKGBUILD +++ b/community/flightgear-atlas/PKGBUILD @@ -4,7 +4,7 @@ pkgname=flightgear-atlas pkgver=0.3.1 pkgrel=3 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') pkgdesc="aims to produce and display high quality charts of the world for users of FlightGear." depends=('flightgear-data' 'libpng' 'libjpeg') makedepends=('simgear') diff --git a/community/flightgear/PKGBUILD b/community/flightgear/PKGBUILD index 439e47c9c..54909e46e 100644 --- a/community/flightgear/PKGBUILD +++ b/community/flightgear/PKGBUILD @@ -7,7 +7,7 @@ pkgname=flightgear pkgver=2.4.0 pkgrel=1 pkgdesc="An open-source, multi-platform flight simulator" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) depends=('simgear' 'libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion') # 'flightgear-data') makedepends=('boost') license=("GPL") diff --git a/community/flobopuyo/PKGBUILD b/community/flobopuyo/PKGBUILD index 81c5ecd31..bafe5e88d 100644 --- a/community/flobopuyo/PKGBUILD +++ b/community/flobopuyo/PKGBUILD @@ -7,7 +7,7 @@ pkgname=flobopuyo pkgver=0.20 pkgrel=5 pkgdesc="Clone of the famous PuyoPuyo" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freshmeat.net/projects/$pkgname/" license=('GPL') depends=('libgl' 'sdl_image' 'sdl_mixer') diff --git a/community/flowcanvas/PKGBUILD b/community/flowcanvas/PKGBUILD index ce145f515..913d3ebf9 100644 --- a/community/flowcanvas/PKGBUILD +++ b/community/flowcanvas/PKGBUILD @@ -7,7 +7,7 @@ pkgname=flowcanvas pkgver=0.7.1 pkgrel=2 pkgdesc="Gtkmm/Gnomecanvasmm widget for boxes-and-lines style environments" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://drobilla.net/software/flowcanvas/" depends=('libgnomecanvasmm' 'graphviz') makedepends=('boost' 'python2') diff --git a/community/floyd/PKGBUILD b/community/floyd/PKGBUILD index d41e42daa..7c711c677 100644 --- a/community/floyd/PKGBUILD +++ b/community/floyd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=floyd pkgver=2.0.1 pkgrel=3 pkgdesc="displays system load with pulse of keyboard LED" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.asahi-net.or.jp/~pi9s-nnb/floyd/" license=("GPL") depends=(glibc) diff --git a/community/fltk2/PKGBUILD b/community/fltk2/PKGBUILD index 32d4dc562..38e95673e 100644 --- a/community/fltk2/PKGBUILD +++ b/community/fltk2/PKGBUILD @@ -6,7 +6,7 @@ pkgver=2.0 _pkgver=2.0.x-r7725 pkgrel=6 pkgdesc="Graphical user interface toolkit for X" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://www.fltk.org/" depends=('libjpeg' 'libpng' 'gcc-libs' 'libxft' 'libxext' 'libxi' 'libxinerama') diff --git a/community/flumotion/PKGBUILD b/community/flumotion/PKGBUILD index 216069a0f..c8380c111 100644 --- a/community/flumotion/PKGBUILD +++ b/community/flumotion/PKGBUILD @@ -6,7 +6,7 @@ pkgname=flumotion pkgver=0.9.1 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="A streaming media server" url="http://www.flumotion.net" options=('!libtool') diff --git a/community/flvstreamer/PKGBUILD b/community/flvstreamer/PKGBUILD index 3b3dbe44a..eba656fd5 100644 --- a/community/flvstreamer/PKGBUILD +++ b/community/flvstreamer/PKGBUILD @@ -4,7 +4,7 @@ pkgver=2.1c1 pkgrel=2 pkgdesc="Open source command-line RTMP client" url="http://savannah.nongnu.org/projects/flvstreamer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('glibc') source=("http://mirrors.zerg.biz/nongnu/flvstreamer/source/$pkgname-$pkgver.tar.gz") diff --git a/community/fonteditfs/PKGBUILD b/community/fonteditfs/PKGBUILD index 6fa46a195..45d4a5832 100644 --- a/community/fonteditfs/PKGBUILD +++ b/community/fonteditfs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fonteditfs pkgver=1.2 pkgrel=2 pkgdesc="console font editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://fonteditfs.sourceforge.net/" license=('GPL') depends=(ncurses) diff --git a/community/fotoxx/PKGBUILD b/community/fotoxx/PKGBUILD index efa4b5a35..d224ef865 100644 --- a/community/fotoxx/PKGBUILD +++ b/community/fotoxx/PKGBUILD @@ -4,7 +4,7 @@ pkgver=11.10 pkgrel=1 pkgdesc="A program for improving image files made with a digital camera" url="http://kornelix.squarespace.com/fotoxx" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') depends=('gimp-ufraw' 'perl-exiftool' 'xdg-utils' 'desktop-file-utils') optdepends=('mashup: for composing pages to print from within fotoxx' 'brasero: for burning') diff --git a/community/fox/PKGBUILD b/community/fox/PKGBUILD index 6a84a73b6..0d3dde1d5 100644 --- a/community/fox/PKGBUILD +++ b/community/fox/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fox pkgver=1.6.43 pkgrel=1 pkgdesc="Free Objects for X: GUI Toolkit for C++" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.fox-toolkit.org/" license=('LGPL' 'custom') depends=('bzip2' 'libxcursor' 'libxft' 'libxrandr' 'mesa' 'libxi' 'libpng' 'libtiff') diff --git a/community/fpc/PKGBUILD b/community/fpc/PKGBUILD index 6402d9213..fa5ffb86e 100644 --- a/community/fpc/PKGBUILD +++ b/community/fpc/PKGBUILD @@ -10,7 +10,7 @@ pkgname=fpc pkgver=2.4.4 pkgrel=3 pkgdesc="The Free Pascal Compiler is a Turbo Pascal 7.0 and Delphi compatible 32bit Pascal Compiler. It comes with fully TP 7.0 compatible run-time library." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.freepascal.org/" license=('GPL' 'LGPL' 'custom') backup=("etc/fpc.cfg") diff --git a/community/freecol/PKGBUILD b/community/freecol/PKGBUILD index 8cb0333b1..a3dcccc95 100644 --- a/community/freecol/PKGBUILD +++ b/community/freecol/PKGBUILD @@ -7,7 +7,7 @@ pkgname=freecol pkgver=0.10.3 pkgrel=1 pkgdesc="A turn-based strategy game based on Colonization" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.freecol.org/" license=('GPL') depends=('java-runtime') diff --git a/community/freedroid/PKGBUILD b/community/freedroid/PKGBUILD index 8b3a38bcf..cb0fb2e7b 100644 --- a/community/freedroid/PKGBUILD +++ b/community/freedroid/PKGBUILD @@ -5,7 +5,7 @@ pkgname=freedroid pkgver=1.0.2 pkgrel=5 pkgdesc="a clone of the classic game 'Paradroid' on Commodore 64" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freedroid.sourceforge.net/" license=('GPL') depends=('glibc' 'sdl_image' 'sdl_mixer') diff --git a/community/freedroidrpg/PKGBUILD b/community/freedroidrpg/PKGBUILD index 6b3aea594..924719f14 100644 --- a/community/freedroidrpg/PKGBUILD +++ b/community/freedroidrpg/PKGBUILD @@ -7,7 +7,7 @@ pkgname='freedroidrpg' pkgver=0.14.1 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') # depends=('sdl_mixer' 'sdl_image' 'libogg' 'libvorbis' 'libgl' 'freedroidrpg-data') depends=('sdl_mixer' 'sdl_image' 'libogg' 'libvorbis' 'libgl') optdepends=('python2' 'espeak') diff --git a/community/freehdl/PKGBUILD b/community/freehdl/PKGBUILD index d0ca0d067..028b94e54 100644 --- a/community/freehdl/PKGBUILD +++ b/community/freehdl/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.0.8 _qucsver=0.0.16 pkgrel=1 pkgdesc='An open-source (C++ generating) VHDL simulator' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://freehdl.seul.org' license=('GPL') depends=('gcc-libs' 'libtool' 'perl') diff --git a/community/freeimage/PKGBUILD b/community/freeimage/PKGBUILD index 9e6020ad2..bae03e29c 100644 --- a/community/freeimage/PKGBUILD +++ b/community/freeimage/PKGBUILD @@ -7,7 +7,7 @@ pkgname=freeimage pkgver=3.15.0 pkgrel=1 pkgdesc="Library project for developers who would like to support popular graphics image formats." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'custom:FIPL') url="http://freeimage.sourceforge.net/" depends=('gcc-libs') diff --git a/community/freemat/PKGBUILD b/community/freemat/PKGBUILD index a62515e89..432119a77 100644 --- a/community/freemat/PKGBUILD +++ b/community/freemat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=freemat pkgver=4.0 pkgrel=4 pkgdesc="A free environment for rapid engineering, scientific prototyping and data processing" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freemat.sourceforge.net" license=('GPL') depends=('qt' 'umfpack' 'arpack' 'libmatio' 'ffcall' 'fftw' 'blas' 'lapack' 'mesa' 'portaudio') diff --git a/community/freeradius-client/PKGBUILD b/community/freeradius-client/PKGBUILD index fb5feaa16..849a965c3 100644 --- a/community/freeradius-client/PKGBUILD +++ b/community/freeradius-client/PKGBUILD @@ -6,7 +6,7 @@ pkgname=freeradius-client pkgver=1.1.6 pkgrel=3 pkgdesc="FreeRADIUS Client Software" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wiki.freeradius.org/Radiusclient" license=('BSD') depends=('sh') diff --git a/community/freeradius/PKGBUILD b/community/freeradius/PKGBUILD index 5b69d0db0..b8b323ff3 100644 --- a/community/freeradius/PKGBUILD +++ b/community/freeradius/PKGBUILD @@ -6,7 +6,7 @@ pkgname=freeradius pkgver=2.1.11 pkgrel=1 pkgdesc="The premier open source RADIUS server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.freeradius.org/" license=("GPL") depends=('openssl' 'krb5' 'pth' 'libldap>=2.4.18' 'net-snmp' 'pam' diff --git a/community/freerdp/PKGBUILD b/community/freerdp/PKGBUILD index 6c8447953..9a22f7aa4 100644 --- a/community/freerdp/PKGBUILD +++ b/community/freerdp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=freerdp pkgver=0.8.2 pkgrel=3 pkgdesc="Free RDP client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freerdp.sourceforge.net" license=('GPL') depends=('openssl' 'libxcursor' 'libcups' 'alsa-lib') diff --git a/community/freetalk/PKGBUILD b/community/freetalk/PKGBUILD index ce4fb138d..c3fa25722 100644 --- a/community/freetalk/PKGBUILD +++ b/community/freetalk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=freetalk pkgver=3.2 pkgrel=4 pkgdesc="A console based Jabber client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/freetalk" license=('GPL') depends=('loudmouth' 'guile') diff --git a/community/freevo/PKGBUILD b/community/freevo/PKGBUILD index c07ec2f34..00530e5e4 100644 --- a/community/freevo/PKGBUILD +++ b/community/freevo/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=6 pkgdesc="Freevo is an open-source home theatre PC platform based on Linux and a number of open-source audio/video tools." url="http://freevo.sourceforge.net/" license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('lame' 'flac' 'faad2' 'cdparanoia' 'vorbis-tools' \ 'fbset' 'smpeg' 'pil' 'python-pysqlite-legacy' \ 'pyxml' 'lsdvd' 'twisted' 'python2-numpy' 'python-pygame'\ diff --git a/community/freewrl/PKGBUILD b/community/freewrl/PKGBUILD index 0e8da2e6c..da9e1278d 100644 --- a/community/freewrl/PKGBUILD +++ b/community/freewrl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=freewrl pkgver=1.22.10 pkgrel=7 pkgdesc="VRML viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freewrl.sourceforge.net/" license=('GPL') depends=('java-runtime' 'libxaw' 'glew' 'freeglut' 'curl' 'freetype2' 'imlib2' 'sox' diff --git a/community/frei0r-plugins/PKGBUILD b/community/frei0r-plugins/PKGBUILD index 3dec10ae0..0abb74191 100644 --- a/community/frei0r-plugins/PKGBUILD +++ b/community/frei0r-plugins/PKGBUILD @@ -5,7 +5,7 @@ pkgname=frei0r-plugins pkgver=1.3 pkgrel=2 pkgdesc="frei0r is a minimalistic plugin API for video sources and filters." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.piksel.org/frei0r" license=('GPL') depends=('gcc-libs' 'gavl>=1.0.0' 'opencv') diff --git a/community/fswebcam/PKGBUILD b/community/fswebcam/PKGBUILD index 73d890c07..3f8fa34ba 100644 --- a/community/fswebcam/PKGBUILD +++ b/community/fswebcam/PKGBUILD @@ -7,7 +7,7 @@ pkgname=fswebcam pkgver=20110717 pkgrel=1 pkgdesc="Tiny and flexible webcam app." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.firestorm.cx/fswebcam" license=('GPL') depends=('gd') diff --git a/community/fuseiso/PKGBUILD b/community/fuseiso/PKGBUILD index 39ee9bffc..359d7f3d1 100644 --- a/community/fuseiso/PKGBUILD +++ b/community/fuseiso/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fuseiso pkgver=20070708 pkgrel=4 pkgdesc="FUSE module to mount ISO filesystem images" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/fuseiso/" license=('GPL') depends=('fuse' 'glib2' 'zlib') diff --git a/community/fxdesktop/PKGBUILD b/community/fxdesktop/PKGBUILD index a4414397b..e233b6a50 100644 --- a/community/fxdesktop/PKGBUILD +++ b/community/fxdesktop/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fxdesktop pkgver=0.1.12 pkgrel=3 pkgdesc="Lightweight Desktop Environment" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/fxdesktop/" license=('GPL') depends=('fox>=1.6.0' ) diff --git a/community/fxprocessview/PKGBUILD b/community/fxprocessview/PKGBUILD index 4ef1d3f0f..294f7e494 100644 --- a/community/fxprocessview/PKGBUILD +++ b/community/fxprocessview/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fxprocessview pkgver=0.5.0 pkgrel=3 pkgdesc="Process Viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('fox>=1.4.0') url="http://code.google.com/p/fxdesktop/" diff --git a/community/g2sc/PKGBUILD b/community/g2sc/PKGBUILD index a026abe98..ee558d366 100644 --- a/community/g2sc/PKGBUILD +++ b/community/g2sc/PKGBUILD @@ -4,7 +4,7 @@ pkgname=g2sc pkgver=0.2 pkgrel=3 pkgdesc="Samba gtk2 client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://sourceforge.net/projects/g2sc" depends=('smbclient' 'gtk2') diff --git a/community/gadmin-samba/PKGBUILD b/community/gadmin-samba/PKGBUILD index 316fb2624..0b8826e10 100644 --- a/community/gadmin-samba/PKGBUILD +++ b/community/gadmin-samba/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.3.2 pkgrel=1 pkgdesc="An easy to use GTK+ frontend for the SAMBA file and print server" url="http://gadmintools.flippedweb.com/index.php?option=com_content&task=view&id=16&Itemid=30" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gtk2' 'samba') replaces=('gsambad') diff --git a/community/galago-daemon/PKGBUILD b/community/galago-daemon/PKGBUILD index da038b2c7..259462d17 100644 --- a/community/galago-daemon/PKGBUILD +++ b/community/galago-daemon/PKGBUILD @@ -6,7 +6,7 @@ pkgname=galago-daemon pkgver=0.5.1 pkgrel=3 pkgdesc="Galago presence daemon" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.galago-project.org" depends=('libgalago') diff --git a/community/gambas2/PKGBUILD b/community/gambas2/PKGBUILD index cfdf2ea1f..fb5de8318 100644 --- a/community/gambas2/PKGBUILD +++ b/community/gambas2/PKGBUILD @@ -22,7 +22,7 @@ pkgname=('gambas2-meta' 'gambas2-runtime' 'gambas2-devel' 'gambas2-ide' 'gambas2 pkgver=2.23.1 pkgrel=3 pkgdesc="A free development environment based on a Basic interpreter." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gambas.sourceforge.net" depends=('libffi' 'bzip2' 'libfbclient' 'zlib' 'kdelibs3' 'libgl' 'gtk2' 'librsvg' 'xdg-utils' 'postgresql-libs>=8.4.1' 'libmysqlclient' 'unixodbc' 'sqlite2' 'sqlite3' diff --git a/community/gambas3/PKGBUILD b/community/gambas3/PKGBUILD index df6e45db6..28a1bf9c9 100644 --- a/community/gambas3/PKGBUILD +++ b/community/gambas3/PKGBUILD @@ -15,7 +15,7 @@ pkgname=('gambas3-runtime' 'gambas3-devel' 'gambas3-ide' 'gambas3-script' 'gamba pkgver=2.99.6 pkgrel=1 pkgdesc="A free development environment based on a Basic interpreter." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gambas.sourceforge.net/" license=('GPL') groups=('gambas3') diff --git a/community/gammu/PKGBUILD b/community/gammu/PKGBUILD index 7ede3ead2..4ce5a1dfe 100644 --- a/community/gammu/PKGBUILD +++ b/community/gammu/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gammu pkgver=1.30.0 pkgrel=1 pkgdesc="GNU All Mobile Management Utilities" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wammu.eu/" license=('GPL') depends=('bluez' 'curl' 'libmysqlclient' diff --git a/community/garmindev/PKGBUILD b/community/garmindev/PKGBUILD index 5cae2fff7..20e58ce94 100644 --- a/community/garmindev/PKGBUILD +++ b/community/garmindev/PKGBUILD @@ -6,7 +6,7 @@ pkgname=garmindev pkgver=0.3.4 pkgrel=4 pkgdesc="Garmin Device Drivers for QlandkarteGT" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.qlandkarte.org/" license=('GPL') depends=('libusb') diff --git a/community/gavl/PKGBUILD b/community/gavl/PKGBUILD index fefbd6ef5..f578cbe3e 100644 --- a/community/gavl/PKGBUILD +++ b/community/gavl/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gavl pkgver=1.2.0 pkgrel=1 pkgdesc="A low level library, upon which multimedia APIs can be built." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gmerlin.sourceforge.net/" license=('GPL') depends=('glibc') diff --git a/community/gcc-avr/PKGBUILD b/community/gcc-avr/PKGBUILD index db977e4d4..045c1f17f 100644 --- a/community/gcc-avr/PKGBUILD +++ b/community/gcc-avr/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gcc-avr pkgver=4.6.2 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=('binutils-avr>=2.21' 'cloog' 'ppl' 'gcc-libs>=4.6.0' 'libmpc') diff --git a/community/gcolor2/PKGBUILD b/community/gcolor2/PKGBUILD index b9b30a4df..29c03c09a 100644 --- a/community/gcolor2/PKGBUILD +++ b/community/gcolor2/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gcolor2 pkgver=0.4 pkgrel=6 pkgdesc="A simple GTK+2 color selector" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gcolor2.sf.net/" license=('GPL') depends=('gtk2') @@ -19,8 +19,9 @@ md5sums=('02de9d925ad5921522685f402caec3ec' '9523da11b40dd167964d1b50b40250d5') build() { - cd ${srcdir}/${pkgname}-${pkgver} - [ "$CARCH" == "x86_64" ] && (patch -p1 < ../gcolor2-0.4-amd64.patch) + cd $srcdir/$pkgname-$pkgver + [ "$CARCH" == "x86_64" ] && (patch -p1 < ../gcolor2-0.4-amd64.patch) + [ "$CARCH" == "mips64el" ] && (patch -p1 < ../gcolor2-0.4-amd64.patch) # fix fs#25904 sed -i 's/\[:space:\]/[&]/g' configure diff --git a/community/gcompris/PKGBUILD b/community/gcompris/PKGBUILD index 1a4edef85..3c93e3764 100644 --- a/community/gcompris/PKGBUILD +++ b/community/gcompris/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gcompris pkgver=11.09 pkgrel=1 pkgdesc="Educational software suite comprising of numerous activities for children aged 2 to 10" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gcompris.net/" license=('GPL3') depends=('pygtk' 'pyxml' 'librsvg' 'gnet' 'python-pysqlite' diff --git a/community/gdal/PKGBUILD b/community/gdal/PKGBUILD index 9bf40aea8..ca383e756 100644 --- a/community/gdal/PKGBUILD +++ b/community/gdal/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gdal pkgver=1.8.0 pkgrel=6 pkgdesc="A translator library for raster geospatial data formats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gdal.org/" license=('custom') depends=('curl' 'geos' 'giflib' 'hdf5' 'libgeotiff' 'libjpeg' 'libpng' 'libtiff' 'netcdf' 'python2' 'python2-numpy' 'cfitsio' 'sqlite3' 'libmysqlclient' 'postgresql-libs') diff --git a/community/gdk-pixbuf/PKGBUILD b/community/gdk-pixbuf/PKGBUILD index ada0fc41c..c9a34153a 100644 --- a/community/gdk-pixbuf/PKGBUILD +++ b/community/gdk-pixbuf/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gdk-pixbuf pkgver=0.22.0 pkgrel=7 pkgdesc="Image loading and manipulation library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gtk.org/" license=('GPL' 'LGPL') depends=('gtk' 'libtiff' 'libpng') diff --git a/community/gdmap/PKGBUILD b/community/gdmap/PKGBUILD index 6295d89d7..c96091612 100644 --- a/community/gdmap/PKGBUILD +++ b/community/gdmap/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gdmap pkgver=0.8.1 pkgrel=2 pkgdesc="Tool to inspect the used space of folders." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gdmap.sourceforge.net" license=('GPL') depends=('gtk2' 'glib2' 'libxml2') diff --git a/community/geany-plugins/PKGBUILD b/community/geany-plugins/PKGBUILD index 5efc9f951..297355163 100644 --- a/community/geany-plugins/PKGBUILD +++ b/community/geany-plugins/PKGBUILD @@ -7,7 +7,7 @@ pkgname=geany-plugins pkgver=0.21 pkgrel=2 pkgdesc="Combined plugins release for Geany" -arch=('x86_64' 'i686') +arch=('i686' 'x86_64' 'mips64el') url="http://plugins.geany.org/" license=('GPL') depends=('geany' 'lua' 'gtkspell' 'libwebkit' 'hicolor-icon-theme' 'ctpl' 'gpgme') diff --git a/community/geany/PKGBUILD b/community/geany/PKGBUILD index 017d718b2..509b0be3a 100644 --- a/community/geany/PKGBUILD +++ b/community/geany/PKGBUILD @@ -8,7 +8,7 @@ pkgname=geany pkgver=0.21 pkgrel=2 pkgdesc="Fast and lightweight IDE" -arch=('x86_64' 'i686') +arch=('i686' 'x86_64' 'mips64el') url="http://www.geany.org/" license=('GPL') depends=('gtk2' 'hicolor-icon-theme' 'desktop-file-utils' 'python2') diff --git a/community/gebabbel/PKGBUILD b/community/gebabbel/PKGBUILD index 76a1a7e8f..4fdf952ca 100644 --- a/community/gebabbel/PKGBUILD +++ b/community/gebabbel/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gebabbel pkgver=0.4 pkgrel=4 pkgdesc="GUI for gpsbabel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gebabbel.sourceforge.net/" license=('GPL2') depends=('qt' 'gpsbabel') diff --git a/community/gecko-mediaplayer/PKGBUILD b/community/gecko-mediaplayer/PKGBUILD index 03eda7afa..a8c45c588 100644 --- a/community/gecko-mediaplayer/PKGBUILD +++ b/community/gecko-mediaplayer/PKGBUILD @@ -8,7 +8,7 @@ pkgname=gecko-mediaplayer pkgver=1.0.4 pkgrel=1 pkgdesc='Browser plugin that uses gnome-mplayer to play media in a web browser.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://code.google.com/p/gecko-mediaplayer/' license=('GPL') depends=("gnome-mplayer>=${pkgver}" 'dbus-glib') diff --git a/community/geda-gaf/PKGBUILD b/community/geda-gaf/PKGBUILD index 95408aeea..052da1b58 100644 --- a/community/geda-gaf/PKGBUILD +++ b/community/geda-gaf/PKGBUILD @@ -5,7 +5,7 @@ pkgname=geda-gaf pkgver=1.6.2 pkgrel=1 pkgdesc="gEDA/gaf suite - Contains gschem, gnetlist, gsymcheck, gattrib, utilities and documentation from the gEDA project" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gpleda.org" license=('GPL') depends=('gtk2' 'guile' 'libstroke' 'shared-mime-info' 'hicolor-icon-theme') diff --git a/community/gedit-plugins/PKGBUILD b/community/gedit-plugins/PKGBUILD index 967663b78..507bd09b0 100644 --- a/community/gedit-plugins/PKGBUILD +++ b/community/gedit-plugins/PKGBUILD @@ -8,7 +8,7 @@ pkgname=gedit-plugins pkgver=3.2.1 pkgrel=1 pkgdesc="Set of plugins for gedit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://live.gnome.org/GeditPlugins" depends=('gedit' 'dbus-python') diff --git a/community/gen2shp/PKGBUILD b/community/gen2shp/PKGBUILD index 70b85e360..9b6efc712 100644 --- a/community/gen2shp/PKGBUILD +++ b/community/gen2shp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gen2shp pkgver=0.3.1 pkgrel=5 pkgdesc='Converts ArcInfo generate format to shapefile format' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.intevation.de/~jan/gen2shp/' license=('GPL') depends=('shapelib') diff --git a/community/geos/PKGBUILD b/community/geos/PKGBUILD index aa97623f2..876062876 100644 --- a/community/geos/PKGBUILD +++ b/community/geos/PKGBUILD @@ -7,7 +7,7 @@ pkgname=geos pkgver=3.3.0 pkgrel=1 pkgdesc="A C++ port of the Java Topology Suite" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://trac.osgeo.org/geos/" license=('LGPL') depends=('gcc-libs') diff --git a/community/gerbv/PKGBUILD b/community/gerbv/PKGBUILD index 30a87c5aa..b1e36f236 100644 --- a/community/gerbv/PKGBUILD +++ b/community/gerbv/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="an open source Gerber file (RS-274X only) viewer" url="http://gerbv.gpleda.org/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gtk2' 'shared-mime-info' 'hicolor-icon-theme') optdepends=('gdk-pixbuf: export of images' 'cairo: for better graphics') install=$pkgname.install diff --git a/community/ghdl/PKGBUILD b/community/ghdl/PKGBUILD index 24e3e88be..78d49c218 100644 --- a/community/ghdl/PKGBUILD +++ b/community/ghdl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ghdl _gccver=4.3.4 pkgver=0.29 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc='A complete VHDL simulator, using GCC technology.' url='http://ghdl.free.fr/' license=('GPL') diff --git a/community/ghemical/PKGBUILD b/community/ghemical/PKGBUILD index 480b0b14c..122c319b6 100644 --- a/community/ghemical/PKGBUILD +++ b/community/ghemical/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2.99.2 pkgrel=5 pkgdesc="Computational chemistry package." license=("GPL") -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://bioinformatics.org/ghemical/ghemical/" depends=('libghemical>=2.99' 'liboglappth>=0.98' 'mesa' 'libglade' 'libxmu' 'ttf-dejavu' 'gtkglext' 'openbabel') makedepends=('pkgconfig' 'intltool>=0.40.0' 'gettext') diff --git a/community/gigedit/PKGBUILD b/community/gigedit/PKGBUILD index 9ce2cef8e..dbe6c5f79 100644 --- a/community/gigedit/PKGBUILD +++ b/community/gigedit/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gigedit pkgver=0.2.0 pkgrel=1 pkgdesc="Gigasampler instrument editor" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.linuxsampler.org/" license=('GPL') depends=('linuxsampler' 'gtkmm' 'libsigc++') diff --git a/community/giggle/PKGBUILD b/community/giggle/PKGBUILD index fc69f80fb..c74572d99 100644 --- a/community/giggle/PKGBUILD +++ b/community/giggle/PKGBUILD @@ -6,7 +6,7 @@ pkgname=giggle pkgver=0.6.1 pkgrel=1 pkgdesc="Git repository viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/giggle" license=('GPL') depends=('git' 'gtksourceview3' 'vte3') diff --git a/community/gimmage/PKGBUILD b/community/gimmage/PKGBUILD index df4a2e149..8d7e22b30 100644 --- a/community/gimmage/PKGBUILD +++ b/community/gimmage/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gimmage pkgver=0.2.3 pkgrel=3 pkgdesc="A gtkmm image viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gimmage.berlios.de" license=('GPL') depends=('gtkmm' 'curl' 'file') diff --git a/community/gimp-plugin-fblur/PKGBUILD b/community/gimp-plugin-fblur/PKGBUILD index 1332871e0..7ce30dac6 100644 --- a/community/gimp-plugin-fblur/PKGBUILD +++ b/community/gimp-plugin-fblur/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gimp-plugin-fblur pkgver=3.2.6 pkgrel=2 pkgdesc="Makes out of focus with luminosity and depth" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://registry.gimp.org/node/1444" license=('GPL') depends=('gimp' 'fftw') diff --git a/community/gimp-plugin-lqr/PKGBUILD b/community/gimp-plugin-lqr/PKGBUILD index dc95c85c4..f63da3e06 100644 --- a/community/gimp-plugin-lqr/PKGBUILD +++ b/community/gimp-plugin-lqr/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gimp-plugin-lqr pkgver=0.7.1 pkgrel=3 pkgdesc="Plugin for The GIMP providing Liquid Rescale" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://liquidrescale.wikidot.com/" license=('GPL') depends=('gimp' 'liblqr>=0.4.1') diff --git a/community/gimp-plugin-mathmap/PKGBUILD b/community/gimp-plugin-mathmap/PKGBUILD index cc78ce075..aa74b4ce6 100644 --- a/community/gimp-plugin-mathmap/PKGBUILD +++ b/community/gimp-plugin-mathmap/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gimp-plugin-mathmap pkgver=1.3.5 pkgrel=1 pkgdesc="A GIMP plug-in which allows distortion of images specified by mathematical formulae" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.complang.tuwien.ac.at/schani/mathmap/" license=('GPL') depends=('gimp' 'gsl' 'gtksourceview2' 'fftw' 'giflib') diff --git a/community/gimp-plugin-wavelet-decompose/PKGBUILD b/community/gimp-plugin-wavelet-decompose/PKGBUILD index 15fdf6542..1d8355c3b 100644 --- a/community/gimp-plugin-wavelet-decompose/PKGBUILD +++ b/community/gimp-plugin-wavelet-decompose/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gimp-plugin-wavelet-decompose pkgver=0.1.2 pkgrel=1 pkgdesc="Wavelet decompose plugin for Gimp" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://registry.gimp.org/node/11742" license=('GPL') depends=('gimp') diff --git a/community/gimp-plugin-wavelet-denoise/PKGBUILD b/community/gimp-plugin-wavelet-denoise/PKGBUILD index 965c516d1..ed22f4c46 100644 --- a/community/gimp-plugin-wavelet-denoise/PKGBUILD +++ b/community/gimp-plugin-wavelet-denoise/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gimp-plugin-wavelet-denoise pkgver=0.3.1 pkgrel=1 pkgdesc="Tool to reduce noise in each channel of an image separately" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://registry.gimp.org/node/4235" license=('GPL') depends=('gimp') diff --git a/community/ginac/PKGBUILD b/community/ginac/PKGBUILD index 38164439b..594ecc9d2 100644 --- a/community/ginac/PKGBUILD +++ b/community/ginac/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ginac pkgver=1.6.1 pkgrel=2 pkgdesc='A set of libraries that allow the creation of integrated systems that embed symbolic manipulations.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.ginac.de' license=('GPL') depends=('cln') diff --git a/community/gitg/PKGBUILD b/community/gitg/PKGBUILD index 1bb606e4e..53f0c8ac6 100644 --- a/community/gitg/PKGBUILD +++ b/community/gitg/PKGBUILD @@ -10,7 +10,7 @@ pkgname=gitg pkgver=0.2.5 pkgrel=1 pkgdesc='A GIT repository viewer based on GTK+' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://trac.novowork.com/gitg/' license=('GPL') depends=('dconf' 'gtksourceview3' 'git' 'desktop-file-utils' 'gsettings-desktop-schemas' \ diff --git a/community/gkrellm/PKGBUILD b/community/gkrellm/PKGBUILD index 332336010..1b7db8aaf 100644 --- a/community/gkrellm/PKGBUILD +++ b/community/gkrellm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gkrellm pkgver=2.3.5 pkgrel=1 pkgdesc="System monitor package for GTK2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://members.dslextreme.com/users/billw/gkrellm/gkrellm.html" license=('GPL3') depends=('gtk2' 'openssl' 'libsm' 'lm_sensors') diff --git a/community/gl-117/PKGBUILD b/community/gl-117/PKGBUILD index 997649912..5bd83db8d 100644 --- a/community/gl-117/PKGBUILD +++ b/community/gl-117/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gl-117 pkgver=1.3.2 pkgrel=4 pkgdesc="An action flight simulator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.heptargon.de/gl-117/gl-117.html" license=("GPL") depends=('freeglut' 'sdl_mixer' 'libxmu' 'libxi') diff --git a/community/glitz/PKGBUILD b/community/glitz/PKGBUILD index 8aaa876c0..c35025815 100644 --- a/community/glitz/PKGBUILD +++ b/community/glitz/PKGBUILD @@ -4,7 +4,7 @@ pkgname=glitz pkgver=0.5.6 pkgrel=2 pkgdesc="OpenGL image compositing library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cairographics.org/" license=('BSD') depends=('libgl') diff --git a/community/gliv/PKGBUILD b/community/gliv/PKGBUILD index 9875b6eb0..267699f89 100644 --- a/community/gliv/PKGBUILD +++ b/community/gliv/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gliv pkgver=1.9.7 pkgrel=1 pkgdesc="OpenGL image viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://guichaz.free.fr/gliv/" license=('GPL') depends=('gtkglext') diff --git a/community/glob2/PKGBUILD b/community/glob2/PKGBUILD index efd6ac298..b6b9aba01 100644 --- a/community/glob2/PKGBUILD +++ b/community/glob2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=glob2 pkgver=0.9.4.4 pkgrel=9 pkgdesc="RTS game which minimizes micro-management by automatically assigning tasks to units" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.globulation2.org/" license=('GPL3') depends=('boost-libs' 'sdl_net' 'sdl_image' 'sdl_ttf' 'libvorbis' 'speex' 'mesa' \ diff --git a/community/glom/PKGBUILD b/community/glom/PKGBUILD index 9ecedf1dd..0c7a1dfd0 100644 --- a/community/glom/PKGBUILD +++ b/community/glom/PKGBUILD @@ -7,7 +7,7 @@ pkgname=glom pkgver=1.19.15 pkgrel=1 pkgdesc="An easy-to-use database designer and user interface" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.glom.org/" license=('GPL') depends=('gettext' 'boost-libs' 'libgdamm' 'libxml++' 'python2-gobject' 'libepc' 'goocanvasmm' 'gtksourceviewmm' 'evince' 'postgresql') diff --git a/community/gloox/PKGBUILD b/community/gloox/PKGBUILD index df4c6569a..c20c168d2 100644 --- a/community/gloox/PKGBUILD +++ b/community/gloox/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gloox pkgver=1.0 pkgrel=2 pkgdesc="C++ libraries for development of Jabber client/component/server" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://camaya.net/gloox" options=('!libtool') license=("GPL") diff --git a/community/glpng/PKGBUILD b/community/glpng/PKGBUILD index 0c57c67ae..d1fe5160f 100644 --- a/community/glpng/PKGBUILD +++ b/community/glpng/PKGBUILD @@ -5,7 +5,7 @@ pkgname=glpng pkgver=1.45 pkgrel=4 pkgdesc="Toolkit for loading PNG images as OpenGL textures" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.fifi.org/doc/libglpng-dev/glpng.html" license=('custom') depends=('libpng' 'libgl') diff --git a/community/gluon/PKGBUILD b/community/gluon/PKGBUILD index 88aaacd92..0ffa19b42 100644 --- a/community/gluon/PKGBUILD +++ b/community/gluon/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.71.0 _pkgver=0.71 pkgrel=2 pkgdesc="A free and open source platform for creating and distributing games" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gluon.gamingfreedom.org/" license=('LGPL') depends=('qt' 'kdebase-runtime' 'libsndfile' 'openal' 'alure' 'attica') diff --git a/community/gmerlin-avdecoder/PKGBUILD b/community/gmerlin-avdecoder/PKGBUILD index 3b7fec8d2..ab098bb45 100644 --- a/community/gmerlin-avdecoder/PKGBUILD +++ b/community/gmerlin-avdecoder/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gmerlin-avdecoder pkgver=1.1.0 pkgrel=2 pkgdesc="Media decoding library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gmerlin.sourceforge.net/avdec_frame.html" license=('GPL') depends=('gmerlin' 'openjpeg' 'flac' 'smbclient' 'libmad' 'libmpcdec' 'speex' diff --git a/community/gmerlin/PKGBUILD b/community/gmerlin/PKGBUILD index 3acbafcfa..5b71ad824 100644 --- a/community/gmerlin/PKGBUILD +++ b/community/gmerlin/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gmerlin pkgver=1.0.0 pkgrel=3 pkgdesc="Multimedia architecture for Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://openmovieeditor.sourceforge.net/HomePage" license=('GPL') depends=('gavl' 'libxml2' 'gtk2' 'libxv' 'mesa' 'libvisual' 'libcdio>=0.82' 'musicbrainz' 'mjpegtools') diff --git a/community/gmic/PKGBUILD b/community/gmic/PKGBUILD index bc618282e..5c6e5ac1e 100644 --- a/community/gmic/PKGBUILD +++ b/community/gmic/PKGBUILD @@ -9,7 +9,7 @@ pkgname=('gmic' 'gimp-plugin-gmic') pkgver=1.5.0.4 pkgrel=1 pkgdesc="image procession framework" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom:CeCILL') url="http://gmic.sourceforge.net" makedepends=('gimp' 'fftw' 'lapack' 'opencv' 'graphicsmagick' 'openexr' 'imagemagick') diff --git a/community/gmime22/PKGBUILD b/community/gmime22/PKGBUILD index 12d5d75df..29233ed33 100644 --- a/community/gmime22/PKGBUILD +++ b/community/gmime22/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gmime22 pkgver=2.2.26 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/gmrun/PKGBUILD b/community/gmrun/PKGBUILD index d5d961018..eb04be66c 100644 --- a/community/gmrun/PKGBUILD +++ b/community/gmrun/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gmrun pkgver=0.9.2 pkgrel=3 pkgdesc="A simple program which provides a run program window" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sf.net/projects/gmrun" license=('GPL') depends=('gtk2' 'popt') diff --git a/community/gnash/PKGBUILD b/community/gnash/PKGBUILD index dbb756e2c..509f37798 100644 --- a/community/gnash/PKGBUILD +++ b/community/gnash/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=gnash pkgname=(gnash-common gnash-gtk) pkgver=0.8.9 pkgrel=4 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.gnu.org/software/gnash/" license=(GPL3) makedepends=(curl giflib libldap sdl agg libjpeg libpng libtool diff --git a/community/gnofract4d/PKGBUILD b/community/gnofract4d/PKGBUILD index 4d8b5b0dd..b29cf52b1 100644 --- a/community/gnofract4d/PKGBUILD +++ b/community/gnofract4d/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnofract4d pkgver=3.14 pkgrel=1 pkgdesc='A fractal browser with PyGTK gui' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://gnofract4d.sourceforge.net' license=('custom') depends=('pygtk' 'libjpeg' 'libpng' 'shared-mime-info') diff --git a/community/gnome-commander/PKGBUILD b/community/gnome-commander/PKGBUILD index 0555e3a39..db3a22678 100644 --- a/community/gnome-commander/PKGBUILD +++ b/community/gnome-commander/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gnome-commander pkgver=1.2.8.14 pkgrel=1 pkgdesc="A graphical two-pane filemanager for Gnome" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nongnu.org/gcmd/" license=('GPL') depends=('libgnomeui' 'gnome-vfs' 'gconf' 'python2' 'libsm') diff --git a/community/gnome-do/PKGBUILD b/community/gnome-do/PKGBUILD index 08563abfa..45fa60629 100644 --- a/community/gnome-do/PKGBUILD +++ b/community/gnome-do/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gnome-do pkgver=0.8.5 pkgrel=1 pkgdesc="A launcher application for gnome (like Launchy or Katapult)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://do.davebsd.com/" license=('GPL3') depends=('ndesk-dbus-glib' 'gnome-desktop-sharp' 'mono-addins' 'gtk2' 'gnome-vfs-sharp' diff --git a/community/gnome-mplayer/PKGBUILD b/community/gnome-mplayer/PKGBUILD index a77f142bb..5671d5e30 100644 --- a/community/gnome-mplayer/PKGBUILD +++ b/community/gnome-mplayer/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gnome-mplayer pkgver=1.0.4 pkgrel=1 pkgdesc='A simple MPlayer GUI.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://gnome-mplayer.googlecode.com/' license=('GPL') depends=('mplayer' 'dbus-glib' 'libnotify' 'gtk2' 'hicolor-icon-theme' 'dconf') diff --git a/community/gnome-packagekit/PKGBUILD b/community/gnome-packagekit/PKGBUILD index 29b970d39..5b3439648 100644 --- a/community/gnome-packagekit/PKGBUILD +++ b/community/gnome-packagekit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-packagekit pkgver=3.2.1 pkgrel=1 pkgdesc='Collection of graphical tools for PackageKit to be used in the GNOME desktop' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.packagekit.org/' license=('GPL') depends=('dconf' 'desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libnotify' diff --git a/community/gnome-ppp/PKGBUILD b/community/gnome-ppp/PKGBUILD index 7b8c94ae3..35c27216c 100644 --- a/community/gnome-ppp/PKGBUILD +++ b/community/gnome-ppp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gnome-ppp pkgver=0.3.23 pkgrel=7 pkgdesc="A GNOME 2 WvDial frontend" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnomefiles.org/app.php?soft_id=41" license=('GPL2') depends=('libglade' 'wvdial') diff --git a/community/gnome-settings-daemon-updates/PKGBUILD b/community/gnome-settings-daemon-updates/PKGBUILD index ba1159032..47cfe0b7b 100644 --- a/community/gnome-settings-daemon-updates/PKGBUILD +++ b/community/gnome-settings-daemon-updates/PKGBUILD @@ -6,7 +6,7 @@ pkgname=$_pkgname-updates pkgver=3.2.0 pkgrel=1 pkgdesc="Updates plugin for the GNOME Settings daemon" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnome.org" license=('GPL') depends=('gnome-packagekit' "$_pkgname") diff --git a/community/gnomesu/PKGBUILD b/community/gnomesu/PKGBUILD index 3cfd444da..89a456fa4 100644 --- a/community/gnomesu/PKGBUILD +++ b/community/gnomesu/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gnomesu pkgver=0.3.1 pkgrel=6 pkgdesc="A program that allows a user to su to root in a Gnome environment." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gtkfiles.org/app.php/GnomeSu" license=("GPL") depends=('libgnomeui' 'libzvt') diff --git a/community/gnonlin/PKGBUILD b/community/gnonlin/PKGBUILD index e19e97b99..f09a5e788 100644 --- a/community/gnonlin/PKGBUILD +++ b/community/gnonlin/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gnonlin pkgver=0.10.16 pkgrel=1 pkgdesc="A library for creating non-linear video editors" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gnonlin.sourceforge.net" depends=('gstreamer0.10>=0.10.30') makedepends=('python' 'gstreamer0.10-base-plugins>=0.10.30' 'pkgconfig') diff --git a/community/gnote/PKGBUILD b/community/gnote/PKGBUILD index 96d40fda7..07f1d6f7b 100644 --- a/community/gnote/PKGBUILD +++ b/community/gnote/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnote pkgver=0.8.1 pkgrel=1 pkgdesc="A note taking application." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/Gnote" license=('GPL3') depends=('gtkmm3' 'libxslt' 'hicolor-icon-theme' 'desktop-file-utils' 'dconf') diff --git a/community/gnubiff-gtk/PKGBUILD b/community/gnubiff-gtk/PKGBUILD index 2ebd79695..10f6fa42f 100644 --- a/community/gnubiff-gtk/PKGBUILD +++ b/community/gnubiff-gtk/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gnubiff-gtk pkgver=2.2.13 pkgrel=3 pkgdesc="Mail notification program that checks for mail and displays headers when new mail has arrived. GTK version." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gnubiff.sourceforge.net/" license=("GPL") depends=('libglade' 'openssl' 'popt') diff --git a/community/gnubiff/PKGBUILD b/community/gnubiff/PKGBUILD index 5dd567d8a..65b80b55c 100644 --- a/community/gnubiff/PKGBUILD +++ b/community/gnubiff/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gnubiff pkgver=2.2.13 pkgrel=2 pkgdesc="Mail notification program that checks for mail and displays headers when new mail has arrived" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gnubiff.sourceforge.net/" license=("GPL") depends=('libglade' 'gtk2' 'popt') diff --git a/community/gnucap/PKGBUILD b/community/gnucap/PKGBUILD index 1b9e4fec5..7c92073d1 100644 --- a/community/gnucap/PKGBUILD +++ b/community/gnucap/PKGBUILD @@ -8,7 +8,7 @@ pkgver=20091207 _pkgver=2009-12-07 pkgrel=2 pkgdesc="GNU Circuit Analysis Package" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gnucap.org/" license=('GPL') depends=('gcc-libs' 'readline') diff --git a/community/gnunet-gtk/PKGBUILD b/community/gnunet-gtk/PKGBUILD index 73c7293fe..0d987eb07 100644 --- a/community/gnunet-gtk/PKGBUILD +++ b/community/gnunet-gtk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gnunet-gtk pkgver=0.9.0pre3 pkgrel=3 pkgdesc="A frontend for GNUnet" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gnunet.org" options=('!libtool') license=('GPL') diff --git a/community/gnunet-setup/PKGBUILD b/community/gnunet-setup/PKGBUILD index 6e3585ef8..312818ec8 100644 --- a/community/gnunet-setup/PKGBUILD +++ b/community/gnunet-setup/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnunet-setup pkgver=0.9.0pre2 pkgrel=1 pkgdesc="setup tool for gnunet" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://gnunet.org/" license=('GPL') depends=('gnunet') diff --git a/community/gnunet/PKGBUILD b/community/gnunet/PKGBUILD index 2d573613f..85b880cfb 100644 --- a/community/gnunet/PKGBUILD +++ b/community/gnunet/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gnunet pkgver=0.9.0pre3 pkgrel=2 pkgdesc="A framework for secure peer-to-peer networking" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gnunet.org" license=('GPL') depends=('gmp' 'libgcrypt' 'libextractor' 'sqlite3' 'curl' 'libmicrohttpd') diff --git a/community/gnustep-back/PKGBUILD b/community/gnustep-back/PKGBUILD index 13d59afeb..b7402377d 100644 --- a/community/gnustep-back/PKGBUILD +++ b/community/gnustep-back/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gnustep-back pkgver=0.20.1 pkgrel=1 pkgdesc="The GNUstep GUI Backend" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnustep.org/" license=('LGPL') depends=(libgl libxmu gcc-libs freetype2 libart-lgpl) diff --git a/community/gnustep-base/PKGBUILD b/community/gnustep-base/PKGBUILD index f5ddf08ff..eca6580d0 100644 --- a/community/gnustep-base/PKGBUILD +++ b/community/gnustep-base/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gnustep-base pkgver=1.23.0 pkgrel=1 pkgdesc="The GNUstep base package" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnustep.org/" license=("GPL" "LGPL") depends=(libxslt avahi gmp gcc-libs openssl libffi gnustep-make gnutls) diff --git a/community/gnustep-gui/PKGBUILD b/community/gnustep-gui/PKGBUILD index a9ea47daf..677f7fd80 100644 --- a/community/gnustep-gui/PKGBUILD +++ b/community/gnustep-gui/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gnustep-gui pkgver=0.20.0 pkgrel=1 pkgdesc="The GNUstep GUI class library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnustep.org/" license=('LGPL') depends=(gnustep-base libungif aspell gcc-libs libcups audiofile libsndfile giflib libao) diff --git a/community/go/PKGBUILD b/community/go/PKGBUILD index 1b0a27fbe..fee111d1e 100644 --- a/community/go/PKGBUILD +++ b/community/go/PKGBUILD @@ -9,7 +9,7 @@ pkgver=r60.3 pkgrel=1 epoch=1 pkgdesc='Google Go compiler and tools (release version)' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://golang.org/" license=('custom') depends=('perl' 'ed') diff --git a/community/gobby/PKGBUILD b/community/gobby/PKGBUILD index b4171ea9d..140bd1cea 100644 --- a/community/gobby/PKGBUILD +++ b/community/gobby/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gobby pkgver=0.4.12 pkgrel=2 pkgdesc="A collaborative text editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gobby.0x539.de" license=('GPL') depends=('obby' 'libxml++' 'gtkmm' 'gnome-vfs' 'libbonobo' 'libgtksourceviewmm2' 'gtksourceview2') diff --git a/community/gocr/PKGBUILD b/community/gocr/PKGBUILD index e7e5386fe..846f0aa10 100644 --- a/community/gocr/PKGBUILD +++ b/community/gocr/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gocr pkgver=0.49 pkgrel=1 pkgdesc="Open-source character recognition (OCR)" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://jocr.sourceforge.net/index.html" license=('GPL') depends=('glibc' 'netpbm') diff --git a/community/gogglesmm/PKGBUILD b/community/gogglesmm/PKGBUILD index f38a3f005..27b4a9fb2 100644 --- a/community/gogglesmm/PKGBUILD +++ b/community/gogglesmm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gogglesmm pkgver=0.12.4 pkgrel=2 pkgdesc="Music Manager and Player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/gogglesmm/" license=('GPL3') install=gogglesmm.install diff --git a/community/goldendict/PKGBUILD b/community/goldendict/PKGBUILD index 2af68e389..a352891a3 100644 --- a/community/goldendict/PKGBUILD +++ b/community/goldendict/PKGBUILD @@ -6,7 +6,7 @@ pkgname=goldendict pkgver=1.0.1 pkgrel=4 pkgdesc="Feature-rich dictionary lookup program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://goldendict.berlios.de/" license=('GPL3') depends=('hunspell' 'libvorbis' 'libxtst' 'libzip' 'openssl' 'phonon') diff --git a/community/goocanvas/PKGBUILD b/community/goocanvas/PKGBUILD index 332b93004..b7812f256 100644 --- a/community/goocanvas/PKGBUILD +++ b/community/goocanvas/PKGBUILD @@ -6,7 +6,7 @@ pkgname=goocanvas pkgver=2.0.1 pkgrel=1 pkgdesc="A cairo canvas widget for GTK+" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://live.gnome.org/GooCanvas" options=('!libtool' 'docs') license=("LGPL") diff --git a/community/goocanvasmm/PKGBUILD b/community/goocanvasmm/PKGBUILD index 4a9c61c3c..caab2fc45 100755 --- a/community/goocanvasmm/PKGBUILD +++ b/community/goocanvasmm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=goocanvasmm pkgver=1.90.6 pkgrel=1 pkgdesc='C++ wrappers for goocanvas' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://ftp.gnome.org/pub/gnome/sources/goocanvasmm/' license=('GPL') depends=('goocanvas' 'gtkmm3') diff --git a/community/google-gadgets/PKGBUILD b/community/google-gadgets/PKGBUILD index 5e7d6c624..fbe77e1be 100644 --- a/community/google-gadgets/PKGBUILD +++ b/community/google-gadgets/PKGBUILD @@ -9,7 +9,7 @@ pkgver=0.11.2 _sover=1.0 _sobump=0.0.0 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/google-gadgets-for-linux/" license=('APACHE') makedepends=('gstreamer0.10-base-plugins' 'libwebkit' diff --git a/community/gource/PKGBUILD b/community/gource/PKGBUILD index 63e0ee8e5..b69c85d59 100644 --- a/community/gource/PKGBUILD +++ b/community/gource/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.37 pkgrel=1 pkgdesc="software version control visualization" license=(GPL3) -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url=http://code.google.com/p/gource/ depends=('ftgl' 'sdl' 'sdl_image' 'pcre' 'glew') source=(http://gource.googlecode.com/files/$pkgname-$pkgver.tar.gz) diff --git a/community/gpac/PKGBUILD b/community/gpac/PKGBUILD index a38817828..d5c09a1f6 100644 --- a/community/gpac/PKGBUILD +++ b/community/gpac/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gpac pkgver=0.4.5 pkgrel=8 pkgdesc="A multimedia framework based on the MPEG-4 Systems standard" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gpac.sourceforge.net" depends=('libxml2' 'wxgtk' 'alsa-lib' 'sdl' 'libmad' 'faad2' 'xvidcore' 'ffmpeg' 'freeglut') diff --git a/community/gpg-crypter/PKGBUILD b/community/gpg-crypter/PKGBUILD index 88787c6d0..2bd83c169 100644 --- a/community/gpg-crypter/PKGBUILD +++ b/community/gpg-crypter/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gpg-crypter pkgver=0.3.5 pkgrel=4 pkgdesc="A graphical front-end to GnuPG(GPG) using the GTK2 toolkit and libgpgme" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gpg-crypter.sourceforge.net/" license=('GPL') depends=('gtk2' 'gpgme') diff --git a/community/gphpedit/PKGBUILD b/community/gphpedit/PKGBUILD index 83287457c..963c8d44a 100644 --- a/community/gphpedit/PKGBUILD +++ b/community/gphpedit/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gphpedit pkgver=0.9.98RC1 pkgrel=2 pkgdesc="a scintilla/gnome based editor specialized on php-files" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('libgnomeui>=2.18.1-2' 'libgtkhtml>=2.11.0' 'desktop-file-utils' 'libwebkit') url="http://www.gphpedit.org/" diff --git a/community/gpicview/PKGBUILD b/community/gpicview/PKGBUILD index f09f60b3e..080e5ba07 100644 --- a/community/gpicview/PKGBUILD +++ b/community/gpicview/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gpicview pkgver=0.2.2 pkgrel=1 pkgdesc="Picture viewer of the LXDE Desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://lxde.org/" groups=('lxde') diff --git a/community/gprolog/PKGBUILD b/community/gprolog/PKGBUILD index 62b4f92ae..e65fcb8c7 100644 --- a/community/gprolog/PKGBUILD +++ b/community/gprolog/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gprolog pkgver=1.4.0 pkgrel=1 pkgdesc="GNU Prolog" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gprolog.org/" depends=('glibc') license=('GPL') diff --git a/community/gpsbabel/PKGBUILD b/community/gpsbabel/PKGBUILD index f10780c27..8aca0d76b 100644 --- a/community/gpsbabel/PKGBUILD +++ b/community/gpsbabel/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gpsbabel pkgver=1.4.2 pkgrel=3 pkgdesc="Reads, writes, and manipulates GPS waypoints in a variety of formats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gpsbabel.org" license=('GPL') depends=('libusb-compat' 'expat') diff --git a/community/gpsdrive/PKGBUILD b/community/gpsdrive/PKGBUILD index ac5ae29e5..23ec7eec9 100644 --- a/community/gpsdrive/PKGBUILD +++ b/community/gpsdrive/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gpsdrive pkgver=2.11 pkgrel=9 pkgdesc="A car (bike, ship, plane) navigation system" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://www.gpsdrive.de/" license=('GPL2') depends=('gtk2' 'gpsd' 'libxml2' 'curl' 'python2' 'boost-libs' 'gdal' 'mapnik' 'postgresql-libs' 'openstreetmap-map-icons-svn' diff --git a/community/gpsim/PKGBUILD b/community/gpsim/PKGBUILD index 809a2b973..c6b8536ca 100644 --- a/community/gpsim/PKGBUILD +++ b/community/gpsim/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gpsim pkgver=0.26.1 pkgrel=1 pkgdesc="A full-featured software simulator for Microchip PIC microcontrollers" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://gpsim.sourceforge.net/" license=(GPL) depends=('gtk2+extra' 'popt') diff --git a/community/gpsman/PKGBUILD b/community/gpsman/PKGBUILD index 329822ed9..c71be72fe 100644 --- a/community/gpsman/PKGBUILD +++ b/community/gpsman/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gpsman pkgver=6.4 pkgrel=4 pkgdesc="GPS Manager is a graphical GPS data manager for preparing, inspectiing and editing GPS data" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ncc.up.pt/gpsman" license=('GPL') depends=('tcl' 'tk') diff --git a/community/gpsmanshp/PKGBUILD b/community/gpsmanshp/PKGBUILD index 36e723e7e..66ee0e9d6 100644 --- a/community/gpsmanshp/PKGBUILD +++ b/community/gpsmanshp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gpsmanshp pkgver=1.2 pkgrel=4 pkgdesc='A Tcl package to read and write shapefiles' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.ncc.up.pt/gpsmanshp' license=('GPL') depends=('bash' 'tcl' 'shapelib') diff --git a/community/gputils/PKGBUILD b/community/gputils/PKGBUILD index f9a0af123..e80d6270d 100644 --- a/community/gputils/PKGBUILD +++ b/community/gputils/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gputils pkgver=0.13.7 pkgrel=2 pkgdesc="PIC Programming Utilities" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gputils.sourceforge.net/" license=('GPL') source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz) diff --git a/community/gq/PKGBUILD b/community/gq/PKGBUILD index f5ab49586..827bf915f 100644 --- a/community/gq/PKGBUILD +++ b/community/gq/PKGBUILD @@ -10,7 +10,7 @@ url="http://sourceforge.net/projects/gqclient" license=("GPL") depends=('libxml2' 'gtk2' 'libgnome-keyring' 'libglade' 'libldap>=2.4.18' 'libgpg-error' 'libgcrypt') makedepends=('intltool' 'pkgconfig') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') install=gq.install source=(http://downloads.sourceforge.net/sourceforge/gqclient/$pkgname-$pkgver.tar.gz) md5sums=('d7b1e183a3ecbd77aceea02d27f36b3e') diff --git a/community/grace/PKGBUILD b/community/grace/PKGBUILD index 3a74d0fb0..cbcc79361 100644 --- a/community/grace/PKGBUILD +++ b/community/grace/PKGBUILD @@ -7,7 +7,7 @@ pkgname=grace pkgver=5.1.22 pkgrel=5 pkgdesc="2D plotting tool" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://plasma-gate.weizmann.ac.il/Grace/" depends=('libjpeg' 'libpng' 'lesstif' 't1lib' 'netcdf') makedepends=('netcdf' 'fftw') diff --git a/community/grass/PKGBUILD b/community/grass/PKGBUILD index 8dca3a4dc..827eded8c 100644 --- a/community/grass/PKGBUILD +++ b/community/grass/PKGBUILD @@ -5,7 +5,7 @@ pkgname=grass pkgver=6.4.1 pkgrel=4 pkgdesc='Geographic Information System (GIS) used for geospatial data management and analysis, image processing, graphics/maps production, spatial modeling, and visualization.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://grass.itc.it/index.php' license=('GPL') depends=('gdal' 'tk' 'sqlite3' 'python2' 'mesa' 'swig' 'proj' 'libjpeg' 'libpng' 'libtiff' 'cfitsio') diff --git a/community/gri/PKGBUILD b/community/gri/PKGBUILD index 19ba1e79a..b06e31849 100644 --- a/community/gri/PKGBUILD +++ b/community/gri/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gri pkgver=2.12.23 pkgrel=1 pkgdesc="A script-based language for scientific graphics programming." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://gri.sourceforge.net/" depends=('perl') diff --git a/community/gromacs/PKGBUILD b/community/gromacs/PKGBUILD index aa23037a5..663fba240 100644 --- a/community/gromacs/PKGBUILD +++ b/community/gromacs/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc='A fast Molecular Dynamics program based on the GROMOS force field' url='http://www.gromacs.org/' license=("GPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('fftw' 'lesstif' 'perl' 'libxml2' 'libsm' 'libx11') options=('!libtool') source=(ftp://ftp.gromacs.org/pub/gromacs/${pkgname}-${pkgver}.tar.gz) diff --git a/community/grsync/PKGBUILD b/community/grsync/PKGBUILD index 299dba4b0..b57328678 100644 --- a/community/grsync/PKGBUILD +++ b/community/grsync/PKGBUILD @@ -6,7 +6,7 @@ pkgname=grsync pkgver=1.2.0 pkgrel=1 pkgdesc="GTK GUI for rsync" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.opbyte.it/grsync" license=('GPL') depends=('gtk2' 'rsync') diff --git a/community/gsasl/PKGBUILD b/community/gsasl/PKGBUILD index 60f87df16..21f8e330a 100644 --- a/community/gsasl/PKGBUILD +++ b/community/gsasl/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gsasl pkgver=1.6.1 pkgrel=3 pkgdesc="Simple Authentication and Security Layer framework and a few common SASL mechanisms" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://josefsson.org/gsasl/" license=("GPL") depends=('gnutls' 'libidn' 'krb5' 'libgcrypt') diff --git a/community/gshare/PKGBUILD b/community/gshare/PKGBUILD index bd17b933c..4d0e43561 100644 --- a/community/gshare/PKGBUILD +++ b/community/gshare/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gshare pkgver=0.94 pkgrel=4 pkgdesc="Easy file sharing for Gnome" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/gshare-project" license=('GPL') depends=('gtk-sharp-2' 'avahi' 'gnome-sharp') diff --git a/community/gshutdown/PKGBUILD b/community/gshutdown/PKGBUILD index 8bd709fb7..0279babbb 100644 --- a/community/gshutdown/PKGBUILD +++ b/community/gshutdown/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gshutdown pkgver=0.2 pkgrel=3 pkgdesc="An advanced shutdown utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gshutdown.tuxfamily.org" license=('GPL') depends=('libglade' 'libnotify') diff --git a/community/gsmartcontrol/PKGBUILD b/community/gsmartcontrol/PKGBUILD index b1a9ce27f..4dbce4da6 100644 --- a/community/gsmartcontrol/PKGBUILD +++ b/community/gsmartcontrol/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gsmartcontrol pkgver=0.8.6 pkgrel=1 pkgdesc="A graphical user interface for the smartctl hard disk drive health inspection tool." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gsmartcontrol.berlios.de/home/index.php/en/Home" license=('GPL3') depends=('smartmontools' 'pcre' 'gtkmm' 'libglademm' 'glib2') diff --git a/community/gsoap/PKGBUILD b/community/gsoap/PKGBUILD index d27b33dbc..aec8477fa 100644 --- a/community/gsoap/PKGBUILD +++ b/community/gsoap/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.8.3 pkgrel=1 pkgdesc="Offers an XML language binding to ease the development of SOAP/XML Web services in C and C/C++" url="http://www.cs.fsu.edu/~engelen/soap.html" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'custom') depends=('openssl' 'zlib' 'gcc-libs') makedepends=('autoconf' 'automake') diff --git a/community/gsql/PKGBUILD b/community/gsql/PKGBUILD index 83d73b846..93cf19ab0 100644 --- a/community/gsql/PKGBUILD +++ b/community/gsql/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=3 pkgdesc="Integrated database development tool for GNOME" url="http://gsql.org/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gtk2>=2.12' 'gtksourceview2' 'vte' 'libgnomeui' 'gconf' 'desktop-file-utils') makedepends=('libmysqlclient' 'postgresql-libs' 'libssh') optdepends=('libmysqlclient' 'postgresql-libs' 'libssh') diff --git a/community/gstm/PKGBUILD b/community/gstm/PKGBUILD index 985683dbe..b798a12c5 100644 --- a/community/gstm/PKGBUILD +++ b/community/gstm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gstm pkgver=1.2 pkgrel=2 pkgdesc="Gnome front-end to ssh tunneling" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/gstm/" license=('GPL') depends=('libgnomeui') diff --git a/community/gstreamermm/PKGBUILD b/community/gstreamermm/PKGBUILD index 3b08b1f56..a58ad18b4 100644 --- a/community/gstreamermm/PKGBUILD +++ b/community/gstreamermm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gstreamermm pkgver=0.10.6 pkgrel=1 pkgdesc="C++ interface for GStreamer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gstreamer.freedesktop.org/bindings/cplusplus.html" license=('LGPL') depends=('glibmm' 'gstreamer0.10-base>=0.10.25' 'libsigc++2.0' 'libxml++') diff --git a/community/gsynaptics/PKGBUILD b/community/gsynaptics/PKGBUILD index 137235be1..78919e90e 100644 --- a/community/gsynaptics/PKGBUILD +++ b/community/gsynaptics/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gsynaptics pkgver=0.9.16 pkgrel=2 pkgdesc="A settings tool for Synaptics touchpad driver" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gsynaptics.sourceforge.jp/" license=('GPL') depends=('libgnomeui' 'synaptics') diff --git a/community/gtk-aurora-engine/PKGBUILD b/community/gtk-aurora-engine/PKGBUILD index 61f67e87b..8ec53e4aa 100644 --- a/community/gtk-aurora-engine/PKGBUILD +++ b/community/gtk-aurora-engine/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gtk-aurora-engine pkgver=1.5.1 pkgrel=2 pkgdesc="gtk-engine: latest member of the clearlooks family" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnome-look.org/content/show.php/Aurora+Gtk+Engine?content=56438" license=('GPL') depends=('gtk2') diff --git a/community/gtk-chtheme/PKGBUILD b/community/gtk-chtheme/PKGBUILD index 5621dce39..254c97094 100644 --- a/community/gtk-chtheme/PKGBUILD +++ b/community/gtk-chtheme/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gtk-chtheme pkgver=0.3.1 pkgrel=6 pkgdesc="This little program lets you change your Gtk+ 2.0 theme. A better alternative to switch2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://plasmasturm.org/programs/gtk-chtheme/" depends=('gtk2') diff --git a/community/gtk-engine-murrine/PKGBUILD b/community/gtk-engine-murrine/PKGBUILD index b14fa5f7f..2d0470f06 100644 --- a/community/gtk-engine-murrine/PKGBUILD +++ b/community/gtk-engine-murrine/PKGBUILD @@ -8,7 +8,7 @@ pkgname=gtk-engine-murrine pkgver=0.98.1.1 pkgrel=2 pkgdesc="GTK2 engine to make your desktop look like a 'murrina', an italian word meaning the art glass works done by Venicians glass blowers." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cimitan.com/murrine/project/murrine" license=('LGPL3') depends=('gtk2') diff --git a/community/gtk-gnutella/PKGBUILD b/community/gtk-gnutella/PKGBUILD index 562ebbab1..4af3a9970 100644 --- a/community/gtk-gnutella/PKGBUILD +++ b/community/gtk-gnutella/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gtk-gnutella pkgver=0.97.1 pkgrel=1 pkgdesc="A Gnutella server/client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gtk-gnutella.sourceforge.net/" license=('GPL') depends=('gtk2') diff --git a/community/gtk-kde4/PKGBUILD b/community/gtk-kde4/PKGBUILD index 367b79207..9891313ae 100644 --- a/community/gtk-kde4/PKGBUILD +++ b/community/gtk-kde4/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtk-kde4 pkgver=0.9.5b pkgrel=2 pkgdesc='Allows you to change style, icons, font of GTK applications in KDE4.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://kde-look.org/content/show.php?content=74689' license=('GPL') depends=('kdebase-workspace' 'gtk-engines') diff --git a/community/gtk-rezlooks-engine/PKGBUILD b/community/gtk-rezlooks-engine/PKGBUILD index 66edded76..7cc9ab312 100644 --- a/community/gtk-rezlooks-engine/PKGBUILD +++ b/community/gtk-rezlooks-engine/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtk-rezlooks-engine pkgver=0.6 pkgrel=10 pkgdesc="Clean looking gtk theme engine based on the cairo-enabled CVS clearlooks engine code." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnome-look.org/content/show.php?content=39179" license=('GPL') depends=('gtk2') diff --git a/community/gtk-theme-switch2/PKGBUILD b/community/gtk-theme-switch2/PKGBUILD index a5b6b1015..9f4eb22d9 100644 --- a/community/gtk-theme-switch2/PKGBUILD +++ b/community/gtk-theme-switch2/PKGBUILD @@ -9,7 +9,7 @@ pkgver=2.1.0 pkgrel=1 pkgdesc="Gtk2 theme switcher" url="http://muhri.net/nav.php3?node=gts" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') depends=('gtk2') source=(http://ftp.de.debian.org/debian/pool/main/g/gtk-theme-switch/gtk-theme-switch_${pkgver}.orig.tar.gz) diff --git a/community/gtk2+extra/PKGBUILD b/community/gtk2+extra/PKGBUILD index 022689753..33a4e8348 100644 --- a/community/gtk2+extra/PKGBUILD +++ b/community/gtk2+extra/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtk2+extra pkgver=2.1.2 pkgrel=1 pkgdesc="GtkExtra is a useful set of widgets for creating GUI's for the Xwindows system using GTK+" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://gtkextra.sourceforge.net/" depends=('gtk2') license=('LGPL') diff --git a/community/gtk2_prefs/PKGBUILD b/community/gtk2_prefs/PKGBUILD index 33ac8a409..a968563a9 100644 --- a/community/gtk2_prefs/PKGBUILD +++ b/community/gtk2_prefs/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gtk2_prefs pkgver=0.4.1 pkgrel=2 pkgdesc="A GTK2 theme selector and font switcher" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gtk-win.sourceforge.net/home/index.php/en/Gtk2Prefs" license=("GPL") depends=('gtk2') diff --git a/community/gtk2fontsel/PKGBUILD b/community/gtk2fontsel/PKGBUILD index 9cabdf360..84e71b52a 100644 --- a/community/gtk2fontsel/PKGBUILD +++ b/community/gtk2fontsel/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtk2fontsel pkgver=0.1 pkgrel=3 pkgdesc="Font selection and preview tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gtk2fontsel.sourceforge.net/" license=('GPL') depends=('gtk2') diff --git a/community/gtk2hs-buildtools/PKGBUILD b/community/gtk2hs-buildtools/PKGBUILD index f6968e962..327d7ad40 100644 --- a/community/gtk2hs-buildtools/PKGBUILD +++ b/community/gtk2hs-buildtools/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Tools to build the Gtk2Hs suite of User Interface libraries." url="http://hackage.haskell.org/package/gtk2hs-buildtools" license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=('ghc' 'alex' 'happy') depends=('gmp') options=('strip') diff --git a/community/gtkballs/PKGBUILD b/community/gtkballs/PKGBUILD index 7dad82a94..0185aeaa1 100644 --- a/community/gtkballs/PKGBUILD +++ b/community/gtkballs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtkballs pkgver=3.1.5 pkgrel=4 pkgdesc="clone of Lines - logic game about balls" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gtkballs.antex.ru/" license=('GPL') depends=("gtk2") diff --git a/community/gtkdatabox/PKGBUILD b/community/gtkdatabox/PKGBUILD index e053f5ce9..c8b52ad00 100644 --- a/community/gtkdatabox/PKGBUILD +++ b/community/gtkdatabox/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtkdatabox pkgver=0.9.0.1 pkgrel=2 pkgdesc="A widget for the Gtk+ library designed to display large amounts of numerical data" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.eudoxos.net/gtk/gtkdatabox" options=('!libtool') license=("LGPL") diff --git a/community/gtkdialog/PKGBUILD b/community/gtkdialog/PKGBUILD index 4dc062315..ec5a6197f 100644 --- a/community/gtkdialog/PKGBUILD +++ b/community/gtkdialog/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtkdialog pkgver=0.8.0 pkgrel=1 pkgdesc="Gtkdialog is a small utility for fast and easy GUI building." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') #url="http://linux.pte.hu/~pipas/gtkdialog/" url="http://code.google.com/p/gtkdialog/" license=("GPL") diff --git a/community/gtkperf/PKGBUILD b/community/gtkperf/PKGBUILD index 88f6beb80..614e1a4c6 100644 --- a/community/gtkperf/PKGBUILD +++ b/community/gtkperf/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gtkperf pkgver=0.40 pkgrel=3 pkgdesc="An application designed to test GTK+ performance" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gtkperf.sourceforge.net" license=("GPL") depends=('gtk2') diff --git a/community/gtkwave/PKGBUILD b/community/gtkwave/PKGBUILD index 1a71ea7bc..48791d7ab 100644 --- a/community/gtkwave/PKGBUILD +++ b/community/gtkwave/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtkwave pkgver=3.3.27 pkgrel=1 pkgdesc='A wave viewer which reads LXT, LXT2, VZT, GHW and VCD/EVCD files' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://gtkwave.sourceforge.net' license=('GPL' 'MIT') depends=('bzip2' 'xz' 'gtk2') diff --git a/community/gtranslator/PKGBUILD b/community/gtranslator/PKGBUILD index b22836bc7..7ebff81e4 100644 --- a/community/gtranslator/PKGBUILD +++ b/community/gtranslator/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gtranslator pkgver=2.90.7 pkgrel=1 pkgdesc="An enhanced gettext po file editor for the GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://projects.gnome.org/gtranslator/" license=('GPL') depends=('desktop-file-utils' 'gdl' 'gettext' 'gtksourceview3' 'gtkspell' 'iso-codes' 'libgda4' 'libpeas' 'libunique' 'gsettings-desktop-schemas' 'hicolor-icon-theme' 'dconf') diff --git a/community/gts/PKGBUILD b/community/gts/PKGBUILD index 3af73a5ed..11bf99e21 100644 --- a/community/gts/PKGBUILD +++ b/community/gts/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gts pkgver=0.7.6 pkgrel=1 pkgdesc='GNU Triangulated Surface Library.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://gts.sourceforge.net/' license=('LGPL') depends=('glib2') diff --git a/community/gtypist/PKGBUILD b/community/gtypist/PKGBUILD index 19ceb6a79..84c32cba4 100644 --- a/community/gtypist/PKGBUILD +++ b/community/gtypist/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gtypist pkgver=2.9 pkgrel=1 pkgdesc="universal typing tutor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/gtypist/gtypist.html" license=("GPL") depends=('ncurses' 'perl') diff --git a/community/guake/PKGBUILD b/community/guake/PKGBUILD index 96bc8f472..91e7a7333 100644 --- a/community/guake/PKGBUILD +++ b/community/guake/PKGBUILD @@ -5,7 +5,7 @@ pkgname=guake pkgver=0.4.2 pkgrel=4 pkgdesc='is a drop-down terminal for Gnome Desktop Environment' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://guake-terminal.org' license=('GPL') depends=('python-notify' 'vte' 'gconf' 'python2-gconf' 'dbus-python' 'notification-daemon') diff --git a/community/guichan/PKGBUILD b/community/guichan/PKGBUILD index 787656283..fe5467a56 100644 --- a/community/guichan/PKGBUILD +++ b/community/guichan/PKGBUILD @@ -6,7 +6,7 @@ pkgname=guichan pkgver=0.8.2 pkgrel=2 pkgdesc="A portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://guichan.sourceforge.net/" license=('BSD') makedepends=('sdl_image' 'allegro' 'libgl' 'glut') diff --git a/community/guifications/PKGBUILD b/community/guifications/PKGBUILD index 7f2d5e375..837667cbe 100644 --- a/community/guifications/PKGBUILD +++ b/community/guifications/PKGBUILD @@ -6,7 +6,7 @@ pkgname=guifications pkgver=2.16 pkgrel=2 pkgdesc="A set of GUI popup notifications for pidgin" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://plugins.guifications.org/trac/wiki/Guifications" license=("GPL") depends=('pidgin') diff --git a/community/gummi/PKGBUILD b/community/gummi/PKGBUILD index a7bab40dc..03abb8db0 100644 --- a/community/gummi/PKGBUILD +++ b/community/gummi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gummi pkgver=0.5.8 pkgrel=4 pkgdesc='Simple LaTex editor for GTK users' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://gummi.midnightcoding.org/' license=('MIT') depends=('texlive-core' 'gtkspell' 'gtksourceview2' 'poppler-glib') diff --git a/community/gwenhywfar/PKGBUILD b/community/gwenhywfar/PKGBUILD index 96c247041..db3dee6f6 100644 --- a/community/gwenhywfar/PKGBUILD +++ b/community/gwenhywfar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gwenhywfar pkgver=4.3.0 pkgrel=1 pkgdesc="OS abstraction functions for various projects" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.aquamaniac.de" options=('!libtool') license=("LGPL") diff --git a/community/gxmessage/PKGBUILD b/community/gxmessage/PKGBUILD index afc4f56e9..6448e9840 100644 --- a/community/gxmessage/PKGBUILD +++ b/community/gxmessage/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gxmessage pkgver=2.12.4 pkgrel=1 pkgdesc="A GTK2 based xmessage clone." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://homepages.ihug.co.nz/~trmusson/programs.html#gxmessage" license=('GPL') depends=('gtk2' 'desktop-file-utils') diff --git a/community/hacburn/PKGBUILD b/community/hacburn/PKGBUILD index 2c4ea446e..42d7a1eb0 100644 --- a/community/hacburn/PKGBUILD +++ b/community/hacburn/PKGBUILD @@ -4,7 +4,7 @@ pkgname=hacburn pkgver=0.3.5 pkgrel=4 pkgdesc="HacBurn is a script written in perl to aid in writing CDs. It is a graphical interface (using gtk+) to cdrtools, mpg321 and ogg123." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hacburn.sourceforge.net/" license=('GPL') depends=('gtk2-perl' 'glib-perl' 'cdrkit' 'mpg321' 'vorbis-tools' 'gtk2' 'xorg-server' 'perl' 'cddb_get' 'lame') diff --git a/community/haddock/PKGBUILD b/community/haddock/PKGBUILD index c52029b85..7c3572523 100644 --- a/community/haddock/PKGBUILD +++ b/community/haddock/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="Documentation-generation tool for Haskell libraries" url="http://hackage.haskell.org/package/${pkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=(alex happy) depends=(ghc=7.0.3-2 sh 'haskell-mtl=2.0.1.0-3.1' 'haskell-xhtml=3000.2.0.1-7.1' 'haskell-ghc-paths=0.1.0.8-4.1') options=('strip') diff --git a/community/handbrake/PKGBUILD b/community/handbrake/PKGBUILD index 3aad96f48..66b08dec0 100644 --- a/community/handbrake/PKGBUILD +++ b/community/handbrake/PKGBUILD @@ -6,7 +6,7 @@ pkgname=('handbrake' 'handbrake-cli') pkgver=0.9.5 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://handbrake.fr/" license=('GPL') makedepends=('intltool' 'python2' 'yasm' 'wget' 'bzip2' 'gcc-libs' 'libnotify' diff --git a/community/hashcash/PKGBUILD b/community/hashcash/PKGBUILD index 1d22902b3..35ef2038d 100644 --- a/community/hashcash/PKGBUILD +++ b/community/hashcash/PKGBUILD @@ -5,7 +5,7 @@ pkgname=hashcash pkgver=1.22 pkgrel=2 pkgdesc="Hashcash is a denial-of-service counter measure tool for email/spam." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.hashcash.org" license=('GPL') depends=( 'glibc' ) diff --git a/community/haskell-binary/PKGBUILD b/community/haskell-binary/PKGBUILD index f682bb59a..6fc0df551 100644 --- a/community/haskell-binary/PKGBUILD +++ b/community/haskell-binary/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=7.1 pkgdesc="Binary serialisation for Haskell values using lazy ByteStrings" url="http://hackage.haskell.org/package/binary" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=(ghc=7.0.3-2 sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/community/haskell-dataenc/PKGBUILD b/community/haskell-dataenc/PKGBUILD index cd94ed17c..7ea26e610 100644 --- a/community/haskell-dataenc/PKGBUILD +++ b/community/haskell-dataenc/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3.2 pkgdesc="Data encoding library" url="http://hackage.haskell.org/package/dataenc" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=(ghc=7.0.3-2 sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/community/haskell-dbus/PKGBUILD b/community/haskell-dbus/PKGBUILD index 316df37f3..0d02869ec 100644 --- a/community/haskell-dbus/PKGBUILD +++ b/community/haskell-dbus/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc="DBus bindings" url="http://hackage.haskell.org/package/DBus" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.0.3' 'sh') options=('strip') source=(http://hackage.haskell.org/packages/archive/DBus/0.4/DBus-0.4.tar.gz diff --git a/community/haskell-ghc-paths/PKGBUILD b/community/haskell-ghc-paths/PKGBUILD index a7a4be130..594d4a3c4 100644 --- a/community/haskell-ghc-paths/PKGBUILD +++ b/community/haskell-ghc-paths/PKGBUILD @@ -6,7 +6,7 @@ pkgrel=4.1 pkgdesc="Knowledge of GHC's installation directories" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=() depends=(ghc=7.0.3-2) # cannot have stricter dep here due to haddock options=('strip') diff --git a/community/haskell-haskeline/PKGBUILD b/community/haskell-haskeline/PKGBUILD index 5a6124fd3..f5759bb83 100644 --- a/community/haskell-haskeline/PKGBUILD +++ b/community/haskell-haskeline/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2.2 pkgdesc="A command-line interface for user input, written in Haskell." url="http://hackage.haskell.org/package/haskeline" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.0.3-2' sh 'haskell-utf8-string=0.3.6-7.2' 'haskell-mtl=2.0.1.0-3.1' 'haskell-terminfo=0.3.1.3') options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/community/haskell-hslogger/PKGBUILD b/community/haskell-hslogger/PKGBUILD index 8b58c7f3e..ad7e5aaa5 100644 --- a/community/haskell-hslogger/PKGBUILD +++ b/community/haskell-hslogger/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc="Versatile logging framework" url="http://hackage.haskell.org/package/hslogger" license=('LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc' 'haskell-mtl=2.0.1.0' 'haskell-network=2.3.0.2') options=('strip') install=${pkgname}.install @@ -22,7 +22,7 @@ build() { --enable-split-objs --enable-shared --libsubdir=\$compiler/site-local/\$pkgid \ --enable-library-profiling runhaskell Setup build - runhaskell Setup haddock + RUnhaskell Setup haddock runhaskell Setup register --gen-script runhaskell Setup unregister --gen-script sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh diff --git a/community/haskell-mmap/PKGBUILD b/community/haskell-mmap/PKGBUILD index b1002be46..3848c500b 100644 --- a/community/haskell-mmap/PKGBUILD +++ b/community/haskell-mmap/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=3.2 pkgdesc="Memory mapped files for POSIX and Windows" url="http://hackage.haskell.org/package/mmap" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.0.3-2' sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/community/haskell-tar/PKGBUILD b/community/haskell-tar/PKGBUILD index 459f288bd..e2b24d6e0 100644 --- a/community/haskell-tar/PKGBUILD +++ b/community/haskell-tar/PKGBUILD @@ -6,7 +6,7 @@ pkgrel=4.2 pkgdesc="Reading, writing and manipulating \".tar\" archive files." url="http://hackage.haskell.org/package/tar" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.0.3-2' sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/community/haskell-terminfo/PKGBUILD b/community/haskell-terminfo/PKGBUILD index 51e968853..3ae8d8635 100644 --- a/community/haskell-terminfo/PKGBUILD +++ b/community/haskell-terminfo/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=4.2 pkgdesc="Haskell bindings to the terminfo library." url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.0.3-2' sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/community/haskell-utf8-string/PKGBUILD b/community/haskell-utf8-string/PKGBUILD index e6d27dfad..e92e71f0a 100644 --- a/community/haskell-utf8-string/PKGBUILD +++ b/community/haskell-utf8-string/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=7.2 pkgdesc="Support for reading and writing UTF8 Strings" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.0.3-2' sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/community/haskell-x11-xft/PKGBUILD b/community/haskell-x11-xft/PKGBUILD index c8a9ae0f9..8c447c2b4 100644 --- a/community/haskell-x11-xft/PKGBUILD +++ b/community/haskell-x11-xft/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=19.4 pkgdesc="Bindings to the Xft, X Free Type interface library, and some Xrender parts" url="http://hackage.haskell.org/package/${_hkgname}" license=('LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.0.3-2' 'haskell-x11=1.5.0.0-7.3' 'haskell-utf8-string=0.3.6-7.2' 'libxft') options=('strip') source=(http://hackage.haskell.org/packages/archive/X11-xft/$pkgver/X11-xft-$pkgver.tar.gz) diff --git a/community/haskell-x11/PKGBUILD b/community/haskell-x11/PKGBUILD index 417b6daab..646ba1318 100644 --- a/community/haskell-x11/PKGBUILD +++ b/community/haskell-x11/PKGBUILD @@ -8,7 +8,7 @@ pkgname=haskell-x11 pkgver=1.5.0.0 pkgrel=7.3 pkgdesc="A Haskell binding to the X11 graphics library." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/X11" license=('custom:BSD3') options=('strip') diff --git a/community/hatari/PKGBUILD b/community/hatari/PKGBUILD index d0250b55b..564c9888f 100644 --- a/community/hatari/PKGBUILD +++ b/community/hatari/PKGBUILD @@ -5,7 +5,7 @@ pkgname=hatari pkgver=1.5.0 pkgrel=1 pkgdesc='An Atari ST and STE emulator' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://hatari.sourceforge.net/' license=('GPL') depends=('sdl' 'libpng') diff --git a/community/hawknl/PKGBUILD b/community/hawknl/PKGBUILD index ab40d900f..a3f53d04f 100644 --- a/community/hawknl/PKGBUILD +++ b/community/hawknl/PKGBUILD @@ -8,7 +8,7 @@ pkgname=hawknl pkgver=1.68 pkgrel=2 pkgdesc="An open source game oriented network API" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.hawksoft.com/hawknl/" license=('LGPL') depends=('glibc') diff --git a/community/hedgewars/PKGBUILD b/community/hedgewars/PKGBUILD index 05ae00236..05f16c13a 100644 --- a/community/hedgewars/PKGBUILD +++ b/community/hedgewars/PKGBUILD @@ -5,7 +5,7 @@ pkgname=hedgewars pkgver=0.9.16 pkgrel=2 pkgdesc="Free Worms-like turn based strategy game" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hedgewars.org" license=('GPL' 'custom') depends=('qt' 'sdl' 'sdl_mixer' 'sdl_image' 'sdl_net' 'sdl_ttf' 'lua') diff --git a/community/hevea/PKGBUILD b/community/hevea/PKGBUILD index d1d9e3136..5361fcfd9 100644 --- a/community/hevea/PKGBUILD +++ b/community/hevea/PKGBUILD @@ -7,7 +7,7 @@ pkgname=hevea pkgver=1.10 pkgrel=2 pkgdesc="A quite complete and fast LATEX to HTML translator" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('ocaml') license=('GPL') url="http://pauillac.inria.fr/~maranget/hevea/" diff --git a/community/hex-a-hop/PKGBUILD b/community/hex-a-hop/PKGBUILD index 80e12e8ac..68f12f526 100644 --- a/community/hex-a-hop/PKGBUILD +++ b/community/hex-a-hop/PKGBUILD @@ -6,7 +6,7 @@ pkgname=hex-a-hop pkgver=1.1.0 pkgrel=2 pkgdesc='Hex-a-hop is a puzzle game based on hexagonal tiles' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://hexahop.sourceforge.net/' license=('GPL') depends=('sdl_mixer' 'sdl_ttf' 'gcc-libs') diff --git a/community/highlight/PKGBUILD b/community/highlight/PKGBUILD index 351fda367..2f29fb30d 100644 --- a/community/highlight/PKGBUILD +++ b/community/highlight/PKGBUILD @@ -7,7 +7,7 @@ pkgver=3.6 pkgrel=1 url="http://www.andre-simon.de/doku/highlight/highlight.html" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=(qt lua boost) source=(http://www.andre-simon.de/zip/$pkgname-$pkgver.tar.bz2) md5sums=('b23093dba7c44a7628ee5c97e68c9941') diff --git a/community/homebank/PKGBUILD b/community/homebank/PKGBUILD index 34875c7c9..1eca6b521 100644 --- a/community/homebank/PKGBUILD +++ b/community/homebank/PKGBUILD @@ -6,7 +6,7 @@ pkgname=homebank pkgver=4.4 pkgrel=1 pkgdesc="Free, easy, personal accounting for everyone" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://homebank.free.fr/" license=('GPL') depends=('desktop-file-utils' 'gtk2' 'hicolor-icon-theme' 'libofx' 'librsvg' 'perlxml' 'shared-mime-info') diff --git a/community/hostapd/PKGBUILD b/community/hostapd/PKGBUILD index 507b7c3f7..8a9458dd2 100644 --- a/community/hostapd/PKGBUILD +++ b/community/hostapd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=hostapd pkgver=0.7.3 pkgrel=5 pkgdesc="daemon for wireless software access points" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hostap.epitest.fi/hostapd/" license=('custom') depends=('openssl' 'libnl') diff --git a/community/hping/PKGBUILD b/community/hping/PKGBUILD index ee6b4e835..7c9e8e04e 100644 --- a/community/hping/PKGBUILD +++ b/community/hping/PKGBUILD @@ -6,7 +6,7 @@ pkgname=hping pkgver=3.0.0 pkgrel=2 pkgdesc='A command-line oriented TCP/IP packet assembler/analyzer.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.hping.org' license=('GPL2' 'BSD') depends=('libpcap') diff --git a/community/hsetroot/PKGBUILD b/community/hsetroot/PKGBUILD index e6b8b4992..eb1f3ac85 100644 --- a/community/hsetroot/PKGBUILD +++ b/community/hsetroot/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc='A tool which allows you to compose wallpapers for X.' url='http://www.thegraveyard.org/hsetroot.php' license=('GPL') depends=('imlib2' 'xorg-server') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=("http://www.thegraveyard.org/files/${pkgname}-${pkgver}.tar.gz") md5sums=('f599770a6411dcfe216c37b280fad9bc') diff --git a/community/hsolink/PKGBUILD b/community/hsolink/PKGBUILD index 0f496da75..81c10eb95 100644 --- a/community/hsolink/PKGBUILD +++ b/community/hsolink/PKGBUILD @@ -6,7 +6,7 @@ pkgname=hsolink pkgver=1.0.118 pkgrel=7 pkgdesc="HSO command line connection utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.pharscape.org/hsolinkcontrol.html" license=('GPL2') depends=('ozerocdoff' 'net-tools') diff --git a/community/ht/PKGBUILD b/community/ht/PKGBUILD index d7360a824..b47198e0e 100644 --- a/community/ht/PKGBUILD +++ b/community/ht/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ht pkgver=2.0.18 pkgrel=1 pkgdesc="A file editor/viewer/analyzer for executables" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hte.sourceforge.net/" license=('GPL') depends=('gcc-libs' 'ncurses' 'lzo2') diff --git a/community/html2text/PKGBUILD b/community/html2text/PKGBUILD index ecccaae48..9c99e82d2 100644 --- a/community/html2text/PKGBUILD +++ b/community/html2text/PKGBUILD @@ -5,7 +5,7 @@ pkgname=html2text pkgver=1.3.2a pkgrel=8 pkgdesc="A HTML to text converter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.mbayer.de/html2text" license=('GPL2') depends=('gcc-libs') diff --git a/community/htmldoc/PKGBUILD b/community/htmldoc/PKGBUILD index ded19e284..d057cdeb0 100644 --- a/community/htmldoc/PKGBUILD +++ b/community/htmldoc/PKGBUILD @@ -7,7 +7,7 @@ pkgname=htmldoc pkgver=1.8.27 pkgrel=6 pkgdesc="Produce PDF or Postscript from HTML documents including TOCs and Indices" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.htmldoc.org" license=('GPL') depends=('libjpeg' 'libpng' 'openssl' 'fltk' 'gcc-libs' 'libxft' 'libxpm') diff --git a/community/httptunnel/PKGBUILD b/community/httptunnel/PKGBUILD index dad2e7b9a..1d923e6de 100644 --- a/community/httptunnel/PKGBUILD +++ b/community/httptunnel/PKGBUILD @@ -7,7 +7,7 @@ pkgname=httptunnel pkgver=3.3 pkgrel=3 pkgdesc="Creates a bidirectional virtual data connection tunnelled in HTTP requests" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nocrew.org/software/httptunnel" license=('GPL2') depends=('glibc') diff --git a/community/hubbub/PKGBUILD b/community/hubbub/PKGBUILD index f7adf9934..e84d6342a 100644 --- a/community/hubbub/PKGBUILD +++ b/community/hubbub/PKGBUILD @@ -6,7 +6,7 @@ pkgname=hubbub pkgver=0.1.1 pkgrel=1 pkgdesc="HTML5 compliant parsing library" -arch=('x86_64' 'i686') +arch=('i686' 'x86_64' 'mips64el') url="http://www.netsurf-browser.org/projects/hubbub/" license=('MIT') depends=('libparserutils') diff --git a/community/hula/PKGBUILD b/community/hula/PKGBUILD index 3b2d1ea6c..b87bc33c2 100644 --- a/community/hula/PKGBUILD +++ b/community/hula/PKGBUILD @@ -7,7 +7,7 @@ pkgname=hula pkgver=r2661 pkgrel=3 pkgdesc="A calendar and mail server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://developer.novell.com/wiki/index.php/Hula" options=('!libtool') depends=('popt' 'libldap' 'mono' 'perl') diff --git a/community/hwinfo/PKGBUILD b/community/hwinfo/PKGBUILD index 28e2ea582..cc0fdb7d7 100644 --- a/community/hwinfo/PKGBUILD +++ b/community/hwinfo/PKGBUILD @@ -10,7 +10,7 @@ pkgname=hwinfo pkgver=19.0 pkgrel=2 pkgdesc='Hardware detection tool from openSUSE' -arch=('x86_64' 'i686') +arch=('i686' 'x86_64' 'mips64el') url='http://www.opensuse.org/' license=('GPL2') depends=('perl' 'libx86emu') diff --git a/community/i3-wm/PKGBUILD b/community/i3-wm/PKGBUILD index 4de8eb067..634b58750 100644 --- a/community/i3-wm/PKGBUILD +++ b/community/i3-wm/PKGBUILD @@ -6,7 +6,7 @@ _pkgsourcename=i3 pkgver=4.0.2 pkgrel=1 pkgdesc="An improved dynamic tiling window manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://i3wm.org/" license=('BSD') replaces=("i3" "i3bar") diff --git a/community/i3lock/PKGBUILD b/community/i3lock/PKGBUILD index 6d589aba8..ee018e632 100644 --- a/community/i3lock/PKGBUILD +++ b/community/i3lock/PKGBUILD @@ -4,7 +4,7 @@ pkgname=i3lock pkgver=2.1 pkgrel=1 pkgdesc="An improved screenlocker based upon XCB and PAM" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://i3.zekjur.net/i3lock/" license=('MIT') groups=("i3") diff --git a/community/i3status/PKGBUILD b/community/i3status/PKGBUILD index 9e174f2e7..a174d3eb9 100644 --- a/community/i3status/PKGBUILD +++ b/community/i3status/PKGBUILD @@ -5,7 +5,7 @@ pkgname=i3status pkgver=2.3 pkgrel=1 pkgdesc="Generates status bar to use with dzen2 or xmobar" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://i3.zekjur.net/i3status/" license=('BSD') groups=('i3') diff --git a/community/iasl/PKGBUILD b/community/iasl/PKGBUILD index 6f2ef773e..64a5e6281 100644 --- a/community/iasl/PKGBUILD +++ b/community/iasl/PKGBUILD @@ -7,7 +7,7 @@ pkgname=iasl pkgver=20110922 pkgrel=2 pkgdesc="Intel ACPI Source Language compiler" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://acpica.org" license=('custom') depends=('glibc') diff --git a/community/iat/PKGBUILD b/community/iat/PKGBUILD index 1a965d77b..a49400169 100644 --- a/community/iat/PKGBUILD +++ b/community/iat/PKGBUILD @@ -7,7 +7,7 @@ pkgname=iat pkgver=0.1.7 pkgrel=3 pkgdesc="Detects many formats of cd-rom image files (BIN,MDF,PDI,CDI,NRG,B5I) and converts them to ISO-9660" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://iat.berlios.de/" license=('GPL') depends=('glibc') diff --git a/community/ibam/PKGBUILD b/community/ibam/PKGBUILD index bf9cf289c..c3ca9a78a 100644 --- a/community/ibam/PKGBUILD +++ b/community/ibam/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ibam pkgver=0.5.2 pkgrel=4 pkgdesc="An intelligent battery monitor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ibam.sourceforge.net/" license=('GPL') depends=('gcc-libs') diff --git a/community/ibus-anthy/PKGBUILD b/community/ibus-anthy/PKGBUILD index e6bda9859..442493585 100644 --- a/community/ibus-anthy/PKGBUILD +++ b/community/ibus-anthy/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ibus-anthy pkgver=1.2.6 pkgrel=1 pkgdesc="Japanese input method Anthy IMEngine for IBus Framework" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://ibus.googlecode.com" depends=('ibus' 'anthy' 'python2') diff --git a/community/ibus-chewing/PKGBUILD b/community/ibus-chewing/PKGBUILD index b435eebc9..1f688da6c 100644 --- a/community/ibus-chewing/PKGBUILD +++ b/community/ibus-chewing/PKGBUILD @@ -8,7 +8,7 @@ pkgname=ibus-chewing pkgver=1.3.10 pkgrel=1 pkgdesc='Chinese Chewing Engine for IBus Framework' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url='http://ibus.googlecode.com' depends=('ibus' 'libchewing' 'libxtst') diff --git a/community/ibus-hangul/PKGBUILD b/community/ibus-hangul/PKGBUILD index 4873f704e..870d06e60 100644 --- a/community/ibus-hangul/PKGBUILD +++ b/community/ibus-hangul/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ibus-hangul pkgver=1.3.2 pkgrel=1 pkgdesc='Korean input engine for IBus' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://ibus.googlecode.com' license=('GPL') depends=('ibus' 'libhangul') diff --git a/community/ibus-m17n/PKGBUILD b/community/ibus-m17n/PKGBUILD index 3539abb01..38a1f02f0 100644 --- a/community/ibus-m17n/PKGBUILD +++ b/community/ibus-m17n/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ibus-m17n pkgver=1.3.3 pkgrel=1 pkgdesc='M17N engine for IBus' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://code.google.com/p/ibus/' license=('LGPL') depends=('python-pyenchant' 'ibus' 'm17n-db' 'm17n-lib') diff --git a/community/ibus-pinyin/PKGBUILD b/community/ibus-pinyin/PKGBUILD index c410dc245..26dc3b31a 100644 --- a/community/ibus-pinyin/PKGBUILD +++ b/community/ibus-pinyin/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ibus-pinyin pkgver=1.3.99.20110706 pkgrel=1 pkgdesc='The PinYin Engine for IBus Input Framework.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url='http://ibus.googlecode.com' depends=('ibus') diff --git a/community/ibus-qt/PKGBUILD b/community/ibus-qt/PKGBUILD index 51d3beb3d..9b0a52782 100644 --- a/community/ibus-qt/PKGBUILD +++ b/community/ibus-qt/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ibus-qt pkgver=1.3.1 pkgrel=3 pkgdesc='IBus qt library and IBus qt input method plugin' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url='http://ibus.googlecode.com' depends=('qt' 'ibus' 'icu') diff --git a/community/ibus-sunpinyin/PKGBUILD b/community/ibus-sunpinyin/PKGBUILD index 2d46c7555..f187ec36f 100644 --- a/community/ibus-sunpinyin/PKGBUILD +++ b/community/ibus-sunpinyin/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ibus-sunpinyin pkgver=2.0.3 pkgrel=2 pkgdesc='The SunPinYin Engine for IBus Input Framework. SunPinYin is a Statistical Language Model based pinyin IME by Sun.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://sunpinyin.googlecode.com' license=('LGPL') depends=('ibus' 'sunpinyin') diff --git a/community/ibus-table-extraphrase/PKGBUILD b/community/ibus-table-extraphrase/PKGBUILD index 53d7e079d..e37dfa597 100644 --- a/community/ibus-table-extraphrase/PKGBUILD +++ b/community/ibus-table-extraphrase/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ibus-table-extraphrase pkgver=1.2.0.20100305 pkgrel=2 pkgdesc="The extra phrases of tables engines for IBus." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/ibus/" license=('LGPL') depends=('ibus-table>=1.2.0') diff --git a/community/ibus-table/PKGBUILD b/community/ibus-table/PKGBUILD index eb75f17bd..c7a05272b 100644 --- a/community/ibus-table/PKGBUILD +++ b/community/ibus-table/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ibus-table pkgver=1.3.9.20110827 pkgrel=1 pkgdesc='The IM Engine framework for table-based input methods, such as ZhengMa, WuBi, ErBi, CangJie and so on.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/ibus/" license=('LGPL') depends=('python2-pyenchant' 'ibus' 'aspell-en') diff --git a/community/ibus-unikey/PKGBUILD b/community/ibus-unikey/PKGBUILD index c59d1e645..3f2a781f5 100644 --- a/community/ibus-unikey/PKGBUILD +++ b/community/ibus-unikey/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ibus-unikey pkgver=0.6.0 pkgrel=1 pkgdesc='IBus module for Vietnamese Keyboard' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url='http://code.google.com/p/ibus-unikey/' depends=('ibus') diff --git a/community/ibus/PKGBUILD b/community/ibus/PKGBUILD index 445e8fd37..30708fafe 100644 --- a/community/ibus/PKGBUILD +++ b/community/ibus/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ibus pkgver=1.4.0 pkgrel=1 pkgdesc='Next Generation Input Bus for Linux.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url='http://ibus.googlecode.com' depends=('dbus-python>=0.84.0' 'gconf' 'dconf' 'python2' 'pygtk' 'pyxdg' 'iso-codes' 'librsvg' 'python-notify' 'hicolor-icon-theme' 'gtk3') diff --git a/community/icecast/PKGBUILD b/community/icecast/PKGBUILD index bb6f410f9..6c81ed1a6 100644 --- a/community/icecast/PKGBUILD +++ b/community/icecast/PKGBUILD @@ -8,7 +8,7 @@ pkgname=icecast pkgver=2.3.2 pkgrel=5 pkgdesc="Streaming audio over the Internet" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.icecast.org/" depends=('libxslt' 'libvorbis' 'curl' 'speex' 'libtheora') diff --git a/community/icewm-utils/PKGBUILD b/community/icewm-utils/PKGBUILD index b31b6e324..539b6daf1 100644 --- a/community/icewm-utils/PKGBUILD +++ b/community/icewm-utils/PKGBUILD @@ -19,7 +19,7 @@ _mergeprefsver=0.5 pkgrel=5 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/ico2xpm/PKGBUILD b/community/ico2xpm/PKGBUILD index 5d1ef58da..726e732f9 100644 --- a/community/ico2xpm/PKGBUILD +++ b/community/ico2xpm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ico2xpm pkgver=1.2 pkgrel=1 pkgdesc="A utility which converts Windows icons into X pixmaps" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ico2xpm.sourceforge.net/" license=('GPL') source=(http://downloads.sourceforge.net/ico2xpm/1.2/ico2xpm-1_2-src.tar.gz) diff --git a/community/icoutils/PKGBUILD b/community/icoutils/PKGBUILD index d9c24c298..14832b63e 100644 --- a/community/icoutils/PKGBUILD +++ b/community/icoutils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=icoutils pkgver=0.29.1 pkgrel=1 pkgdesc='Extracts and converts images in MS Windows(R) icon and cursor files.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url='http://www.nongnu.org/icoutils/' depends=('libpng>=1.0.0' 'perl-libwww>=5.64') diff --git a/community/id3lib-rcc/PKGBUILD b/community/id3lib-rcc/PKGBUILD index cb62b1ef9..c31ea657a 100644 --- a/community/id3lib-rcc/PKGBUILD +++ b/community/id3lib-rcc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=id3lib-rcc pkgver=3.8.3 pkgrel=7 pkgdesc="id3lib with librcc patch" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://id3lib.sourceforge.net/" license=('GPL') depends=('libxml2' 'librcc' 'gcc-libs') diff --git a/community/idesk/PKGBUILD b/community/idesk/PKGBUILD index 6eeabec92..fb170ca8f 100644 --- a/community/idesk/PKGBUILD +++ b/community/idesk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=idesk pkgver=0.7.5 pkgrel=3 pkgdesc="iDesk gives users of minimal wm's (fluxbox, blackbox, openbox, windowsmaker...) icons on their desktop" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://idesk.sourceforge.net/wiki/index.php" license=('GPL') depends=('pkgconfig' 'imlib2' 'libpng' 'libxpm' 'libxft' 'gcc-libs') diff --git a/community/iftop/PKGBUILD b/community/iftop/PKGBUILD index 763ae31ed..2cdfc5fab 100644 --- a/community/iftop/PKGBUILD +++ b/community/iftop/PKGBUILD @@ -8,7 +8,7 @@ pkgname=iftop pkgver=0.17 pkgrel=9 pkgdesc="iftop does for network usage what top(1) does for CPU usage" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ex-parrot.com/~pdw/iftop/" license=('GPL') depends=('libpcap>=1.0.0' 'ncurses') diff --git a/community/ifuse/PKGBUILD b/community/ifuse/PKGBUILD index e85372405..5d49eabee 100644 --- a/community/ifuse/PKGBUILD +++ b/community/ifuse/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.1.1 pkgrel=4 pkgdesc='A fuse filesystem to access the contents of an iPhone or iPod Touch' url='http://libimobiledevice.org/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL2.1') depends=('libimobiledevice' 'fuse') source=("http://www.libimobiledevice.org/downloads/${pkgname}-${pkgver}.tar.bz2") diff --git a/community/iksemel/PKGBUILD b/community/iksemel/PKGBUILD index 9034cbbe1..eab6eb7bf 100644 --- a/community/iksemel/PKGBUILD +++ b/community/iksemel/PKGBUILD @@ -7,7 +7,7 @@ pkgname=iksemel pkgver=1.4 pkgrel=2 pkgdesc="XML parser library for Jabber applications in ANSI C" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/iksemel/" license=('LGPL') depends=('glibc') diff --git a/community/imdbpy/PKGBUILD b/community/imdbpy/PKGBUILD index 263a0a888..974a8d986 100644 --- a/community/imdbpy/PKGBUILD +++ b/community/imdbpy/PKGBUILD @@ -10,7 +10,7 @@ pkgver=4.7 pkgrel=1 pkgdesc="Python bindings for the Internet Movie Database (IMDb)" url="http://imdbpy.sourceforge.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('python2') makedepends=('python2-distribute') diff --git a/community/incron/PKGBUILD b/community/incron/PKGBUILD index c64ad3e44..1479b6c64 100644 --- a/community/incron/PKGBUILD +++ b/community/incron/PKGBUILD @@ -7,7 +7,7 @@ pkgname=incron pkgver=0.5.9 pkgrel=2 pkgdesc="Like the regular cron but is driven by filesystem events instead of time periods" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://incron.aiken.cz/" license=('GPL') depends=('gcc-libs' 'bash') diff --git a/community/iniparser/PKGBUILD b/community/iniparser/PKGBUILD index 32a4c4b5b..6ee74ba3c 100644 --- a/community/iniparser/PKGBUILD +++ b/community/iniparser/PKGBUILD @@ -7,7 +7,7 @@ pkgname=iniparser pkgver=3.0 pkgrel=1 pkgdesc="A free stand-alone ini file parsing library written in portable ANSI C" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ndevilla.free.fr/iniparser/" license=('MIT') depends=() diff --git a/community/inn/PKGBUILD b/community/inn/PKGBUILD index 044531434..bf7e5856b 100644 --- a/community/inn/PKGBUILD +++ b/community/inn/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.5.2 pkgrel=6 pkgdesc="Complete open source Usenet system. De facto standard for handling news routing, news spool and serving the spool to customers." url="http://www.isc.org/software/inn/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=("custom:INN") depends=('openssl' 'dovecot') makedepends=('make' 'bison' 'python2' 'gcc' 'smtp-forwarder' 'libsasl') diff --git a/community/inotify-tools/PKGBUILD b/community/inotify-tools/PKGBUILD index 020afb70e..93215c7e6 100644 --- a/community/inotify-tools/PKGBUILD +++ b/community/inotify-tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=inotify-tools pkgver=3.14 pkgrel=1 pkgdesc="inotify-tools is a C library and a set of command-line programs for Linux providing a simple interface to inotify." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://inotify-tools.sourceforge.net/" license=('GPL') depends=(glibc) diff --git a/community/inputattach/PKGBUILD b/community/inputattach/PKGBUILD index 0e6211808..ea5b4240a 100644 --- a/community/inputattach/PKGBUILD +++ b/community/inputattach/PKGBUILD @@ -6,7 +6,7 @@ pkgname=inputattach pkgver=1.24 pkgrel=4 pkgdesc="Attach serial mice, keyboards and other input devices to the kernel input system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://linuxconsole.sourceforge.net/" license=('GPL') depends=('bash') diff --git a/community/intel-tbb/PKGBUILD b/community/intel-tbb/PKGBUILD index b21ff6112..8c7b6060e 100644 --- a/community/intel-tbb/PKGBUILD +++ b/community/intel-tbb/PKGBUILD @@ -5,7 +5,7 @@ pkgname=intel-tbb pkgver=4.0_20111003 pkgrel=1 pkgdesc='An award-winning C++ runtime library that abstracts the low-level threading details necessary for optimal multi-core performance.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.threadingbuildingblocks.org/' license=('GPL') source=("http://threadingbuildingblocks.org/uploads/77/177/4.0%20update%201/tbb40_20111003oss_src.tgz") diff --git a/community/intellij-idea-libs/PKGBUILD b/community/intellij-idea-libs/PKGBUILD index 41558627b..9aaff5cf5 100644 --- a/community/intellij-idea-libs/PKGBUILD +++ b/community/intellij-idea-libs/PKGBUILD @@ -5,7 +5,7 @@ pkgver=10.5.2 _pkgver=107.587 pkgrel=1 pkgdesc="Architecture dependend libraries needed by the Intellij Idea IDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.jetbrains.org/" license=('apache') depends=('glibc') diff --git a/community/ipguard/PKGBUILD b/community/ipguard/PKGBUILD index 6319690a7..944a86e5f 100644 --- a/community/ipguard/PKGBUILD +++ b/community/ipguard/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ipguard pkgver=1.04 pkgrel=1 pkgdesc="ipguard - arp<->ip relation checking tool" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://ipguard.deep.perm.ru/" license=("GPL") depends=(libpcap libnet) diff --git a/community/ipsec-tools/PKGBUILD b/community/ipsec-tools/PKGBUILD index 77a72f6df..dde4114bb 100644 --- a/community/ipsec-tools/PKGBUILD +++ b/community/ipsec-tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ipsec-tools pkgver=0.8.0 pkgrel=2 pkgdesc="KAME IPSec tools ported to Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ipsec-tools.sourceforge.net/" depends=('readline' 'openssl' 'krb5') license=('GPL') diff --git a/community/ircii-pana/PKGBUILD b/community/ircii-pana/PKGBUILD index ebbd841a0..8ff4655cf 100644 --- a/community/ircii-pana/PKGBUILD +++ b/community/ircii-pana/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ircii-pana pkgver=1.1 pkgrel=4 pkgdesc="A console-based IRC client - AKA BitchX." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.bitchx.org" license=('GPL2') depends=('ncurses') diff --git a/community/ircservices/PKGBUILD b/community/ircservices/PKGBUILD index 62c0a58b7..2fc014c87 100644 --- a/community/ircservices/PKGBUILD +++ b/community/ircservices/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ircservices pkgver=5.1.24 pkgrel=1 pkgdesc="Services for IRC (NickServ, ChanServ, MemoServ)" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.ircservices.za.net/" license=('GPL') depends=('glibc') diff --git a/community/irrlicht/PKGBUILD b/community/irrlicht/PKGBUILD index 8dd14decd..740ce5a28 100644 --- a/community/irrlicht/PKGBUILD +++ b/community/irrlicht/PKGBUILD @@ -9,7 +9,7 @@ pkgname=irrlicht pkgver=1.7.2 pkgrel=3 pkgdesc="An open source high performance realtime 3D graphics engine." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://irrlicht.sourceforge.net/" license=('ZLIB') depends=('libgl' 'libjpeg' 'bzip2' 'libpng') diff --git a/community/isomaster/PKGBUILD b/community/isomaster/PKGBUILD index 6bb9f6cb8..346040aa9 100644 --- a/community/isomaster/PKGBUILD +++ b/community/isomaster/PKGBUILD @@ -7,7 +7,7 @@ pkgname=isomaster pkgver=1.3.8 pkgrel=1 pkgdesc="CD image editor written in GTK2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://littlesvr.ca/isomaster" license=('GPL2') depends=('gtk2' 'desktop-file-utils') diff --git a/community/jabberd14/PKGBUILD b/community/jabberd14/PKGBUILD index f9edde54f..da0ec5a11 100644 --- a/community/jabberd14/PKGBUILD +++ b/community/jabberd14/PKGBUILD @@ -6,7 +6,7 @@ pkgname=jabberd14 pkgver=1.6.1.1 pkgrel=10 pkgdesc="old (1.4) jabber server branch" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://jabberd.org/" license=("GPL") depends=(pth libidn expat popt gnutls) diff --git a/community/jack2/PKGBUILD b/community/jack2/PKGBUILD index b0c49a04d..45e9753e2 100644 --- a/community/jack2/PKGBUILD +++ b/community/jack2/PKGBUILD @@ -9,11 +9,14 @@ pkgname=('jack2' 'jack2-dbus') _tarname=jack pkgver=1.9.7 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://jackaudio.org/" license=('GPL') makedepends=('python2' 'doxygen' 'libffado' 'celt' 'libsamplerate' 'dbus-core') +[ "$CARCH" = "mips64el" ] && \ +makedepends=('python2' 'doxygen' 'celt' + 'libsamplerate' 'dbus-core') source=("http://www.grame.fr/~letz/$_tarname-$pkgver.tar.bz2") md5sums=('9759670feecbd43eeccf1c0f743ec199') @@ -22,7 +25,11 @@ _pyfix() { } _wafconf() { + if [ "$CARCH" = "mips64el" ]; then + python2 waf configure --prefix=/usr --alsa --doxygen $@ + else python2 waf configure --prefix=/usr --alsa --firewire --doxygen $@ + fi } build() { @@ -54,6 +61,10 @@ package_jack2() { 'celt: NetJACK2 driver' 'dbus-core: jackdbus' 'python2: jack_control') +[ "$CARCH" = "mips64el" ] && \ + optdepends=('celt: NetJACK2 driver' + 'dbus-core: jackdbus' + 'python2: jack_control') conflicts=('jack') provides=('jack' 'jack-audio-connection-kit' 'jackdbus' 'jack-audio-connection-kit-mp' 'jackmp' 'jackdmp') @@ -72,6 +83,9 @@ package_jack2-dbus() { optdepends=('libffado: FireWire support' 'celt: NetJACK2 driver' 'python2: jack_control') +[ "$CARCH" = "mips64el" ] && \ + optdepends=('celt: NetJACK2 driver' + 'python2: jack_control') conflicts=('jack' 'jack2') provides=('jack' 'jack2' 'jack-audio-connection-kit' 'jackdbus' 'jack-audio-connection-kit-mp' 'jackmp' 'jackdmp') diff --git a/community/jansson/PKGBUILD b/community/jansson/PKGBUILD index 00981bb6f..583354aa6 100644 --- a/community/jansson/PKGBUILD +++ b/community/jansson/PKGBUILD @@ -6,7 +6,7 @@ pkgname=jansson pkgver=2.2.1 pkgrel=1 pkgdesc='C library for encoding, decoding and manipulating JSON data' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.digip.org/jansson/' license=('MIT') options=('!libtool') diff --git a/community/javasqlite/PKGBUILD b/community/javasqlite/PKGBUILD index 4202d75c1..db11165a8 100644 --- a/community/javasqlite/PKGBUILD +++ b/community/javasqlite/PKGBUILD @@ -5,7 +5,7 @@ pkgname=javasqlite pkgver=20110106 pkgrel=1 pkgdesc="Java support for SQLite database engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ch-werner.de/javasqlite/" license=('BSD') depends=('java-runtime') diff --git a/community/jbig2dec/PKGBUILD b/community/jbig2dec/PKGBUILD index d51159ecb..c4a17374b 100644 --- a/community/jbig2dec/PKGBUILD +++ b/community/jbig2dec/PKGBUILD @@ -3,7 +3,7 @@ pkgname=jbig2dec pkgver=0.11 pkgrel=2 pkgdesc="decoder implementation of the JBIG2 image compression format" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://jbig2dec.sourceforge.net/" license=('GPL3') source=(http://ghostscript.com/~giles/jbig2/$pkgname/$pkgname-$pkgver.tar.gz) diff --git a/community/jbigkit/PKGBUILD b/community/jbigkit/PKGBUILD index 411bcb670..f6ed1709d 100644 --- a/community/jbigkit/PKGBUILD +++ b/community/jbigkit/PKGBUILD @@ -7,7 +7,7 @@ pkgname=jbigkit pkgver=2.0 pkgrel=2 pkgdesc="Data compression library/utilities for bi-level high-resolution images" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cl.cam.ac.uk/~mgk25/jbigkit/" license=('GPL') depends=('glibc') diff --git a/community/jogl/PKGBUILD b/community/jogl/PKGBUILD index fbbb8172d..fc3388cfa 100644 --- a/community/jogl/PKGBUILD +++ b/community/jogl/PKGBUILD @@ -5,7 +5,7 @@ pkgname=jogl pkgver=1.1.1 pkgrel=6 pkgdesc="OpenGL bindings for java" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://jogl.dev.java.net/" license=('custom') depends=('java-runtime' 'libgl') diff --git a/community/john/PKGBUILD b/community/john/PKGBUILD index b90406aba..03b9b798f 100644 --- a/community/john/PKGBUILD +++ b/community/john/PKGBUILD @@ -9,7 +9,7 @@ pkgver=1.7.8 pkgrel=5 _jumbover=7 pkgdesc="John The Ripper - A fast password cracker (jumbo-$_jumbover included)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.openwall.com/$pkgname/" license=('GPL2' 'custom') depends=('openssl') diff --git a/community/jshon/PKGBUILD b/community/jshon/PKGBUILD index 43aeae5ca..38674cb01 100644 --- a/community/jshon/PKGBUILD +++ b/community/jshon/PKGBUILD @@ -4,7 +4,7 @@ pkgname=jshon pkgver=20111105 pkgrel=1 pkgdesc="A json parser for the shell." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kmkeen.com/jshon/" license=('MIT') depends=('jansson') diff --git a/community/judy/PKGBUILD b/community/judy/PKGBUILD index b8a165d78..7ea6df59f 100644 --- a/community/judy/PKGBUILD +++ b/community/judy/PKGBUILD @@ -5,7 +5,7 @@ pkgname=judy pkgver=1.0.5 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="C library creating and accessing dynamic arrays" makedepends=(gcc) options=(!strip) diff --git a/community/jwm/PKGBUILD b/community/jwm/PKGBUILD index 6fe9358d5..9584871f7 100644 --- a/community/jwm/PKGBUILD +++ b/community/jwm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=jwm pkgver=2.1.0 pkgrel=1 pkgdesc="A lightweight window manager for the X11 Window System" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://joewing.net/programs/jwm/" license=('GPL2') depends=('libx11' 'libxft' 'libjpeg>=7' 'libxpm' 'libxinerama' 'libpng') diff --git a/community/kaa-base/PKGBUILD b/community/kaa-base/PKGBUILD index 06deb8f6d..7074a24cb 100644 --- a/community/kaa-base/PKGBUILD +++ b/community/kaa-base/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="KAA base package" url="http://freevo.sourceforge.net/" license=('GPL2') depends=('python2' 'glib2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=(http://downloads.sourceforge.net/freevo/$pkgname-$pkgver.tar.gz) md5sums=('5fdac0492dbbb412c2cafe32ea8c60a8') diff --git a/community/kaa-imlib2/PKGBUILD b/community/kaa-imlib2/PKGBUILD index a220f36be..cfdfd6e8b 100644 --- a/community/kaa-imlib2/PKGBUILD +++ b/community/kaa-imlib2/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="KAA imlib2 package" url="http://freevo.sourceforge.net/" license=(GPL2) depends=('imlib2' 'python2' 'kaa-base') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=(http://downloads.sourceforge.net/freevo/$pkgname-$pkgver.tar.gz) md5sums=('64828ede785ab0dd2d3c1f2f36c99342') diff --git a/community/kaa-metadata/PKGBUILD b/community/kaa-metadata/PKGBUILD index 116766032..18e1f6b50 100644 --- a/community/kaa-metadata/PKGBUILD +++ b/community/kaa-metadata/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="KAA metadata package" url="http://freevo.sourceforge.net/" license=('GPL2') depends=('libdvdread' 'python2' 'kaa-base') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=(http://downloads.sourceforge.net/freevo/$pkgname-$pkgver.tar.gz) md5sums=('4bca23a0c695b4281ae2220022cdeb77') diff --git a/community/kadu/PKGBUILD b/community/kadu/PKGBUILD index 0c116b3cd..8ae36bfbb 100644 --- a/community/kadu/PKGBUILD +++ b/community/kadu/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kadu pkgver=0.10.1 pkgrel=1 pkgdesc="A Qt-based Jabber/XMPP and Gadu-Gadu client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kadu.net/" license=('GPL') depends=('libgadu' 'libxss' 'aspell' 'phonon' 'qca-ossl' 'libidn' 'libmpdclient') diff --git a/community/kakasi/PKGBUILD b/community/kakasi/PKGBUILD index 76b90aa20..fcb40d066 100644 --- a/community/kakasi/PKGBUILD +++ b/community/kakasi/PKGBUILD @@ -5,7 +5,7 @@ pkgname=kakasi pkgver=2.3.4 pkgrel=3 pkgdesc="Convert Kanji characters to Hiragana, Katakana or Romaji" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kakasi.namazu.org/" license=('GPL') source=(http://kakasi.namazu.org/stable/${pkgname}-${pkgver}.tar.gz) diff --git a/community/kaudiocreator/PKGBUILD b/community/kaudiocreator/PKGBUILD index f0fef23d0..a57c02837 100644 --- a/community/kaudiocreator/PKGBUILD +++ b/community/kaudiocreator/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kaudiocreator pkgver=1.3 pkgrel=2 pkgdesc="A program for ripping and encoding Audio-CDs, encoding files from disk" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde-apps.org/content/show.php/KAudioCreator?content=107645" license=('GPL') depends=('kdemultimedia-kioslave' 'taglib' 'libdiscid') diff --git a/community/kcheckers/PKGBUILD b/community/kcheckers/PKGBUILD index b99753db4..d0cd583ab 100755 --- a/community/kcheckers/PKGBUILD +++ b/community/kcheckers/PKGBUILD @@ -5,7 +5,7 @@ pkgname=kcheckers pkgver=0.8.1 pkgrel=7 pkgdesc="Qt4-based checkers boardgame" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qcheckers.sourceforge.net/" license=('GPL') depends=('qt') diff --git a/community/kchmviewer/PKGBUILD b/community/kchmviewer/PKGBUILD index 67a052c37..90c609c91 100644 --- a/community/kchmviewer/PKGBUILD +++ b/community/kchmviewer/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kchmviewer pkgver=5.3 pkgrel=1 pkgdesc="A .chm files (MS HTML help file format) viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kchmviewer.sourceforge.net/" license=('GPL') depends=('chmlib' 'kdelibs' 'qt' 'xdg-utils') diff --git a/community/kdbg/PKGBUILD b/community/kdbg/PKGBUILD index 9f25788df..be06d5eb3 100644 --- a/community/kdbg/PKGBUILD +++ b/community/kdbg/PKGBUILD @@ -8,7 +8,7 @@ pkgname=kdbg pkgver=2.5.1 pkgrel=1 pkgdesc="A gdb GUI for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kdbg.org" license=('GPL') depends=('kdebase-runtime' 'gdb') diff --git a/community/kde4-kio-rapip/PKGBUILD b/community/kde4-kio-rapip/PKGBUILD index 92377772a..f4464db90 100644 --- a/community/kde4-kio-rapip/PKGBUILD +++ b/community/kde4-kio-rapip/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kde4-kio-rapip pkgver=0.2 pkgrel=1 pkgdesc="KIOSlave to browse through the PDA file system via the SynCE infrastructure" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://synce.sourceforge.net/" license="MIT" depends=('kdelibs' 'synce-libsynce' 'synce-librapi') diff --git a/community/kdenlive/PKGBUILD b/community/kdenlive/PKGBUILD index 37ff847c7..27b2c395c 100644 --- a/community/kdenlive/PKGBUILD +++ b/community/kdenlive/PKGBUILD @@ -7,7 +7,7 @@ pkgname=kdenlive pkgver=0.8svn20110722 pkgrel=2 pkgdesc="A non-linear video editor for Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kdenlive.org/" license=('GPL') depends=('kdebase-runtime' 'mlt' 'dvgrab' 'qjson' 'qimageblitz' diff --git a/community/kdesvn/PKGBUILD b/community/kdesvn/PKGBUILD index 8412cb336..f0d900b55 100644 --- a/community/kdesvn/PKGBUILD +++ b/community/kdesvn/PKGBUILD @@ -5,7 +5,7 @@ pkgname=kdesvn pkgver=1.5.5 pkgrel=1 pkgdesc="A pure C++ SVN-client for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.alwins-world.de/programs/kdesvn/" license=('GPL') depends=('hicolor-icon-theme' 'kdelibs' 'subversion' 'xdg-utils' 'qt') diff --git a/community/keepassx/PKGBUILD b/community/keepassx/PKGBUILD index 0c4f81fae..f47d77121 100644 --- a/community/keepassx/PKGBUILD +++ b/community/keepassx/PKGBUILD @@ -6,7 +6,7 @@ pkgname=keepassx pkgver=0.4.3 pkgrel=1 pkgdesc="Cross platform password manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.keepassx.org/" license=('GPL2') depends=('qt' 'libxtst') diff --git a/community/kgraphviewer/PKGBUILD b/community/kgraphviewer/PKGBUILD index e40108382..fe18a5398 100644 --- a/community/kgraphviewer/PKGBUILD +++ b/community/kgraphviewer/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kgraphviewer pkgver=2.1.1 pkgrel=3 pkgdesc="A Graphviz dot graph file viewer for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://opendesktop.org/content/show.php?content=23999' license=('GPL' 'FDL') depends=('kdebase-runtime' 'kdepimlibs' 'graphviz') diff --git a/community/kid3/PKGBUILD b/community/kid3/PKGBUILD index bffe4ceeb..298d6fff9 100644 --- a/community/kid3/PKGBUILD +++ b/community/kid3/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kid3 pkgver=2.0 pkgrel=1 pkgdesc="An MP3, Ogg/Vorbis and FLAC tag editor for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kid3.sourceforge.net/" license=('GPL') depends=('id3lib' 'kdebase-runtime' 'kdelibs' 'tunepimp') diff --git a/community/kim4/PKGBUILD b/community/kim4/PKGBUILD index 795ee47f5..1c64d4b3c 100644 --- a/community/kim4/PKGBUILD +++ b/community/kim4/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kim4 pkgver=0.9.5 pkgrel=3 pkgdesc="Kde Image Menu to compress, resize, convert, rename and much more" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.kde-apps.org/content/show.php?content=11505" license=('GPL') depends=('imagemagick' 'kdebase-dolphin') diff --git a/community/kiwi/PKGBUILD b/community/kiwi/PKGBUILD index 3b30c8fcc..ad0fbeac0 100644 --- a/community/kiwi/PKGBUILD +++ b/community/kiwi/PKGBUILD @@ -7,7 +7,7 @@ pkgname=kiwi pkgver=1.9.29 pkgrel=1 pkgdesc="A set of classes and wrappers for PyGTK" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.async.com.br/projects/kiwi" license=("LGPL") depends=('pygtk') diff --git a/community/klavaro/PKGBUILD b/community/klavaro/PKGBUILD index 6ffe42ac9..3996eca85 100644 --- a/community/klavaro/PKGBUILD +++ b/community/klavaro/PKGBUILD @@ -4,7 +4,7 @@ pkgname=klavaro pkgver=1.9.3 pkgrel=1 pkgdesc="Free touch typing tutor program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://klavaro.sourceforge.net/" license=('GPL2') depends=('curl' 'gtkdatabox' 'hicolor-icon-theme') diff --git a/community/kleansweep/PKGBUILD b/community/kleansweep/PKGBUILD index b16dfc337..af1a76b67 100644 --- a/community/kleansweep/PKGBUILD +++ b/community/kleansweep/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=4 pkgdesc="Allows you to reclaim disk space by finding unneeded files" license=("GPL") url="http://linux.bydg.org/~yogin/" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('kdelibs3' 'python') makedepends=('scons') options=('libtool') diff --git a/community/kmess/PKGBUILD b/community/kmess/PKGBUILD index 824d2ff72..136296f83 100644 --- a/community/kmess/PKGBUILD +++ b/community/kmess/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kmess pkgver=2.0.6.1 pkgrel=2 pkgdesc="KMess is a MSN Messenger client for Linux." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kmess.sourceforge.net/" license=('GPL') depends=('kdebase-lib') diff --git a/community/kmymoney/PKGBUILD b/community/kmymoney/PKGBUILD index 18c8221a8..fb7b59bc3 100644 --- a/community/kmymoney/PKGBUILD +++ b/community/kmymoney/PKGBUILD @@ -9,7 +9,7 @@ pkgname=kmymoney pkgver=4.6.0 pkgrel=1 pkgdesc="Personal finance manager for KDE which operates similarly to MS-Money or Quicken" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kmymoney2.sourceforge.net/" license=('GPL') depends=('kdebase-workspace' 'shared-mime-info' 'aqbanking' 'libofx' 'libalkimia' 'boost-libs') diff --git a/community/knemo/PKGBUILD b/community/knemo/PKGBUILD index d251f7ac9..8928150e6 100644 --- a/community/knemo/PKGBUILD +++ b/community/knemo/PKGBUILD @@ -7,7 +7,7 @@ pkgname=knemo pkgver=0.7.2 pkgrel=2 pkgdesc="The KDE Network Monitor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde-apps.org/content/show.php?content=12956" license=('GPL') depends=('kdebase-workspace' 'wireless_tools' 'iw') diff --git a/community/kovpn/PKGBUILD b/community/kovpn/PKGBUILD index 17d94f120..6bf0df2f1 100644 --- a/community/kovpn/PKGBUILD +++ b/community/kovpn/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.3pre7 _pkgver=0.3.pre7 pkgrel=4 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/kphotoalbum/PKGBUILD b/community/kphotoalbum/PKGBUILD index 834afe33f..eebd4df6b 100644 --- a/community/kphotoalbum/PKGBUILD +++ b/community/kphotoalbum/PKGBUILD @@ -10,7 +10,7 @@ pkgver=4.1.1 pkgrel=11 pkgdesc="KDE Photo Album, picture collection manager" url="http://www.kphotoalbum.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('kdebase-runtime' 'libkipi' 'libkexiv2' 'libkdcraw') makedepends=('cmake' 'automoc4' 'kdeedu-marble' 'kdemultimedia-mplayerthumbs') diff --git a/community/kpovmodeler/PKGBUILD b/community/kpovmodeler/PKGBUILD index ef0506a54..ebe6882e7 100644 --- a/community/kpovmodeler/PKGBUILD +++ b/community/kpovmodeler/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.1.3 _kdever=4.1.1 pkgrel=4 pkgdesc="A graphical editor for povray scenes" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://kpovmodeler.org' license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime' 'povray') diff --git a/community/krecipes/PKGBUILD b/community/krecipes/PKGBUILD index 3328af055..f8301f1a8 100644 --- a/community/krecipes/PKGBUILD +++ b/community/krecipes/PKGBUILD @@ -9,7 +9,7 @@ pkgver=2.0beta2 _pkgver=2.0-beta2 pkgrel=2 pkgdesc="A tool designed to make organizing your personal recipes collection fast and easy" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://extragear.kde.org/apps/krecipes/" license=('GPL') depends=('kdebase-runtime' 'qimageblitz' 'hicolor-icon-theme') diff --git a/community/krename/PKGBUILD b/community/krename/PKGBUILD index 5186211c1..41882e485 100644 --- a/community/krename/PKGBUILD +++ b/community/krename/PKGBUILD @@ -5,7 +5,7 @@ pkgname=krename pkgver=4.0.7 pkgrel=2 pkgdesc="A very powerfull batch file renamer for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.krename.net" license=('GPL') depends=('kdelibs' 'taglib' 'xdg-utils') diff --git a/community/ksniffer/PKGBUILD b/community/ksniffer/PKGBUILD index 15b8a59be..9671a0b62 100644 --- a/community/ksniffer/PKGBUILD +++ b/community/ksniffer/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ksniffer pkgver=0.3.2 pkgrel=5 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/ksshaskpass/PKGBUILD b/community/ksshaskpass/PKGBUILD index 9fd126de3..d72b21bab 100644 --- a/community/ksshaskpass/PKGBUILD +++ b/community/ksshaskpass/PKGBUILD @@ -6,7 +6,7 @@ pkgrel=2 pkgdesc='KDE4 implementation of ssh-askpass with Kwallet integration' url='http://www.kde-apps.org/content/show.php/Ksshaskpass?content=50971' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('kdelibs') makedepends=('cmake' 'automoc4') provides=('x11-ssh-askpass') diff --git a/community/ktechlab/PKGBUILD b/community/ktechlab/PKGBUILD index 96f6eb0e8..f032ead3b 100644 --- a/community/ktechlab/PKGBUILD +++ b/community/ktechlab/PKGBUILD @@ -4,7 +4,7 @@ pkgname=ktechlab pkgver=0.3.7 pkgrel=1 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/ktikz/PKGBUILD b/community/ktikz/PKGBUILD index 380216a6d..129dcaa23 100644 --- a/community/ktikz/PKGBUILD +++ b/community/ktikz/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ktikz pkgver=0.10 pkgrel=2 pkgdesc="A small application helping you to create TikZ diagrams (from the LaTeX pgf package)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.hackenberger.at/blog/ktikz-editor-for-the-tikz-language/" license=("GPL") depends=('poppler-qt' 'kdelibs') diff --git a/community/ktoblzcheck/PKGBUILD b/community/ktoblzcheck/PKGBUILD index 544b2a70c..95a8ceaa0 100644 --- a/community/ktoblzcheck/PKGBUILD +++ b/community/ktoblzcheck/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ktoblzcheck pkgver=1.33 pkgrel=1 pkgdesc="A library to check account numbers and bank codes of German banks" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://ktoblzcheck.sourceforge.net" options=('!libtool') license=("LGPL") diff --git a/community/kuickshow/PKGBUILD b/community/kuickshow/PKGBUILD index 23b1b6497..0eeb4ea94 100644 --- a/community/kuickshow/PKGBUILD +++ b/community/kuickshow/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.9.1 pkgrel=3 pkgdesc="A very fast and convenient image viewer" url="http://userbase.kde.org/KuickShow" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('kdelibs' 'imlib' 'hicolor-icon-theme') makedepends=('pkgconfig' 'cmake' 'automoc4' 'docbook-xsl') diff --git a/community/kvirc/PKGBUILD b/community/kvirc/PKGBUILD index 47f99a313..094d64b9c 100644 --- a/community/kvirc/PKGBUILD +++ b/community/kvirc/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3 pkgdesc="Qt-based IRC client" url="http://www.kvirc.net" depends=('python2' 'qt' 'libxss') -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') makedepends=('cmake') license=('GPL') options=("!libtool") diff --git a/community/kvpnc/PKGBUILD b/community/kvpnc/PKGBUILD index f80a814c3..de1568042 100644 --- a/community/kvpnc/PKGBUILD +++ b/community/kvpnc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kvpnc pkgver=0.9.6a pkgrel=1 pkgdesc="KVpnc is a KDE Desktop Environment frontend for various vpn clients" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://home.gna.org/kvpnc/" license=("GPL") depends=('kdelibs' 'hicolor-icon-theme') diff --git a/community/kydpdict/PKGBUILD b/community/kydpdict/PKGBUILD index 9ca4c5aa5..d217794f6 100644 --- a/community/kydpdict/PKGBUILD +++ b/community/kydpdict/PKGBUILD @@ -5,7 +5,7 @@ pkgname=kydpdict pkgver=0.9.5 pkgrel=1 pkgdesc="A front-end to YDP Collins Dictionary" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ytm.bossstation.dnsalias.org/html/kydpdict.html" license=('GPL') depends=('qt3') diff --git a/community/lal/PKGBUILD b/community/lal/PKGBUILD index 6a2f6cf38..3d9c83e8f 100644 --- a/community/lal/PKGBUILD +++ b/community/lal/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lal pkgver=1.1 pkgrel=1 pkgdesc="A simple dockapp to display the date and/or time" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://projects.l3ib.org/lal/" license=('GPL3') depends=('libxft' 'libxt') diff --git a/community/lastfm-client/PKGBUILD b/community/lastfm-client/PKGBUILD index 85f5530ac..d5fde5d7d 100644 --- a/community/lastfm-client/PKGBUILD +++ b/community/lastfm-client/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lastfm-client pkgver=1.5.4.26862 pkgrel=4 pkgdesc="The Last.fm client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.last.fm/tools/downloads/" license=('GPL') depends=('libpng' 'libjpeg' 'libxinerama' 'libxi' 'fontconfig' 'alsa-lib' 'libxcursor' 'libsm' 'libxrandr' 'qt' 'fftw' 'libsamplerate' 'libmad') diff --git a/community/lat/PKGBUILD b/community/lat/PKGBUILD index 7093e048d..351ca06e8 100755 --- a/community/lat/PKGBUILD +++ b/community/lat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lat pkgver=1.2.3 pkgrel=2 pkgdesc="LDAP Administration Tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/ldap-at/" license=("GPL") depends=('gnome-keyring' 'gtk-sharp-2' 'avahi' 'gnome-sharp' 'rarian') diff --git a/community/launchy/PKGBUILD b/community/launchy/PKGBUILD index 7cc63520e..05848ddd5 100644 --- a/community/launchy/PKGBUILD +++ b/community/launchy/PKGBUILD @@ -5,7 +5,7 @@ pkgname=launchy pkgver=2.5 pkgrel=1 pkgdesc="Launchy indexes the programs in your start menu and can launch your documents, project files, folders, and bookmarks with just a few keystrokes!" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.launchy.net/" license=('GPL') depends=('qt' 'xdg-utils') diff --git a/community/lazarus/PKGBUILD b/community/lazarus/PKGBUILD index 70605b513..ffc62aba9 100644 --- a/community/lazarus/PKGBUILD +++ b/community/lazarus/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc='Delphi-like IDE for FreePascal' url='http://www.lazarus.freepascal.org/' license=('GPL2' 'MPL' 'custom:LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('fpc' 'fpc-src' 'gtk2') #makedepends=(rpmextract) options=('!emptydirs' '!makeflags') diff --git a/community/ldns/PKGBUILD b/community/ldns/PKGBUILD index 6e28bc429..49febb4d2 100644 --- a/community/ldns/PKGBUILD +++ b/community/ldns/PKGBUILD @@ -8,7 +8,7 @@ pkgname=ldns pkgver=1.6.11 pkgrel=1 pkgdesc='Fast DNS library with DNSSEC support, including tools such as Drill' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.nlnetlabs.nl/projects/ldns/' license=('custom:BSD') depends=('openssl') diff --git a/community/leafnode/PKGBUILD b/community/leafnode/PKGBUILD index 0b96590ab..06ddb1d8b 100644 --- a/community/leafnode/PKGBUILD +++ b/community/leafnode/PKGBUILD @@ -6,7 +6,7 @@ pkgname=leafnode pkgver=1.11.8 pkgrel=1 pkgdesc="implements a store & forward NNTP proxy (client and server) with IPv4 and IPv6" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://leafnode.sourceforge.net/" depends=(pcre xinetd) license=('GPL') diff --git a/community/libacpi/PKGBUILD b/community/libacpi/PKGBUILD index 26c930902..be13c8864 100644 --- a/community/libacpi/PKGBUILD +++ b/community/libacpi/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libacpi pkgver=0.2 pkgrel=3 pkgdesc="general purpose lib to gather ACPI data" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.ngolde.de/libacpi.html" license=('GPL') depends=() diff --git a/community/libaio/PKGBUILD b/community/libaio/PKGBUILD index d3c3023ec..3584927df 100644 --- a/community/libaio/PKGBUILD +++ b/community/libaio/PKGBUILD @@ -4,7 +4,7 @@ pkgname=libaio pkgver=0.3.109 pkgrel=5 pkgdesc="The Linux-native asynchronous I/O facility (aio) library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lse.sourceforge.net/io/aio.html" license=('LGPL') source=(ftp://ftp.kernel.org/pub/linux/libs/aio/$pkgname-$pkgver.tar.bz2) diff --git a/community/libast/PKGBUILD b/community/libast/PKGBUILD index bd2630783..fbe7c3bbd 100644 --- a/community/libast/PKGBUILD +++ b/community/libast/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libast pkgver=0.7 pkgrel=3 pkgdesc="The Library of Assorted Spiffy Things." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://eterm.sourceforge.net" license=('BSD') depends=('imlib2' 'pcre' 'libsm') diff --git a/community/libcgi/PKGBUILD b/community/libcgi/PKGBUILD index 1cbb0ed35..5736cfed5 100644 --- a/community/libcgi/PKGBUILD +++ b/community/libcgi/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libcgi pkgver=1.0 pkgrel=5 pkgdesc='A powerful and easy to use library for writing CGI applications in C' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://libcgi.sourceforge.net/' license=('GPL') depends=('glibc') diff --git a/community/libcompizconfig/PKGBUILD b/community/libcompizconfig/PKGBUILD index 06f224927..901d370fc 100644 --- a/community/libcompizconfig/PKGBUILD +++ b/community/libcompizconfig/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libcompizconfig pkgver=0.8.8 pkgrel=1 pkgdesc="Compiz configuration system library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.compiz.org" license=('GPL') depends=('compiz-core' 'libxml2' 'libxcomposite' 'libxinerama' 'startup-notification' diff --git a/community/libconfig/PKGBUILD b/community/libconfig/PKGBUILD index 901b7e443..aff83cb5a 100644 --- a/community/libconfig/PKGBUILD +++ b/community/libconfig/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libconfig pkgver=1.4.8 pkgrel=1 pkgdesc="C/C++ Configuration File Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hyperrealm.com/libconfig/libconfig.html" license=('LGPL') depends=('gcc-libs' 'texinfo') diff --git a/community/libcss/PKGBUILD b/community/libcss/PKGBUILD index f0411f553..ba01933d5 100644 --- a/community/libcss/PKGBUILD +++ b/community/libcss/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libcss pkgver=0.1.0 pkgrel=2 pkgdesc="A CSS parser and selection engine." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.netsurf-browser.org/projects/libcss/" license=('MIT') depends=('libparserutils' 'libwapcaplet') diff --git a/community/libcuefile/PKGBUILD b/community/libcuefile/PKGBUILD index 92654aec4..7d20e122b 100644 --- a/community/libcuefile/PKGBUILD +++ b/community/libcuefile/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libcuefile pkgver=475 pkgrel=1 pkgdesc="A library to work with CUE files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.musepack.net/index.php?pg=src" license=('GPL2') depends=('glibc') diff --git a/community/libdaq/PKGBUILD b/community/libdaq/PKGBUILD index c949ce3aa..cc8c4b2be 100644 --- a/community/libdaq/PKGBUILD +++ b/community/libdaq/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libdaq pkgver=0.6.2 pkgrel=1 pkgdesc='Data Acquisition library for packet I/O.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.snort.org/' license=('GPL') depends=('libpcap') diff --git a/community/libdbi-drivers/PKGBUILD b/community/libdbi-drivers/PKGBUILD index 18e3d97ac..b3d03e021 100644 --- a/community/libdbi-drivers/PKGBUILD +++ b/community/libdbi-drivers/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=2 pkgdesc="Database drivers for libdbi (MySQL, PostgreSQL, and SQLite)" url="http://libdbi-drivers.sourceforge.net/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libdbi') makedepends=('postgresql-libs' 'libmysqlclient' 'sqlite2' 'sqlite3') optdepends=("postgresql-libs: To work with postgresql using libdbdpgsql " diff --git a/community/libdbi/PKGBUILD b/community/libdbi/PKGBUILD index b05487261..f48fc473f 100644 --- a/community/libdbi/PKGBUILD +++ b/community/libdbi/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A database independant abstraction layer for C" url="http://libdbi.sourceforge.net" license=('LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glibc') options=(!libtool) install=libdbi.install diff --git a/community/libdesktop-agnostic/PKGBUILD b/community/libdesktop-agnostic/PKGBUILD index 3c0072045..9244c165a 100644 --- a/community/libdesktop-agnostic/PKGBUILD +++ b/community/libdesktop-agnostic/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libdesktop-agnostic pkgver=0.3.92 pkgrel=1 pkgdesc="Provides an extensible config API, a unified virtual fs API, and a desktop item editor for GLib-based projects." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/libdesktop-agnostic" license=('GPL' 'LGPL') depends=('glib2' 'gtk2' 'pygtk' 'pygobject') diff --git a/community/libdlna/PKGBUILD b/community/libdlna/PKGBUILD index e3bfb94d4..a5d6be8f5 100644 --- a/community/libdlna/PKGBUILD +++ b/community/libdlna/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=8 pkgdesc="An open-source implementation of DLNA (Digital Living Network Alliance) standards " url="http://libdlna.geexbox.org" license=("LGPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!libtool') makedepends=('ctags') depends=('glibc' 'ffmpeg') diff --git a/community/libdnet/PKGBUILD b/community/libdnet/PKGBUILD index 70cf6e437..cb3d793a0 100644 --- a/community/libdnet/PKGBUILD +++ b/community/libdnet/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libdnet pkgver=1.12 pkgrel=5 pkgdesc="A simplified, portable interface to several low-level networking routines" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') makedepends=(python2) optdepends=(python2) install=(libdnet.install) diff --git a/community/libesmtp/PKGBUILD b/community/libesmtp/PKGBUILD index 76c54991e..cb6999ace 100644 --- a/community/libesmtp/PKGBUILD +++ b/community/libesmtp/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libesmtp pkgver=1.0.6 pkgrel=2 pkgdesc='A library to manage posting mail to a preconfigured MTA.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.stafford.uklinux.net/libesmtp/' license=('LGPL') depends=('openssl') diff --git a/community/libev/PKGBUILD b/community/libev/PKGBUILD index 652d1d0e2..e9dec093d 100644 --- a/community/libev/PKGBUILD +++ b/community/libev/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libev pkgver=4.04 pkgrel=1 pkgdesc="A full-featured and high-performance event loop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://software.schmorp.de/pkg/libev.html" license=('BSD') depends=('glibc') diff --git a/community/libexosip2/PKGBUILD b/community/libexosip2/PKGBUILD index bdf6bd5c1..c2b2b6d0c 100644 --- a/community/libexosip2/PKGBUILD +++ b/community/libexosip2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libexosip2 pkgver=3.5.0 pkgrel=1 pkgdesc="A library that hides the complexity of using SIP for multimedia session establishement" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://savannah.nongnu.org/projects/exosip/" license=('GPL') depends=('libosip2>=3.5.0' 'openssl') diff --git a/community/libextractor/PKGBUILD b/community/libextractor/PKGBUILD index 420a82cc4..14018852b 100644 --- a/community/libextractor/PKGBUILD +++ b/community/libextractor/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libextractor pkgver=0.6.2 pkgrel=4 pkgdesc="A library used to extract meta-data from files of arbitrary type" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') license=('GPL') url="http://gnunet.org/libextractor/" depends=('libvorbis' 'libtool' 'gtk2' 'libgsf' 'libmpeg2' 'texinfo') diff --git a/community/libfakekey/PKGBUILD b/community/libfakekey/PKGBUILD index 691c4ba75..368baa4fd 100644 --- a/community/libfakekey/PKGBUILD +++ b/community/libfakekey/PKGBUILD @@ -4,7 +4,7 @@ pkgname=libfakekey pkgver=0.1 pkgrel=4 pkgdesc='X virtual keyboard library.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://matchbox-project.org/' license=('GPL') depends=('libxtst') diff --git a/community/libfaketime/PKGBUILD b/community/libfaketime/PKGBUILD index a95ab380d..a982b3970 100644 --- a/community/libfaketime/PKGBUILD +++ b/community/libfaketime/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libfaketime pkgver=0.8.1 pkgrel=1 pkgdesc='Report fake dates and times to programs without having to change the system-wide time.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.code-wizards.com/projects/libfaketime/' license=('GPL2') source=("http://www.code-wizards.com/projects/${pkgname}/${pkgname}-${pkgver}.tar.gz") diff --git a/community/libfbclient/PKGBUILD b/community/libfbclient/PKGBUILD index 26409e5a0..b3f1f9b02 100755 --- a/community/libfbclient/PKGBUILD +++ b/community/libfbclient/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libfbclient pkgver=2.5.0.26074 pkgrel=3 pkgdesc="Client library for Firebird." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.firebirdsql.org/" license=('custom') depends=('gcc-libs' 'icu') diff --git a/community/libfm/PKGBUILD b/community/libfm/PKGBUILD index da2d88601..d4c978a1f 100644 --- a/community/libfm/PKGBUILD +++ b/community/libfm/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.1.17 pkgrel=1 pkgdesc="the core of next generation file manager PCManFM" url="http://pcmanfm.sourceforge.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') groups=('lxde') options=('!libtool') diff --git a/community/libgalago-gtk/PKGBUILD b/community/libgalago-gtk/PKGBUILD index ea6182572..97b6966a4 100644 --- a/community/libgalago-gtk/PKGBUILD +++ b/community/libgalago-gtk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libgalago-gtk pkgver=0.5.0 pkgrel=3 pkgdesc="GTK+ widgets for the Galago presence framework" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.galago-project.org" options=('!libtool') license=('LGPL') diff --git a/community/libgalago/PKGBUILD b/community/libgalago/PKGBUILD index 9a3853cef..6e0fd95f9 100644 --- a/community/libgalago/PKGBUILD +++ b/community/libgalago/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libgalago pkgver=0.5.2 pkgrel=3 pkgdesc="The Galago presence library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.galago-project.org" options=('!libtool') license=("LGPL") diff --git a/community/libgda3/PKGBUILD b/community/libgda3/PKGBUILD index 07313f713..f46ce3f00 100644 --- a/community/libgda3/PKGBUILD +++ b/community/libgda3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgda3 pkgver=3.1.5 pkgrel=9 pkgdesc="data abstraction layer; with mysql, pgsql, ldap, xml, sqlite providers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnome-db.org/Download" license=('GPL') depends=('glib2' 'libxslt' 'popt' 'rarian' 'db' 'gnome-vfs' diff --git a/community/libgdamm/PKGBUILD b/community/libgdamm/PKGBUILD index 8d2f15cf6..dffdf753f 100644 --- a/community/libgdamm/PKGBUILD +++ b/community/libgdamm/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=libgdamm pkgname=(libgdamm libgdamm-docs) pkgver=4.99.4.1 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=('libgda' 'libsigc++' 'glibmm' 'glibmm-docs') url="http://gtkmm.sourceforge.net/" license=('LGPL') diff --git a/community/libgeotiff/PKGBUILD b/community/libgeotiff/PKGBUILD index a7e2823f6..5fe0a4863 100644 --- a/community/libgeotiff/PKGBUILD +++ b/community/libgeotiff/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libgeotiff pkgver=1.3.0 pkgrel=1 pkgdesc="A TIFF based interchange format for georeferenced raster imagery" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://www.remotesensing.org/geotiff" depends=('libtiff' 'proj' 'libjpeg>=7') diff --git a/community/libgexiv2/PKGBUILD b/community/libgexiv2/PKGBUILD index bd81279e0..0180e25f0 100644 --- a/community/libgexiv2/PKGBUILD +++ b/community/libgexiv2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgexiv2 pkgver=0.3.1 pkgrel=1 pkgdesc="GObject-based wrapper around the Exiv2 library." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://trac.yorba.org/wiki/gexiv2" license=('GPL2') depends=('exiv2' 'glib2') diff --git a/community/libghemical/PKGBUILD b/community/libghemical/PKGBUILD index cf0a8df0f..ff32e14ad 100644 --- a/community/libghemical/PKGBUILD +++ b/community/libghemical/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2.99.1 pkgrel=1 pkgdesc="Library containing computational chemistry facility of ghemical" license=("GPL") -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://bioinformatics.org/ghemical/libghemical/" depends=('gcc-libs') makedepends=('openbabel' 'intltool>=0.40.0') diff --git a/community/libgig/PKGBUILD b/community/libgig/PKGBUILD index 9b9442753..c7facb6c5 100644 --- a/community/libgig/PKGBUILD +++ b/community/libgig/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libgig pkgver=3.3.0 pkgrel=1 pkgdesc="C++ library for loading Gigasampler and DLS files" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.linuxsampler.org/libgig/" license=('GPL') depends=('gcc-libs' 'util-linux-ng' 'libsndfile') diff --git a/community/libgringotts/PKGBUILD b/community/libgringotts/PKGBUILD index 4dfc27e40..234809a11 100644 --- a/community/libgringotts/PKGBUILD +++ b/community/libgringotts/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgringotts pkgver=1.2.1 pkgrel=7 pkgdesc="Encryption backend for Gringotts." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://developer.berlios.de/projects/gringotts" license=('GPL') depends=('bzip2' 'libmcrypt' 'libtool' 'mhash' 'zlib') diff --git a/community/libgtksourceviewmm2/PKGBUILD b/community/libgtksourceviewmm2/PKGBUILD index 1542c58e1..3d3335105 100644 --- a/community/libgtksourceviewmm2/PKGBUILD +++ b/community/libgtksourceviewmm2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libgtksourceviewmm2 pkgver=2.10.1 pkgrel=1 pkgdesc='A C++ API for gtksourceview2' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://projects.gnome.org/gtksourceviewmm/' license=('LGPL') depends=('gtkmm' 'gtksourceview2') diff --git a/community/libharu/PKGBUILD b/community/libharu/PKGBUILD index 160373489..fb1a48645 100644 --- a/community/libharu/PKGBUILD +++ b/community/libharu/PKGBUILD @@ -9,7 +9,7 @@ pkgver=2.2.1 pkgrel=1 pkgdesc="C/C++ library for generating PDF documents" url="http://libharu.org/wiki/Main_Page" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom:ZLIB') depends=('libpng' 'gcc-libs') options=(!libtool) diff --git a/community/libident/PKGBUILD b/community/libident/PKGBUILD index 715b5e46f..c76f66a97 100644 --- a/community/libident/PKGBUILD +++ b/community/libident/PKGBUILD @@ -3,7 +3,7 @@ pkgname=libident pkgver=0.32 pkgrel=2 pkgdesc="New libident C library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.remlab.net/libident/" license=('custom') source=(http://www.remlab.net/files/libident/libident-$pkgver.tar.gz) diff --git a/community/libinfinity/PKGBUILD b/community/libinfinity/PKGBUILD index 4dc307ca4..14bf68291 100644 --- a/community/libinfinity/PKGBUILD +++ b/community/libinfinity/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libinfinity pkgver=0.5.1 pkgrel=2 pkgdesc="An implementation of the Infininote protocol written in GObject-based C" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gobby.0x539.de" license=('GPL') depends=('gnutls>=1.7.2' 'gsasl>=0.2.21' 'glib2>=2.16' 'libxml2>=2.0' 'gtk2') diff --git a/community/libiptcdata/PKGBUILD b/community/libiptcdata/PKGBUILD index 0f40d86f3..358bc3197 100644 --- a/community/libiptcdata/PKGBUILD +++ b/community/libiptcdata/PKGBUILD @@ -4,7 +4,7 @@ pkgname=libiptcdata pkgver=1.0.4 pkgrel=1 pkgdesc="Library for manipulating the IPTC metadata" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libiptcdata.sourceforge.net/" license=('GPL') depends=('glibc') diff --git a/community/liblinebreak/PKGBUILD b/community/liblinebreak/PKGBUILD index 9db15fe88..06400e82c 100644 --- a/community/liblinebreak/PKGBUILD +++ b/community/liblinebreak/PKGBUILD @@ -3,7 +3,7 @@ pkgname=liblinebreak pkgver=2.0 pkgrel=1 pkgdesc="An implementation of the line breaking algorithm as described in Unicode 5.2.0 Standard Annex 14, Revision 24" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://vimgadgets.sourceforge.net/liblinebreak/" license=("custom:zlib/libpng") depends=("glibc") diff --git a/community/liblockfile/PKGBUILD b/community/liblockfile/PKGBUILD index 730fce864..3fb180733 100644 --- a/community/liblockfile/PKGBUILD +++ b/community/liblockfile/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.08_4 _basever=1.08 pkgrel=1 pkgdesc="a library with NFS-safe locking functions" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://packages.debian.org/unstable/libs/liblockfile1" depends=('glibc') diff --git a/community/libmaa/PKGBUILD b/community/libmaa/PKGBUILD index 5a35a9a5d..ea5a4e14e 100644 --- a/community/libmaa/PKGBUILD +++ b/community/libmaa/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Provides many low-level data structures which are helpful for writing compilers" url="http://sourceforge.net/projects/dict/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glibc') makedepends=('flex') options=('!libtool') diff --git a/community/libmatchbox/PKGBUILD b/community/libmatchbox/PKGBUILD index f0a056430..1da61da49 100644 --- a/community/libmatchbox/PKGBUILD +++ b/community/libmatchbox/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libmatchbox pkgver=1.9 pkgrel=4 pkgdesc="Base library for Matchbox WM" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('pango' 'libpng' 'libjpeg>=7' 'xsettings-client' 'libxext') options=('!libtool') diff --git a/community/libmatio/PKGBUILD b/community/libmatio/PKGBUILD index 61263e4d3..367f011ac 100644 --- a/community/libmatio/PKGBUILD +++ b/community/libmatio/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libmatio pkgver=1.3.3 pkgrel=2 pkgdesc="A C library with a fortran 90/95 module interface for reading/writing MATLAB MAT-files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://sourceforge.net/projects/matio" depends=('gcc-libs') diff --git a/community/libmediainfo/PKGBUILD b/community/libmediainfo/PKGBUILD index e605fc5b3..b062d41ec 100644 --- a/community/libmediainfo/PKGBUILD +++ b/community/libmediainfo/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libmediainfo pkgver=0.7.50 pkgrel=1 pkgdesc="shared library for mediainfo" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mediainfo.sourceforge.net" license=('GPL') depends=( 'curl' 'libmms>=0.5-2' 'libzen>=0.4.15') diff --git a/community/libmemcached/PKGBUILD b/community/libmemcached/PKGBUILD index 81a8afa71..f623ce692 100644 --- a/community/libmemcached/PKGBUILD +++ b/community/libmemcached/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libmemcached pkgver=1.0.2 pkgrel=1 pkgdesc="C and C++ client library to the memcached server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libmemcached.org/" license=('GPL') depends=('glibc') diff --git a/community/libmicrohttpd/PKGBUILD b/community/libmicrohttpd/PKGBUILD index cb6b513d3..907caec87 100644 --- a/community/libmicrohttpd/PKGBUILD +++ b/community/libmicrohttpd/PKGBUILD @@ -9,7 +9,7 @@ pkgname=libmicrohttpd pkgver=0.9.15 pkgrel=1 pkgdesc="a small C library that is supposed to make it easy to run an HTTP server as part of another application." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/libmicrohttpd/" license=('LGPL') options=('!libtool') diff --git a/community/libmirage/PKGBUILD b/community/libmirage/PKGBUILD index b0d1ba02b..7f21a13b1 100644 --- a/community/libmirage/PKGBUILD +++ b/community/libmirage/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libmirage pkgver=1.4.0 pkgrel=1 pkgdesc="CD-ROM image (B6T/CCD/CDI/CUE/ISO/MDS/NRG/TOC) access library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cdemu.sourceforge.net/" license=('GPL') depends=('glib2' 'libsndfile') diff --git a/community/libnetfilter_conntrack/PKGBUILD b/community/libnetfilter_conntrack/PKGBUILD index 6d22c0edf..a62461fe3 100644 --- a/community/libnetfilter_conntrack/PKGBUILD +++ b/community/libnetfilter_conntrack/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libnetfilter_conntrack pkgver=0.9.1 pkgrel=1 pkgdesc="userspace library providing a programming interface (API) to the in-kernel connection tracking state table" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=(libnfnetlink) makedepends=(pkgconfig) url="http://www.netfilter.org/projects/libnetfilter_conntrack/index.html" diff --git a/community/libnetfilter_queue/PKGBUILD b/community/libnetfilter_queue/PKGBUILD index c4b25ba9c..e8622ab11 100644 --- a/community/libnetfilter_queue/PKGBUILD +++ b/community/libnetfilter_queue/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libnetfilter_queue pkgver=1.0.0 pkgrel=1 pkgdesc="userspace library providing an API to packets that have been queued by the kernel packet filter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.netfilter.org/projects/libnetfilter_queue/index.html" license=('GPL') depends=(libnfnetlink) diff --git a/community/libnewt/PKGBUILD b/community/libnewt/PKGBUILD index c7a1dff03..0b924ad9e 100644 --- a/community/libnewt/PKGBUILD +++ b/community/libnewt/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libnewt pkgver=0.52.12 pkgrel=3 pkgdesc="Not Erik's Windowing Toolkit - text mode windowing with slang" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.redhat.com" license=('GPL') depends=('slang' 'popt' 'gpm') diff --git a/community/libnfnetlink/PKGBUILD b/community/libnfnetlink/PKGBUILD index fc8e6d8dd..1d984263b 100644 --- a/community/libnfnetlink/PKGBUILD +++ b/community/libnfnetlink/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libnfnetlink pkgver=1.0.0 pkgrel=2 pkgdesc="low-level library for netfilter related kernel/userspace communication" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.netfilter.org/projects/libnfnetlink/index.html" license=('GPL') depends=('glibc') diff --git a/community/libnids/PKGBUILD b/community/libnids/PKGBUILD index 9c3991524..1618d4c63 100644 --- a/community/libnids/PKGBUILD +++ b/community/libnids/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libnids pkgver=1.24 pkgrel=1 pkgdesc="An implementation of an E-component of Network Intrusion Detection System." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libnids.sourceforge.net/" license=('GPL') depends=('libnet' 'libpcap' 'glib2') diff --git a/community/libnoise/PKGBUILD b/community/libnoise/PKGBUILD index 6a7e56ee5..969358eda 100644 --- a/community/libnoise/PKGBUILD +++ b/community/libnoise/PKGBUILD @@ -4,7 +4,7 @@ pkgname=libnoise pkgver=1.0.0 pkgrel=1 pkgdesc="A portable, open-source, coherent noise-generating library for C++" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libnoise.sourceforge.net/" license=('LGPL') makedepends=('cmake' 'unzip') diff --git a/community/libnsbmp/PKGBUILD b/community/libnsbmp/PKGBUILD index 04bfb620e..3a51b7da5 100644 --- a/community/libnsbmp/PKGBUILD +++ b/community/libnsbmp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libnsbmp pkgver=0.0.3 pkgrel=1 pkgdesc="Decoding library for BMP and ICO image file formats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.netsurf-browser.org/projects/libnsbmp" license=('MIT') depends=('glibc') diff --git a/community/libnsgif/PKGBUILD b/community/libnsgif/PKGBUILD index 679d24926..ba8b0f7a2 100644 --- a/community/libnsgif/PKGBUILD +++ b/community/libnsgif/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libnsgif pkgver=0.0.3 pkgrel=1 pkgdesc="Decoding library for the GIF image file format" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.netsurf-browser.org/projects/libnsgif" license=('MIT') depends=('glibc') diff --git a/community/liboglappth/PKGBUILD b/community/liboglappth/PKGBUILD index 7d3b4f0f2..d96dfba27 100644 --- a/community/liboglappth/PKGBUILD +++ b/community/liboglappth/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.98 pkgrel=2 pkgdesc="Library containing computational chemistry facility of ghemical" license=("GPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://bioinformatics.org/ghemical/libghemical/" depends=('gcc-libs') makedepends=('mesa') diff --git a/community/libopenraw/PKGBUILD b/community/libopenraw/PKGBUILD index 7d73f78ac..d57b1c719 100644 --- a/community/libopenraw/PKGBUILD +++ b/community/libopenraw/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libopenraw pkgver=0.0.8 pkgrel=4 pkgdesc="A software implementation for camera RAW files decoding" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libopenraw.freedesktop.org" license=('LGPL') depends=('gtk2') diff --git a/community/libopensync/PKGBUILD b/community/libopensync/PKGBUILD index 9fb84c0be..8e2ff03b8 100644 --- a/community/libopensync/PKGBUILD +++ b/community/libopensync/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=3 pkgdesc='Stable version of the opensync synchronisation framework' url='http://www.opensync.org' license=('LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=('python2' 'cmake' 'chrpath') depends=('glib2' 'libxml2' 'sqlite3' 'libxslt') options=('!libtool') diff --git a/community/liboping/PKGBUILD b/community/liboping/PKGBUILD index f4c9acae2..f7907c5d0 100644 --- a/community/liboping/PKGBUILD +++ b/community/liboping/PKGBUILD @@ -5,7 +5,7 @@ pkgver=1.6.1 pkgrel=1 pkgdesc='C library to generate ICMP echo requests, better known as "ping packets"' url='http://verplant.org/liboping/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') options=('!libtool') depends=('libcap') diff --git a/community/libosip2/PKGBUILD b/community/libosip2/PKGBUILD index 3e33d2ddb..5ab3ef63f 100644 --- a/community/libosip2/PKGBUILD +++ b/community/libosip2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libosip2 pkgver=3.5.0 pkgrel=1 pkgdesc="oSIP is an implementation of SIP" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/osip/" license=('LGPL') depends=(glibc) diff --git a/community/libpaper/PKGBUILD b/community/libpaper/PKGBUILD index bec068dd0..dea6b1ee0 100644 --- a/community/libpaper/PKGBUILD +++ b/community/libpaper/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libpaper pkgver=1.1.24 pkgrel=1 pkgdesc="Library for handling paper characteristics" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://packages.debian.org/unstable/source/libpaper" license=('GPL') source=(http://ftp.debian.org/debian/pool/main/libp/libpaper/libpaper_${pkgver}.tar.gz) diff --git a/community/libpar2/PKGBUILD b/community/libpar2/PKGBUILD index 48d21954a..05317e3f0 100644 --- a/community/libpar2/PKGBUILD +++ b/community/libpar2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libpar2 pkgver=0.2 pkgrel=4 pkgdesc="Parity checking library," -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://parchive.sourceforge.net/" license=('GPL') depends=('libsigc++2.0') diff --git a/community/libparserutils/PKGBUILD b/community/libparserutils/PKGBUILD index e9cd85e1b..470ddbe75 100644 --- a/community/libparserutils/PKGBUILD +++ b/community/libparserutils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libparserutils pkgver=0.1.1 pkgrel=1 pkgdesc="Library for building efficient parsers" -arch=('x86_64' 'i686') +arch=('i686' 'x86_64' 'mips64el') url="http://www.netsurf-browser.org/projects/libparserutils" license=('MIT') source=("http://www.netsurf-browser.org/projects/releases/${pkgname}-${pkgver}-src.tar.gz") diff --git a/community/libpqxx/PKGBUILD b/community/libpqxx/PKGBUILD index 24d52cc41..0ad46eb8e 100644 --- a/community/libpqxx/PKGBUILD +++ b/community/libpqxx/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libpqxx pkgver=3.1 pkgrel=1 pkgdesc="C++ client API for PostgreSQL" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://pqxx.org/development/libpqxx/" depends=('postgresql-libs>=8.4.1') diff --git a/community/libraw/PKGBUILD b/community/libraw/PKGBUILD index 07d05193f..b741f675b 100644 --- a/community/libraw/PKGBUILD +++ b/community/libraw/PKGBUILD @@ -8,7 +8,7 @@ _pkgbasename=LibRaw pkgver=0.13.8 pkgrel=1 pkgdesc="A library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.libraw.org/" license=('CDDL' 'LGPL' 'custom') depends=('lcms') diff --git a/community/librcc/PKGBUILD b/community/librcc/PKGBUILD index ca2eb950c..61679f035 100644 --- a/community/librcc/PKGBUILD +++ b/community/librcc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=librcc pkgver=0.2.6 pkgrel=4 pkgdesc="Charset Conversion Library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://rusxmms.sourceforge.net/" license=('GPL') depends=(aspell enca libxml2 db librcd) diff --git a/community/librcd/PKGBUILD b/community/librcd/PKGBUILD index 6b4daf162..03f8adcbf 100644 --- a/community/librcd/PKGBUILD +++ b/community/librcd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=librcd pkgver=0.1.11 pkgrel=2 pkgdesc="Charset Detection Library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://rusxmms.sourceforge.net/" depends=(glibc) license=('GPL') diff --git a/community/librep/PKGBUILD b/community/librep/PKGBUILD index c784160b8..676a6097f 100644 --- a/community/librep/PKGBUILD +++ b/community/librep/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.92.1b pkgrel=1 pkgdesc="A Lisp system for UNIX" license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sawfish.wikia.com/wiki/Librep" depends=('gmp' 'gdbm' 'libffi') install=${pkgname}.install diff --git a/community/libreplaygain/PKGBUILD b/community/libreplaygain/PKGBUILD index 19505622d..c4b978d51 100644 --- a/community/libreplaygain/PKGBUILD +++ b/community/libreplaygain/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libreplaygain pkgver=475 pkgrel=1 pkgdesc="A library to adjust audio gain" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.musepack.net/index.php?pg=src" license=('LGPL') depends=('glibc') diff --git a/community/librsync/PKGBUILD b/community/librsync/PKGBUILD index d0fd33cf3..943fe9801 100644 --- a/community/librsync/PKGBUILD +++ b/community/librsync/PKGBUILD @@ -7,7 +7,7 @@ pkgname=librsync pkgver=0.9.7 pkgrel=5 pkgdesc="A free software library that implements the rsync remote-delta algorithm (rdiff)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://librsync.sourceforge.net/" license=('GPL') depends=('popt' 'zlib' 'bzip2') diff --git a/community/librtfcomp/PKGBUILD b/community/librtfcomp/PKGBUILD index 7622c5f1b..af1efdc99 100644 --- a/community/librtfcomp/PKGBUILD +++ b/community/librtfcomp/PKGBUILD @@ -4,7 +4,7 @@ pkgname=librtfcomp pkgver=1.1 pkgrel=4 pkgdesc="SynCE librtfcomp library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://www.synce.org/" depends=(pyrex) diff --git a/community/libsieve/PKGBUILD b/community/libsieve/PKGBUILD index fc080c5f8..e24061ba2 100644 --- a/community/libsieve/PKGBUILD +++ b/community/libsieve/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libsieve pkgver=2.2.7 pkgrel=2 pkgdesc="sieve interpretator lib" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://libsieve.sourceforge.net/" license=('GPL') options=('!libtool') diff --git a/community/libstatgrab/PKGBUILD b/community/libstatgrab/PKGBUILD index 08f42c7d5..16bb04e6c 100644 --- a/community/libstatgrab/PKGBUILD +++ b/community/libstatgrab/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libstatgrab pkgver=0.17 pkgrel=1 pkgdesc="A library that provides cross platform access to statistics about the system on which it's run" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.i-scream.org/libstatgrab" license=('LGPL' 'GPL') depends=('ncurses' 'perl') diff --git a/community/libsynaptics/PKGBUILD b/community/libsynaptics/PKGBUILD index 69966e5f2..9422a9a01 100644 --- a/community/libsynaptics/PKGBUILD +++ b/community/libsynaptics/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libsynaptics pkgver=0.14.6c pkgrel=4 pkgdesc="Library for accessing synaptics touchpads" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qsynaptics.sourceforge.net" license=('GPL') depends=('gcc-libs') diff --git a/community/libtar/PKGBUILD b/community/libtar/PKGBUILD index 62f5394b9..218f5a557 100644 --- a/community/libtar/PKGBUILD +++ b/community/libtar/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libtar pkgver=1.2.11 pkgrel=2 pkgdesc="C library for manipulating POSIX tar files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.feep.net/libtar/" license=('BSD') depends=('zlib') diff --git a/community/libtlen/PKGBUILD b/community/libtlen/PKGBUILD index e4c4bbf72..a853c7193 100644 --- a/community/libtlen/PKGBUILD +++ b/community/libtlen/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libtlen pkgver=20041113 pkgrel=4 pkgdesc="A Tlen.pl protocol library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libtlen.sourceforge.net/" license=("GPL") depends=(glibc) diff --git a/community/libtorrent/PKGBUILD b/community/libtorrent/PKGBUILD index a15316f09..de466dea5 100644 --- a/community/libtorrent/PKGBUILD +++ b/community/libtorrent/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc='BitTorrent library written in C++' url='http://libtorrent.rakshasa.no/' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libsigc++2.0' 'openssl') options=('!libtool') source=("http://libtorrent.rakshasa.no/downloads/${pkgname}-${pkgver}.tar.gz") diff --git a/community/libview/PKGBUILD b/community/libview/PKGBUILD index faf65a9cd..1137d4e78 100644 --- a/community/libview/PKGBUILD +++ b/community/libview/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libview pkgver=0.6.6 pkgrel=1 pkgdesc="A collection of widgets that were developed at VMware" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://view.sourceforge.net" options=('!libtool') license=('MIT') diff --git a/community/libvirt/PKGBUILD b/community/libvirt/PKGBUILD index 2ec0f45c9..8e1348240 100644 --- a/community/libvirt/PKGBUILD +++ b/community/libvirt/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libvirt pkgver=0.9.6 pkgrel=1 pkgdesc="API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libvirt.org/" license=('LGPL') depends=('e2fsprogs' 'gnutls' 'iptables' 'libxml2' 'parted' 'polkit' 'python2' diff --git a/community/libvisual-projectm/PKGBUILD b/community/libvisual-projectm/PKGBUILD index ea201188d..da278241b 100644 --- a/community/libvisual-projectm/PKGBUILD +++ b/community/libvisual-projectm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libvisual-projectm pkgver=2.0.1 pkgrel=1 pkgdesc="ProjectM XMMS plugin" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://projectm.sourceforge.net/" license=('GPL') depends=('projectm>=2.0.1' 'libvisual' 'sdl') diff --git a/community/libwapcaplet/PKGBUILD b/community/libwapcaplet/PKGBUILD index 6dc92c5ce..a1ce96856 100644 --- a/community/libwapcaplet/PKGBUILD +++ b/community/libwapcaplet/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libwapcaplet pkgver=0.1.0 pkgrel=2 pkgdesc="A string internment library with rapid string comparison." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.netsurf-browser.org/projects/libwapcaplet/" license=('MIT') source=(http://www.netsurf-browser.org/projects/releases/${pkgname}-${pkgver}-src.tar.gz) diff --git a/community/libwww/PKGBUILD b/community/libwww/PKGBUILD index c26669f7d..a0d1852ac 100644 --- a/community/libwww/PKGBUILD +++ b/community/libwww/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libwww pkgver=5.4.0 pkgrel=5 pkgdesc="A general-purpose client side WEB API" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.w3.org/Library/" license=('W3C') depends=() diff --git a/community/libx86/PKGBUILD b/community/libx86/PKGBUILD index 460166174..99cd709f4 100644 --- a/community/libx86/PKGBUILD +++ b/community/libx86/PKGBUILD @@ -8,7 +8,7 @@ pkgname=libx86 pkgver=1.1 pkgrel=3 pkgdesc="Provides an lrmi interface that works on x86, am64 and alpha" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.codon.org.uk/~mjg59/libx86/" license=('custom') depends=('glibc') diff --git a/community/libx86emu/PKGBUILD b/community/libx86emu/PKGBUILD index 83f8429b6..fde41f504 100644 --- a/community/libx86emu/PKGBUILD +++ b/community/libx86emu/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.1 _pkgver=$pkgver-9.9 pkgrel=28 pkgdesc='x86 emulation library' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.opensuse.org/' license=('BSD') depends=('glibc') diff --git a/community/libxdg-basedir/PKGBUILD b/community/libxdg-basedir/PKGBUILD index e11b24214..755f4ad35 100644 --- a/community/libxdg-basedir/PKGBUILD +++ b/community/libxdg-basedir/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxdg-basedir pkgver=1.1.1 pkgrel=1 pkgdesc="An implementation of the XDG Base Directory specifications." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://n.ethz.ch/student/nevillm/download/libxdg-basedir" license=('MIT') depends=('glibc') diff --git a/community/libxnvctrl/PKGBUILD b/community/libxnvctrl/PKGBUILD index 0f1a0a2b5..1986d893e 100644 --- a/community/libxnvctrl/PKGBUILD +++ b/community/libxnvctrl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libxnvctrl pkgver=1.16 pkgrel=2 pkgdesc='NVCtrl library' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.nvidia.com/' license=('GPL') makedepends=('libx11' 'xextproto' 'libxext') diff --git a/community/libyaml/PKGBUILD b/community/libyaml/PKGBUILD index f3ef4b81c..cce92abf4 100644 --- a/community/libyaml/PKGBUILD +++ b/community/libyaml/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libyaml pkgver=0.1.4 pkgrel=1 pkgdesc="YAML 1.1 library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pyyaml.org/wiki/LibYAML" license=('MIT') source=(http://pyyaml.org/download/libyaml/yaml-$pkgver.tar.gz) diff --git a/community/libzen/PKGBUILD b/community/libzen/PKGBUILD index 39097ffc6..0ef5e80cc 100644 --- a/community/libzen/PKGBUILD +++ b/community/libzen/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libzen pkgver=0.4.22 pkgrel=1 pkgdesc="shared library for libmediainfo and mediainfo" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mediainfo.sourceforge.net" license=('BSD') depends=('gcc-libs') diff --git a/community/libzrtpcpp/PKGBUILD b/community/libzrtpcpp/PKGBUILD index 0723c10b4..415edc81a 100644 --- a/community/libzrtpcpp/PKGBUILD +++ b/community/libzrtpcpp/PKGBUILD @@ -8,7 +8,7 @@ pkgname=libzrtpcpp pkgver=1.4.2 pkgrel=5 pkgdesc="An extension to Real-time Transport Protocol (RTP) which describes a method of Diffie-Hellman key agreement for Secure Real-time Transport Protocol (SRTP)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://zfoneproject.com" license=('GPL') depends=('ccrtp') diff --git a/community/lightspark/PKGBUILD b/community/lightspark/PKGBUILD index 517bbb7bc..3de965a51 100644 --- a/community/lightspark/PKGBUILD +++ b/community/lightspark/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lightspark pkgver=0.5.2.1 pkgrel=1 pkgdesc='An alternative Flash Player for Linux.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://lightspark.sourceforge.net' license=('LGPL3') conflicts=('lightspark-git') diff --git a/community/lilypond/PKGBUILD b/community/lilypond/PKGBUILD index 0765a2f22..d66a9f285 100644 --- a/community/lilypond/PKGBUILD +++ b/community/lilypond/PKGBUILD @@ -8,7 +8,7 @@ pkgname=lilypond pkgver=2.14.2 pkgrel=1 pkgdesc="An automated music engraving system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lilypond.org" license=('GPL') depends=('guile' 'python2' 'texlive-core' 'ghostscript' 'pango' 'fontconfig') diff --git a/community/lilyterm/PKGBUILD b/community/lilyterm/PKGBUILD index a6627c72d..4685226ff 100644 --- a/community/lilyterm/PKGBUILD +++ b/community/lilyterm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lilyterm pkgver=0.9.8 pkgrel=1 pkgdesc="A light and easy to use libvte based X terminal emulator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lilyterm.luna.com.tw/index_en.html" license=('GPL3') depends=('vte') diff --git a/community/lincity-ng/PKGBUILD b/community/lincity-ng/PKGBUILD index 3efb1f767..78463052c 100644 --- a/community/lincity-ng/PKGBUILD +++ b/community/lincity-ng/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lincity-ng pkgver=2.0 pkgrel=3 pkgdesc="A City Simulation Game. It is a polished and improved version of the classic LinCity game" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lincity-ng.berlios.de/wiki/index.php/Main_Page" license=('GPL' 'custom') depends=('sdl_mixer' 'sdl_ttf' 'sdl_image' 'physfs' 'libxml2' 'sdl_gfx' 'gcc-libs' 'libgl') diff --git a/community/linphone/PKGBUILD b/community/linphone/PKGBUILD index a4712826d..080dc9ed7 100644 --- a/community/linphone/PKGBUILD +++ b/community/linphone/PKGBUILD @@ -6,7 +6,7 @@ pkgname=linphone pkgver=3.4.3 pkgrel=4 pkgdesc="A Voice-over-IP phone" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.linphone.org/index.php/eng" license=('GPL') depends=('alsa-lib' 'ffmpeg' 'gtk2' 'libexosip2' 'speex' 'libv4l' 'libglade' 'v4l-utils' diff --git a/community/linuxdcpp/PKGBUILD b/community/linuxdcpp/PKGBUILD index fe546fdfc..eaef8d232 100644 --- a/community/linuxdcpp/PKGBUILD +++ b/community/linuxdcpp/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=2 pkgdesc="A Gtk+ Direct Connect client based on DC++." url="https://launchpad.net/linuxdcpp/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('openssl' 'glib2' 'libglade' 'bzip2' 'libnotify' 'hicolor-icon-theme') makedepends=('scons' 'boost') conflicts=('linuxdcpp-bzr') diff --git a/community/linuxsampler/PKGBUILD b/community/linuxsampler/PKGBUILD index 46560fbf9..f2f7f9846 100644 --- a/community/linuxsampler/PKGBUILD +++ b/community/linuxsampler/PKGBUILD @@ -7,7 +7,7 @@ pkgname=linuxsampler pkgver=1.0.0 pkgrel=1 pkgdesc="Professional-grade audio sampler alternative to Gigasampler" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.linuxsampler.org/" license=('GPL' 'custom') depends=('libgig' 'jack' 'sqlite3') diff --git a/community/linuxtv-dvb-apps/PKGBUILD b/community/linuxtv-dvb-apps/PKGBUILD index 66192edc6..a81c5e802 100644 --- a/community/linuxtv-dvb-apps/PKGBUILD +++ b/community/linuxtv-dvb-apps/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.1.1 pkgrel=4 _hgrev=68d20621d93a pkgdesc='Viewer programs for DVB cards' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.linuxtv.org/' license=('GPL') install=linuxtv-dvb-apps.install diff --git a/community/listen/PKGBUILD b/community/listen/PKGBUILD index b5220928f..ddfb63650 100644 --- a/community/listen/PKGBUILD +++ b/community/listen/PKGBUILD @@ -7,7 +7,7 @@ pkgname=listen pkgver=0.6.5 pkgrel=8 pkgdesc="Music player and management for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.listen-project.org/" license=('GPL2') depends=('python2-egg' 'python2-libgnome' 'mutagen' 'desktop-file-utils' diff --git a/community/lmms/PKGBUILD b/community/lmms/PKGBUILD index e3fcd7659..c1827d8ab 100644 --- a/community/lmms/PKGBUILD +++ b/community/lmms/PKGBUILD @@ -7,7 +7,7 @@ pkgname=lmms pkgver=0.4.12 pkgrel=1 pkgdesc="The Linux MultiMedia Studio" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lmms.sourceforge.net/" license=('GPL') depends=('sdl' 'glib2' 'fluidsynth' 'libpng' 'libvorbis' 'libxft' 'libxinerama' 'qt' 'sdl_sound' 'libsamplerate' 'shared-mime-info') diff --git a/community/lockdev/PKGBUILD b/community/lockdev/PKGBUILD index 6486c74aa..7949b4cdd 100644 --- a/community/lockdev/PKGBUILD +++ b/community/lockdev/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=3 pkgdesc='Run-time shared library for locking devices, using _both_ FSSTND and SVr4 methods.' url='http://packages.qa.debian.org/l/lockdev.html' license=("GPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=("http://ftp.debian.org/debian/pool/main/l/${pkgname}/${pkgname}_${_pkgver}.orig.tar.gz" "http://ftp.debian.org/debian/pool/main/l/${pkgname}/${pkgname}_${pkgver/_/-}.diff.gz") md5sums=('64b9c1b87b125fc348e892e24625524a' diff --git a/community/lockfile-progs/PKGBUILD b/community/lockfile-progs/PKGBUILD index b49a8f50e..70dee143a 100644 --- a/community/lockfile-progs/PKGBUILD +++ b/community/lockfile-progs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lockfile-progs pkgver=0.1.15 pkgrel=1 pkgdesc="programs for locking and unlocking files and mailboxes" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://packages.debian.org/unstable/misc/lockfile-progs" depends=('glibc') diff --git a/community/lorcon-old-svn/PKGBUILD b/community/lorcon-old-svn/PKGBUILD index fedfc4e34..4a14578a3 100644 --- a/community/lorcon-old-svn/PKGBUILD +++ b/community/lorcon-old-svn/PKGBUILD @@ -8,7 +8,7 @@ makedepends=('subversion') pkgdesc="Loss Of Radio CONnectivity: A generic library for injecting 802.11 frames, capable of injection via multiple driver frameworks, without forcing modification of the application code." url="http://802.11ninja.net" license="GPL" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') _svntrunk=http://802.11ninja.net/svn/lorcon/branch/lorcon-old/ _svnmod=lorcon-old diff --git a/community/lrzsz/PKGBUILD b/community/lrzsz/PKGBUILD index eb90c46d6..66a420ebc 100644 --- a/community/lrzsz/PKGBUILD +++ b/community/lrzsz/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=3 pkgdesc="xmodem, ymodem and zmodem file transfer protocols" url="http://www.ohse.de/uwe/software/lrzsz.html" license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=(http://www.ohse.de/uwe/releases/$pkgname-$pkgver.tar.gz lrzsz.patch) md5sums=('b5ce6a74abc9b9eb2af94dffdfd372a4' diff --git a/community/lsb-release/PKGBUILD b/community/lsb-release/PKGBUILD index fa910772e..896a8be32 100644 --- a/community/lsb-release/PKGBUILD +++ b/community/lsb-release/PKGBUILD @@ -7,7 +7,7 @@ pkgname=lsb-release pkgver=1.4 pkgrel=10 pkgdesc="LSB version query program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.linuxbase.org/" license=('GPL2') install=lsb-release.install diff --git a/community/lshw/PKGBUILD b/community/lshw/PKGBUILD index 723026e3b..29c2b6d34 100644 --- a/community/lshw/PKGBUILD +++ b/community/lshw/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc="A small tool to provide detailed information on the hardware configuration of the machine." url="http://ezix.org/project/wiki/HardwareLiSter" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gcc-libs') optdepends=('gtk2') makedepends=('gcc') diff --git a/community/ltris/PKGBUILD b/community/ltris/PKGBUILD index c500494db..8d262586a 100644 --- a/community/ltris/PKGBUILD +++ b/community/ltris/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ltris pkgver=1.0.17 pkgrel=1 pkgdesc="A tetris clone where you have a bowl with blocks falling down" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lgames.sourceforge.net/index.php?project=LTris" license=('GPL') depends=('sdl_mixer') diff --git a/community/lua-zlib/PKGBUILD b/community/lua-zlib/PKGBUILD index 0ab900164..971baccb9 100644 --- a/community/lua-zlib/PKGBUILD +++ b/community/lua-zlib/PKGBUILD @@ -8,7 +8,7 @@ _gitver=8d07669 _luaver=5.1 url="http://github.com/brimworks/lua-zlib" pkgdesc='Simple streaming interface to zlib for Lua.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('MIT') depends=('lua' 'zlib') makedepends=('cmake') diff --git a/community/luaexpat/PKGBUILD b/community/luaexpat/PKGBUILD index a69a617b8..4d4a35193 100644 --- a/community/luaexpat/PKGBUILD +++ b/community/luaexpat/PKGBUILD @@ -4,7 +4,7 @@ pkgname=luaexpat pkgver=1.2.0 pkgrel=1 pkgdesc='LuaExpat is a SAX XML parser based on the Expat library. LuaExpat is free software and uses the same license as Lua 5.0.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://code.matthewwild.co.uk/lua-expat' license=('MIT') makedepends=('gcc' 'lua>=5.1' 'expat>=2') diff --git a/community/luafilesystem/PKGBUILD b/community/luafilesystem/PKGBUILD index 49266f90b..ebfdd18b6 100644 --- a/community/luafilesystem/PKGBUILD +++ b/community/luafilesystem/PKGBUILD @@ -6,7 +6,7 @@ pkgname=luafilesystem pkgver=1.5.0 pkgrel=1 pkgdesc="File System Library for the Lua Programming Language" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.keplerproject.org/luafilesystem/" license=('MIT') depends=(lua) diff --git a/community/luakit/PKGBUILD b/community/luakit/PKGBUILD index c2e105479..f5630efd1 100644 --- a/community/luakit/PKGBUILD +++ b/community/luakit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=luakit pkgver=2011.07.22 pkgrel=2 pkgdesc='luakit is a highly configurable, micro-browser framework based on the WebKit web content engine and the GTK+ toolkit."Stable" release' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.luakit.org/projects/luakit' license=('GPL3') depends=('libwebkit' 'luafilesystem' 'libunique') diff --git a/community/luarocks/PKGBUILD b/community/luarocks/PKGBUILD index 2b29ab5c8..a050d0b6a 100644 --- a/community/luarocks/PKGBUILD +++ b/community/luarocks/PKGBUILD @@ -6,7 +6,7 @@ pkgname=luarocks pkgver=2.0.6 pkgrel=1 pkgdesc='Deployment and management system for Lua modules' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://luarocks.org/" depends=('lua' 'unzip' 'zip' 'curl') optdepends=('cvs: for fetching sources from CVS repositories' diff --git a/community/luasec/PKGBUILD b/community/luasec/PKGBUILD index 893559266..231e07f99 100644 --- a/community/luasec/PKGBUILD +++ b/community/luasec/PKGBUILD @@ -7,7 +7,7 @@ pkgname=luasec pkgver=0.4 pkgrel=2 pkgdesc="Lua bindings for OpenSSL library to provide TLS/SSL communication." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://luasec.luaforge.net/" license=('MIT') depends=('openssl>=0.9.7' 'lua>=5.1' 'luasocket>=2.0.2') diff --git a/community/luasocket/PKGBUILD b/community/luasocket/PKGBUILD index 21e96f09d..488f518d7 100644 --- a/community/luasocket/PKGBUILD +++ b/community/luasocket/PKGBUILD @@ -6,7 +6,7 @@ pkgname=luasocket pkgver=2.0.2 pkgrel=5 pkgdesc="Luasocket is the most comprehensive networking support library for the Lua language." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cs.princeton.edu/~diego/professional/luasocket/" license=('MIT') depends=(lua) diff --git a/community/luasql-mysql/PKGBUILD b/community/luasql-mysql/PKGBUILD index b5d3e95ef..ba64c3d79 100644 --- a/community/luasql-mysql/PKGBUILD +++ b/community/luasql-mysql/PKGBUILD @@ -6,7 +6,7 @@ pkgname=luasql-mysql pkgver=2.1.1 pkgrel=6 pkgdesc="MySQL module for Lua" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.keplerproject.org/luasql/" license=('MIT') depends=('lua' 'libmysqlclient') diff --git a/community/luminancehdr/PKGBUILD b/community/luminancehdr/PKGBUILD index 4d960d8e7..37b12dd23 100644 --- a/community/luminancehdr/PKGBUILD +++ b/community/luminancehdr/PKGBUILD @@ -7,7 +7,7 @@ pkgname=luminancehdr pkgver=2.1.0 pkgrel=2 pkgdesc='Open source graphical user interface application that aims to provide a workflow for HDR imaging' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://qtpfsgui.sourceforge.net/' license=('GPL') depends=('exiv2' 'fftw' 'gsl' 'hicolor-icon-theme' 'libraw' 'libtiff' 'openexr' 'qt') diff --git a/community/luxrays/PKGBUILD b/community/luxrays/PKGBUILD index c9d204dc6..fa6b8d01b 100644 --- a/community/luxrays/PKGBUILD +++ b/community/luxrays/PKGBUILD @@ -6,7 +6,7 @@ _pkgver=ed424ec77571 pkgrel=6 epoch=0 pkgdesc="Accelerate the ray intersection process by using GPUs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.luxrender.net/" license=('GPL') depends=('freeimage' 'freeglut' 'glew' 'libcl') diff --git a/community/luxrender/PKGBUILD b/community/luxrender/PKGBUILD index 0796e26b4..46af29ad7 100644 --- a/community/luxrender/PKGBUILD +++ b/community/luxrender/PKGBUILD @@ -9,7 +9,7 @@ _luxblend=9cb3fcee0be8 _blender=2.60 pkgrel=9 pkgdesc="Rendering system for physically correct, unbiased image synthesis" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.luxrender.net/" license=('GPL') depends=('boost-libs' 'freeimage' 'openexr' 'libcl') diff --git a/community/lwm/PKGBUILD b/community/lwm/PKGBUILD index 015928b53..f14f5c36a 100644 --- a/community/lwm/PKGBUILD +++ b/community/lwm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=lwm pkgver=1.2.2 pkgrel=1 pkgdesc="a very light weight window manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.jfc.org.uk/software/lwm.html" depends=('xorg-server') diff --git a/community/lwp/PKGBUILD b/community/lwp/PKGBUILD index cf51ab8d4..6c70d064b 100644 --- a/community/lwp/PKGBUILD +++ b/community/lwp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lwp pkgver=2.6 pkgrel=1 pkgdesc="Light weight process library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.coda.cs.cmu.edu" options=('!libtool') license=("LGPL") diff --git a/community/lxappearance/PKGBUILD b/community/lxappearance/PKGBUILD index 48b02cb73..92b897bd2 100644 --- a/community/lxappearance/PKGBUILD +++ b/community/lxappearance/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lxappearance pkgver=0.5.1 pkgrel=2 pkgdesc="GTK+ theme switcher of the LXDE Desktop (manages icons and fonts)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://lxde.org/" groups=('lxde') diff --git a/community/lxde-common/PKGBUILD b/community/lxde-common/PKGBUILD index 808afbf1f..2bf03bb55 100644 --- a/community/lxde-common/PKGBUILD +++ b/community/lxde-common/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lxde-common pkgver=0.5.5 pkgrel=1 pkgdesc="Common files of the LXDE Desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') groups=('lxde') depends=('libx11' 'glib2' 'lxde-icon-theme') diff --git a/community/lxdm/PKGBUILD b/community/lxdm/PKGBUILD index 12462f625..ece3a58fa 100644 --- a/community/lxdm/PKGBUILD +++ b/community/lxdm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=lxdm pkgver=0.4.1 pkgrel=5 pkgdesc="Lightweight Display Manager (part of LXDE)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/lxdm/" license=('GPL') groups=('lxde') diff --git a/community/lxlauncher/PKGBUILD b/community/lxlauncher/PKGBUILD index 743a83d99..c8bac639a 100644 --- a/community/lxlauncher/PKGBUILD +++ b/community/lxlauncher/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lxlauncher pkgver=0.2.2 pkgrel=1 pkgdesc="Launcher for Asus EeePC (part of LXDE)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://lxde.org/" groups=('lxde') diff --git a/community/lxmenu-data/PKGBUILD b/community/lxmenu-data/PKGBUILD index 6087648d9..cdb8fc741 100644 --- a/community/lxmenu-data/PKGBUILD +++ b/community/lxmenu-data/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lxmenu-data pkgver=0.1.2 pkgrel=1 pkgdesc="freedesktop.org desktop menus for LXDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://lxde.org/" groups=('lxde') diff --git a/community/lxnm/PKGBUILD b/community/lxnm/PKGBUILD index 8543678e2..a14cc780e 100644 --- a/community/lxnm/PKGBUILD +++ b/community/lxnm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lxnm pkgver=0.2.2 pkgrel=2 pkgdesc="A Network Manager (Part of LXDE)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://lxde.org" depends=('glib2') diff --git a/community/lxpanel/PKGBUILD b/community/lxpanel/PKGBUILD index 802c2e2fa..2d4d83d47 100644 --- a/community/lxpanel/PKGBUILD +++ b/community/lxpanel/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lxpanel pkgver=0.5.8 pkgrel=1 pkgdesc="Panel of the LXDE Desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://lxde.org/" groups=('lxde') diff --git a/community/lxrandr/PKGBUILD b/community/lxrandr/PKGBUILD index 85ea3c7b0..c427394b5 100644 --- a/community/lxrandr/PKGBUILD +++ b/community/lxrandr/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lxrandr pkgver=0.1.2 pkgrel=1 pkgdesc="Monitor configuration tool (part of LXDE)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://lxde.org/" groups=('lxde') diff --git a/community/lxsession/PKGBUILD b/community/lxsession/PKGBUILD index db8719774..808b33161 100644 --- a/community/lxsession/PKGBUILD +++ b/community/lxsession/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lxsession pkgver=0.4.6.1 pkgrel=1 pkgdesc="Session manager of the LXDE Desktop (light version)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://lxde.org/" groups=('lxde') diff --git a/community/lxtask/PKGBUILD b/community/lxtask/PKGBUILD index db8d97ae5..8fa1911f3 100644 --- a/community/lxtask/PKGBUILD +++ b/community/lxtask/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lxtask pkgver=0.1.4 pkgrel=3 pkgdesc="Task manager of the LXDE Desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://lxde.org/" groups=('lxde') diff --git a/community/lxterminal/PKGBUILD b/community/lxterminal/PKGBUILD index 43ee1f6d2..8c76a79ca 100644 --- a/community/lxterminal/PKGBUILD +++ b/community/lxterminal/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lxterminal pkgver=0.1.11 pkgrel=1 pkgdesc="VTE-based terminal emulator (part of LXDE)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://lxde.org/" groups=('lxde') diff --git a/community/macchanger/PKGBUILD b/community/macchanger/PKGBUILD index 2b270ddd8..456e3fcea 100644 --- a/community/macchanger/PKGBUILD +++ b/community/macchanger/PKGBUILD @@ -4,7 +4,7 @@ pkgname=macchanger pkgver=1.5.0 pkgrel=3 pkgdesc="A small utility to change you NIC's MAC address" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ftp.gnu.org/gnu/macchanger" license=('GPL') source=(http://ftp.gnu.org/gnu/macchanger/$pkgname-$pkgver.tar.gz) 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/mailutils/PKGBUILD b/community/mailutils/PKGBUILD index 216f40192..f6aa20cab 100644 --- a/community/mailutils/PKGBUILD +++ b/community/mailutils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mailutils pkgver=2.2 pkgrel=3 pkgdesc="MUA command line tool (mailx)" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.gnu.org/software/mailutils/" license=('GPL') depends=('libldap' 'pam' 'gnutls' 'guile') diff --git a/community/mairix/PKGBUILD b/community/mairix/PKGBUILD index 4078c4e22..e294caf17 100644 --- a/community/mairix/PKGBUILD +++ b/community/mairix/PKGBUILD @@ -8,7 +8,7 @@ pkgname=mairix pkgver=0.22 pkgrel=1 pkgdesc="A program for indexing and searching emails" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.rpcurnow.force9.co.uk/mairix/" license=('GPL') depends=(bzip2 zlib) diff --git a/community/mandvd/PKGBUILD b/community/mandvd/PKGBUILD index 2fbc8c39a..123c0294e 100644 --- a/community/mandvd/PKGBUILD +++ b/community/mandvd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mandvd pkgver=2.6 pkgrel=1 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/mapnik/PKGBUILD b/community/mapnik/PKGBUILD index 0dee64d65..1ac199155 100644 --- a/community/mapnik/PKGBUILD +++ b/community/mapnik/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mapnik pkgver=0.7.1 pkgrel=11 pkgdesc="Free Toolkit for developing mapping applications. Above all Mapnik is about rendering beautiful maps." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mapnik.org/" license=('LGPL') depends=('boost-libs' 'icu' 'libpng' 'libjpeg' 'libtiff' 'freetype2' diff --git a/community/mashup/PKGBUILD b/community/mashup/PKGBUILD index 33eb36008..76316a371 100644 --- a/community/mashup/PKGBUILD +++ b/community/mashup/PKGBUILD @@ -6,7 +6,7 @@ pkgver=3.2 pkgrel=1 pkgdesc="Adjusting images on a sheet of paper for printing" url="http://kornelix.squarespace.com/$pkgname" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') depends=('gtk2') replaces=('printoxx') diff --git a/community/matchbox-desktop/PKGBUILD b/community/matchbox-desktop/PKGBUILD index 5d2af790e..f9ef9a2df 100644 --- a/community/matchbox-desktop/PKGBUILD +++ b/community/matchbox-desktop/PKGBUILD @@ -6,7 +6,7 @@ pkgname=matchbox-desktop pkgver=2.0 pkgrel=2 pkgdesc="A PDA style application launcher or 'item browser'." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libmatchbox' 'startup-notification' 'libpng' 'gtk2') url="http://projects.o-hand.com/matchbox" diff --git a/community/matchbox-keyboard/PKGBUILD b/community/matchbox-keyboard/PKGBUILD index 2651a9a99..2446dd81d 100644 --- a/community/matchbox-keyboard/PKGBUILD +++ b/community/matchbox-keyboard/PKGBUILD @@ -6,7 +6,7 @@ pkgname=matchbox-keyboard pkgver=0.1 pkgrel=3 pkgdesc="An on screen virtual keyboard" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('cairo' 'libfakekey' 'libxft') url="http://projects.o-hand.com/matchbox" license=('GPL') diff --git a/community/matchbox-panel/PKGBUILD b/community/matchbox-panel/PKGBUILD index 751ec230e..6d438bb09 100644 --- a/community/matchbox-panel/PKGBUILD +++ b/community/matchbox-panel/PKGBUILD @@ -4,7 +4,7 @@ pkgname=matchbox-panel pkgver=0.9.3 pkgrel=4 pkgdesc="A flexible always present 'window bar' for holding application launchers and small 'applet' style applications" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libmatchbox' 'startup-notification' 'libpng') url="http://projects.o-hand.com/matchbox" diff --git a/community/matchbox-window-manager/PKGBUILD b/community/matchbox-window-manager/PKGBUILD index 5c321c4e0..4c8bb3136 100644 --- a/community/matchbox-window-manager/PKGBUILD +++ b/community/matchbox-window-manager/PKGBUILD @@ -4,7 +4,7 @@ pkgname=matchbox-window-manager pkgver=1.2 pkgrel=2 pkgdesc="A pretty much unique X window manager with a classic PDA management policy" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libmatchbox' 'startup-notification' 'libpng') url="http://projects.o-hand.com/matchbox" diff --git a/community/mathomatic/PKGBUILD b/community/mathomatic/PKGBUILD index 7abae6c71..1b838e063 100755 --- a/community/mathomatic/PKGBUILD +++ b/community/mathomatic/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mathomatic pkgver=15.7.0 pkgrel=1 pkgdesc="General purpose Computer Algebra System written in C" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://mathomatic.orgserve.de/math/" depends=('readline') diff --git a/community/mc/PKGBUILD b/community/mc/PKGBUILD index 5c4e2b6fd..b6285bd39 100644 --- a/community/mc/PKGBUILD +++ b/community/mc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mc pkgver=4.8.0 pkgrel=2 pkgdesc="Midnight Commander is a text based filemanager/shell that emulates Norton Commander" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ibiblio.org/mc/" license=('GPL') depends=('e2fsprogs' 'glib2' 'pcre' 'gpm' 'slang') diff --git a/community/mcabber/PKGBUILD b/community/mcabber/PKGBUILD index eb90c52c6..e12dce92d 100644 --- a/community/mcabber/PKGBUILD +++ b/community/mcabber/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mcabber pkgver=0.10.1 pkgrel=1 pkgdesc="a small Jabber console client, includes features: SSL, PGP, MUC, UTF8" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lilotux.net/~mikael/mcabber/" license=('GPL') depends=('ncurses' 'glib2' 'loudmouth' 'gpgme' 'libotr' 'aspell') diff --git a/community/mcdp/PKGBUILD b/community/mcdp/PKGBUILD index ffba24072..961480e9c 100644 --- a/community/mcdp/PKGBUILD +++ b/community/mcdp/PKGBUILD @@ -8,7 +8,7 @@ pkgname=mcdp pkgver=0.4b pkgrel=1 pkgdesc="Small console cd player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.mcmilk.de/projects/mcdp/" license=('GPL') makedepends=('dietlibc') diff --git a/community/mdf2iso/PKGBUILD b/community/mdf2iso/PKGBUILD index 21370ed35..2c8decc4c 100644 --- a/community/mdf2iso/PKGBUILD +++ b/community/mdf2iso/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mdf2iso pkgver=0.3.0 pkgrel=4 pkgdesc="Converts Alcohol 120% .mdf files into .iso files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mdf2iso.berlios.de" license=('GPL') depends=('glibc') diff --git a/community/me-tv/PKGBUILD b/community/me-tv/PKGBUILD index bb1140601..067b2a338 100644 --- a/community/me-tv/PKGBUILD +++ b/community/me-tv/PKGBUILD @@ -8,7 +8,7 @@ pkgname=me-tv pkgver=2.0.1 pkgrel=1 pkgdesc="A GTK desktop application for watching digital television services that use the DVB standard" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/me-tv" license=('GPL') depends=('glibmm' 'gtkmm' 'gconfmm' 'glib2' 'xine-lib' 'sqlite3' 'linuxtv-dvb-apps' 'libunique' 'libxml++' 'vlc' 'gstreamer0.10-base') diff --git a/community/mediainfo-gui/PKGBUILD b/community/mediainfo-gui/PKGBUILD index 8e55daefc..824cb1a71 100644 --- a/community/mediainfo-gui/PKGBUILD +++ b/community/mediainfo-gui/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mediainfo-gui pkgver=0.7.50 pkgrel=1 pkgdesc="GUI for mediainfo" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mediainfo.sourceforge.net" license=('GPL') depends=('libmediainfo>=0.7.35' 'wxgtk') diff --git a/community/mediainfo/PKGBUILD b/community/mediainfo/PKGBUILD index 3398979e0..2379a0329 100644 --- a/community/mediainfo/PKGBUILD +++ b/community/mediainfo/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mediainfo pkgver=0.7.50 pkgrel=1 pkgdesc="supplies technical and tag information about a video or audio file" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mediainfo.sourceforge.net" license=('GPL') depends=('libmediainfo>=0.7.35') diff --git a/community/mediaproxy/PKGBUILD b/community/mediaproxy/PKGBUILD index 0eb595386..c339165b5 100644 --- a/community/mediaproxy/PKGBUILD +++ b/community/mediaproxy/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2.5.2 pkgrel=1 pkgdesc="Open-source media proxy for OpenSER" url="http://mediaproxy.ag-projects.com/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('python2' 'libnetfilter_conntrack' 'iptables' 'python-application' 'python-cjson' 'python-gnutls') diff --git a/community/medit/PKGBUILD b/community/medit/PKGBUILD index a39a8b45a..5f7a83796 100644 --- a/community/medit/PKGBUILD +++ b/community/medit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=medit pkgver=1.0.5 pkgrel=1 pkgdesc="A GTK text editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mooedit.sourceforge.net" options=('!emptydirs') license=('GPL') diff --git a/community/megaglest/PKGBUILD b/community/megaglest/PKGBUILD index 9f2f8f54a..e53dab258 100644 --- a/community/megaglest/PKGBUILD +++ b/community/megaglest/PKGBUILD @@ -6,7 +6,7 @@ pkgname=megaglest pkgver=3.5.2.4 pkgrel=1 pkgdesc="Fork of Glest, a 3D real-time strategy game in a fantastic world." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/megaglest/" license=('GPL3') depends=('curl' 'megaglest-data' 'xerces-c' 'sdl' 'libvorbis' 'openal' 'mesa' 'lua' 'icu') diff --git a/community/menu-cache/PKGBUILD b/community/menu-cache/PKGBUILD index 693f22de8..74749321c 100644 --- a/community/menu-cache/PKGBUILD +++ b/community/menu-cache/PKGBUILD @@ -6,7 +6,7 @@ pkgname=menu-cache pkgver=0.3.2 pkgrel=1 pkgdesc="Caches to speed up freedesktop.org's application menus use." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://lxde.org/" groups=('lxde') diff --git a/community/mercury/PKGBUILD b/community/mercury/PKGBUILD index be8e30945..05984636b 100644 --- a/community/mercury/PKGBUILD +++ b/community/mercury/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.9.5 pkgrel=2 pkgdesc="Java Based MSN client." license=('custom') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.mercury.im" depends=('java-runtime' 'libxss' 'libxt') makedepends=('rpmextract') diff --git a/community/metakit/PKGBUILD b/community/metakit/PKGBUILD index b190002c4..b5f89e93c 100644 --- a/community/metakit/PKGBUILD +++ b/community/metakit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=metakit pkgver=2.4.9.7 pkgrel=4 pkgdesc='MetaKit is an efficient database library with a small footprint' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.equi4.com/metakit/' makedepends=('tcl' 'python2') license=('BSD') diff --git a/community/metamail/PKGBUILD b/community/metamail/PKGBUILD index 9f45530ed..00664f77b 100644 --- a/community/metamail/PKGBUILD +++ b/community/metamail/PKGBUILD @@ -7,7 +7,7 @@ pkgname=metamail pkgver=2.7 pkgrel=5 pkgdesc="Used to display and process MIME messages" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://packages.debian.org/stable/mail/metamail" license=('custom') depends=('ncurses') diff --git a/community/metapixel/PKGBUILD b/community/metapixel/PKGBUILD index 056f40d52..d9d01a30b 100644 --- a/community/metapixel/PKGBUILD +++ b/community/metapixel/PKGBUILD @@ -6,7 +6,7 @@ pkgname=metapixel pkgver=1.0.2 pkgrel=2 pkgdesc='A program for generating photomosaics.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.complang.tuwien.ac.at/schani/metapixel/' license=('GPL') depends=('libungif' 'libjpeg' 'libpng' 'perl') diff --git a/community/mezogis/PKGBUILD b/community/mezogis/PKGBUILD index 988d38ae9..520bb36dd 100644 --- a/community/mezogis/PKGBUILD +++ b/community/mezogis/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mezogis pkgver=0.1.5 pkgrel=4 pkgdesc="A GIS application to query and analyse spatial data" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.mezogis.org" license=('GPL') depends=('pygtk' 'python-geotypes' 'postgis>=1.4') diff --git a/community/mfs/PKGBUILD b/community/mfs/PKGBUILD index ce0be25e3..857563518 100644 --- a/community/mfs/PKGBUILD +++ b/community/mfs/PKGBUILD @@ -5,7 +5,7 @@ pkgver=1.6.20 pkgrel=8 pkgdesc="MooseFS, fault tolerant, network distributed file system" license=("GPL3") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!libtool') depends=('zlib' 'fuse' 'python2') url="http://www.moosefs.com/" diff --git a/community/mftrace/PKGBUILD b/community/mftrace/PKGBUILD index 6d03e7608..c6c7d32f6 100644 --- a/community/mftrace/PKGBUILD +++ b/community/mftrace/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mftrace pkgver=1.2.17 pkgrel=1 pkgdesc="Traces TeX bitmap fonts into PFA, PFB, or TTF" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lilypond.org/mftrace/" license=("GPL") depends=('python2' 'potrace' 't1utils') diff --git a/community/mg/PKGBUILD b/community/mg/PKGBUILD index cdb1b05e2..92ba20d55 100644 --- a/community/mg/PKGBUILD +++ b/community/mg/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mg pkgver=20110120 pkgrel=1 pkgdesc="mg is Micro GNU/emacs, this is a portable version of the mg maintained by the OpenBSD team." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://homepage.boetes.org/software/mg/" depends=('ncurses') license=('custom') diff --git a/community/mget/PKGBUILD b/community/mget/PKGBUILD index fb960d5cd..458d0f83d 100644 --- a/community/mget/PKGBUILD +++ b/community/mget/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mget pkgver=1.50 pkgrel=2 pkgdesc="Simple script allowing to download embedded movies from various video hosting services" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://movie-get.org/" license=('GPL2') depends=('ruby' 'wget') diff --git a/community/mhwaveedit/PKGBUILD b/community/mhwaveedit/PKGBUILD index ce2e82aea..33e07126e 100644 --- a/community/mhwaveedit/PKGBUILD +++ b/community/mhwaveedit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mhwaveedit pkgver=1.4.21 pkgrel=1 pkgdesc="A graphical program for editing, playing and recording sound files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gna.org/projects/mhwaveedit" license=('GPL') depends=('libsamplerate' 'libpulse' 'gtk2' 'jack') diff --git a/community/microblog-purple/PKGBUILD b/community/microblog-purple/PKGBUILD index 4e933b3d7..9e84fcf5a 100644 --- a/community/microblog-purple/PKGBUILD +++ b/community/microblog-purple/PKGBUILD @@ -3,7 +3,7 @@ pkgname=microblog-purple pkgver=0.3.0 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc='Libpurple plug-in supporting microblog services like Twitter' url='http://code.google.com/p/microblog-purple/' license=('GPL3') diff --git a/community/mimetex/PKGBUILD b/community/mimetex/PKGBUILD index 6a1b71b20..d6a7d73c6 100644 --- a/community/mimetex/PKGBUILD +++ b/community/mimetex/PKGBUILD @@ -2,7 +2,7 @@ pkgname=mimetex pkgver=1.70 pkgrel=2 pkgdesc="tex to gif converter" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.forkosh.com/mimetex.html" license=('GPL') depends=(glibc) diff --git a/community/minbif/PKGBUILD b/community/minbif/PKGBUILD index a762e584e..eb9885df6 100644 --- a/community/minbif/PKGBUILD +++ b/community/minbif/PKGBUILD @@ -6,7 +6,7 @@ pkgname=minbif pkgver=1.0.4 pkgrel=4 pkgdesc='An IRC gateway to IM networks that uses libpurple.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://minbif.im/' license=('GPL2') depends=('gnutls' 'libcaca' 'libpurple') diff --git a/community/mingw32-binutils/PKGBUILD b/community/mingw32-binutils/PKGBUILD index 579c48920..4dccf886b 100644 --- a/community/mingw32-binutils/PKGBUILD +++ b/community/mingw32-binutils/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mingw32-binutils pkgver=2.21.53 pkgrel=1 _uprel=1 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="https://sourceforge.net/projects/mingw/files/MinGW/BaseSystem/GNU-Binutils/" pkgdesc="A set of programs to assemble and manipulate binary and object files (mingw)" depends=('glibc' 'zlib') diff --git a/community/mingw32-gcc-base/PKGBUILD b/community/mingw32-gcc-base/PKGBUILD index 2c9409b71..e962d9b25 100644 --- a/community/mingw32-gcc-base/PKGBUILD +++ b/community/mingw32-gcc-base/PKGBUILD @@ -9,7 +9,7 @@ _runtimever=3.20 _uprel=2 _upw32rel=1 pkgrel=2 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') pkgdesc="A C cross-compiler for building Windows executables on Linux" depends=(mingw32-binutils) makedepends=(p7zip mingw32-runtime mingw32-w32api) diff --git a/community/mingw32-gcc/PKGBUILD b/community/mingw32-gcc/PKGBUILD index a6332f454..3cb0db859 100644 --- a/community/mingw32-gcc/PKGBUILD +++ b/community/mingw32-gcc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mingw32-gcc pkgver=4.6.1 pkgrel=2 _uprel=2 -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) pkgdesc="A C and C++ cross-compilers for building Windows executables on Linux" depends=('mingw32-pthreads' 'mingw32-runtime' 'mingw32-binutils' 'mingw32-w32api' 'libmpc' 'elfutils' 'gmp') @@ -41,7 +41,7 @@ build() --build=$CHOST \ --prefix=/usr \ --libexecdir=/usr/lib \ - --with-bugurl=https://bugs.archlinux.org/ \ + --with-bugurl=https://bugs.parabolagnulinux.org/ \ --enable-languages=c,c++ \ --enable-shared \ --enable-sjlj-exceptions \ diff --git a/community/mingw32-pthreads/PKGBUILD b/community/mingw32-pthreads/PKGBUILD index 842a8352a..e0fc965e6 100644 --- a/community/mingw32-pthreads/PKGBUILD +++ b/community/mingw32-pthreads/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mingw32-pthreads pkgver=2.8.0 _pkgver=2-8-0 pkgrel=2 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') pkgdesc="The POSIX 1003.1-2001 standard for writing multithreaded applications." license=(LGPL) makedepends=('mingw32-gcc-base' 'mingw32-runtime' 'mingw32-w32api') diff --git a/community/minidlna/PKGBUILD b/community/minidlna/PKGBUILD index fb3f6e59e..540960168 100644 --- a/community/minidlna/PKGBUILD +++ b/community/minidlna/PKGBUILD @@ -8,7 +8,7 @@ pkgname=minidlna pkgver=1.0.22 pkgrel=3 pkgdesc="A DLNA/UPnP-AV Media server (aka ReadyDLNA)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/minidlna/" license=('GPL') depends=('libexif' 'libjpeg' 'libid3tag' 'flac' 'libvorbis' 'ffmpeg' 'sqlite3') diff --git a/community/miredo/PKGBUILD b/community/miredo/PKGBUILD index f69a94afa..98beee6eb 100644 --- a/community/miredo/PKGBUILD +++ b/community/miredo/PKGBUILD @@ -5,7 +5,7 @@ pkgname=miredo pkgver=1.2.3 pkgrel=1 pkgdesc="Teredo client and server." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.remlab.net/miredo/" license=('GPL') depends=(judy iproute2) diff --git a/community/mixxx/PKGBUILD b/community/mixxx/PKGBUILD index 3b0bc01ec..b8855f7f3 100644 --- a/community/mixxx/PKGBUILD +++ b/community/mixxx/PKGBUILD @@ -8,7 +8,7 @@ pkgname=mixxx pkgver=1.9.0 pkgrel=1 pkgdesc="Free, open source software for digital DJ'ing." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.mixxx.org' license=('GPL') depends=('fftw' 'libid3tag' 'libmad' 'libogg' 'libshout' 'libsndfile' 'portaudio' 'portmidi' diff --git a/community/mktorrent/PKGBUILD b/community/mktorrent/PKGBUILD index 6eff9a3c4..eb4b379ad 100644 --- a/community/mktorrent/PKGBUILD +++ b/community/mktorrent/PKGBUILD @@ -4,7 +4,7 @@ pkgname=mktorrent pkgver=1.0 pkgrel=2 pkgdesc='Simple command line utility to create BitTorrent metainfo files' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://mktorrent.sourceforge.net/' license='GPL' depends=('openssl') diff --git a/community/mldonkey/PKGBUILD b/community/mldonkey/PKGBUILD index 4d7b7ffb8..1e823cff7 100644 --- a/community/mldonkey/PKGBUILD +++ b/community/mldonkey/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mldonkey pkgver=3.1.0 pkgrel=1 pkgdesc="A multi-network P2P client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mldonkey.sourceforge.net/" license=('GPL') depends=('desktop-file-utils' 'file' 'gd' 'bzip2') diff --git a/community/mlt/PKGBUILD b/community/mlt/PKGBUILD index 3bbe6583a..eab793997 100644 --- a/community/mlt/PKGBUILD +++ b/community/mlt/PKGBUILD @@ -10,7 +10,7 @@ pkgname=('mlt' 'mlt-python-bindings') pkgver=0.7.4 pkgrel=1.1 pkgdesc="An open source multimedia framework" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.mltframework.org" license=('GPL') makedepends=('sdl_image' 'libsamplerate' 'libdv' 'qt' 'sox' 'libxml2' 'gtk2' 'ffmpeg' diff --git a/community/mms_client/PKGBUILD b/community/mms_client/PKGBUILD index 14854aea0..0dbf23cc8 100644 --- a/community/mms_client/PKGBUILD +++ b/community/mms_client/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mms_client pkgver=0.0.3 pkgrel=5 pkgdesc="mms protocol download utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ole.tange.dk/projekter/kontroversielt/www.geocities.com/majormms/" license=('GPL') depends=('glibc') diff --git a/community/mmsrip/PKGBUILD b/community/mmsrip/PKGBUILD index 19cf7ac6a..752afaffd 100644 --- a/community/mmsrip/PKGBUILD +++ b/community/mmsrip/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mmsrip pkgver=0.7.0 pkgrel=3 pkgdesc="A downloader for the proprietary protocol MMS://" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://nbenoit.tuxfamily.org/projects.php?rq=mmsrip" license=('GPL2') source=(http://nbenoit.tuxfamily.org/projects/$pkgname/$pkgname-$pkgver.tar.gz) diff --git a/community/mongodb/PKGBUILD b/community/mongodb/PKGBUILD index 78b32e1f0..9956f2ab1 100644 --- a/community/mongodb/PKGBUILD +++ b/community/mongodb/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mongodb pkgver=2.0.1 pkgrel=2 pkgdesc='A high-performance, open source, schema-free document-oriented database.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.mongodb.org' license=('AGPL3') depends=('boost-libs') diff --git a/community/monit/PKGBUILD b/community/monit/PKGBUILD index 0c1079298..75e53a90c 100644 --- a/community/monit/PKGBUILD +++ b/community/monit/PKGBUILD @@ -7,7 +7,7 @@ pkgname=monit pkgver=5.3 pkgrel=1 pkgdesc="Utility for managing and monitoring, processes, files, directories and devices on a *NIX system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mmonit.com/monit/" license=('GPL3') depends=('openssl') diff --git a/community/moreutils/PKGBUILD b/community/moreutils/PKGBUILD index 50591ba03..53d95455d 100644 --- a/community/moreutils/PKGBUILD +++ b/community/moreutils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=moreutils pkgver=0.44 pkgrel=1 pkgdesc="A growing collection of the unix tools that nobody thought to write thirty years ago" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kitenet.net/~joey/code/moreutils.html" license=('GPL') makedepends=('docbook2x' 'docbook-xml' 'perl-xml-sax') diff --git a/community/motion/PKGBUILD b/community/motion/PKGBUILD index dcb3828af..c6f5fa422 100644 --- a/community/motion/PKGBUILD +++ b/community/motion/PKGBUILD @@ -5,7 +5,7 @@ pkgname=motion pkgver=3.2.12 pkgrel=1 pkgdesc="A software motion detector which grabs images from video4linux devices and/or from webcams" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome" depends=('ffmpeg' 'libjpeg') diff --git a/community/mp3gain/PKGBUILD b/community/mp3gain/PKGBUILD index 88ba47c5a..da95353fd 100644 --- a/community/mp3gain/PKGBUILD +++ b/community/mp3gain/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mp3gain pkgver=1.5.2 pkgrel=1 pkgdesc="Lossless mp3 normalizer with statistical analysis " -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mp3gain.sourceforge.net" license=("GPL") depends=('glibc') diff --git a/community/mp3info/PKGBUILD b/community/mp3info/PKGBUILD index 1acf47a00..77f7bb8be 100644 --- a/community/mp3info/PKGBUILD +++ b/community/mp3info/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mp3info pkgver=0.8.5a pkgrel=3 pkgdesc="An MP3 technical info viewer and ID3 1.x tag editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ibiblio.org/mp3info/" license=('GPL') depends=('ncurses' 'gtk2' ) diff --git a/community/mp3splt-gtk/PKGBUILD b/community/mp3splt-gtk/PKGBUILD index a55ebce67..ec2524860 100644 --- a/community/mp3splt-gtk/PKGBUILD +++ b/community/mp3splt-gtk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mp3splt-gtk pkgver=0.7 pkgrel=2 pkgdesc="Split mp3 and ogg files without decoding" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mp3splt.sourceforge.net/" license=('GPL') depends=('desktop-file-utils' 'gstreamer0.10-ffmpeg' 'gtk2' 'libmp3splt') diff --git a/community/mp3unicode/PKGBUILD b/community/mp3unicode/PKGBUILD index 15ad0a5de..83b233c20 100644 --- a/community/mp3unicode/PKGBUILD +++ b/community/mp3unicode/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mp3unicode pkgver=1.2 pkgrel=4 pkgdesc="A command line utility to convert ID3 tags in mp3 files between different encodings" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mp3unicode.yellowsite.ru/" license=('GPL') depends=('taglib') diff --git a/community/mpdscribble/PKGBUILD b/community/mpdscribble/PKGBUILD index d59e15732..182670fbd 100644 --- a/community/mpdscribble/PKGBUILD +++ b/community/mpdscribble/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.22 pkgrel=2 pkgdesc='An mpd client which submits track info to last.fm' url='http://mpd.wikia.com/wiki/Client:Mpdscribble' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libsoup' 'glib2' 'libmpdclient') install='mpdscribble.install' diff --git a/community/mpgtx/PKGBUILD b/community/mpgtx/PKGBUILD index 42c9a8080..594af5428 100644 --- a/community/mpgtx/PKGBUILD +++ b/community/mpgtx/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mpgtx pkgver=1.3.1 pkgrel=3 pkgdesc="A command line MPEG audio/video/system toolkit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mpgtx.sourceforge.net" license=('GPL') depends=('gcc-libs') diff --git a/community/mplayer2/PKGBUILD b/community/mplayer2/PKGBUILD index 7f012d00b..98d3e431f 100644 --- a/community/mplayer2/PKGBUILD +++ b/community/mplayer2/PKGBUILD @@ -4,15 +4,24 @@ pkgname=mplayer2 pkgver=2.0 -pkgrel=15 +pkgrel=15.1 pkgdesc="A movie player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.mplayer2.org/" -depends=('libgl' 'libvdpau' 'ffmpeg' 'libdvdcss' 'libdvdread' 'libdvdnav' 'libxvmc' 'libass' 'fontconfig' 'freetype2' - 'ttf-dejavu' 'sdl' 'aalib' 'libcaca' 'faad2' 'libpulse' 'jack' 'ncurses' 'libxxf86vm' 'cdparanoia' 'libmad' - 'a52dec' 'libdca' 'libxxf86dga' 'libxss' 'mpg123' 'ladspa') -makedepends=('live-media' 'mesa' 'unzip' 'yasm') +if [ "${CARCH}" = "mips64el" ] ; then + # OpenGL, VDPAU and XVMC don't have efficient implementations on + # the supported mips64el machines. + depends=('ffmpeg' 'libdvdcss' 'libdvdread' 'libdvdnav' 'libass' 'fontconfig' 'freetype2' + 'ttf-dejavu' 'sdl' 'aalib' 'libcaca' 'faad2' 'libpulse' 'jack' 'ncurses' 'libxxf86vm' 'cdparanoia' 'libmad' + 'a52dec' 'libdca' 'libxxf86dga' 'libxss' 'mpg123' 'ladspa' 'speex') + makedepends=('live-media' 'p7zip-libre' 'gettext') +else + depends=('libgl' 'libvdpau' 'ffmpeg' 'libdvdcss' 'libdvdread' 'libdvdnav' 'libxvmc' 'libass' 'fontconfig' 'freetype2' + 'ttf-dejavu' 'sdl' 'aalib' 'libcaca' 'faad2' 'libpulse' 'jack' 'ncurses' 'libxxf86vm' 'cdparanoia' 'libmad' + 'a52dec' 'libdca' 'libxxf86dga' 'libxss' 'mpg123' 'ladspa' 'speex') + makedepends=('live-media' 'mesa' 'p7zip-libre' 'yasm' 'gettext') +fi backup=('etc/mplayer/codecs.conf' 'etc/mplayer/input.conf') provides=('mplayer') conflicts=('mplayer') @@ -25,9 +34,6 @@ sha1sums=('0df8d4e5484128b7b28029273b7704ab5d5419bc' options=('!emptydirs') build() { - # Custom CFLAGS break the mplayer build - unset CFLAGS LDFLAGS - cd "${srcdir}/${pkgname}-${pkgver}" # Drop internal mp3lib (FS#24149) @@ -40,10 +46,26 @@ build() { # http://labs.mwrinfosecurity.com/files/Advisories/mwri_mplayer-sami-subtitles_2011-08-12.pdf patch -Np1 -i ../mplayer2-SAMI-subs.patch + if [ "$CARCH" = "mips64el" ]; then + ./configure --prefix=/usr \ + --disable-arts \ + --enable-speex \ + --disable-openal \ + --disable-libdv \ + --disable-musepack \ + --disable-esd \ + --disable-mga \ + --disable-xvmc \ + --disable-vdpau \ + --disable-gl \ + --language=all \ + --enable-translation \ + --confdir=/etc/mplayer + else ./configure --prefix=/usr \ --enable-runtime-cpudetection \ --disable-arts \ - --disable-speex \ + --enable-speex \ --disable-openal \ --disable-libdv \ --disable-musepack \ @@ -53,6 +75,7 @@ build() { --language=all \ --enable-translation \ --confdir=/etc/mplayer + fi make } diff --git a/community/mtasc/PKGBUILD b/community/mtasc/PKGBUILD index 30e3284f8..456d7aac7 100644 --- a/community/mtasc/PKGBUILD +++ b/community/mtasc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mtasc pkgver=20091229 pkgrel=3 pkgdesc="An open source flash (swf) compiler" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://mtasc.org/" license=('GPL2') depends=('zlib') diff --git a/community/mtpaint/PKGBUILD b/community/mtpaint/PKGBUILD index 12a07818c..ed0246873 100644 --- a/community/mtpaint/PKGBUILD +++ b/community/mtpaint/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mtpaint pkgver=3.31 pkgrel=6 pkgdesc="A simple GTK2 painting program designed for creating icons and pixel based artwork" -arch=('x86_64' 'i686') +arch=('i686' 'x86_64' 'mips64el') url="http://mtpaint.sourceforge.net/" license=('GPL3') depends=('gtk2' 'giflib' 'openjpeg' 'bzip2' 'desktop-file-utils' 'glib2' 'freetype2') diff --git a/community/multiget/PKGBUILD b/community/multiget/PKGBUILD index 2d906b7ad..86f7893b2 100644 --- a/community/multiget/PKGBUILD +++ b/community/multiget/PKGBUILD @@ -9,7 +9,7 @@ url="http://multiget.sourceforge.net" license=('GPL') depends=('wxgtk') makedepends=('intltool' 'svn') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=() md5sums=() _svntrunk=https://multiget.svn.sourceforge.net/svnroot/multiget diff --git a/community/multimux/PKGBUILD b/community/multimux/PKGBUILD index 356757a89..a2c3c4aed 100644 --- a/community/multimux/PKGBUILD +++ b/community/multimux/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc='Combines up to 8 audio mono wave channels into one big multi channel wave file' url='http://panteltje.com/panteltje/dvd/' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=("http://panteltje.com/panteltje/dvd/${pkgname}-${pkgver}.tgz") md5sums=('a16531945db4eec67563fa8bfa143193') diff --git a/community/multipath-tools/PKGBUILD b/community/multipath-tools/PKGBUILD index 1fd153d38..113d0ef20 100644 --- a/community/multipath-tools/PKGBUILD +++ b/community/multipath-tools/PKGBUILD @@ -5,7 +5,7 @@ pkgname=multipath-tools pkgver=0.4.9 pkgrel=4 pkgdesc="Multipath Tools For Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://christophe.varoqui.free.fr/" license=('GPL') depends=('libaio' 'device-mapper') diff --git a/community/mumble/PKGBUILD b/community/mumble/PKGBUILD index 7628a460b..640f8c2ef 100644 --- a/community/mumble/PKGBUILD +++ b/community/mumble/PKGBUILD @@ -10,7 +10,7 @@ pkgname=mumble pkgver=1.2.3 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="A voice chat application similar to TeamSpeak" license=('GPL') depends=('qt' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf' 'libpulse') diff --git a/community/mupdf/PKGBUILD b/community/mupdf/PKGBUILD index 3f5a016fd..35ef9ac83 100644 --- a/community/mupdf/PKGBUILD +++ b/community/mupdf/PKGBUILD @@ -8,7 +8,7 @@ pkgname=mupdf pkgver=0.9 pkgrel=1 pkgdesc="lightweight PDF viewer and toolkit written in portable C" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mupdf.com" license=('GPL3') depends=('freetype2' 'libjpeg' 'jbig2dec' 'openjpeg' 'libxext') diff --git a/community/murmur/PKGBUILD b/community/murmur/PKGBUILD index 6b5d3069d..a85017e06 100644 --- a/community/murmur/PKGBUILD +++ b/community/murmur/PKGBUILD @@ -7,7 +7,7 @@ pkgname=murmur pkgver=1.2.3 pkgrel=3 pkgdesc="The voice chat application server for Mumble" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mumble.sourceforge.net" license=('GPL') depends=('avahi' 'lsb-release' 'protobuf' 'qt>=4.4.0') diff --git a/community/musepack-tools/PKGBUILD b/community/musepack-tools/PKGBUILD index 3cebcc68a..21c8bf360 100644 --- a/community/musepack-tools/PKGBUILD +++ b/community/musepack-tools/PKGBUILD @@ -7,7 +7,7 @@ pkgname=musepack-tools pkgver=475 pkgrel=1 pkgdesc="Musepack decoder/encoder" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.musepack.net/" license=('LGPL') depends=('libcuefile' 'libreplaygain') diff --git a/community/musescore/PKGBUILD b/community/musescore/PKGBUILD index 1298702db..6c79bed54 100644 --- a/community/musescore/PKGBUILD +++ b/community/musescore/PKGBUILD @@ -6,7 +6,7 @@ pkgname=musescore pkgver=1.1 pkgrel=2 pkgdesc="A music score editor written in Qt4" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.musescore.org/en/" license=('GPL') depends=('qt>=4.5.0' 'libsndfile' 'qtscriptgenerator') diff --git a/community/mxml/PKGBUILD b/community/mxml/PKGBUILD index 45614fd8c..5356d74ba 100644 --- a/community/mxml/PKGBUILD +++ b/community/mxml/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mxml pkgver=2.6 pkgrel=2 pkgdesc="A small XML parsing library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.minixml.org/" license=('LGPL') source=("http://ftp.easysw.com/pub/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz") diff --git a/community/mygui/PKGBUILD b/community/mygui/PKGBUILD index 3f8ff7311..7dc26edb8 100644 --- a/community/mygui/PKGBUILD +++ b/community/mygui/PKGBUILD @@ -6,7 +6,7 @@ pkgname=('mygui' 'mygui-docs') pkgver=3.2.0rc1 pkgrel=8 pkgdesc="A multilayer and overlappable GUI System for OGRE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mygui.info/" license=('LGPL') depends=('boost-libs' 'ogre' 'ois') diff --git a/community/myodbc/PKGBUILD b/community/myodbc/PKGBUILD index ab516ed39..d6716bf70 100644 --- a/community/myodbc/PKGBUILD +++ b/community/myodbc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=myodbc pkgver=5.1.9 pkgrel=1 pkgdesc="ODBC driver/connector for MySQL" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://dev.mysql.com/downloads/connector/odbc/" depends=('unixodbc' 'libmysqlclient') license=('GPL') diff --git a/community/mypaint/PKGBUILD b/community/mypaint/PKGBUILD index cc4d4f85b..9b38e0a35 100644 --- a/community/mypaint/PKGBUILD +++ b/community/mypaint/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mypaint pkgver=0.9.1 pkgrel=3 pkgdesc="A fast and easy painting application for digital painters, with brush dynamics" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mypaint.intilinux.com/" license=('GPL' 'LGPL') depends=('pygtk' 'python2-numpy' 'protobuf-python' 'python2') diff --git a/community/mysql++/PKGBUILD b/community/mysql++/PKGBUILD index 2b7a4ac14..b8a370db6 100644 --- a/community/mysql++/PKGBUILD +++ b/community/mysql++/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mysql++ pkgver=3.1.0 pkgrel=2 pkgdesc="A C++ wraper for MySQLs C API" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://tangentsoft.net/mysql++/" license=("LGPL" "custom") depends=("libmysqlclient") diff --git a/community/mysql-ruby/PKGBUILD b/community/mysql-ruby/PKGBUILD index 134963291..71bad6667 100644 --- a/community/mysql-ruby/PKGBUILD +++ b/community/mysql-ruby/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mysql-ruby pkgver=2.8.2 pkgrel=2 pkgdesc='This is the MySQL API module for Ruby.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url='http://tmtm.org/downloads/mysql/ruby' depends=('ruby' 'libmysqlclient') diff --git a/community/mysql-workbench/PKGBUILD b/community/mysql-workbench/PKGBUILD index fa2962fe9..73dd0a9f3 100644 --- a/community/mysql-workbench/PKGBUILD +++ b/community/mysql-workbench/PKGBUILD @@ -8,7 +8,7 @@ epoch=1 pkgver=5.2.35 pkgrel=1 pkgdesc="A cross-platform, visual database design tool developed by MySQL" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wb.mysql.com/" license=('GPL2') depends=('libzip' 'libmysqlclient' 'lua' 'gtkmm' 'libgl' diff --git a/community/mythplugins/PKGBUILD b/community/mythplugins/PKGBUILD index 7d6bbfc3d..2097c4310 100644 --- a/community/mythplugins/PKGBUILD +++ b/community/mythplugins/PKGBUILD @@ -17,7 +17,7 @@ pkgname=('mythplugins-mytharchive' pkgver=0.24.1 pkgrel=4 epoch=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.mythtv.org" license=('GPL') makedepends=('cdparanoia' 'cdrkit' 'dvdauthor' 'dvd+rw-tools' 'ffmpeg' 'flac' diff --git a/community/mythtv/PKGBUILD b/community/mythtv/PKGBUILD index 843136c80..11e52b97e 100644 --- a/community/mythtv/PKGBUILD +++ b/community/mythtv/PKGBUILD @@ -10,7 +10,7 @@ pkgver=0.24.1 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=('lame' 'libavc1394' 'libiec61883' 'libpulse' 'libvdpau' 'libxinerama' diff --git a/community/naev/PKGBUILD b/community/naev/PKGBUILD index d6464d992..68a832741 100644 --- a/community/naev/PKGBUILD +++ b/community/naev/PKGBUILD @@ -6,7 +6,7 @@ pkgname=naev pkgver=0.5.0 pkgrel=1 pkgdesc='2D action/rpg space game' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/naev/" license=('GPL3') depends=('openal' 'libvorbis' 'sdl_image' 'sdl_mixer' 'libgl' 'libxml2' 'freetype2' 'libpng' 'naev-data') diff --git a/community/namazu/PKGBUILD b/community/namazu/PKGBUILD index a70a36943..2ac8903a7 100644 --- a/community/namazu/PKGBUILD +++ b/community/namazu/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Namazu is a full-text search engine intended for easy use." url="http://namazu.org/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=(perl-file-mmagic) options=(!libtool) source=(http://namazu.org/stable/$pkgname-$pkgver.tar.gz) diff --git a/community/nas/PKGBUILD b/community/nas/PKGBUILD index 62c62ddf0..6f5d3ce60 100644 --- a/community/nas/PKGBUILD +++ b/community/nas/PKGBUILD @@ -7,7 +7,7 @@ pkgname=nas pkgver=1.9.3 pkgrel=1 pkgdesc='Network Audio System is a network transparent, client/server audio transport system' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://radscan.com/nas.html' license=('custom') depends=('libxaw') diff --git a/community/nautilus-actions/PKGBUILD b/community/nautilus-actions/PKGBUILD index 2171f91ef..8c67cf230 100644 --- a/community/nautilus-actions/PKGBUILD +++ b/community/nautilus-actions/PKGBUILD @@ -7,7 +7,7 @@ pkgname=nautilus-actions pkgver=3.1.4 pkgrel=1 pkgdesc="Configures programs to be launched when files are selected in Nautilus" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gnome.org" license=('GPL') depends=('nautilus' 'libunique3' 'libgtop' 'gconf' 'libsm') diff --git a/community/nbd/PKGBUILD b/community/nbd/PKGBUILD index 571364ac9..467c68e3b 100644 --- a/community/nbd/PKGBUILD +++ b/community/nbd/PKGBUILD @@ -8,7 +8,7 @@ pkgname=nbd pkgver=2.9.23 pkgrel=1 pkgdesc="Tools for network block devices, allowing you to use remote block devices over TCP/IP." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://nbd.sourceforge.net" license=('GPL') source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2 diff --git a/community/nbtscan/PKGBUILD b/community/nbtscan/PKGBUILD index f7b093267..61286a6b9 100755 --- a/community/nbtscan/PKGBUILD +++ b/community/nbtscan/PKGBUILD @@ -4,7 +4,7 @@ pkgname=nbtscan pkgver=1.5.1 pkgrel=4 pkgdesc="NBTscan is a program for scanning IP networks for NetBIOS name information." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=(glibc) url="http://www.inetcat.net/software/nbtscan.html" diff --git a/community/ncdu/PKGBUILD b/community/ncdu/PKGBUILD index a9f83e671..d28851085 100644 --- a/community/ncdu/PKGBUILD +++ b/community/ncdu/PKGBUILD @@ -4,7 +4,7 @@ pkgname=ncdu pkgver=1.7 pkgrel=1 pkgdesc="An NCurses version of the famous old 'du' unix command" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://dev.yorhel.nl/ncdu/" license=('MIT') depends=('ncurses') diff --git a/community/ncmpcpp/PKGBUILD b/community/ncmpcpp/PKGBUILD index ea5fd713c..e900a2bbc 100644 --- a/community/ncmpcpp/PKGBUILD +++ b/community/ncmpcpp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ncmpcpp pkgver=0.5.8 pkgrel=1 pkgdesc="An almost exact clone of ncmpc with some new features." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://unkart.ovh.org/ncmpcpp/" license=('GPL') depends=('curl' 'libmpdclient' 'taglib' 'ncurses') diff --git a/community/neatx/PKGBUILD b/community/neatx/PKGBUILD index 003d1bebf..a73e406fb 100644 --- a/community/neatx/PKGBUILD +++ b/community/neatx/PKGBUILD @@ -6,7 +6,7 @@ pkgname=neatx pkgver=0.3.1 pkgrel=10 pkgdesc="A free NX server by google" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/neatx/" license=('GPL') depends=('nxserver' 'python-pexpect' 'python-simplejson' 'netcat' 'pygtk') diff --git a/community/nemesis/PKGBUILD b/community/nemesis/PKGBUILD index c299d0158..a8a20da2a 100644 --- a/community/nemesis/PKGBUILD +++ b/community/nemesis/PKGBUILD @@ -6,7 +6,7 @@ pkgname=nemesis pkgver=1.4 pkgrel=4 pkgdesc="command-line network packet crafting and injection utility" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://nemesis.sourceforge.net/" license=('BSD') depends=() diff --git a/community/net6/PKGBUILD b/community/net6/PKGBUILD index abee474a9..8d38ad92a 100644 --- a/community/net6/PKGBUILD +++ b/community/net6/PKGBUILD @@ -7,7 +7,7 @@ pkgname=net6 pkgver=1.3.12 pkgrel=2 pkgdesc="A library that provides a TCP protocol abstraction for C++" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gobby.0x539.de/" license=('LGPL') depends=('gnutls' 'libsigc++2.0') diff --git a/community/netbrake/PKGBUILD b/community/netbrake/PKGBUILD index 3b2e4d053..0201d3ecc 100644 --- a/community/netbrake/PKGBUILD +++ b/community/netbrake/PKGBUILD @@ -6,7 +6,7 @@ pkgname=netbrake pkgver=0.2 pkgrel=3 pkgdesc="Netbrake is an utility to limit the bandwidth used by a process" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.hping.org/netbrake/" license=('GPL') depends=(glibc) diff --git a/community/nethack/PKGBUILD b/community/nethack/PKGBUILD index a3da43710..a8b3a3279 100644 --- a/community/nethack/PKGBUILD +++ b/community/nethack/PKGBUILD @@ -9,7 +9,7 @@ pkgname=nethack pkgver=3.4.3 pkgrel=6 pkgdesc='A single player dungeon exploration game' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nethack.org/index.html" license=('custom') depends=('ncurses' 'gzip') diff --git a/community/nethogs/PKGBUILD b/community/nethogs/PKGBUILD index 2c2567195..b6df770a7 100644 --- a/community/nethogs/PKGBUILD +++ b/community/nethogs/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="A net top tool which displays traffic used per process instead of per I url="http://nethogs.sourceforge.net" license=(GPL) depends=(libpcap ncurses gcc-libs) -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz gcc44.patch) md5sums=('d6fb12b46e80a50c9b9f91dd48e2b234' '62eb824fbbadd1c60d0749593c16d293') diff --git a/community/netstat-nat/PKGBUILD b/community/netstat-nat/PKGBUILD index c6785d714..e9a687f50 100644 --- a/community/netstat-nat/PKGBUILD +++ b/community/netstat-nat/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Small program written in C displaying NAT connections, managed by netfilter." url="http://tweegy.nl/projects/netstat-nat/" license=("GPL") -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=(iptables) source=(http://tweegy.nl/download/netstat-nat-$pkgver.tar.gz) md5sums=('c1bbb3ee9774ebfa27c440e2d9dd7286') diff --git a/community/netsurf/PKGBUILD b/community/netsurf/PKGBUILD index 3b9e35c4f..9e19abe7b 100644 --- a/community/netsurf/PKGBUILD +++ b/community/netsurf/PKGBUILD @@ -7,7 +7,7 @@ pkgname=netsurf pkgver=2.8 pkgrel=1 pkgdesc="Lightweight, fast web browser" -arch=('x86_64' 'i686') +arch=('i686' 'x86_64' 'mips64el') url="http://www.netsurf-browser.org/" license=('GPL') depends=('libmng' 'curl' 'libglade' 'librsvg' 'desktop-file-utils' 'libnsbmp' 'libnsgif' 'hubbub' 'libcss' 'hubbub') diff --git a/community/netwatch/PKGBUILD b/community/netwatch/PKGBUILD index 8078c2af7..582f103f6 100644 --- a/community/netwatch/PKGBUILD +++ b/community/netwatch/PKGBUILD @@ -5,7 +5,7 @@ pkgname=netwatch pkgver=1.3.0 pkgrel=2 pkgdesc="monitor network connections" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.slctech.org/~mackay/NETWATCH/netwatch.html" license=('GPL') options=(zipman) diff --git a/community/newsbeuter/PKGBUILD b/community/newsbeuter/PKGBUILD index 52509e5b3..bccd78bed 100644 --- a/community/newsbeuter/PKGBUILD +++ b/community/newsbeuter/PKGBUILD @@ -6,7 +6,7 @@ pkgname=newsbeuter pkgver=2.4 pkgrel=1 pkgdesc="A RSS feed reader for the text console with special Podcast support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.newsbeuter.org/" license=('custom: MIT') depends=('curl' 'libxml2' 'sqlite3' 'stfl') diff --git a/community/newton-dynamics/PKGBUILD b/community/newton-dynamics/PKGBUILD index 93a578450..f22a2aea0 100644 --- a/community/newton-dynamics/PKGBUILD +++ b/community/newton-dynamics/PKGBUILD @@ -5,7 +5,7 @@ pkgname=newton-dynamics pkgver=2.33 pkgrel=1 pkgdesc="A simple physics API" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.newtondynamics.com" license=('custom') depends=() diff --git a/community/nexuiz/PKGBUILD b/community/nexuiz/PKGBUILD index 2471fe8ec..3123ad9b0 100644 --- a/community/nexuiz/PKGBUILD +++ b/community/nexuiz/PKGBUILD @@ -8,7 +8,7 @@ pkgname=nexuiz pkgver=2.5.2 _zipver=252 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="a free, open-source first person shooter" url="http://www.nexuiz.com/" license=("GPL") diff --git a/community/nginx/PKGBUILD b/community/nginx/PKGBUILD index b0081b4ad..f9d565477 100644 --- a/community/nginx/PKGBUILD +++ b/community/nginx/PKGBUILD @@ -14,7 +14,7 @@ pkgname=nginx pkgver=1.0.9 pkgrel=1 pkgdesc="lightweight HTTP server and IMAP/POP3 proxy server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('pcre' 'zlib' 'openssl') makedepends=('passenger') optdepends=('passenger') diff --git a/community/ngircd/PKGBUILD b/community/ngircd/PKGBUILD index fa3c151d6..d2079fd86 100644 --- a/community/ngircd/PKGBUILD +++ b/community/ngircd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ngircd pkgver=18 pkgrel=1 pkgdesc="Next Generation IRC Daemon" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') backup=(etc/ngircd.conf) url="http://ngircd.barton.de/" license=('GPL') diff --git a/community/ngrep/PKGBUILD b/community/ngrep/PKGBUILD index e6bc0d3d1..6445d99b4 100644 --- a/community/ngrep/PKGBUILD +++ b/community/ngrep/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ngrep pkgver=1.45 pkgrel=6 pkgdesc='A grep-like utility that allows you to search for network packets on an interface.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://ngrep.sourceforge.net/' license=('custom') depends=('libpcap>=1.0.0') diff --git a/community/ngspice/PKGBUILD b/community/ngspice/PKGBUILD index 9bf37940b..54acc8f53 100644 --- a/community/ngspice/PKGBUILD +++ b/community/ngspice/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc='Mixed-level/Mixed-signal circuit simulator based on Spice3f5, Ciber1b1, and Xspice.' url='http://ngspice.sourceforge.net' license=('BSD') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libxaw' 'libedit') source=("http://downloads.sourceforge.net/$pkgname/$pkgver/ngspice-$pkgver.tar.gz") sha1sums=('65fa23d1168cb3af7651b990344f763c77bf6132') diff --git a/community/nickle/PKGBUILD b/community/nickle/PKGBUILD index 1e511b630..cff5a8fcb 100644 --- a/community/nickle/PKGBUILD +++ b/community/nickle/PKGBUILD @@ -5,7 +5,7 @@ pkgname=nickle pkgver=2.70 pkgrel=1 pkgdesc="A programming language based prototyping environment with powerful programming and scripting capabilities" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://nickle.org" license=('custom') depends=('readline') diff --git a/community/nodejs/PKGBUILD b/community/nodejs/PKGBUILD index c53ffe04a..434e82574 100644 --- a/community/nodejs/PKGBUILD +++ b/community/nodejs/PKGBUILD @@ -9,7 +9,7 @@ pkgname=nodejs pkgver=0.6.0 pkgrel=1 pkgdesc='Evented I/O for V8 javascript' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://nodejs.org/' license=('MIT') depends=('python2') diff --git a/community/noip/PKGBUILD b/community/noip/PKGBUILD index 4ed673e68..55050d40c 100644 --- a/community/noip/PKGBUILD +++ b/community/noip/PKGBUILD @@ -6,7 +6,7 @@ pkgname=noip pkgver=2.1.9 pkgrel=2 pkgdesc="A Dynamic DNS Client Updater for no-ip.com services" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.no-ip.com/downloads.php?page=linux" license=('GPL') backup=('etc/no-ip2.conf') diff --git a/community/nrg2iso/PKGBUILD b/community/nrg2iso/PKGBUILD index 493bfb4ff..a0c40c1b3 100644 --- a/community/nrg2iso/PKGBUILD +++ b/community/nrg2iso/PKGBUILD @@ -7,7 +7,7 @@ pkgname=nrg2iso pkgver=0.4 pkgrel=7 pkgdesc="Utility for converting CD or DVD image generated by Nero Burning Rom to ISO format" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gregory.kokanosky.free.fr/v4/linux/nrg2iso.en.html" license=('GPL') depends=('glibc') diff --git a/community/nsd/PKGBUILD b/community/nsd/PKGBUILD index ef11a6dc1..557d160aa 100644 --- a/community/nsd/PKGBUILD +++ b/community/nsd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=nsd pkgver=3.2.8 pkgrel=1 pkgdesc='Authoritative only, high performance and simple DNS server' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.nlnetlabs.nl/nsd/' license=('BSD') depends=('openssl') diff --git a/community/ntop/PKGBUILD b/community/ntop/PKGBUILD index 695144eee..a0cc7f14e 100644 --- a/community/ntop/PKGBUILD +++ b/community/ntop/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ntop pkgver=4.1.0 pkgrel=1 pkgdesc='A network traffic probe that shows the network usage.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.ntop.org/' license=('GPL') depends=('libevent' 'libpcap' 'gd' 'glib' 'libxml2' 'openssl' 'rrdtool' 'pcre' 'geoip' 'lua') diff --git a/community/numlockx/PKGBUILD b/community/numlockx/PKGBUILD index a5d59e003..d678d4053 100644 --- a/community/numlockx/PKGBUILD +++ b/community/numlockx/PKGBUILD @@ -8,7 +8,7 @@ pkgname=numlockx pkgver=1.2 pkgrel=1 pkgdesc="Turns on the numlock key in X11" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('MIT') url="http://ktown.kde.org/~seli/numlockx/" depends=('libxtst') diff --git a/community/nut/PKGBUILD b/community/nut/PKGBUILD index 1339b6ac7..e9a2de267 100644 --- a/community/nut/PKGBUILD +++ b/community/nut/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc='Records what you eat and analyzes your meals for nutrient levels in terms of the Daily Value or DV which is the standard for food labeling in the US.' url='http://nut.sourceforge.net/' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=("http://downloads.sourceforge.net/project/nut/nut/${pkgver}/nut-${pkgver}.tar.gz") md5sums=('791fa4730f82da66d539c0d4e82441a9') diff --git a/community/nvclock/PKGBUILD b/community/nvclock/PKGBUILD index 4eda3735f..d3a09a670 100644 --- a/community/nvclock/PKGBUILD +++ b/community/nvclock/PKGBUILD @@ -7,7 +7,7 @@ pkgname=nvclock pkgver=0.8b4 pkgrel=2 pkgdesc='A small utility which allows users to overclock NVIDIA based video cards.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.linuxhardware.org/nvclock/' license=('GPL') depends=('gtk2') diff --git a/community/nvdock/PKGBUILD b/community/nvdock/PKGBUILD index a10edeabc..0a70eb271 100644 --- a/community/nvdock/PKGBUILD +++ b/community/nvdock/PKGBUILD @@ -6,7 +6,7 @@ pkgname=nvdock pkgver=1.02 pkgrel=3 pkgdesc="A tray icon for easy launching of the NVIDIA control panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.opsat.net/user/bob/projects/nvdock" license=('BSD') depends=('gtk2') diff --git a/community/nzbget/PKGBUILD b/community/nzbget/PKGBUILD index f61ad81cf..a395c7a34 100644 --- a/community/nzbget/PKGBUILD +++ b/community/nzbget/PKGBUILD @@ -5,7 +5,7 @@ pkgname=nzbget pkgver=0.7.0 pkgrel=3 pkgdesc="Downloads from Usenet using .nzb files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://nzbget.sourceforge.net/" license=('GPL') depends=('gnutls' 'libpar2' 'libxml2' 'ncurses') diff --git a/community/obby/PKGBUILD b/community/obby/PKGBUILD index d10bf6798..ea0103504 100644 --- a/community/obby/PKGBUILD +++ b/community/obby/PKGBUILD @@ -10,7 +10,7 @@ pkgdesc="A library which provides synced document buffers" url="http://gobby.0x539.de" options=('!libtool') license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('net6' 'avahi' 'libsigc++') source=(http://releases.0x539.de/obby/obby-$pkgver.tar.gz) md5sums=('33fac4228c1efc1a1635bacf6480dc31') diff --git a/community/obconf/PKGBUILD b/community/obconf/PKGBUILD index b1c34b3d1..fb57106b7 100644 --- a/community/obconf/PKGBUILD +++ b/community/obconf/PKGBUILD @@ -8,7 +8,7 @@ pkgname=obconf pkgver=2.0.3.git20100309 pkgrel=2 pkgdesc="A GTK2 based configuration tool for the Openbox windowmanager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://openbox.org/wiki/ObConf:About" license=('GPL') depends=('openbox' 'gtk2' 'libglade' 'desktop-file-utils' 'libsm') diff --git a/community/obexfs/PKGBUILD b/community/obexfs/PKGBUILD index 3e1d404a1..c2c172748 100644 --- a/community/obexfs/PKGBUILD +++ b/community/obexfs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=obexfs pkgver=0.12 pkgrel=2 pkgdesc="FUSE based filesystem using ObexFTP (currently beta)." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://openobex.triq.net/obexfs" license=('GPL') source=(http://triq.net/obexftp/$pkgname-$pkgver.tar.gz) diff --git a/community/ocaml-extlib/PKGBUILD b/community/ocaml-extlib/PKGBUILD index 42af092f3..a4517503c 100644 --- a/community/ocaml-extlib/PKGBUILD +++ b/community/ocaml-extlib/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ocaml-extlib pkgver=1.5.1 pkgrel=4 pkgdesc="Extends the OCaml standard library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/ocaml-extlib/" license=('LGPL') depends=('ocaml') diff --git a/community/ocaml-findlib/PKGBUILD b/community/ocaml-findlib/PKGBUILD index 5748d3f88..366f9fc14 100644 --- a/community/ocaml-findlib/PKGBUILD +++ b/community/ocaml-findlib/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ocaml-findlib pkgver=1.2.7 pkgrel=1 license=('MIT') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="Objective Caml (OCaml) package manager" url="http://projects.camlcity.org/projects/findlib.html" depends=('ocaml') diff --git a/community/ocaml-ounit/PKGBUILD b/community/ocaml-ounit/PKGBUILD index 1ac2c7445..d9666f6d4 100644 --- a/community/ocaml-ounit/PKGBUILD +++ b/community/ocaml-ounit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ocaml-ounit pkgver=1.1.0 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('MIT') pkgdesc="Unit testing framework for OCaml" url="http://ounit.forge.ocamlcore.org/index.php" diff --git a/community/ogle-gui/PKGBUILD b/community/ogle-gui/PKGBUILD index 2c8d95b91..a5ead3a9b 100644 --- a/community/ogle-gui/PKGBUILD +++ b/community/ogle-gui/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ogle-gui pkgver=0.9.2 pkgrel=5 pkgdesc="A gtk2 gui for ogle" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.dtek.chalmers.se/groups/dvd/" license=('GPL') depends=('ogle' 'libglade') diff --git a/community/ogmrip/PKGBUILD b/community/ogmrip/PKGBUILD index 8d157decc..59464ecff 100644 --- a/community/ogmrip/PKGBUILD +++ b/community/ogmrip/PKGBUILD @@ -8,7 +8,7 @@ pkgname=ogmrip pkgver=0.13.7 pkgrel=2 pkgdesc="Libraries and GTK2 interface for DVD ripping using mencoder" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ogmrip.sourceforge.net/" license=('GPL') depends=('libdvdread>=4.1.3' 'mplayer' 'mencoder' 'enca' 'pkgconfig' 'gconf' 'libglade' 'libnotify' 'enchant') diff --git a/community/oidentd/PKGBUILD b/community/oidentd/PKGBUILD index da509f959..8cbc50307 100644 --- a/community/oidentd/PKGBUILD +++ b/community/oidentd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=oidentd pkgver=2.0.8 pkgrel=4 pkgdesc="oidentd is an ident (rfc1413 compliant) daemon that runs on Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://dev.ojnk.net/" license=('GPL') depends=('glibc') diff --git a/community/ois/PKGBUILD b/community/ois/PKGBUILD index 9ba2d73e2..f410caaa9 100644 --- a/community/ois/PKGBUILD +++ b/community/ois/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ois pkgver=1.3 pkgrel=1 pkgdesc="Object Oriented Input System" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/wgois" license=('zlib/libpng') makedepends=('autoconf' 'automake' 'libtool' 'gcc' 'libxaw') diff --git a/community/omniorb/PKGBUILD b/community/omniorb/PKGBUILD index a67bc410a..462496844 100644 --- a/community/omniorb/PKGBUILD +++ b/community/omniorb/PKGBUILD @@ -7,7 +7,7 @@ pkgname=omniorb pkgver=4.1.5 pkgrel=1 pkgdesc="A CORBA object request broker for C++ and Python." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://omniorb.sourceforge.net/" license=('GPL2' 'LGPL2') depends=('gcc-libs' 'python2' 'openssl') diff --git a/community/oolite/PKGBUILD b/community/oolite/PKGBUILD index 010337f38..9bad89c5d 100644 --- a/community/oolite/PKGBUILD +++ b/community/oolite/PKGBUILD @@ -5,7 +5,7 @@ pkgname=oolite pkgver=1.75.3 pkgrel=2 pkgdesc="A space-sim based on the classic Elite" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://oolite-linux.berlios.de" license=('GPL2') depends=('gnustep-gui' 'sdl_mixer' 'mesa' 'espeak' 'nspr' 'python2' 'icu') diff --git a/community/open-vm-tools-modules/PKGBUILD b/community/open-vm-tools-modules/PKGBUILD index cdb6a85eb..752b13b19 100644 --- a/community/open-vm-tools-modules/PKGBUILD +++ b/community/open-vm-tools-modules/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2011.09.23 _pkgsubver=491607 pkgrel=1 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=('GPL') makedepends=('libdnet' 'icu' 'uriparser' 'linux-headers') diff --git a/community/open-vm-tools/PKGBUILD b/community/open-vm-tools/PKGBUILD index c38880bc2..3ebc7b806 100644 --- a/community/open-vm-tools/PKGBUILD +++ b/community/open-vm-tools/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2011.09.23 _pkgsubver=491607 pkgrel=1 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' 'glib2' 'uriparser' 'libsigc++' 'libxss') diff --git a/community/openarena/PKGBUILD b/community/openarena/PKGBUILD index 92f486fd8..8d4830d84 100644 --- a/community/openarena/PKGBUILD +++ b/community/openarena/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.8.5 _oldver=0.8.1 pkgrel=2 pkgdesc="A violent, sexy, multiplayer first person shooter based on the ioquake3 engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://openarena.ws/" license=('GPL') depends=('sdl' 'libvorbis' 'curl' 'openarena-data') diff --git a/community/openbox/PKGBUILD b/community/openbox/PKGBUILD index 9241dabf8..bc424cf0a 100644 --- a/community/openbox/PKGBUILD +++ b/community/openbox/PKGBUILD @@ -7,7 +7,7 @@ pkgname=openbox pkgver=3.5.0 pkgrel=4 pkgdesc="A window manager for the X11 windowing system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://openbox.org" license=('GPL') depends=('startup-notification' 'libxml2' 'libxinerama' 'libxrandr' diff --git a/community/openbsd-netcat/PKGBUILD b/community/openbsd-netcat/PKGBUILD index 6c2899eb8..4e84b6240 100644 --- a/community/openbsd-netcat/PKGBUILD +++ b/community/openbsd-netcat/PKGBUILD @@ -6,11 +6,11 @@ pkgname="openbsd-netcat" pkgver=1.89 pkgrel=4 pkgdesc="TCP/IP swiss army knife. OpenBSD variant." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://packages.debian.org/sid/netcat-openbsd" license=('BSD') depends=('glib2') -makedepends=('gcc' 'make') +makedepends=('gcc' 'make' 'pkg-config') source=("http://ftp.debian.org/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${pkgver}.orig.tar.gz" "http://ftp.debian.org/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${pkgver}-${pkgrel}.diff.gz") md5sums=('7238ce15aae43069e96ba7faf03f153e' diff --git a/community/openlierox/PKGBUILD b/community/openlierox/PKGBUILD index f0ece7215..3580262d1 100644 --- a/community/openlierox/PKGBUILD +++ b/community/openlierox/PKGBUILD @@ -7,7 +7,7 @@ pkgname=openlierox pkgver=0.58_rc3 pkgrel=3 pkgdesc="A real-time excessive Worms-clone" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.openlierox.net/" license=('LGPL') depends=('curl' 'gcc-libs' 'sdl_image' 'sdl_mixer' 'gd' 'hawknl' 'libxml2' 'libzip') diff --git a/community/openmotif/PKGBUILD b/community/openmotif/PKGBUILD index 7f6be420e..3cb50e07a 100644 --- a/community/openmotif/PKGBUILD +++ b/community/openmotif/PKGBUILD @@ -8,7 +8,7 @@ pkgname=openmotif pkgver=2.3.3 pkgrel=1 pkgdesc="Open Motif" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.motifzone.org/" license=('GPL') depends=(libxext libxp libxft libxt) diff --git a/community/openmovieeditor/PKGBUILD b/community/openmovieeditor/PKGBUILD index cef330b33..98716a99b 100644 --- a/community/openmovieeditor/PKGBUILD +++ b/community/openmovieeditor/PKGBUILD @@ -7,7 +7,7 @@ pkgname=openmovieeditor pkgver=0.0.20090105 pkgrel=8 pkgdesc="A simple video editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://openmovieeditor.sourceforge.net/HomePage" license=('GPL') depends=('libquicktime' 'libsamplerate' 'fltk' 'jack' diff --git a/community/openntpd/PKGBUILD b/community/openntpd/PKGBUILD index 3d9ba5ab7..103c77db0 100644 --- a/community/openntpd/PKGBUILD +++ b/community/openntpd/PKGBUILD @@ -8,7 +8,7 @@ pkgver=3.9p1 pkgrel=13 pkgdesc="Free, easy to use implementation of the Network Time Protocol." url="http://www.openntpd.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('BSD') depends=('openssl') backup=('etc/ntpd.conf' 'etc/conf.d/openntpd') diff --git a/community/openscenegraph/PKGBUILD b/community/openscenegraph/PKGBUILD index a8c0f7d88..e00c59ba9 100644 --- a/community/openscenegraph/PKGBUILD +++ b/community/openscenegraph/PKGBUILD @@ -8,7 +8,7 @@ pkgname=openscenegraph pkgver=3.0.1 pkgrel=1 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/opensips/PKGBUILD b/community/opensips/PKGBUILD index e57168aba..17e50b215 100644 --- a/community/opensips/PKGBUILD +++ b/community/opensips/PKGBUILD @@ -18,7 +18,7 @@ optdepends=('postgresql-libs' backup=("etc/opensips/opensips.cfg" "etc/opensips/dictionary.radius" "etc/opensips/opensipsctlrc") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') install=opensips.install options=('!emptydirs' 'zipman' '!makeflags' 'docs') diff --git a/community/openssh-askpass/PKGBUILD b/community/openssh-askpass/PKGBUILD index 82db763d6..66a24c3df 100644 --- a/community/openssh-askpass/PKGBUILD +++ b/community/openssh-askpass/PKGBUILD @@ -6,7 +6,7 @@ pkgname=openssh-askpass pkgver=1.3.2 pkgrel=1 pkgdesc='A plasma-like passphrase dialog for ssh' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.phenix.bnl.gov/WWW/publish/hpereira/software/index.php?page=package&package_list=software_list_qt4&package=openssh-askpass&full=1' license=('GPL') depends=('openssh' 'qt') diff --git a/community/openthreads/PKGBUILD b/community/openthreads/PKGBUILD index e65ef6aab..7478fd4e9 100644 --- a/community/openthreads/PKGBUILD +++ b/community/openthreads/PKGBUILD @@ -6,7 +6,7 @@ pkgname=openthreads pkgver=2.3.0 pkgrel=1 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/openttd/PKGBUILD b/community/openttd/PKGBUILD index c4c1a06f6..0d384a226 100644 --- a/community/openttd/PKGBUILD +++ b/community/openttd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=openttd pkgver=1.1.3 pkgrel=1 pkgdesc='An engine for running Transport Tycoon Deluxe.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.openttd.org' license=('GPL') depends=('libpng' 'sdl' 'icu' 'fontconfig' 'lzo2' 'hicolor-icon-theme' 'desktop-file-utils') diff --git a/community/optipng/PKGBUILD b/community/optipng/PKGBUILD index 93c7a5653..a13722785 100644 --- a/community/optipng/PKGBUILD +++ b/community/optipng/PKGBUILD @@ -6,7 +6,7 @@ pkgname=optipng pkgver=0.6.5 pkgrel=1 pkgdesc='A PNG optimizer that recompresses image files to a smaller size, without losing any information' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://optipng.sourceforge.net/' license=('ZLIB') depends=('glibc') diff --git a/community/orange/PKGBUILD b/community/orange/PKGBUILD index e6c6f982b..0a19f823c 100644 --- a/community/orange/PKGBUILD +++ b/community/orange/PKGBUILD @@ -6,7 +6,7 @@ pkgname=orange pkgver=0.4 pkgrel=3 pkgdesc="a helper tool for synce" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://synce.sourceforge.net/" license=("GPL") depends=('dynamite' 'synce-libsynce' 'file' 'unshield') diff --git a/community/osdbattery/PKGBUILD b/community/osdbattery/PKGBUILD index 62eced75b..a9b0a1ab5 100644 --- a/community/osdbattery/PKGBUILD +++ b/community/osdbattery/PKGBUILD @@ -4,7 +4,7 @@ pkgname=osdbattery pkgver=1.4 pkgrel=3 pkgdesc="Displays battery information in the OSD style" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://osdbattery.sourceforge.net" license=("GPL2") depends=('xosd') diff --git a/community/osec/PKGBUILD b/community/osec/PKGBUILD index 0f0a7a96d..9d4d49ff5 100644 --- a/community/osec/PKGBUILD +++ b/community/osec/PKGBUILD @@ -6,7 +6,7 @@ pkgname=osec pkgver=1.2.3 pkgrel=1 pkgdesc="lightweight integrity checking system" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://o-security.sourceforge.net/" license=("GPL") makedepends=(help2man tinycdb) diff --git a/community/osiris/PKGBUILD b/community/osiris/PKGBUILD index 7ce3b4ea5..f67b911c7 100644 --- a/community/osiris/PKGBUILD +++ b/community/osiris/PKGBUILD @@ -5,7 +5,7 @@ pkgname=osiris pkgver=4.2.3 pkgrel=3 pkgdesc="A file integrity management system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://osiris.shmoo.com/" license=('custom') depends=('openssl' 'readline') diff --git a/community/osmo/PKGBUILD b/community/osmo/PKGBUILD index 85cd6cf49..729d57143 100644 --- a/community/osmo/PKGBUILD +++ b/community/osmo/PKGBUILD @@ -7,7 +7,7 @@ pkgname=osmo pkgver=0.2.10 pkgrel=5 pkgdesc="A handy personal organizer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://clayo.org/osmo/" license=('GPL') depends=('gtk2>=2.12' 'gtkspell' 'hicolor-icon-theme' 'libical' 'libnotify' 'libgtkhtml' 'libgringotts>=1.2.1' 'libxml2') diff --git a/community/oss/PKGBUILD b/community/oss/PKGBUILD index cb9e8432e..92ea3ded2 100644 --- a/community/oss/PKGBUILD +++ b/community/oss/PKGBUILD @@ -7,7 +7,7 @@ pkgname=oss pkgver=4.2_2005 pkgrel=1 pkgdesc="Open Sound System UNIX audio architecture" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://developer.opensound.com/" license=('GPL2') depends=('gcc' 'make' 'kernel26-headers' 'module-init-tools' 'libtool' 'sed') diff --git a/community/ozerocdoff/PKGBUILD b/community/ozerocdoff/PKGBUILD index d06c022f1..653e28f2a 100644 --- a/community/ozerocdoff/PKGBUILD +++ b/community/ozerocdoff/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ozerocdoff pkgver=2 pkgrel=3 pkgdesc="Userspace driver for Option High Speed Mobile Devices" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.pharscape.org/ozerocdoff.html" depends=('bash' 'libusb-compat') license=('GPL2') diff --git a/community/p2c/PKGBUILD b/community/p2c/PKGBUILD index 027f78819..ddac30ed1 100644 --- a/community/p2c/PKGBUILD +++ b/community/p2c/PKGBUILD @@ -7,7 +7,7 @@ pkgname=p2c pkgver=1.21alpha2 pkgrel=9 pkgdesc="pascal to c/c++ converter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://packages.debian.org/sid/p2c" license=('GPL') depends=('perl') diff --git a/community/p3scan/PKGBUILD b/community/p3scan/PKGBUILD index 67dd6ca21..339f264f7 100644 --- a/community/p3scan/PKGBUILD +++ b/community/p3scan/PKGBUILD @@ -6,7 +6,7 @@ pkgname=p3scan pkgver=2.3.2 pkgrel=5 pkgdesc="Fully transparent POP3/SMTP proxy with Anti-Virus and SPAM protection" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://p3scan.sourceforge.net/" depends=('pcre' 'openssl') license=('GPL') diff --git a/community/packagekit/PKGBUILD b/community/packagekit/PKGBUILD index d9706478b..4f7436675 100644 --- a/community/packagekit/PKGBUILD +++ b/community/packagekit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=('packagekit' 'packagekit-qt' 'packagekit-qt2' 'packagekit-python') pkgver=0.6.19 pkgrel=1 pkgdesc="A system designed to make installation and updates of packages easier." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.packagekit.org" license=('GPL') makedepends=('dbus-glib' 'gobject-introspection' 'gtk-doc' 'intltool' diff --git a/community/paco/PKGBUILD b/community/paco/PKGBUILD index 4b9462466..cbecb9018 100644 --- a/community/paco/PKGBUILD +++ b/community/paco/PKGBUILD @@ -6,7 +6,7 @@ pkgname=paco pkgver=2.0.9 pkgrel=1 pkgdesc="LFS packet manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://paco.sourceforge.net/index.html" license=('GPL') #NOTE: You may disable gtk frontend in configure diff --git a/community/pam-krb5/PKGBUILD b/community/pam-krb5/PKGBUILD index 5c9798514..49647afef 100644 --- a/community/pam-krb5/PKGBUILD +++ b/community/pam-krb5/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pam-krb5 pkgver=4.4 pkgrel=2 pkgdesc='A PAM module providing Kerberos v5 support.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.eyrie.org/~eagle/software/pam-krb5/' license=('custom') options=('!libtool') diff --git a/community/pam_mysql/PKGBUILD b/community/pam_mysql/PKGBUILD index 6d46854a7..d27ce1bcd 100644 --- a/community/pam_mysql/PKGBUILD +++ b/community/pam_mysql/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pam_mysql pkgver=0.7RC1 pkgrel=4 pkgdesc="A PAM module to authenticate users against mysql." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://pam-mysql.sourceforge.net" depends=('pam' 'mysql' 'openssl') diff --git a/community/pam_pwcheck/PKGBUILD b/community/pam_pwcheck/PKGBUILD index bd5ee48d6..d7dd9d79d 100644 --- a/community/pam_pwcheck/PKGBUILD +++ b/community/pam_pwcheck/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pam_pwcheck pkgver=3.9 pkgrel=2 pkgdesc="A password strength checking module for PAM-aware password changing programs" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.thkukuk.de/pam/pam_pwcheck/" depends=('pam') license=('GPL') diff --git a/community/parano/PKGBUILD b/community/parano/PKGBUILD index 5f773d17c..41855fec5 100644 --- a/community/parano/PKGBUILD +++ b/community/parano/PKGBUILD @@ -7,7 +7,7 @@ pkgname=parano pkgver=0.3.5 pkgrel=4 pkgdesc="A GNOME frontend for creating/editing/checking MD5 and SFV files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://parano.berlios.de" license=('GPL') depends=('gnome-python' 'shared-mime-info') diff --git a/community/paraview/PKGBUILD b/community/paraview/PKGBUILD index 24d956ee6..9e2e6106c 100644 --- a/community/paraview/PKGBUILD +++ b/community/paraview/PKGBUILD @@ -6,7 +6,7 @@ pkgname=paraview pkgver=3.10.1 pkgrel=4 pkgdesc='Parallel Visualization Application using VTK.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.paraview.org' license=('custom') depends=('qt' 'python2' 'libgl' 'libxml2' 'unixodbc' 'postgresql-libs' 'libxt' 'libmysqlclient' 'mesa' 'openmpi') #'hdf5' diff --git a/community/parcellite/PKGBUILD b/community/parcellite/PKGBUILD index 07f753d2a..7d7a812ff 100644 --- a/community/parcellite/PKGBUILD +++ b/community/parcellite/PKGBUILD @@ -6,7 +6,7 @@ pkgname=parcellite pkgver=1.0.2rc5 pkgrel=1 pkgdesc="Lightweight GTK+ clipboard manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://parcellite.sourceforge.net/" license=('GPL3') depends=('gtk2') diff --git a/community/pari/PKGBUILD b/community/pari/PKGBUILD index 770b1133c..01d2fc6d9 100644 --- a/community/pari/PKGBUILD +++ b/community/pari/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pari pkgver=2.5.0 pkgrel=2 pkgdesc='Computer algebra system designed for fast computations in number theory' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://pari.math.u-bordeaux.fr/' license=('GPL') depends=('gmp' 'readline' 'libx11') diff --git a/community/parrot/PKGBUILD b/community/parrot/PKGBUILD index d608c5908..027162877 100644 --- a/community/parrot/PKGBUILD +++ b/community/parrot/PKGBUILD @@ -8,7 +8,7 @@ _rel=devel #_rel=stable pkgrel=2 pkgdesc="standalone virtual machine that can be used to execute bytecode compiled dynamic languages" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.parrotcode.org/" license=('GPL') depends=('gmp' 'gdbm' 'readline' 'icu' 'openssl' 'libffi') diff --git a/community/partimage/PKGBUILD b/community/partimage/PKGBUILD index d3923a9a3..9f8737f5f 100644 --- a/community/partimage/PKGBUILD +++ b/community/partimage/PKGBUILD @@ -9,7 +9,7 @@ pkgname=partimage pkgver=0.6.9 pkgrel=1 pkgdesc='Partition Image saves partitions in many formats to an image file.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.partimage.org/' license=('GPL') depends=('libnewt' 'lzo' 'bzip2' 'openssl') diff --git a/community/passenger/PKGBUILD b/community/passenger/PKGBUILD index 7ebf7fd69..81989a3ae 100644 --- a/community/passenger/PKGBUILD +++ b/community/passenger/PKGBUILD @@ -6,7 +6,7 @@ pkgver=3.0.8 pkgrel=1 pkgdlnr=75219 pkgdesc="mod_rails passenger" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.modrails.com" license=('GPL') depends=('apache' 'ruby' 'ruby-rack' 'curl') diff --git a/community/patchage/PKGBUILD b/community/patchage/PKGBUILD index e7c6516a0..033929668 100644 --- a/community/patchage/PKGBUILD +++ b/community/patchage/PKGBUILD @@ -7,7 +7,7 @@ pkgname=patchage pkgver=0.5.0 pkgrel=2 pkgdesc="A modular patch bay for audio and MIDI systems" -arch=('i686' 'x86_64') +arch=(i686 x86_64 'mips64el') url="http://drobilla.net/software/patchage" license=('GPL') depends=('dbus-glib' 'libglademm' 'hicolor-icon-theme' diff --git a/community/patchutils/PKGBUILD b/community/patchutils/PKGBUILD index 3e5ae4270..d7c3ec534 100644 --- a/community/patchutils/PKGBUILD +++ b/community/patchutils/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="A small collection of programs that operate on patch files" license=('GPL') url="http://cyberelk.net/tim/patchutils/" depends=('perl') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=(http://cyberelk.net/tim/data/patchutils/stable/$pkgname-$pkgver.tar.bz2) md5sums=('74607b4a28c9009c6aeeed0e91098917') diff --git a/community/pawm/PKGBUILD b/community/pawm/PKGBUILD index 0755f70ee..be066fc88 100644 --- a/community/pawm/PKGBUILD +++ b/community/pawm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pawm pkgver=2.3.0 pkgrel=1 pkgdesc="Puto Amo Window Manager is a full featured window manager, but without useless bells and whistles" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.pleyades.net/pawm/" license=("GPL") depends=(libxft libxpm libxrandr) diff --git a/community/pbzip2/PKGBUILD b/community/pbzip2/PKGBUILD index 84f522e64..8cf2f8700 100644 --- a/community/pbzip2/PKGBUILD +++ b/community/pbzip2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pbzip2 pkgver=1.1.6 pkgrel=1 pkgdesc="Parallel implementation of the bzip2 block-sorting file compressor" -arch=('i686' 'x86_64') +arch=(i686 x86_64 'mips64el') url="http://compression.ca/pbzip2/" license=('BSD') depends=('bzip2' 'gcc-libs') diff --git a/community/pcb/PKGBUILD b/community/pcb/PKGBUILD index 57651f7d7..abfc1551b 100644 --- a/community/pcb/PKGBUILD +++ b/community/pcb/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="An interactive printed circuit board editor for the X11 window system." url="http://pcb.gpleda.org/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('tcl' 'gtkglext' 'gd' 'perlxml' 'hicolor-icon-theme' 'desktop-file-utils') optdepends=('tk: for the graphical QFP footprint builder') install=$pkgname.install diff --git a/community/pcmanfm/PKGBUILD b/community/pcmanfm/PKGBUILD index 092d2aa4b..1880c5743 100644 --- a/community/pcmanfm/PKGBUILD +++ b/community/pcmanfm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pcmanfm pkgver=0.9.10 pkgrel=1 pkgdesc="File manager of the LXDE Desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pcmanfm.sourceforge.net/" license=('GPL') groups=('lxde') diff --git a/community/pcsc-perl/PKGBUILD b/community/pcsc-perl/PKGBUILD index 91fdcc270..94dceea86 100644 --- a/community/pcsc-perl/PKGBUILD +++ b/community/pcsc-perl/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pcsc-perl pkgver=1.4.12 pkgrel=2 pkgdesc="A Perl Module for PC/SC SmartCard access" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ludovic.rousseau.free.fr/softwares/pcsc-perl/" license=('GPL' 'PerlArtistic') depends=('pcsclite' 'perl') diff --git a/community/pcsc-tools/PKGBUILD b/community/pcsc-tools/PKGBUILD index 8bfabddba..5a9cb6066 100644 --- a/community/pcsc-tools/PKGBUILD +++ b/community/pcsc-tools/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pcsc-tools pkgver=1.4.17 pkgrel=4 pkgdesc="PC/SC Architecture smartcard tools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ludovic.rousseau.free.fr/softwares/pcsc-tools/" license=('GPL') depends=('pcsclite' 'pcsc-perl' 'gtk2-perl' 'glib-perl') diff --git a/community/pcsclite/PKGBUILD b/community/pcsclite/PKGBUILD index 71929e1d7..450fdcbaf 100644 --- a/community/pcsclite/PKGBUILD +++ b/community/pcsclite/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pcsclite pkgver=1.7.4 pkgrel=3 pkgdesc="PC/SC Architecture smartcard middleware library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://alioth.debian.org/projects/pcsclite/" license=('BSD') depends=('udev') diff --git a/community/pcsxr/PKGBUILD b/community/pcsxr/PKGBUILD new file mode 100644 index 000000000..09c3ca5ed --- /dev/null +++ b/community/pcsxr/PKGBUILD @@ -0,0 +1,28 @@ +## Maintainer: schuay <jakob.gruber@gmail.com> +## Contributor: quantax -- contact via Arch Linux forum or AUR +## Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org> + +pkgname=pcsxr +pkgver=1.9.92 +pkgrel=3 +pkgdesc='A Sony PlayStation emulator based on the PCSX-df Project' +arch=('i686' 'x86_64' 'mips64el') +url='http://pcsxr.codeplex.com/' +license=('GPL') +depends=('libcdio' 'libgl' 'libglade' 'libxtst' 'libxv' 'sdl' 'mesa') +conflicts=('pcsx-df') +_pkgurl="http://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=$pkgname&DownloadId=140521&FileTime=129254829621800000&Build=$(wget -qO - http://www.codeplex.com/ | sed -nr 's/^[[:space:]]*Version [[:digit:]]{4}\.([[:digit:]]{1,2}\.){2}([[:digit:]]+)[[:space:]]*$/\2/p' | tail -n 1)" +source=($pkgname-$pkgver.tar.bz2::$_pkgurl) +md5sums=('28411aed0b4424f97227d94bdefaec83') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --enable-libcdio --enable-opengl + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} + diff --git a/community/pdf2djvu/PKGBUILD b/community/pdf2djvu/PKGBUILD index 1daa3890a..9d4db9737 100644 --- a/community/pdf2djvu/PKGBUILD +++ b/community/pdf2djvu/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pdf2djvu pkgver=0.7.11 pkgrel=1 pkgdesc="Creates DjVu files from PDF files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pdf2djvu.googlecode.com" license=('GPL') depends=('poppler' 'djvulibre' 'libxslt' 'gcc-libs') diff --git a/community/pdf2svg/PKGBUILD b/community/pdf2svg/PKGBUILD index c15c7af0f..c20098d2a 100644 --- a/community/pdf2svg/PKGBUILD +++ b/community/pdf2svg/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pdf2svg pkgver=0.2.1 pkgrel=6 pkgdesc="A pdf to svg converter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cityinthesky.co.uk/pdf2svg.html" license=('GPL') depends=('poppler-glib' 'gtk2' 'glib2') 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/pdftrans/PKGBUILD b/community/pdftrans/PKGBUILD index 59a1970a2..47b15bfea 100644 --- a/community/pdftrans/PKGBUILD +++ b/community/pdftrans/PKGBUILD @@ -3,7 +3,7 @@ pkgname=pdftrans pkgver=1.2 pkgrel=7 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="A utility to add metadata, protect, and encrypt PDF documents" url="http://maddingue.free.fr/softwares/pdftrans.html.en" license=('GPL') diff --git a/community/pdmenu/PKGBUILD b/community/pdmenu/PKGBUILD index b201d9381..551330631 100644 --- a/community/pdmenu/PKGBUILD +++ b/community/pdmenu/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pdmenu pkgver=1.3.0 pkgrel=1 pkgdesc="simple full screen menu program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://packages.debian.org/unstable/source/pdmenu" license=('GPL') depends=('gpm' 'slang') diff --git a/community/pdnsd/PKGBUILD b/community/pdnsd/PKGBUILD index f73b30940..3b6a0d55a 100644 --- a/community/pdnsd/PKGBUILD +++ b/community/pdnsd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pdnsd pkgver=1.2.8 pkgrel=1 pkgdesc="Is a proxy DNS server with permanent caching" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.phys.uu.nl/~rombouts/pdnsd/" license=('GPL') depends=('glibc') diff --git a/community/performous/PKGBUILD b/community/performous/PKGBUILD index ce90dd8a5..721cd0098 100644 --- a/community/performous/PKGBUILD +++ b/community/performous/PKGBUILD @@ -6,7 +6,7 @@ pkgname=performous pkgver=0.6.1 pkgrel=9 pkgdesc='A free game like "Singstar", "Rockband" or "Stepmania"' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://performous.org/" license=('GPL') depends=('boost-libs>=1.47' 'sdl' 'jack' 'imagemagick' 'ffmpeg' 'glew>=1.7.0' 'libxml++' 'portaudio' 'portmidi' \ diff --git a/community/perl-berkeleydb/PKGBUILD b/community/perl-berkeleydb/PKGBUILD index 3a0b8f93f..ccccee3f5 100644 --- a/community/perl-berkeleydb/PKGBUILD +++ b/community/perl-berkeleydb/PKGBUILD @@ -7,7 +7,7 @@ pkgname=perl-berkeleydb pkgver=0.49 pkgrel=1 pkgdesc="Interface to Berkeley DB version 2, 3 or 4" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/BerkeleyDB/" license=('GPL' 'PerlArtistic') depends=('perl' 'db') diff --git a/community/perl-class-data-inheritable/PKGBUILD b/community/perl-class-data-inheritable/PKGBUILD index 279d6da79..31173e5b0 100644 --- a/community/perl-class-data-inheritable/PKGBUILD +++ b/community/perl-class-data-inheritable/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-class-data-inheritable pkgver=0.08 pkgrel=4 pkgdesc="Inheritable, overridable class data " -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Class-Data-Inheritable" license=('GPL' 'PerlArtistic') depends=('perl>=5.10.0') diff --git a/community/perl-class-factory-util/PKGBUILD b/community/perl-class-factory-util/PKGBUILD index d22f619c9..e42ba31e7 100644 --- a/community/perl-class-factory-util/PKGBUILD +++ b/community/perl-class-factory-util/PKGBUILD @@ -5,7 +5,7 @@ _realname=Class-Factory-Util pkgver=1.7 pkgrel=3 pkgdesc="Provide utility methods for factory classes" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'Artistic') url="http://search.cpan.org/~drolsky/Class-Factory-Util" options=(!emptydirs) diff --git a/community/perl-class-methodmaker/PKGBUILD b/community/perl-class-methodmaker/PKGBUILD index 9896a9d33..def16e65f 100644 --- a/community/perl-class-methodmaker/PKGBUILD +++ b/community/perl-class-methodmaker/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-class-methodmaker pkgver=2.18 pkgrel=4 pkgdesc="Create generic class methods" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Class-MethodMaker" license=('GPL' 'PerlArtistic') depends=('perl>=5.10.0') diff --git a/community/perl-clone/PKGBUILD b/community/perl-clone/PKGBUILD index ede090293..a2ae2b1a7 100644 --- a/community/perl-clone/PKGBUILD +++ b/community/perl-clone/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-clone pkgver=0.31 pkgrel=3 pkgdesc='Recursive copy of nested objects.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://search.cpan.org/~RDF/Clone' license=('GPL' 'PerlArtistic') depends=('perl>=5.10.0') diff --git a/community/perl-crypt-blowfish/PKGBUILD b/community/perl-crypt-blowfish/PKGBUILD index 204a0d0f9..a45d200e7 100644 --- a/community/perl-crypt-blowfish/PKGBUILD +++ b/community/perl-crypt-blowfish/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-crypt-blowfish pkgver=2.12 pkgrel=3 pkgdesc="Perl/CPAN Module Crypt::Blowfish : XSbased implementation of Blowfish" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Crypt-Blowfish" license=("GPL" "PerlArtistic") source=("http://search.cpan.org/CPAN/authors/id/D/DP/DPARIS/Crypt-Blowfish-$pkgver.tar.gz") diff --git a/community/perl-crypt-des/PKGBUILD b/community/perl-crypt-des/PKGBUILD index ae854b92b..43982fb94 100644 --- a/community/perl-crypt-des/PKGBUILD +++ b/community/perl-crypt-des/PKGBUILD @@ -3,7 +3,7 @@ pkgname=perl-crypt-des pkgver=2.05 pkgrel=3 pkgdesc="Perl DES encryption module" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/~dparis/Crypt-DES" license=("GPL" "PerlArtistic") depends=('glibc') diff --git a/community/perl-crypt-openssl-bignum/PKGBUILD b/community/perl-crypt-openssl-bignum/PKGBUILD index 33f382066..721249b20 100644 --- a/community/perl-crypt-openssl-bignum/PKGBUILD +++ b/community/perl-crypt-openssl-bignum/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-crypt-openssl-bignum pkgver=0.04 pkgrel=5 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/community/perl-crypt-openssl-random/PKGBUILD b/community/perl-crypt-openssl-random/PKGBUILD index b9a8adb52..d66f44187 100644 --- a/community/perl-crypt-openssl-random/PKGBUILD +++ b/community/perl-crypt-openssl-random/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-crypt-openssl-random pkgver=0.04 pkgrel=5 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/community/perl-crypt-openssl-rsa/PKGBUILD b/community/perl-crypt-openssl-rsa/PKGBUILD index dcedd07a7..9fe5c09c8 100644 --- a/community/perl-crypt-openssl-rsa/PKGBUILD +++ b/community/perl-crypt-openssl-rsa/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-crypt-openssl-rsa pkgver=0.28 pkgrel=1 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/community/perl-curses/PKGBUILD b/community/perl-curses/PKGBUILD index 629c01041..fb82f9368 100644 --- a/community/perl-curses/PKGBUILD +++ b/community/perl-curses/PKGBUILD @@ -7,7 +7,7 @@ pkgname=perl-curses pkgver=1.28 pkgrel=3 pkgdesc="Character screen handling and windowing" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Curses" license=('GPL' 'PerlArtistic') depends=('perl' 'ncurses') diff --git a/community/perl-data-structure-util/PKGBUILD b/community/perl-data-structure-util/PKGBUILD index 765098374..840da26ba 100644 --- a/community/perl-data-structure-util/PKGBUILD +++ b/community/perl-data-structure-util/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-data-structure-util pkgver=0.15 pkgrel=4 pkgdesc="Perl/CPAN Module Data::Structure::Util" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Data-Structure-Util" license=("GPL" "PerlArtistic") source=("http://search.cpan.org/CPAN/authors/id/A/AN/ANDYA/Data-Structure-Util-$pkgver.tar.gz") diff --git a/community/perl-datetime-format-builder/PKGBUILD b/community/perl-datetime-format-builder/PKGBUILD index 094777a66..940d700a3 100644 --- a/community/perl-datetime-format-builder/PKGBUILD +++ b/community/perl-datetime-format-builder/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-datetime-format-builder pkgver=0.8000 pkgrel=5 pkgdesc="Create DateTime parser classes and objects" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('PerlArtistic' 'GPL') options=('!emptydirs') provides=('perl-datetime-format-builder=0.80') diff --git a/community/perl-datetime-format-mail/PKGBUILD b/community/perl-datetime-format-mail/PKGBUILD index dc6c69605..c2e9758d1 100644 --- a/community/perl-datetime-format-mail/PKGBUILD +++ b/community/perl-datetime-format-mail/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-datetime-format-mail pkgver=0.3001 pkgrel=7 pkgdesc="Convert between DateTime and RFC2822/822 formats " -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/DateTime-Format-Mail" license=('GPL' 'PerlArtistic') depends=('perl>=5.10.0' 'perl-datetime' 'perl-params-validate>=0.67') diff --git a/community/perl-datetime/PKGBUILD b/community/perl-datetime/PKGBUILD index c4e8f7235..19a115798 100644 --- a/community/perl-datetime/PKGBUILD +++ b/community/perl-datetime/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-datetime pkgver=0.70 pkgrel=3 pkgdesc="A complete, easy to use date and time object" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/DateTime" license=('GPL' 'PerlArtistic') depends=('perl-datetime-timezone>=0.59' 'perl-datetime-locale>=0.41' diff --git a/community/perl-dbd-odbc/PKGBUILD b/community/perl-dbd-odbc/PKGBUILD index c663e5f5a..93ae7f6a5 100644 --- a/community/perl-dbd-odbc/PKGBUILD +++ b/community/perl-dbd-odbc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-dbd-odbc pkgver=1.31 pkgrel=1 pkgdesc="ODBC Driver for DBI" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/DBD-ODBC/" license=('GPL' 'PerlArtistic') depends=('perl-dbi' 'perl' 'unixodbc') diff --git a/community/perl-dbd-pg/PKGBUILD b/community/perl-dbd-pg/PKGBUILD index 7af282d37..d2e9c663b 100644 --- a/community/perl-dbd-pg/PKGBUILD +++ b/community/perl-dbd-pg/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-dbd-pg pkgver=2.18.1 pkgrel=1 pkgdesc="Postgres Driver for DBI" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/DBD-Pg" license=('GPL' 'PerlArtistic') depends=('perl-dbi>=1.52' 'postgresql-libs') diff --git a/community/perl-dbd-sqlite2/PKGBUILD b/community/perl-dbd-sqlite2/PKGBUILD index 314f129d4..35e26ee90 100644 --- a/community/perl-dbd-sqlite2/PKGBUILD +++ b/community/perl-dbd-sqlite2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-dbd-sqlite2 pkgver=0.33 pkgrel=7 pkgdesc="Perl/CPAN Module DBD::SQLite2" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/DBD-SQLite2" license=("GPL" "PerlArtistic") depends=("perl-dbi") diff --git a/community/perl-dbd-sybase/PKGBUILD b/community/perl-dbd-sybase/PKGBUILD index ecc703202..e6b72e091 100644 --- a/community/perl-dbd-sybase/PKGBUILD +++ b/community/perl-dbd-sybase/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-dbd-sybase pkgver=1.14 pkgrel=1 pkgdesc="Sybase Driver for DBI" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/DBD-Sybase/" license=('GPL' 'PerlArtistic') depends=('perl-dbi>=1.52' 'perl>=5.10.0' 'freetds') diff --git a/community/perl-device-serialport/PKGBUILD b/community/perl-device-serialport/PKGBUILD index 668b79445..896384913 100644 --- a/community/perl-device-serialport/PKGBUILD +++ b/community/perl-device-serialport/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-device-serialport pkgver=1.04 pkgrel=3 pkgdesc="POSIX clone of Win32::SerialPort" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Device-SerialPort" license=('GPL' 'PerlArtistic') depends=('perl') diff --git a/community/perl-fuse/PKGBUILD b/community/perl-fuse/PKGBUILD index 21a1d84bd..907db9b9f 100644 --- a/community/perl-fuse/PKGBUILD +++ b/community/perl-fuse/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-fuse pkgver=0.14 pkgrel=1 pkgdesc="write filesystems in Perl using FUSE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Fuse" depends=('perl' 'fuse') license=('GPL') diff --git a/community/perl-gd/PKGBUILD b/community/perl-gd/PKGBUILD index e93bfa0fa..225151d7c 100644 --- a/community/perl-gd/PKGBUILD +++ b/community/perl-gd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-gd pkgver=2.46 pkgrel=1 pkgdesc="Interface to Gd Graphics Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/GD" license=('GPL' 'PerlArtistic') depends=('gd') diff --git a/community/perl-gnome2-wnck/PKGBUILD b/community/perl-gnome2-wnck/PKGBUILD index 25e0df822..6dea6c1e1 100644 --- a/community/perl-gnome2-wnck/PKGBUILD +++ b/community/perl-gnome2-wnck/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-gnome2-wnck pkgver=0.16 pkgrel=4 pkgdesc="Perl interface to the Window Navigator Construction Kit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=("GPL" "Artistic") url="http://search.cpan.org/dist/Gnome2-Wnck" depends=('perl' 'perl-extutils-depends' 'perl-extutils-pkgconfig' 'gnome-perl' 'libwnck') diff --git a/community/perl-gssapi/PKGBUILD b/community/perl-gssapi/PKGBUILD index 714407586..85dac1dc7 100644 --- a/community/perl-gssapi/PKGBUILD +++ b/community/perl-gssapi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-gssapi pkgver=0.28 pkgrel=4 pkgdesc="Perl/CPAN Module GSSAPI" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/GSSAPI" license=("GPL" "PerlArtistic") depends=('krb5') diff --git a/community/perl-gstreamer-interfaces/PKGBUILD b/community/perl-gstreamer-interfaces/PKGBUILD index 61a9b62e6..fc1e2f160 100644 --- a/community/perl-gstreamer-interfaces/PKGBUILD +++ b/community/perl-gstreamer-interfaces/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-gstreamer-interfaces pkgver=0.06 pkgrel=3 pkgdesc="GStreamer::Interfaces" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/GStreamer-Interfaces" license=('GPL' 'PerlArtistic') depends=('glib-perl' 'gstreamer0.10-base' 'perl-extutils-pkgconfig' 'perl-gstreamer' 'perl-extutils-depends') diff --git a/community/perl-gstreamer/PKGBUILD b/community/perl-gstreamer/PKGBUILD index 84f62fa75..4273c6903 100644 --- a/community/perl-gstreamer/PKGBUILD +++ b/community/perl-gstreamer/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-gstreamer pkgver=0.16 pkgrel=1 pkgdesc="Interface to the GStreamer library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/GStreamer" license=('GPL' 'PerlArtistic') depends=('glib-perl>=1.180' 'gstreamer0.10' 'perl-extutils-pkgconfig>=1.07' 'perl-extutils-depends>=0.205') diff --git a/community/perl-gtk2-mozembed/PKGBUILD b/community/perl-gtk2-mozembed/PKGBUILD index bc2a503a0..556db8447 100644 --- a/community/perl-gtk2-mozembed/PKGBUILD +++ b/community/perl-gtk2-mozembed/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-gtk2-mozembed pkgver=0.09 pkgrel=1 pkgdesc="Interface to the Mozilla embedding widget" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Gtk2-MozEmbed" license=('GPL' 'PerlArtistic') depends=('perl-extutils-pkgconfig>=1.03' 'gtk2-perl>=1.081' 'perl-extutils-depends>=0.20' 'xulrunner>1.9') diff --git a/community/perl-gtk2-sexy/PKGBUILD b/community/perl-gtk2-sexy/PKGBUILD index 6b4789bd2..f0f3c21e8 100644 --- a/community/perl-gtk2-sexy/PKGBUILD +++ b/community/perl-gtk2-sexy/PKGBUILD @@ -7,7 +7,7 @@ pkgname=perl-gtk2-sexy pkgver=0.05 pkgrel=5 pkgdesc="Perl/CPAN Module Gtk2::Sexy" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Gtk2-Sexy" license=('GPL' 'PerlArtistic') depends=('gtk2' 'libsexy') diff --git a/community/perl-gtk2-trayicon/PKGBUILD b/community/perl-gtk2-trayicon/PKGBUILD index a4cdb9e76..1ce8a3b11 100644 --- a/community/perl-gtk2-trayicon/PKGBUILD +++ b/community/perl-gtk2-trayicon/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-gtk2-trayicon pkgver=0.06 pkgrel=7 pkgdesc="Perl interface to the EggTrayIcon library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Gtk2-TrayIcon/" depends=('gtk2-perl') makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends') diff --git a/community/perl-gtk2-webkit/PKGBUILD b/community/perl-gtk2-webkit/PKGBUILD index 269e6080a..ebc9e352c 100644 --- a/community/perl-gtk2-webkit/PKGBUILD +++ b/community/perl-gtk2-webkit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-gtk2-webkit pkgver=0.09 pkgrel=1 pkgdesc="Gtk2::WebKit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Gtk2-WebKit" license=('GPL' 'PerlArtistic') depends=('perl' 'gtk2-perl' 'libwebkit' 'perl-extutils-depends' 'perl-extutils-pkgconfig') diff --git a/community/perl-html-strip/PKGBUILD b/community/perl-html-strip/PKGBUILD index 2f93db01f..3177e4998 100644 --- a/community/perl-html-strip/PKGBUILD +++ b/community/perl-html-strip/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-html-strip pkgver=1.06 pkgrel=6 pkgdesc="Perl/CPAN Module HTML::Strip" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/~kilinrax/HTML-Strip/" license=("GPL" "PerlArtistic") depends=('perl') diff --git a/community/perl-inline-java/PKGBUILD b/community/perl-inline-java/PKGBUILD index d9396fc00..af57cf739 100644 --- a/community/perl-inline-java/PKGBUILD +++ b/community/perl-inline-java/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-inline-java pkgver=0.53 pkgrel=2 pkgdesc="The Inline::Java module allows you to put Java source code directly inline in a Perl script or module." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('perl' 'perl-inline' 'java-runtime') makedepends=('java-environment') license=("GPL" "PerlArtistic") diff --git a/community/perl-io-string/PKGBUILD b/community/perl-io-string/PKGBUILD index 76d116f9e..f51133495 100644 --- a/community/perl-io-string/PKGBUILD +++ b/community/perl-io-string/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-io-string pkgver=1.08 pkgrel=7 pkgdesc="IO::File interface for in-core strings" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/IO-String" license=('GPL' 'PerlArtistic') depends=('perl>=5.10.0') diff --git a/community/perl-io-tty/PKGBUILD b/community/perl-io-tty/PKGBUILD index 6560133ec..6afc5da89 100644 --- a/community/perl-io-tty/PKGBUILD +++ b/community/perl-io-tty/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-io-tty pkgver=1.10 pkgrel=1 pkgdesc="Provide an interface to TTYs and PTYs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/IO-Tty/" license=("GPL" "PerlArtistic") depends=('glibc') diff --git a/community/perl-json-xs/PKGBUILD b/community/perl-json-xs/PKGBUILD index b1c70feb1..18a78f161 100644 --- a/community/perl-json-xs/PKGBUILD +++ b/community/perl-json-xs/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="JSON::XS - JSON serialising/deserialising, done correctly and fast" url="http://search.cpan.org/dist/JSON-XS/" license=("GPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('perl' 'perl-common-sense') options=('!emptydirs') source=(http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/JSON-XS-$pkgver.tar.gz) diff --git a/community/perl-libapreq2/PKGBUILD b/community/perl-libapreq2/PKGBUILD index 2cacd77bc..85081460b 100644 --- a/community/perl-libapreq2/PKGBUILD +++ b/community/perl-libapreq2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-libapreq2 pkgver=2.13 pkgrel=1 pkgdesc="A safe, standards-compliant, high-performance library used for parsing HTTP cookies, query-strings and POST data." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/libapreq2" depends=('mod_perl' 'apr-util') makedepends=('perl-extutils-xsbuilder') diff --git a/community/perl-linux-pid/PKGBUILD b/community/perl-linux-pid/PKGBUILD index f50e9a06a..fe33de910 100644 --- a/community/perl-linux-pid/PKGBUILD +++ b/community/perl-linux-pid/PKGBUILD @@ -7,7 +7,7 @@ pkgname='perl-linux-pid' pkgver='0.04' pkgrel='1' pkgdesc="Interface to Linux getpp?id functions" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('PerlArtistic' 'GPL') options=('!emptydirs') depends=('perl') diff --git a/community/perl-list-moreutils/PKGBUILD b/community/perl-list-moreutils/PKGBUILD index 454cfa2ee..49773ee71 100644 --- a/community/perl-list-moreutils/PKGBUILD +++ b/community/perl-list-moreutils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-list-moreutils pkgver=0.33 pkgrel=1 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/community/perl-mail-box-parser-c/PKGBUILD b/community/perl-mail-box-parser-c/PKGBUILD index cf1fc16f4..0b498a844 100644 --- a/community/perl-mail-box-parser-c/PKGBUILD +++ b/community/perl-mail-box-parser-c/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-mail-box-parser-c pkgver=3.006 pkgrel=6 pkgdesc="Perl/CPAN Module Mail::Box::Parser::C : extends MailBox with the speed of C" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Mail-Box-Parser-C" license=("GPL" "PerlArtistic") options=('!emptydirs') diff --git a/community/perl-mail-transport-dbx/PKGBUILD b/community/perl-mail-transport-dbx/PKGBUILD index 15244af54..c9995475f 100644 --- a/community/perl-mail-transport-dbx/PKGBUILD +++ b/community/perl-mail-transport-dbx/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-mail-transport-dbx pkgver=0.07 pkgrel=6 pkgdesc="Perl/CPAN Module Mail::Transport::Dbx : Parse Outlook Express mailboxes" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Mail-Transport-Dbx" license=("GPL" "PerlArtistic") options=('!emptydirs') diff --git a/community/perl-net-dbus/PKGBUILD b/community/perl-net-dbus/PKGBUILD index c16439477..b22530497 100644 --- a/community/perl-net-dbus/PKGBUILD +++ b/community/perl-net-dbus/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-net-dbus pkgver=1.0.0 pkgrel=1 pkgdesc="Binding for DBus messaging protocol" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Net-DBus" license=('GPL' 'PerlArtistic') depends=('dbus' 'perl-xml-twig') diff --git a/community/perl-net-libidn/PKGBUILD b/community/perl-net-libidn/PKGBUILD index 1d2f41001..313cd913d 100644 --- a/community/perl-net-libidn/PKGBUILD +++ b/community/perl-net-libidn/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-net-libidn pkgver=0.12 pkgrel=4 pkgdesc="Perl/CPAN Module Net::LibIDN" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Net-LibIDN/" license=("GPL" "PerlArtistic") depends=(perl libidn) diff --git a/community/perl-params-validate/PKGBUILD b/community/perl-params-validate/PKGBUILD index 8d9f1cab4..def2a8d1b 100644 --- a/community/perl-params-validate/PKGBUILD +++ b/community/perl-params-validate/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-params-validate pkgver=1.00 pkgrel=1 pkgdesc="Validate sub params against a spec" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Params-Validate" license=('GPL' 'PerlArtistic') depends=('perl') diff --git a/community/perl-string-crc32/PKGBUILD b/community/perl-string-crc32/PKGBUILD index de3d39177..9c3f6ee44 100644 --- a/community/perl-string-crc32/PKGBUILD +++ b/community/perl-string-crc32/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-string-crc32 pkgver=1.4 pkgrel=6 pkgdesc="Perl/CPAN Module String::CRC32 : ZMODEMlike CRC32 generation" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/String-CRC32" license=("GPL" "PerlArtistic") options=('!emptydirs') diff --git a/community/perl-text-charwidth/PKGBUILD b/community/perl-text-charwidth/PKGBUILD index db2e6d27a..580f8b640 100644 --- a/community/perl-text-charwidth/PKGBUILD +++ b/community/perl-text-charwidth/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-text-charwidth pkgver=0.04 pkgrel=6 pkgdesc="Perl/CPAN Module Text::CharWidth" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Text-CharWidth" license=("GPL" "PerlArtistic") options=('!emptydirs') diff --git a/community/perl-text-kakasi/PKGBUILD b/community/perl-text-kakasi/PKGBUILD index 78b522c7c..21e704403 100644 --- a/community/perl-text-kakasi/PKGBUILD +++ b/community/perl-text-kakasi/PKGBUILD @@ -7,7 +7,7 @@ pkgname=perl-text-kakasi pkgver=2.04 pkgrel=7 pkgdesc="Perl frontend to kakasi" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Text-Kakasi" license=('GPL' 'PerlArtistic') depends=('perl' 'kakasi') diff --git a/community/perl-tie-hash-indexed/PKGBUILD b/community/perl-tie-hash-indexed/PKGBUILD index 687e000c1..be3eaab4d 100644 --- a/community/perl-tie-hash-indexed/PKGBUILD +++ b/community/perl-tie-hash-indexed/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-tie-hash-indexed pkgver=0.05 pkgrel=6 pkgdesc="Ordered hashes for Perl" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Tie-Hash-Indexed" license=('GPL' 'PerlArtistic') depends=('perl') diff --git a/community/perl-tk-tablematrix/PKGBUILD b/community/perl-tk-tablematrix/PKGBUILD index 8f9dd8986..3d66d05a7 100644 --- a/community/perl-tk-tablematrix/PKGBUILD +++ b/community/perl-tk-tablematrix/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-tk-tablematrix pkgver=1.23 pkgrel=7 pkgdesc="Display data in TableSpreadsheet format" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Tk-TableMatrix" license=("GPL" "PerlArtistic") depends=('perl-tk') diff --git a/community/perl-www-curl/PKGBUILD b/community/perl-www-curl/PKGBUILD index ba9fcc3f1..66468ec54 100644 --- a/community/perl-www-curl/PKGBUILD +++ b/community/perl-www-curl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-www-curl pkgver=4.15 pkgrel=1 pkgdesc="Perl/CPAN Module WWW::Curl" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/WWW-Curl/" license=("GPL" "PerlArtistic") depends=("curl") diff --git a/community/perl-xml-libxml/PKGBUILD b/community/perl-xml-libxml/PKGBUILD index 066d4637b..6680d155e 100644 --- a/community/perl-xml-libxml/PKGBUILD +++ b/community/perl-xml-libxml/PKGBUILD @@ -4,7 +4,7 @@ pkgname=perl-xml-libxml pkgver=1.88 pkgrel=1 pkgdesc="Interface to the libxml library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/XML-LibXML" license=('GPL') depends=('libxml2' 'perl-xml-sax>=0.11' 'perl-xml-namespacesupport>=1.07') diff --git a/community/perl-xml-libxslt/PKGBUILD b/community/perl-xml-libxslt/PKGBUILD index 4c0b21e74..82e09e9c6 100644 --- a/community/perl-xml-libxslt/PKGBUILD +++ b/community/perl-xml-libxslt/PKGBUILD @@ -5,7 +5,7 @@ pkgname=perl-xml-libxslt pkgver=1.73 pkgrel=1 pkgdesc="Interface to the gnome libxslt library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/XML-LibXSLT" license=('GPL') depends=('perl-xml-libxml' 'libxslt') diff --git a/community/perl-xmms/PKGBUILD b/community/perl-xmms/PKGBUILD index 053086167..4490b6b3a 100644 --- a/community/perl-xmms/PKGBUILD +++ b/community/perl-xmms/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-xmms pkgver=0.12 pkgrel=6 pkgdesc="Bundle::Xmms - Bundle for xmms remote control shell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/~dougm/Xmms-Perl/" depends=('perl' 'xmms' 'libxxf86dga') license=('GPL' 'PerlArtistic') diff --git a/community/pgadmin3/PKGBUILD b/community/pgadmin3/PKGBUILD index a19ab8da4..c05aceb50 100644 --- a/community/pgadmin3/PKGBUILD +++ b/community/pgadmin3/PKGBUILD @@ -8,7 +8,7 @@ pkgname=pgadmin3 pkgver=1.14.0 pkgrel=1 pkgdesc="A comprehensive design and management interface for PostgreSQL database" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.pgadmin.org" license=('custom') depends=('wxgtk' 'postgresql-libs' 'libxslt') diff --git a/community/php-geoip/PKGBUILD b/community/php-geoip/PKGBUILD index 5291e1d37..37b59a9be 100644 --- a/community/php-geoip/PKGBUILD +++ b/community/php-geoip/PKGBUILD @@ -5,7 +5,7 @@ pkgname=php-geoip pkgver=1.0.8 pkgrel=1 pkgdesc="GeoIP module for PHP" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pecl.php.net/package/geoip" license=('PHP') depends=('php' 'geoip') diff --git a/community/php-memcache/PKGBUILD b/community/php-memcache/PKGBUILD index 050930166..2f206f038 100644 --- a/community/php-memcache/PKGBUILD +++ b/community/php-memcache/PKGBUILD @@ -5,7 +5,7 @@ pkgname=php-memcache pkgver=3.0.6 pkgrel=1 pkgdesc="Memcache module for PHP" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pecl.php.net/package/memcache" license=('PHP') depends=('php') diff --git a/community/php-memcached/PKGBUILD b/community/php-memcached/PKGBUILD index 7d1c5063d..f5894f448 100644 --- a/community/php-memcached/PKGBUILD +++ b/community/php-memcached/PKGBUILD @@ -5,7 +5,7 @@ pkgname=php-memcached pkgver=1.0.2 pkgrel=5 pkgdesc="PHP extension for interfacing with memcached via libmemcached library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pecl.php.net/package/memcached" license=('PHP') depends=('php' 'libmemcached') diff --git a/community/picard/PKGBUILD b/community/picard/PKGBUILD index 6a84f1908..bd8ef5f87 100644 --- a/community/picard/PKGBUILD +++ b/community/picard/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc='Official MusicBrainz tagger' url='http://musicbrainz.org/doc/MusicBrainz_Picard' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('python2-qt' 'mutagen' 'libofa' 'ffmpeg') optdepends=('libdiscid: CD-Lookup feature') source=("http://ftp.musicbrainz.org/pub/musicbrainz/${pkgname}/${pkgname}-${pkgver}.tar.gz") diff --git a/community/pidgin-fonomobutton/PKGBUILD b/community/pidgin-fonomobutton/PKGBUILD index ec1bbda62..350bfcb5d 100644 --- a/community/pidgin-fonomobutton/PKGBUILD +++ b/community/pidgin-fonomobutton/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pidgin-fonomobutton pkgver=0.1.6 pkgrel=1 pkgdesc="Adds a video-chat button to the the conversation window" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.fonomo.com/software/pidgin.html" license=('GPL') depends=('pidgin') diff --git a/community/pidgin-libnotify/PKGBUILD b/community/pidgin-libnotify/PKGBUILD index cf9378755..72a3394b2 100644 --- a/community/pidgin-libnotify/PKGBUILD +++ b/community/pidgin-libnotify/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pidgin-libnotify pkgver=0.14 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="pidgin plugin that enables popups when someone logs in or messages you." url="http://gaim-libnotify.sourceforge.net/" license=('GPL') diff --git a/community/pidgin-musictracker/PKGBUILD b/community/pidgin-musictracker/PKGBUILD index 16300fcf3..058d7b42d 100644 --- a/community/pidgin-musictracker/PKGBUILD +++ b/community/pidgin-musictracker/PKGBUILD @@ -12,7 +12,7 @@ url='http://code.google.com/p/pidgin-musictracker' license=('GPL2') depends=('pidgin' 'gtk2' 'dbus-glib') makedepends=('xmms2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=("http://pidgin-musictracker.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2") options=('!libtool') md5sums=('8d7225c705484db86b864cab5a536423') diff --git a/community/pidgin-otr/PKGBUILD b/community/pidgin-otr/PKGBUILD index 565f57436..2a01f18f7 100644 --- a/community/pidgin-otr/PKGBUILD +++ b/community/pidgin-otr/PKGBUILD @@ -9,7 +9,7 @@ pkgname=pidgin-otr pkgver=3.2.0 pkgrel=3 pkgdesc='Off-the-Record Messaging plugin for Pidgin.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url='http://www.cypherpunks.ca/otr/' depends=('libotr>=3.2.0' 'pidgin' 'perlxml') diff --git a/community/pigeonhole/PKGBUILD b/community/pigeonhole/PKGBUILD index fc1bc0fd8..2ebc948b7 100644 --- a/community/pigeonhole/PKGBUILD +++ b/community/pigeonhole/PKGBUILD @@ -11,7 +11,7 @@ pkgname=pigeonhole pkgver=0.2.4 pkgrel=2 pkgdesc="Fully rewritten Sieve implementation for Dovecot v2.0" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pigeonhole.dovecot.org/" license=('LGPL') depends=('dovecot='$_dcpkgver) diff --git a/community/pinfo/PKGBUILD b/community/pinfo/PKGBUILD index d5ac06d0e..aa82fe665 100644 --- a/community/pinfo/PKGBUILD +++ b/community/pinfo/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pinfo pkgver=0.6.10 pkgrel=2 pkgdesc="A hypertext info file viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pinfo.alioth.debian.org/" license=('GPL') depends=('ncurses' 'readline') diff --git a/community/pingus/PKGBUILD b/community/pingus/PKGBUILD index f65d49886..7b331d3c7 100644 --- a/community/pingus/PKGBUILD +++ b/community/pingus/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pingus pkgver=0.7.5 pkgrel=1 pkgdesc="A Lemmings clone, i.e. a level-based puzzle game." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pingus.seul.org" license=('GPL') depends=('gcc-libs' 'sdl_image' 'sdl_mixer' 'libgl' 'boost-libs>=1.47') diff --git a/community/pinot/PKGBUILD b/community/pinot/PKGBUILD index 2a139fcba..9c315cc50 100644 --- a/community/pinot/PKGBUILD +++ b/community/pinot/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pinot pkgver=0.97 pkgrel=1 pkgdesc='Personal search and metasearch tool.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://pinot.berlios.de/' license=('GPL') depends=('gtkmm' 'xapian-core' 'libtextcat' 'sqlite3' 'libxml++' 'curl' diff --git a/community/pkgtools/PKGBUILD b/community/pkgtools/PKGBUILD index 4acf5b01d..facae0d8e 100644 --- a/community/pkgtools/PKGBUILD +++ b/community/pkgtools/PKGBUILD @@ -4,7 +4,7 @@ pkgname=pkgtools pkgver=23 pkgrel=2 pkgdesc="A collection of scripts for Arch Linux packages" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://bbs.archlinux.org/viewtopic.php?pid=384196" license=('GPL') source=(v$pkgver::http://github.com/Daenyth/pkgtools/tarball/v$pkgver) diff --git a/community/plan9port/PKGBUILD b/community/plan9port/PKGBUILD index 4eabbd20e..441f9bb9f 100644 --- a/community/plan9port/PKGBUILD +++ b/community/plan9port/PKGBUILD @@ -6,7 +6,7 @@ pkgname=plan9port pkgver=20111026 pkgrel=1 pkgdesc="A port of many programs from Plan 9 to Unix-like operating systems" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://swtch.com/plan9port/" license=('custom') depends=(xorg-server libxt libxext sh fuse) diff --git a/community/plib/PKGBUILD b/community/plib/PKGBUILD index 80374518b..9964fe277 100644 --- a/community/plib/PKGBUILD +++ b/community/plib/PKGBUILD @@ -6,7 +6,7 @@ pkgname=plib pkgver=1.8.5 pkgrel=2 pkgdesc="Set of libraries to write games and other realtime interactive applications" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://plib.sourceforge.net/" license=('custom:LGPL') makedepends=('mesa' 'libxi' 'libxmu') diff --git a/community/pmtools/PKGBUILD b/community/pmtools/PKGBUILD index d03108426..37148e4ce 100644 --- a/community/pmtools/PKGBUILD +++ b/community/pmtools/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pmtools pkgver=20101124 pkgrel=1 pkgdesc="A small collection of ACPI power management test and investigation tools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://acpi.sourceforge.net/dsdt/index.php" license=('GPL2') depends=('perl') diff --git a/community/png2ico/PKGBUILD b/community/png2ico/PKGBUILD index 8a5f7a330..a0f3fdabc 100644 --- a/community/png2ico/PKGBUILD +++ b/community/png2ico/PKGBUILD @@ -3,7 +3,7 @@ pkgname=png2ico pkgver=20021208 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="Converts PNG files to Windows icon resource files" url="http://www.winterdrache.de/freeware/png2ico/" license=("GPL2") diff --git a/community/podofo/PKGBUILD b/community/podofo/PKGBUILD index 05c69f99e..ebee2b0a6 100644 --- a/community/podofo/PKGBUILD +++ b/community/podofo/PKGBUILD @@ -7,7 +7,7 @@ pkgname=podofo pkgver=0.9.1 pkgrel=1 pkgdesc="A C++ library to work with the PDF file format" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://podofo.sourceforge.net" license=('GPL') depends=( 'gcc-libs' 'fontconfig' 'libpng' 'libtiff') diff --git a/community/poedit/PKGBUILD b/community/poedit/PKGBUILD index 8c606f322..e7fb0b4e3 100644 --- a/community/poedit/PKGBUILD +++ b/community/poedit/PKGBUILD @@ -8,7 +8,7 @@ pkgname=poedit pkgver=1.4.6.1 pkgrel=5 pkgdesc="Cross-platform gettext catalogs (.po files) editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.poedit.net/" license=('custom') depends=('wxgtk>=2.8.11' 'gtkspell' 'db>=5.1' 'hicolor-icon-theme' 'gettext') diff --git a/community/pokerth/PKGBUILD b/community/pokerth/PKGBUILD index 1ba1a463b..6020707ed 100644 --- a/community/pokerth/PKGBUILD +++ b/community/pokerth/PKGBUILD @@ -7,7 +7,7 @@ _realname=PokerTH pkgver=0.8.3 pkgrel=5 pkgdesc="Poker game written in C++/QT4" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.pokerth.net/" license=('GPL' 'custom') depends=('curl' 'boost-libs>=1.43.0' 'gsasl' 'gnutls' 'qt' 'sdl_mixer') diff --git a/community/polipo/PKGBUILD b/community/polipo/PKGBUILD index d09f48478..20d910287 100644 --- a/community/polipo/PKGBUILD +++ b/community/polipo/PKGBUILD @@ -7,7 +7,7 @@ pkgname=polipo pkgver=1.0.4.1 pkgrel=1 pkgdesc="A small and fast caching web proxy." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.pps.jussieu.fr/~jch/software/polipo/" license=('GPL') depends=('glibc' 'bash') diff --git a/community/pork/PKGBUILD b/community/pork/PKGBUILD index 53946b6e1..91e4b4fcf 100644 --- a/community/pork/PKGBUILD +++ b/community/pork/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pork pkgver=0.99.8.1 pkgrel=4 pkgdesc="Console-based AOL Instant Messenger & IRC client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://dev.ojnk.net/" license=('GPL') depends=('ncurses' 'perl') diff --git a/community/portaudio/PKGBUILD b/community/portaudio/PKGBUILD index 1872b9457..767c8784b 100644 --- a/community/portaudio/PKGBUILD +++ b/community/portaudio/PKGBUILD @@ -7,7 +7,7 @@ pkgname=portaudio pkgver=19_20110326 pkgrel=1 pkgdesc="A free, cross-platform, open source, audio I/O library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.portaudio.com/" license=('custom') depends=('jack') diff --git a/community/portaudio_cpp/PKGBUILD b/community/portaudio_cpp/PKGBUILD index 58b782570..00ed1b3ac 100644 --- a/community/portaudio_cpp/PKGBUILD +++ b/community/portaudio_cpp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=portaudio_cpp pkgver=19_20110326 pkgrel=1 pkgdesc="PortAudio c++ bindings" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.portaudio.com/" license=('custom') depends=("portaudio=${pkgver}" 'gcc-libs') diff --git a/community/portmidi/PKGBUILD b/community/portmidi/PKGBUILD index 255c2e077..1ddd9bd97 100644 --- a/community/portmidi/PKGBUILD +++ b/community/portmidi/PKGBUILD @@ -7,7 +7,7 @@ pkgname=portmidi pkgver=217 pkgrel=2 pkgdesc="Platform independent library for real-time MIDI input/output." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://portmedia.sourceforge.net/' license=('GPL') depends=('alsa-lib') diff --git a/community/postgis/PKGBUILD b/community/postgis/PKGBUILD index e04bd4d30..379774e3e 100644 --- a/community/postgis/PKGBUILD +++ b/community/postgis/PKGBUILD @@ -7,7 +7,7 @@ pkgname=postgis pkgver=1.5.3 pkgrel=2 pkgdesc="Adds support for geographic objects to PostgreSQL" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://postgis.refractions.net/" license=('GPL') depends=('postgresql' 'proj' 'geos') diff --git a/community/pound/PKGBUILD b/community/pound/PKGBUILD index 02d82fec0..98d2af3dc 100644 --- a/community/pound/PKGBUILD +++ b/community/pound/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pound pkgver=2.5 pkgrel=2 pkgdesc="A reverse proxy, load balancer, and SSL wrapper" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.apsis.ch/pound/index_html" license=('GPL') depends=('pcre' 'openssl') diff --git a/community/powertop/PKGBUILD b/community/powertop/PKGBUILD index 83f906f85..8a00e25f6 100644 --- a/community/powertop/PKGBUILD +++ b/community/powertop/PKGBUILD @@ -7,7 +7,7 @@ pkgname=powertop pkgver=1.13 pkgrel=2 pkgdesc="Tool that finds the software that makes your laptop use more power than necessary" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lesswatts.org/projects/powertop/" license=('GPL2') depends=('ncurses') diff --git a/community/pppd-ldap-simple/PKGBUILD b/community/pppd-ldap-simple/PKGBUILD index 9511d9b2d..13c0986a2 100644 --- a/community/pppd-ldap-simple/PKGBUILD +++ b/community/pppd-ldap-simple/PKGBUILD @@ -4,7 +4,7 @@ pkgname=pppd-ldap-simple pkgver=0.12b pkgrel=5 pkgdesc="pppd ldap simple plugin (based on pppd ldap, without radius, etc. Just search by uid and userPassword)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/pppd-ldap/" license=('GPL') source=(http://archlinux-stuff.googlecode.com/files/pppd_ldap-simple-$pkgver.tar.gz) diff --git a/community/pppd-ldap/PKGBUILD b/community/pppd-ldap/PKGBUILD index 86e7ebea7..9fe5aaed2 100644 --- a/community/pppd-ldap/PKGBUILD +++ b/community/pppd-ldap/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pppd-ldap pkgver=0.12b pkgrel=3 pkgdesc="A plugin for PPPD which performs an LDAP-enabled version of pppd" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/pppd-ldap/" license=('GPL') depends=('ppp' 'libldap') diff --git a/community/pptpd/PKGBUILD b/community/pptpd/PKGBUILD index d9427632f..d97a6d95d 100644 --- a/community/pptpd/PKGBUILD +++ b/community/pptpd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pptpd pkgver=1.3.4 pkgrel=4 pkgdesc="Poptop server" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://poptop.sourceforge.net/" license=('GPL') depends=(ppp glibc) diff --git a/community/pragha/PKGBUILD b/community/pragha/PKGBUILD index 7dd6902ce..f1e47b9bf 100755 --- a/community/pragha/PKGBUILD +++ b/community/pragha/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pragha pkgver=0.99.0 pkgrel=1 pkgdesc="A lightweight GTK+ music manager - fork of Consonance Music Manager." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pragha.wikispaces.com/" license=('GPL3') depends=('libnotify' 'libcdio' 'curl' diff --git a/community/prboom/PKGBUILD b/community/prboom/PKGBUILD index f33cec1fe..94106432e 100644 --- a/community/prboom/PKGBUILD +++ b/community/prboom/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=5 pkgdesc='A game engine which provides a program to play Doom levels.' url='http://prboom.sourceforge.net/' license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libpng' 'mesa' 'sdl_mixer' 'sdl_net') source=("http://downloads.sourceforge.net/prboom/${pkgname}-${pkgver}.tar.gz" 'libpng-1.4.patch') diff --git a/community/prelink/PKGBUILD b/community/prelink/PKGBUILD index 34a04f8c1..4b677caf1 100644 --- a/community/prelink/PKGBUILD +++ b/community/prelink/PKGBUILD @@ -7,7 +7,7 @@ pkgname=prelink pkgver=20111012 pkgrel=1 pkgdesc='ELF prelinking utility to speed up dynamic linking.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://people.redhat.com/jakub/prelink/' license=('GPL') depends=('elfutils') diff --git a/community/preload/PKGBUILD b/community/preload/PKGBUILD index f3c9a1c18..847ec0cc1 100644 --- a/community/preload/PKGBUILD +++ b/community/preload/PKGBUILD @@ -6,7 +6,7 @@ pkgname=preload pkgver=0.6.4 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="Makes applications run faster by prefetching binaries and shared objects" url="http://sourceforge.net/projects/preload" license=('GPL2') diff --git a/community/privoxy/PKGBUILD b/community/privoxy/PKGBUILD index 814a776b7..2e360906a 100644 --- a/community/privoxy/PKGBUILD +++ b/community/privoxy/PKGBUILD @@ -7,7 +7,7 @@ pkgname=privoxy pkgver=3.0.17 pkgrel=3 pkgdesc='A web proxy with advanced filtering capabilities.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.privoxy.org' license=('GPL') depends=('pcre' 'zlib') diff --git a/community/procstatd/PKGBUILD b/community/procstatd/PKGBUILD index 5f11cecf9..05d23fbcb 100644 --- a/community/procstatd/PKGBUILD +++ b/community/procstatd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=procstatd pkgver=1.4.2 pkgrel=5 pkgdesc="A daemon that can be run either from userspace or inetd that can be queried via a simple API to parse various files in /proc" -arch=('i686 x86_64') +arch=('i686 x86_64' 'mips64el') license=('GPL') source=(http://downloads.sourceforge.net/herdtools/$pkgname.tar.gz) md5sums=('1fdeaf05ca6337f5c02e76a76c53c407') diff --git a/community/proj/PKGBUILD b/community/proj/PKGBUILD index 353b54ad5..cb0fbd6b5 100644 --- a/community/proj/PKGBUILD +++ b/community/proj/PKGBUILD @@ -7,7 +7,7 @@ pkgname=proj pkgver=4.7.0 pkgrel=1 pkgdesc="Cartographic Projections library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://trac.osgeo.org/proj/" license=('MIT') options=('!libtool') diff --git a/community/projectm/PKGBUILD b/community/projectm/PKGBUILD index 84d40eeb8..68b20f4b9 100644 --- a/community/projectm/PKGBUILD +++ b/community/projectm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=projectm pkgver=2.0.1 pkgrel=3 pkgdesc='A music visualizer which uses 3D accelerated iterative image based rendering.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://projectm.sourceforge.net/' license=('LGPL') depends=('gcc-libs' 'ftgl' 'glew' 'gtkglext') diff --git a/community/prosody/PKGBUILD b/community/prosody/PKGBUILD index 6b49b122c..0d6a57414 100644 --- a/community/prosody/PKGBUILD +++ b/community/prosody/PKGBUILD @@ -7,7 +7,7 @@ pkgname=prosody pkgver=0.8.2 pkgrel=1 pkgdesc="Lightweight and extensible Jabber/XMPP server written in Lua." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://prosody.im/" license=('MIT') depends=('lua>=5.1' 'luasocket' 'luaexpat' 'luafilesystem' 'libidn>=0.5.18' 'openssl') diff --git a/community/protobuf/PKGBUILD b/community/protobuf/PKGBUILD index 8a5c3b2df..739463982 100644 --- a/community/protobuf/PKGBUILD +++ b/community/protobuf/PKGBUILD @@ -7,7 +7,7 @@ pkgname=('protobuf' 'protobuf-python') pkgver=2.4.1 pkgrel=1 pkgdesc="A way of encoding structured data in an efficient yet extensible format" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/protobuf/" license=('APACHE') depends=('gcc-libs' 'zlib') diff --git a/community/proxytunnel/PKGBUILD b/community/proxytunnel/PKGBUILD index 078540f3f..8ae8cc023 100644 --- a/community/proxytunnel/PKGBUILD +++ b/community/proxytunnel/PKGBUILD @@ -6,7 +6,7 @@ pkgname=proxytunnel pkgver=1.9.0 pkgrel=2 pkgdesc="a program that connects stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://proxytunnel.sourceforge.net" license=('GPL') depends=('openssl') diff --git a/community/psimedia/PKGBUILD b/community/psimedia/PKGBUILD index e2a1f5cf1..baff02667 100644 --- a/community/psimedia/PKGBUILD +++ b/community/psimedia/PKGBUILD @@ -6,7 +6,7 @@ pkgname=psimedia pkgver=1.0.3 pkgrel=7 pkgdesc="Voice and video chat plugin for Psi-like IM clients. The implementation is based on GStreamer." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://delta.affinix.com/psimedia/" depends=('psi' 'speex' 'gstreamer0.10-base' 'qt' 'gstreamer0.10-good-plugins' diff --git a/community/pspshrink/PKGBUILD b/community/pspshrink/PKGBUILD index 9b6ba9540..1944a5af0 100644 --- a/community/pspshrink/PKGBUILD +++ b/community/pspshrink/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pspshrink pkgver=1.1.2 pkgrel=2 pkgdesc="PSP Shrink allows you to shrink your isos to the cso format." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/pspshrink/" license=('GPL2') makedepends=(gtkmm) diff --git a/community/psqlodbc/PKGBUILD b/community/psqlodbc/PKGBUILD index 176acffd9..890aef702 100644 --- a/community/psqlodbc/PKGBUILD +++ b/community/psqlodbc/PKGBUILD @@ -7,7 +7,7 @@ pkgname=psqlodbc pkgver=08.04.0100 pkgrel=2 pkgdesc="PostgreSQL ODBC driver" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.postgresql.org" depends=('unixodbc' 'postgresql-libs' 'libtool') diff --git a/community/pstreams/PKGBUILD b/community/pstreams/PKGBUILD index 62b446587..a27c1066b 100644 --- a/community/pstreams/PKGBUILD +++ b/community/pstreams/PKGBUILD @@ -4,7 +4,7 @@ pkgname=pstreams pkgver=0.7.0 pkgrel=1 pkgdesc='C++ utility for simple IOStream-based Inter-Process Communication.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://pstreams.sourceforge.net' license=('LGPL') source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz") diff --git a/community/puzzles/PKGBUILD b/community/puzzles/PKGBUILD index 234666119..ab91b797e 100644 --- a/community/puzzles/PKGBUILD +++ b/community/puzzles/PKGBUILD @@ -6,7 +6,7 @@ pkgname=puzzles pkgver=9306 pkgrel=1 pkgdesc="Simon Tatham's Portable Puzzle Collection" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.chiark.greenend.org.uk/~sgtatham/puzzles/" license=('MIT') makedepends=('pkgconfig') diff --git a/community/pv/PKGBUILD b/community/pv/PKGBUILD index 7f4651a3b..5d09b1152 100644 --- a/community/pv/PKGBUILD +++ b/community/pv/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pv pkgver=1.2.0 pkgrel=1 pkgdesc='A terminal-based tool for monitoring the progress of data through a pipeline' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.ivarch.com/programs/pv.shtml' license=('custom:Artistic 2.0') depends=('glibc') diff --git a/community/pwmanager/PKGBUILD b/community/pwmanager/PKGBUILD index c94e9ba5b..c75d4f16b 100644 --- a/community/pwmanager/PKGBUILD +++ b/community/pwmanager/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pwmanager pkgver=1.2.4 pkgrel=4 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/pwsafe/PKGBUILD b/community/pwsafe/PKGBUILD index 736790f61..ee1fb1011 100644 --- a/community/pwsafe/PKGBUILD +++ b/community/pwsafe/PKGBUILD @@ -4,7 +4,7 @@ pkgname=pwsafe pkgver=0.2.0 pkgrel=6 pkgdesc="A commandline program for managing encrypted password databases" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://nsd.dyndns.org/pwsafe/" license=('GPL') depends=('openssl' 'libxmu' 'readline') diff --git a/community/pyglet/PKGBUILD b/community/pyglet/PKGBUILD index 2f795c66d..b037dc146 100644 --- a/community/pyglet/PKGBUILD +++ b/community/pyglet/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pyglet pkgver=1.1.4 pkgrel=2 pkgdesc="A cross-platform windowing and multimedia library for Python" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pyglet.org/" license=('BSD') depends=('python2') diff --git a/community/pygoocanvas/PKGBUILD b/community/pygoocanvas/PKGBUILD index 3f5affbc8..fdecee5ae 100644 --- a/community/pygoocanvas/PKGBUILD +++ b/community/pygoocanvas/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pygoocanvas pkgver=0.14.1 pkgrel=4 pkgdesc="GooCanvas python bindings" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://developer.berlios.de/projects/pygoocanvas" license=('LGPL') depends=('python2' 'goocanvas1' 'pygtk') diff --git a/community/pyid3lib/PKGBUILD b/community/pyid3lib/PKGBUILD index 21ddae1a1..40f1cc6b0 100644 --- a/community/pyid3lib/PKGBUILD +++ b/community/pyid3lib/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pyid3lib pkgver=0.5.1 pkgrel=6 pkgdesc="A Python module for editing ID3v2 tags of MP3 audio files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pyid3lib.sourceforge.net/" license=('LGPL') depends=('python2' 'glibc' 'id3lib') diff --git a/community/pylibacl/PKGBUILD b/community/pylibacl/PKGBUILD index f43670048..4d5cee098 100644 --- a/community/pylibacl/PKGBUILD +++ b/community/pylibacl/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pylibacl pkgver=0.5.0 pkgrel=2 pkgdesc='A python extension module that allows you to manipulate the POSIX.1e ACLs.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://pylibacl.sourceforge.net/' license=('GPL') depends=('python2') diff --git a/community/pylorcon/PKGBUILD b/community/pylorcon/PKGBUILD index 6502fdbd4..55866fb71 100644 --- a/community/pylorcon/PKGBUILD +++ b/community/pylorcon/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pylorcon pkgver=3 pkgrel=4 pkgdesc="Python wrapper for the C LORCON (Loss Of Radio CONnectivity) library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/pylorcon/" license=('GPLv2') depends=('python2' 'lorcon-old-svn') diff --git a/community/pympd/PKGBUILD b/community/pympd/PKGBUILD index 742a74a63..befa59d9c 100644 --- a/community/pympd/PKGBUILD +++ b/community/pympd/PKGBUILD @@ -8,7 +8,7 @@ pkgname=pympd pkgver=0.08.1 pkgrel=2 pkgdesc="A Rhythmbox-like PyGTK+ client for Music Player Daemon" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pympd.sourceforge.net/" license=('GPL') depends=('libglade' 'pygtk>=2.6') diff --git a/community/pyogg/PKGBUILD b/community/pyogg/PKGBUILD index 73c0217df..5122b3673 100644 --- a/community/pyogg/PKGBUILD +++ b/community/pyogg/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pyogg pkgver=1.3 pkgrel=6 pkgdesc="Python ogg wrapper library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ekyo.nerim.net/software/pyogg/index.html" license=('LGPL2') depends=('python2' 'libogg' 'glibc') diff --git a/community/pypanel/PKGBUILD b/community/pypanel/PKGBUILD index 82d608970..49f1839a7 100644 --- a/community/pypanel/PKGBUILD +++ b/community/pypanel/PKGBUILD @@ -8,7 +8,7 @@ pkgname=pypanel pkgver=2.4 pkgrel=7 pkgdesc='A lightweight panel/taskbar for X11 window managers written in python.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://pypanel.sourceforge.net/' license=('GPL') depends=('python2' 'x-server' 'python-xlib' 'imlib2' 'libxft') diff --git a/community/pyqt3/PKGBUILD b/community/pyqt3/PKGBUILD index 862ea062e..c48714ab8 100644 --- a/community/pyqt3/PKGBUILD +++ b/community/pyqt3/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pyqt3 pkgver=3.18.1 pkgrel=9 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/pysol-sound-server/PKGBUILD b/community/pysol-sound-server/PKGBUILD index b3f7c814c..254e01b88 100644 --- a/community/pysol-sound-server/PKGBUILD +++ b/community/pysol-sound-server/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pysol-sound-server pkgver=3.01 pkgrel=7 pkgdesc="A Python extension module that plays WAV samples together with MP3 or MOD background music" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.pysol.org/" license=('GPL' 'LGPL') depends=('python2' 'smpeg') diff --git a/community/pystatgrab/PKGBUILD b/community/pystatgrab/PKGBUILD index 5ea3fbbde..c6698eaed 100644 --- a/community/pystatgrab/PKGBUILD +++ b/community/pystatgrab/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pystatgrab pkgver=0.5 pkgrel=4 pkgdesc="Python bindings for libstatgrab" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.i-scream.org/pystatgrab" license=('GPL') depends=('python2' 'libstatgrab') diff --git a/community/python-bsddb/PKGBUILD b/community/python-bsddb/PKGBUILD index a3f29df6f..4050906c5 100644 --- a/community/python-bsddb/PKGBUILD +++ b/community/python-bsddb/PKGBUILD @@ -10,7 +10,7 @@ pkgver=5.2.0 pkgrel=2 pkgdesc="Python interface for BerkeleyDB" license=('MIT') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.jcea.es/programacion/pybsddb.htm" makedepends=('python2-distribute' 'python-distribute') source=(http://pypi.python.org/packages/source/b/bsddb3/bsddb3-${pkgver}.tar.gz diff --git a/community/python-cjson/PKGBUILD b/community/python-cjson/PKGBUILD index 5f864b10b..0979021c3 100644 --- a/community/python-cjson/PKGBUILD +++ b/community/python-cjson/PKGBUILD @@ -5,7 +5,7 @@ pkgname=python-cjson pkgver=1.0.5 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') pkgdesc="Fast JSON encoder/decoder for Python" url="http://pypi.python.org/pypi/python-cjson/" diff --git a/community/python-daap/PKGBUILD b/community/python-daap/PKGBUILD index d48f8da4d..0d823a1ae 100644 --- a/community/python-daap/PKGBUILD +++ b/community/python-daap/PKGBUILD @@ -4,7 +4,7 @@ pkgname=python-daap pkgver=0.7.1 pkgrel=3 pkgdesc="Python libraries for accessing DAAP music shares" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://jerakeen.org/code/pythondaap/" depends=('python2') license=('GPL') diff --git a/community/python-fuse/PKGBUILD b/community/python-fuse/PKGBUILD index 1ebf70af6..bd0043b2d 100644 --- a/community/python-fuse/PKGBUILD +++ b/community/python-fuse/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python-fuse pkgver=0.2.1 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="Python bindings for FUSE" url="http://fuse.sourceforge.net/wiki/index.php/FusePython" license=('LGPL') diff --git a/community/python-galago-gtk/PKGBUILD b/community/python-galago-gtk/PKGBUILD index 1589d3e41..66fdff795 100644 --- a/community/python-galago-gtk/PKGBUILD +++ b/community/python-galago-gtk/PKGBUILD @@ -4,7 +4,7 @@ pkgname=python-galago-gtk pkgver=0.5.0 pkgrel=5 pkgdesc="A library of simple functions that are optimized for various CPUs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://galago-project.org" options=('!libtool') license=('LGPL') diff --git a/community/python-galago/PKGBUILD b/community/python-galago/PKGBUILD index b6fcaa5b9..d2e1e07ab 100644 --- a/community/python-galago/PKGBUILD +++ b/community/python-galago/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python-galago pkgver=0.5.0 pkgrel=4 pkgdesc="A library of simple functions that are optimized for various CPUs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://galago-project.org" options=('!libtool') license=('LGPL') diff --git a/community/python-gnupginterface/PKGBUILD b/community/python-gnupginterface/PKGBUILD index c484684b7..f4710d43c 100644 --- a/community/python-gnupginterface/PKGBUILD +++ b/community/python-gnupginterface/PKGBUILD @@ -3,7 +3,7 @@ pkgname=python-gnupginterface pkgver=0.3.2 pkgrel=5 pkgdesc="A Python interface to GNU Privacy Guard (GnuPG)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://py-gnupg.sourceforge.net/" license=('GPL') depends=('gnupg' 'python2') diff --git a/community/python-gnutls/PKGBUILD b/community/python-gnutls/PKGBUILD index 992a476ef..2542cf2dc 100644 --- a/community/python-gnutls/PKGBUILD +++ b/community/python-gnutls/PKGBUILD @@ -7,7 +7,7 @@ pkgname=python-gnutls pkgver=1.2.2 pkgrel=1 pkgdesc="Python wrapper for the GNUTLS library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cheeseshop.python.org/pypi/python-gnutls" depends=('python2' 'gnutls') license=('LGPL') diff --git a/community/python-html5lib/PKGBUILD b/community/python-html5lib/PKGBUILD index bcd2f73b6..4150fbf02 100644 --- a/community/python-html5lib/PKGBUILD +++ b/community/python-html5lib/PKGBUILD @@ -5,7 +5,7 @@ pkgname=python-html5lib pkgver=0.90 pkgrel=1 pkgdesc="A HTML parser/tokenizer based on the WHATWG HTML5 spec" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/html5lib/" license=('MIT') depends=('python2') diff --git a/community/python-lcms/PKGBUILD b/community/python-lcms/PKGBUILD index a501f1b26..33efa9902 100644 --- a/community/python-lcms/PKGBUILD +++ b/community/python-lcms/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.19 _mver=1.19 pkgrel=2 pkgdesc="LittleCMS Python bindings" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('CUSTOM') depends=('libtiff' 'python2' 'lcms') url="http://www.littlecms.com" diff --git a/community/python-memcached/PKGBUILD b/community/python-memcached/PKGBUILD index cd1a154f9..52b99ad1f 100644 --- a/community/python-memcached/PKGBUILD +++ b/community/python-memcached/PKGBUILD @@ -10,7 +10,7 @@ makedepends=('setuptools') source=(ftp://ftp.tummy.com/pub/$pkgname/$pkgname-$pkgver.tar.gz LICENSE) url="ftp://ftp.tummy.com/pub/python-memcached/" license=('Python') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') md5sums=('e4e9d65e5721a1bb01f8d657ddf3f03e' '5286ea4c34766a357085694e0984f116') diff --git a/community/python-mpi4py/PKGBUILD b/community/python-mpi4py/PKGBUILD index 51e5da1c5..31223ef91 100644 --- a/community/python-mpi4py/PKGBUILD +++ b/community/python-mpi4py/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=python-mpi4py pkgname=('python-mpi4py' 'python2-mpi4py') pkgver=1.2.2 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mpi4py.scipy.org" license=('BSD') makedepends=('python' 'python2' 'python-distribute' 'python2-distribute' 'openmpi') diff --git a/community/python-numarray/PKGBUILD b/community/python-numarray/PKGBUILD index 02d098a71..30a7cd923 100644 --- a/community/python-numarray/PKGBUILD +++ b/community/python-numarray/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python-numarray pkgver=1.5.2 pkgrel=5 pkgdesc='Provides array manipulation and computational capabilities.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://numpy.scipy.org/' license=('BSD') depends=('python2') diff --git a/community/python-openbabel/PKGBUILD b/community/python-openbabel/PKGBUILD index 9b17297d7..7f86ce232 100644 --- a/community/python-openbabel/PKGBUILD +++ b/community/python-openbabel/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python-openbabel pkgver=2.3.1 pkgrel=1 pkgdesc="Python bindings of openbabel library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://openbabel.org/wiki/Python" license=('GPL') depends=('python' 'gcc-libs' "openbabel=${pkgver}" 'eigen') diff --git a/community/python-psycopg1/PKGBUILD b/community/python-psycopg1/PKGBUILD index f5ad4cc39..7a0acfefa 100755 --- a/community/python-psycopg1/PKGBUILD +++ b/community/python-psycopg1/PKGBUILD @@ -5,7 +5,7 @@ pkgname=python-psycopg1 pkgver=1.1.21 pkgrel=5 pkgdesc="A PostgreSQL database adapter for Python" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://initd.org/projects/psycopg1" license=('GPL') depends=('python-egenix-mx-base' 'postgresql') diff --git a/community/python-psycopg2/PKGBUILD b/community/python-psycopg2/PKGBUILD index 73717c807..5a4786c00 100644 --- a/community/python-psycopg2/PKGBUILD +++ b/community/python-psycopg2/PKGBUILD @@ -8,7 +8,7 @@ pkgname=('python-psycopg2' 'python2-psycopg2') pkgver=2.4.2 pkgrel=1 pkgdesc="A PostgreSQL database adapter for the Python programming language." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://initd.org/psycopg/" license=('LGPL3') makedepends=('python2' 'python' 'postgresql-libs>=8.4.1') diff --git a/community/python-pybluez/PKGBUILD b/community/python-pybluez/PKGBUILD index cb02defe0..df7d0dcb7 100644 --- a/community/python-pybluez/PKGBUILD +++ b/community/python-pybluez/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python-pybluez pkgver=0.18 pkgrel=2 pkgdesc="Python wrapper for the BlueZ Bluetooth stack" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/pybluez/" license=('GPL') provides=('pybluez') diff --git a/community/python-pychm/PKGBUILD b/community/python-pychm/PKGBUILD index 77b8f05b8..dd203c1e6 100644 --- a/community/python-pychm/PKGBUILD +++ b/community/python-pychm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=python-pychm pkgver=0.8.4 pkgrel=5 pkgdesc="Python bindings for CHMLIB" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gnochm.sourceforge.net" license=('GPL') depends=('chmlib' 'python2') diff --git a/community/python-pymongo/PKGBUILD b/community/python-pymongo/PKGBUILD index 14012a35d..37fce2792 100644 --- a/community/python-pymongo/PKGBUILD +++ b/community/python-pymongo/PKGBUILD @@ -9,7 +9,7 @@ url="http://pypi.python.org/pypi/pymongo/" depends=('python') makedepends=('python-distribute') source=(http://pypi.python.org/packages/source/p/pymongo3/pymongo3-$pkgver.tar.gz) -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') md5sums=('6c65dcad8674f37ffc8bc3d6e1fd4155') package() { diff --git a/community/python-pyro/PKGBUILD b/community/python-pyro/PKGBUILD index d6dd0aa79..c978da9a2 100755 --- a/community/python-pyro/PKGBUILD +++ b/community/python-pyro/PKGBUILD @@ -7,7 +7,7 @@ pkgver=4.9 pkgrel=1 pkgdesc="Python Remote Objects" url="http://irmen.home.xs4all.nl/pyro/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('MIT') depends=('python' 'python2') source=(http://pypi.python.org/packages/source/P/Pyro4/Pyro4-${pkgver}.tar.gz) diff --git a/community/python-pysqlite-legacy/PKGBUILD b/community/python-pysqlite-legacy/PKGBUILD index c87ce7793..766c0a1c7 100644 --- a/community/python-pysqlite-legacy/PKGBUILD +++ b/community/python-pysqlite-legacy/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python-pysqlite-legacy pkgver=1.0.1 pkgrel=7 pkgdesc="A Python DB-API 2.0 interface for the legacy SQLite 2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://initd.org/tracker/pysqlite" license=('custom') depends=('python2' 'sqlite2') diff --git a/community/python-pyxmpp/PKGBUILD b/community/python-pyxmpp/PKGBUILD index 97c1d1b37..bc07b6259 100644 --- a/community/python-pyxmpp/PKGBUILD +++ b/community/python-pyxmpp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python-pyxmpp pkgver=1.1.2 pkgrel=1 pkgdesc="A Python XMPP and Jabber implementation based on libxml2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pyxmpp.jajcus.net/" license=('LGPL') depends=('python-dnspython' 'libxml2' 'python-m2crypto') diff --git a/community/python-scipy/PKGBUILD b/community/python-scipy/PKGBUILD index 70cb14781..243f47de6 100755 --- a/community/python-scipy/PKGBUILD +++ b/community/python-scipy/PKGBUILD @@ -12,7 +12,7 @@ pkgver=0.9.0 _theapp=$_app-$pkgver pkgrel=3 pkgdesc="SciPy is open-source software for mathematics, science, and engineering." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.scipy.org/" license=('BSD') depends=('python-numpy') diff --git a/community/python-vorbissimple/PKGBUILD b/community/python-vorbissimple/PKGBUILD index 643cebbe6..ed4ae8b8d 100644 --- a/community/python-vorbissimple/PKGBUILD +++ b/community/python-vorbissimple/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python-vorbissimple pkgver=0.0.2 pkgrel=4 pkgdesc="Python bindings for vorbissimple" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kamaelia.sourceforge.net" license=('MPL') depends=('python2' 'vorbissimple') diff --git a/community/python-yaml/PKGBUILD b/community/python-yaml/PKGBUILD index 2fe0f3d42..fb2af475a 100644 --- a/community/python-yaml/PKGBUILD +++ b/community/python-yaml/PKGBUILD @@ -7,7 +7,7 @@ pkgname=(python2-yaml python-yaml) pkgver=3.10 pkgrel=1 pkgdesc="Python bindings for YAML, using fast libYAML library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pyyaml.org" license=('MIT') makedepends=('python' 'python2' 'libyaml') diff --git a/community/python2-basemap/PKGBUILD b/community/python2-basemap/PKGBUILD index 23d82a237..1c4567710 100644 --- a/community/python2-basemap/PKGBUILD +++ b/community/python2-basemap/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python2-basemap pkgver=1.0.1 pkgrel=2 pkgdesc="Toolkit for plotting data on map projections" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://matplotlib.sourceforge.net/basemap/doc/html/" license=('custom') depends=('python2-matplotlib' 'geos' 'shapelib' 'python2-numpy' 'python2-httplib2') diff --git a/community/python2-cheetah/PKGBUILD b/community/python2-cheetah/PKGBUILD index 24ba9e35d..fd6ebf4ed 100755 --- a/community/python2-cheetah/PKGBUILD +++ b/community/python2-cheetah/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python2-cheetah pkgver=2.4.4 pkgrel=3 pkgdesc="A Python-powered template engine and code generator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cheetahtemplate.org/" license=('custom') depends=('python2' 'python-markdown') diff --git a/community/python2-ldap/PKGBUILD b/community/python2-ldap/PKGBUILD index 10fedb303..360825993 100644 --- a/community/python2-ldap/PKGBUILD +++ b/community/python2-ldap/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python2-ldap pkgver=2.4.4 pkgrel=1 pkgdesc="Provides an object-oriented API to access LDAP directory servers from Python programs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://python-ldap.sourceforge.net" license=('custom') depends=('python2' 'libldap>=2.4.26') diff --git a/community/python2-matplotlib/PKGBUILD b/community/python2-matplotlib/PKGBUILD index 102421f30..45a512959 100644 --- a/community/python2-matplotlib/PKGBUILD +++ b/community/python2-matplotlib/PKGBUILD @@ -8,7 +8,7 @@ pkgname=python2-matplotlib pkgver=1.1.0 pkgrel=1 pkgdesc="A python plotting library, making publication quality plots" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://matplotlib.sourceforge.net/" backup=(usr/lib/python2.7/site-packages/matplotlib/mpl-data/matplotlibrc) depends=('python2-dateutil' 'python2-pytz' 'python2-numpy' 'python2-pyparsing' 'python2-qt') diff --git a/community/python2-openbabel/PKGBUILD b/community/python2-openbabel/PKGBUILD index d7376972f..6ca534313 100644 --- a/community/python2-openbabel/PKGBUILD +++ b/community/python2-openbabel/PKGBUILD @@ -7,7 +7,7 @@ pkgname=python2-openbabel pkgver=2.3.1 pkgrel=1 pkgdesc="Python 2 bindings of openbabel library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://openbabel.org/wiki/Python" license=('GPL') depends=('python2' 'gcc-libs' "openbabel=${pkgver}" 'eigen') diff --git a/community/python2-poppler/PKGBUILD b/community/python2-poppler/PKGBUILD index 2b93c0bf0..4d33bd215 100644 --- a/community/python2-poppler/PKGBUILD +++ b/community/python2-poppler/PKGBUILD @@ -7,7 +7,7 @@ _realname=pypoppler pkgver=0.12.1 pkgrel=5 pkgdesc="Python 2.x bindings for Poppler" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/poppler-python" license=('GPL') depends=('pygtk' 'poppler-glib' 'glib2' 'freetype2') diff --git a/community/python2-pymongo/PKGBUILD b/community/python2-pymongo/PKGBUILD index ee333c93a..2497afb83 100644 --- a/community/python2-pymongo/PKGBUILD +++ b/community/python2-pymongo/PKGBUILD @@ -11,7 +11,7 @@ url="http://pypi.python.org/pypi/pymongo/" depends=('python2') makedepends=('python2-distribute') source=(http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz) -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') md5sums=('9e94096991285c384adfa8cafaf39c88') package() { diff --git a/community/python2-pyopencl/PKGBUILD b/community/python2-pyopencl/PKGBUILD index 2175324bd..8f24a281f 100644 --- a/community/python2-pyopencl/PKGBUILD +++ b/community/python2-pyopencl/PKGBUILD @@ -4,7 +4,7 @@ pkgname=python2-pyopencl pkgver=2011.1.2 pkgrel=2 pkgdesc="A complete, object-oriented language binding of OpenCL to Python" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mathema.tician.de/software/pyopencl" license=('custom') depends=('python2' 'python2-numpy' 'python-mako' 'python2-pytools' 'libcl' 'opencl-headers') diff --git a/community/pyvorbis/PKGBUILD b/community/pyvorbis/PKGBUILD index 83ce3a8eb..f2a83d7b8 100644 --- a/community/pyvorbis/PKGBUILD +++ b/community/pyvorbis/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.4 pkgrel=5 pkgdesc="Python vorbis wrapper library" url="http://www.andrewchatham.com/pyogg/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('python2' 'libvorbis' 'pyogg>=1.3-3') source=(http://ekyo.nerim.net/software/pyogg/${pkgname}-${pkgver}.tar.gz diff --git a/community/qbittorrent/PKGBUILD b/community/qbittorrent/PKGBUILD index 077111f1d..d75aa0ff8 100644 --- a/community/qbittorrent/PKGBUILD +++ b/community/qbittorrent/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qbittorrent pkgver=2.9.2 pkgrel=3 pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.qbittorrent.org/" license=('GPL') depends=('qt' 'libtorrent-rasterbar' 'xdg-utils') diff --git a/community/qcad/PKGBUILD b/community/qcad/PKGBUILD index 50853b837..074cad7a5 100644 --- a/community/qcad/PKGBUILD +++ b/community/qcad/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qcad pkgver=2.0.5.0 pkgrel=8 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/qdevelop/PKGBUILD b/community/qdevelop/PKGBUILD index 79b962488..bb8734422 100644 --- a/community/qdevelop/PKGBUILD +++ b/community/qdevelop/PKGBUILD @@ -9,7 +9,7 @@ pkgname=qdevelop pkgver=0.28 pkgrel=1 pkgdesc='A free and cross-platform IDE for Qt4.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://biord-software.org/${pkgname}" license=('GPL2') depends=('qt') diff --git a/community/qemu-launcher/PKGBUILD b/community/qemu-launcher/PKGBUILD index 26f64a630..076b51b3d 100644 --- a/community/qemu-launcher/PKGBUILD +++ b/community/qemu-launcher/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="GNOME/Gtk front-end for the Qemu x86 PC emulator" url="http://gna.org/projects/qemulaunch" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=(http://download.gna.org/qemulaunch/1.7.x/${pkgname}_$pkgver.tar.gz) depends=('qemu' 'gtk2-perl' 'glade-perl' 'perl-locale-gettext' 'xdg-utils') makedepends=('libxml2') diff --git a/community/qgit/PKGBUILD b/community/qgit/PKGBUILD index 696f3c03b..73af75518 100644 --- a/community/qgit/PKGBUILD +++ b/community/qgit/PKGBUILD @@ -9,7 +9,7 @@ pkgver=2.3 pkgrel=3 pkgdesc="A GIT GUI viewer built on Qt/C++" url="http://digilander.libero.it/mcostalba/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('qt' 'git') source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2" diff --git a/community/qgo/PKGBUILD b/community/qgo/PKGBUILD index 595c07c70..6bf66405d 100644 --- a/community/qgo/PKGBUILD +++ b/community/qgo/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.5.4 _realver=1.5.4-r3 pkgrel=4 pkgdesc="A Go client and full featured SGF editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qgo.sourceforge.net/" license=('GPL') depends=('qt3' 'libsm') diff --git a/community/qingy/PKGBUILD b/community/qingy/PKGBUILD index 24be5d84b..18fc8acdc 100644 --- a/community/qingy/PKGBUILD +++ b/community/qingy/PKGBUILD @@ -7,7 +7,7 @@ pkgname=qingy pkgver=1.0.0 pkgrel=1 pkgdesc="A DirectFB getty replacement" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qingy.sourceforge.net/" license=('GPL') depends=('directfb' 'pam' 'openssl' 'ncurses' 'libxss') diff --git a/community/qlandkartegt/PKGBUILD b/community/qlandkartegt/PKGBUILD index 7c9e548cb..c43e11098 100644 --- a/community/qlandkartegt/PKGBUILD +++ b/community/qlandkartegt/PKGBUILD @@ -7,7 +7,7 @@ pkgname=qlandkartegt pkgver=1.2.4 pkgrel=1 pkgdesc="Use your GPS with Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.qlandkarte.org/" license=('GPL') depends=('gdal' 'gpsd' 'libdmtx' 'libexif' 'libmysqlclient' 'mesa' 'postgresql-libs' 'qt' 'shared-mime-info') diff --git a/community/qmc2/PKGBUILD b/community/qmc2/PKGBUILD index d28a677ca..1358b0445 100644 --- a/community/qmc2/PKGBUILD +++ b/community/qmc2/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Qt 4 based UNIX MAME frontend supporting SDLMAME." url="http://qmc2.arcadehits.net" license=("GPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('qt' 'phonon' 'sdl' 'libxmu') makedepends=('rsync' 'mesa') source=("http://downloads.sourceforge.net/project/qmc2/qmc2/$pkgver/qmc2-$pkgver.tar.bz2") diff --git a/community/qmmp/PKGBUILD b/community/qmmp/PKGBUILD index cea4c5e1d..d366771fc 100644 --- a/community/qmmp/PKGBUILD +++ b/community/qmmp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=qmmp pkgver=0.5.2 pkgrel=1 pkgdesc="Qt4 based audio-player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qmmp.ylsoftware.com/" license=('GPL') depends=('alsa-lib' 'curl' 'hicolor-icon-theme' 'libmad' 'libvorbis' 'libogg' 'qt' 'taglib' 'xdg-utils') diff --git a/community/qmpdclient/PKGBUILD b/community/qmpdclient/PKGBUILD index 75ec29542..7822b704a 100644 --- a/community/qmpdclient/PKGBUILD +++ b/community/qmpdclient/PKGBUILD @@ -7,7 +7,7 @@ pkgname=qmpdclient pkgver=1.2.2 pkgrel=1 pkgdesc="A Qt4 client for MPD" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://bitcheese.net/wiki/QMPDClient" license=('GPL') depends=('qt') diff --git a/community/qoauth/PKGBUILD b/community/qoauth/PKGBUILD index ea7a724ec..7721aecb9 100644 --- a/community/qoauth/PKGBUILD +++ b/community/qoauth/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Support with OAuth-powered network services" url="http://github.com/ayoy/qoauth" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('qca') makedepends=('cmake' 'automoc4') source=("http://files.ayoy.net/qoauth/release/current/src/${pkgname}-${pkgver}-src.tar.bz2") diff --git a/community/qps/PKGBUILD b/community/qps/PKGBUILD index 4e3e69e34..6d7869391 100644 --- a/community/qps/PKGBUILD +++ b/community/qps/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=2 pkgdesc="a visual process manager, an X11 version of 'top' or 'ps'." url="http://qps.kldp.net/projects/qps" depends=('qt') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license="GPL" source=(http://kldp.net/frs/download.php/${_dlpkgver}/qps-$pkgver.tar.bz2 version-patch.diff) diff --git a/community/qpxtool/PKGBUILD b/community/qpxtool/PKGBUILD index 9d8987cb2..03bacd40e 100644 --- a/community/qpxtool/PKGBUILD +++ b/community/qpxtool/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qpxtool pkgver=0.7.1_002 pkgrel=1 pkgdesc="Allows better controll over optical drives to include QChecks and optimization settings." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qpxtool.sourceforge.net/" license=('GPL') depends=('qt') 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/qstardict/PKGBUILD b/community/qstardict/PKGBUILD index e265cc22b..7a6e2487c 100755 --- a/community/qstardict/PKGBUILD +++ b/community/qstardict/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qstardict pkgver=1.0 pkgrel=1 pkgdesc="Qt4 clone of StarDict with full support of StarDict dictionaries" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qstardict.ylsoftware.com/index.php" license=('GPL2') depends=('qt') diff --git a/community/qsvn/PKGBUILD b/community/qsvn/PKGBUILD index ebb582bce..9516cd232 100644 --- a/community/qsvn/PKGBUILD +++ b/community/qsvn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qsvn pkgver=0.8.3 pkgrel=2 pkgdesc="Qt4 GUI for Subversion." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.anrichter.net/projects/qsvn/" license=('GPL') depends=('qt' 'subversion' 'db>=4.7') diff --git a/community/qt-recordmydesktop/PKGBUILD b/community/qt-recordmydesktop/PKGBUILD index 06eeecf79..2ccb70408 100644 --- a/community/qt-recordmydesktop/PKGBUILD +++ b/community/qt-recordmydesktop/PKGBUILD @@ -7,7 +7,7 @@ pkgname=qt-recordmydesktop pkgver=0.3.8 pkgrel=4 pkgdesc="Qt4 frontend for recordMyDesktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://recordmydesktop.sourceforge.net" license=('GPL') depends=('recordmydesktop>=0.3.8.1' 'python2-qt') diff --git a/community/qtcreator/PKGBUILD b/community/qtcreator/PKGBUILD index a5216ce4d..3d99a92f1 100644 --- a/community/qtcreator/PKGBUILD +++ b/community/qtcreator/PKGBUILD @@ -10,7 +10,7 @@ pkgname="qtcreator" pkgver=2.3.1 pkgrel=1 pkgdesc='Lightweight, cross-platform integrated development environment' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://qt.nokia.com/products/developer-tools' license=('LGPL') depends=('qt>=4.7.4') diff --git a/community/qtemu/PKGBUILD b/community/qtemu/PKGBUILD index 2a0ada7e2..2fe9aeaf4 100644 --- a/community/qtemu/PKGBUILD +++ b/community/qtemu/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3 pkgdesc="Graphical user interface for QEMU written in Qt4" url="http://qtemu.org" license=("GPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=('cmake') depends=('qemu' 'qt>=4.1') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2) diff --git a/community/qtfm/PKGBUILD b/community/qtfm/PKGBUILD index 555f01db7..84e1983f7 100644 --- a/community/qtfm/PKGBUILD +++ b/community/qtfm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qtfm pkgver=5.1 pkgrel=1 pkgdesc="A lightweight file manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.qtfm.org" license=('GPL') depends=('qt') diff --git a/community/qtmpc/PKGBUILD b/community/qtmpc/PKGBUILD index 95900ba1a..cd6d10d9a 100644 --- a/community/qtmpc/PKGBUILD +++ b/community/qtmpc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qtmpc pkgver=0.6.1 pkgrel=2 pkgdesc="Qt4-based front-end for MPD" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qtmpc.lowblog.nl/" license=('GPL') depends=('hicolor-icon-theme' 'kdebase-runtime' 'qt') diff --git a/community/qtoctave/PKGBUILD b/community/qtoctave/PKGBUILD index aa57b3b79..be22dbe7f 100755 --- a/community/qtoctave/PKGBUILD +++ b/community/qtoctave/PKGBUILD @@ -4,7 +4,7 @@ pkgname=qtoctave pkgver=0.10.1 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="qt frontend for octave" url="https://forja.rediris.es/projects/csl-qtoctave/" license=('GPL2') diff --git a/community/qtractor/PKGBUILD b/community/qtractor/PKGBUILD index 9cd0fc150..d73696ef5 100644 --- a/community/qtractor/PKGBUILD +++ b/community/qtractor/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qtractor pkgver=0.5.1 pkgrel=1 pkgdesc="Audio/MIDI multitrack sequencer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qtractor.sourceforge.net/" license=('GPL') depends=('qt' 'jack' 'slv2>=0.6.6-6' 'libmad' 'liblo' diff --git a/community/quassel/PKGBUILD b/community/quassel/PKGBUILD index 80a3d47f2..9c87260ae 100644 --- a/community/quassel/PKGBUILD +++ b/community/quassel/PKGBUILD @@ -5,7 +5,7 @@ pkgname=quassel pkgver=0.7.3 pkgrel=1 pkgdesc="QT4 irc client with a separated core" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://quassel-irc.org/" license=('GPL') depends=('kdelibs' 'oxygen-icons' 'hicolor-icon-theme') diff --git a/community/qucs/PKGBUILD b/community/qucs/PKGBUILD index db22d851f..6f544051f 100644 --- a/community/qucs/PKGBUILD +++ b/community/qucs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qucs pkgver=0.0.16 pkgrel=1 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/quesoglc/PKGBUILD b/community/quesoglc/PKGBUILD index 8e12b892d..ec287ab3b 100644 --- a/community/quesoglc/PKGBUILD +++ b/community/quesoglc/PKGBUILD @@ -4,7 +4,7 @@ pkgname=quesoglc pkgver=0.7.2 pkgrel=1 pkgdesc='The OpenGL Character Renderer (GLC) is a state machine that provides OpenGL programs with character rendering services via an application programming interface (API).' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://quesoglc.sourceforge.net/' license=('GPL') depends=('freetype2' 'fontconfig' 'freeglut' 'fribidi' 'mesa') diff --git a/community/quvi/PKGBUILD b/community/quvi/PKGBUILD index d90b7e798..26a78deb0 100644 --- a/community/quvi/PKGBUILD +++ b/community/quvi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=quvi pkgver=0.4.0 pkgrel=1 pkgdesc='Command-line tool for parsing video download links.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://quvi.sourceforge.net/' license=('LGPL') depends=('libquvi') diff --git a/community/radeontool/PKGBUILD b/community/radeontool/PKGBUILD index 7092a9d77..7d6eedb67 100644 --- a/community/radeontool/PKGBUILD +++ b/community/radeontool/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.6.2 pkgrel=1 pkgdesc="Radeontool (and avivotool) are lowlevel tools to tweak register and dump state on radeon GPUs" url="http://airlied.livejournal.com/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('ZLIB') source=(http://people.freedesktop.org/~airlied/radeontool/${pkgname}-${pkgver}.tar.gz license.txt) diff --git a/community/radvd/PKGBUILD b/community/radvd/PKGBUILD index d42e9b931..29a200129 100644 --- a/community/radvd/PKGBUILD +++ b/community/radvd/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc='IPv6 Router Advertisement / Router Solicitation daemon' url='http://www.litech.org/radvd/' license=('custom') depends=('glibc') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') install=radvd.install source=("http://www.litech.org/radvd/dist/$pkgname-$pkgver.tar.gz" 'radvd.rc.d') md5sums=('ac8a862d2b232d25ea2622274a2da8a4' diff --git a/community/rapidsvn/PKGBUILD b/community/rapidsvn/PKGBUILD index cee7bf35b..c74a82cfc 100644 --- a/community/rapidsvn/PKGBUILD +++ b/community/rapidsvn/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=3 pkgdesc="A cross-platform GUI front-end for the Subversion revision system written in C++ using the wxWidgets framework." depends=('subversion' 'wxgtk') url='http://rapidsvn.tigris.org/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') options=('!libtool') source=(http://www.rapidsvn.org/download/release/0.12/rapidsvn-$pkgver-1.tar.gz diff --git a/community/raul/PKGBUILD b/community/raul/PKGBUILD index 92f6d497b..ff583458c 100644 --- a/community/raul/PKGBUILD +++ b/community/raul/PKGBUILD @@ -7,7 +7,7 @@ pkgname=raul pkgver=0.8.0 pkgrel=1 pkgdesc="C++ Realtime Audio Utility Library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://drobilla.net/software/raul/" depends=('glib2') makedepends=('boost' 'python2') diff --git a/community/raw-thumbnailer/PKGBUILD b/community/raw-thumbnailer/PKGBUILD index e6d85babd..8d4b3422f 100644 --- a/community/raw-thumbnailer/PKGBUILD +++ b/community/raw-thumbnailer/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc="A lightweight and fast raw image thumbnailer that can be used by file managers." url="http://code.google.com/p/raw-thumbnailer/" license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libopenraw') source=(http://raw-thumbnailer.googlecode.com/files/$pkgname-$pkgver.tar.gz) md5sums=('f107575aa32a0d53802cf5beead18bf8') diff --git a/community/rawstudio/PKGBUILD b/community/rawstudio/PKGBUILD index 337f08e7a..55792e67b 100644 --- a/community/rawstudio/PKGBUILD +++ b/community/rawstudio/PKGBUILD @@ -8,7 +8,7 @@ pkgname=rawstudio pkgver=2.0 pkgrel=3 pkgdesc="An open source raw-image converter written in GTK+" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://rawstudio.org/" depends=('exiv2' 'libgphoto2' 'flickcurl' 'libjpeg' 'fftw' 'gconf' 'lensfun' diff --git a/community/rawtherapee/PKGBUILD b/community/rawtherapee/PKGBUILD index 0e05e0aca..d2e0e3e0b 100644 --- a/community/rawtherapee/PKGBUILD +++ b/community/rawtherapee/PKGBUILD @@ -8,7 +8,7 @@ pkgname=rawtherapee pkgver=4.0.3 pkgrel=1 pkgdesc="RAW photo editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.rawtherapee.com/" license=('GPL') depends=('bzip2' 'gtkmm' 'libiptcdata' 'lcms2' 'desktop-file-utils' 'hicolor-icon-theme') diff --git a/community/rdiff-backup/PKGBUILD b/community/rdiff-backup/PKGBUILD index 3ffb75bad..e4f34995e 100644 --- a/community/rdiff-backup/PKGBUILD +++ b/community/rdiff-backup/PKGBUILD @@ -7,7 +7,7 @@ pkgname=rdiff-backup pkgver=1.2.8 pkgrel=5 pkgdesc='A utility for local/remote mirroring and incremental backups.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.nongnu.org/rdiff-backup/' license=('GPL') depends=('python2' 'librsync') diff --git a/community/recoll/PKGBUILD b/community/recoll/PKGBUILD index e5b615df3..1762a56fb 100644 --- a/community/recoll/PKGBUILD +++ b/community/recoll/PKGBUILD @@ -9,7 +9,7 @@ pkgname=recoll pkgver=1.16.1 pkgrel=1 pkgdesc="Full text search tool based on Xapian backend" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lesbonscomptes.com/recoll/" license=('GPL') depends=('xapian-core>=1.0.15-1' 'qt' 'openssl' 'hicolor-icon-theme') diff --git a/community/recordmydesktop/PKGBUILD b/community/recordmydesktop/PKGBUILD index f559b7a2b..ce7dcecc7 100644 --- a/community/recordmydesktop/PKGBUILD +++ b/community/recordmydesktop/PKGBUILD @@ -6,7 +6,7 @@ pkgname=recordmydesktop pkgver=0.3.8.1 pkgrel=5 pkgdesc="Produces a OGG encapsulated Theora/Vorbis recording of your desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://recordmydesktop.sourceforge.net" license=('GPL') depends=('alsa-lib' 'zlib' 'libvorbis' 'libxdamage' 'libxext' 'libtheora' 'libsm' 'jack') diff --git a/community/recoverdm/PKGBUILD b/community/recoverdm/PKGBUILD index 4ec2d1548..c1c4427f5 100644 --- a/community/recoverdm/PKGBUILD +++ b/community/recoverdm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=recoverdm pkgver=0.20 pkgrel=2 pkgdesc="helps to recover disks with bad sectors" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.vanheusden.com/recoverdm/" license=('GPL') depends=(glibc) diff --git a/community/redis/PKGBUILD b/community/redis/PKGBUILD index f07c412cf..a2f563c6c 100644 --- a/community/redis/PKGBUILD +++ b/community/redis/PKGBUILD @@ -7,7 +7,7 @@ pkgname=redis pkgver=2.4.2 pkgrel=1 pkgdesc="Advanced key-value store" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://redis.io/" #url="http://code.google.com/p/redis" license=('BSD') diff --git a/community/redshift/PKGBUILD b/community/redshift/PKGBUILD index 166657069..3a4ff3358 100644 --- a/community/redshift/PKGBUILD +++ b/community/redshift/PKGBUILD @@ -8,7 +8,7 @@ pkgname=redshift pkgver=1.7 pkgrel=1 pkgdesc="Adjusts the color temperature of your screen according to your surroundings." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://jonls.dk/redshift/' license=('GPL3') depends=('gconf' 'libxxf86vm') diff --git a/community/rekonq/PKGBUILD b/community/rekonq/PKGBUILD index 3cb1483ee..51aecb479 100644 --- a/community/rekonq/PKGBUILD +++ b/community/rekonq/PKGBUILD @@ -7,7 +7,7 @@ pkgname=rekonq pkgver=0.8.0 pkgrel=1 pkgdesc='A WebKit based web browser for KDE' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://rekonq.kde.org/' license=('GPL') depends=('kdebase-keditbookmarks') diff --git a/community/remind/PKGBUILD b/community/remind/PKGBUILD index 27bb61ee9..0927cd990 100644 --- a/community/remind/PKGBUILD +++ b/community/remind/PKGBUILD @@ -7,7 +7,7 @@ pkgname=remind pkgver=3.01.10 pkgrel=2 pkgdesc='A sophisticated calendar and alarm progam.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.roaringpenguin.com/penguin/open_source_remind.php' license=('GPL') depends=('tk' 'tcllib') diff --git a/community/remmina-plugins/PKGBUILD b/community/remmina-plugins/PKGBUILD index 7b6007a69..9f94b7c05 100644 --- a/community/remmina-plugins/PKGBUILD +++ b/community/remmina-plugins/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc="Remina plugins" #"Remmina supports multiple network protocols in an integrated and consistant user interface. # Currently RDP, VNC, XDMCP and SSH are supported." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://sourceforge.net/projects/remmina/" license=('GPL') conflicts=(remmina-plugins-svn) diff --git a/community/remmina/PKGBUILD b/community/remmina/PKGBUILD index be4e4b23b..b8f7dc5ed 100644 --- a/community/remmina/PKGBUILD +++ b/community/remmina/PKGBUILD @@ -5,7 +5,7 @@ pkgname=remmina pkgver=0.9.3 pkgrel=1 pkgdesc="Remmina is a remote desktop client written in GTK+. " -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://sourceforge.net/projects/remmina/" license=('GPL') provides=("grdc" "grdc=$pkgver") diff --git a/community/rep-gtk/PKGBUILD b/community/rep-gtk/PKGBUILD index 09b8dafd2..06a833404 100644 --- a/community/rep-gtk/PKGBUILD +++ b/community/rep-gtk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=rep-gtk pkgver=0.90.7 pkgrel=1 pkgdesc="Binding of the GTK and GDK libraries for the librep Lisp environment" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sawfish.wikia.com/wiki/Rep-GTK" license=('GPL') depends=('librep' 'gtk2') diff --git a/community/rexima/PKGBUILD b/community/rexima/PKGBUILD index 8342183de..47ea0dfb2 100644 --- a/community/rexima/PKGBUILD +++ b/community/rexima/PKGBUILD @@ -7,7 +7,7 @@ pkgname=rexima pkgver=1.4 pkgrel=4 pkgdesc="A curses-based interactive mixer." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.svgalib.org/rus/rexima.html" license=('GPL') depends=('ncurses') diff --git a/community/ripperx/PKGBUILD b/community/ripperx/PKGBUILD index c3ce208a1..e8b694c28 100644 --- a/community/ripperx/PKGBUILD +++ b/community/ripperx/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ripperx pkgver=2.7.3 pkgrel=1 pkgdesc="GTK program to rip and encode mp3 files" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://ripperx.sourceforge.net/" depends=('gtk2' 'id3lib') license=('GPL') diff --git a/community/rlog/PKGBUILD b/community/rlog/PKGBUILD index 48bf0832c..1ba965fe5 100644 --- a/community/rlog/PKGBUILD +++ b/community/rlog/PKGBUILD @@ -7,7 +7,7 @@ pkgname=rlog pkgver=1.4 pkgrel=4 pkgdesc="A flexible message logging facility for C++ programs and libraries" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.arg0.net/rlog" license=('LGPL') depends=('gcc-libs') diff --git a/community/rlwrap/PKGBUILD b/community/rlwrap/PKGBUILD index 590bbe886..ca15bd42b 100644 --- a/community/rlwrap/PKGBUILD +++ b/community/rlwrap/PKGBUILD @@ -8,7 +8,7 @@ pkgname=rlwrap pkgver=0.37 pkgrel=1 pkgdesc="A 'readline wrapper'" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://utopia.knoware.nl/~hlub/uck/rlwrap/" license=('GPL') depends=('readline') diff --git a/community/rocksndiamonds/PKGBUILD b/community/rocksndiamonds/PKGBUILD index 6258e1065..5acae8d1c 100644 --- a/community/rocksndiamonds/PKGBUILD +++ b/community/rocksndiamonds/PKGBUILD @@ -6,7 +6,7 @@ pkgname=rocksndiamonds pkgver=3.3.0.1 pkgrel=1 pkgdesc="game similiar to Boulderdash with lots of levels" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.artsoft.org/rocksndiamonds/" license=('GPL') depends=('sdl' 'sdl_image' 'sdl_mixer' 'sdl_net' 'smpeg' 'rocksndiamonds-data') diff --git a/community/root/PKGBUILD b/community/root/PKGBUILD index d45cbd58d..6db305207 100644 --- a/community/root/PKGBUILD +++ b/community/root/PKGBUILD @@ -5,7 +5,7 @@ pkgname=root pkgver=5.30.03 pkgrel=1 pkgdesc='C++ data analysis framework and interpreter from CERN.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://root.cern.ch' license=('LGPL2.1') depends=('avahi' 'desktop-file-utils' 'ftgl' 'giflib' 'glew' 'graphviz' 'gsl' 'libldap' 'libmysqlclient' diff --git a/community/rote/PKGBUILD b/community/rote/PKGBUILD index d0043e679..6ef646b38 100644 --- a/community/rote/PKGBUILD +++ b/community/rote/PKGBUILD @@ -5,7 +5,7 @@ pkgname=rote pkgver=0.2.8 pkgrel=2 pkgdesc="terminal emulation library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://rote.sourceforge.net/" license=('GPL') depends=(ncurses) diff --git a/community/roxterm/PKGBUILD b/community/roxterm/PKGBUILD index 16fdce082..19b42db02 100644 --- a/community/roxterm/PKGBUILD +++ b/community/roxterm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=roxterm pkgver=2.2.2 pkgrel=1 pkgdesc="Tabbed, VTE-based terminal emulator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://roxterm.sourceforge.net/" license=('GPL3') depends=('dbus-glib' 'vte3' 'hicolor-icon-theme' 'dbus' 'dbus-core' 'glib2') diff --git a/community/rpc2/PKGBUILD b/community/rpc2/PKGBUILD index 4719cdbfb..9f36f6777 100644 --- a/community/rpc2/PKGBUILD +++ b/community/rpc2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=rpc2 pkgver=2.10 pkgrel=2 pkgdesc="Remote procedure call package for IP/UDP" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.coda.cs.cmu.edu" options=('!libtool') license=("LGPL") diff --git a/community/rsnapshot/PKGBUILD b/community/rsnapshot/PKGBUILD index 21cdc3ba6..bca611d90 100644 --- a/community/rsnapshot/PKGBUILD +++ b/community/rsnapshot/PKGBUILD @@ -5,7 +5,7 @@ pkgname=rsnapshot pkgver=1.3.1 pkgrel=2 pkgdesc="A remote filesystem snapshot utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.rsnapshot.org" license=('GPL') depends=('perl' 'rsync' 'openssh') diff --git a/community/rss-glx/PKGBUILD b/community/rss-glx/PKGBUILD index fe9298029..f1e4c060c 100644 --- a/community/rss-glx/PKGBUILD +++ b/community/rss-glx/PKGBUILD @@ -7,7 +7,7 @@ pkgname=rss-glx pkgver=0.9.1 pkgrel=8 pkgdesc="The Really Slick Screensavers port to GLX" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://rss-glx.sourceforge.net/" license=('GPL') depends=('desktop-file-utils' 'freealut' 'glew' 'imagemagick') diff --git a/community/rsyslog/PKGBUILD b/community/rsyslog/PKGBUILD index 651683a6e..e7c3039e2 100644 --- a/community/rsyslog/PKGBUILD +++ b/community/rsyslog/PKGBUILD @@ -6,7 +6,7 @@ pkgver=5.8.5 pkgrel=2 pkgdesc="An enhanced multi-threaded syslogd with a focus on security and reliability" url="http://www.rsyslog.com/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') depends=('zlib') makedepends=('postgresql-libs>=8.4.1' 'libmysqlclient' 'net-snmp' 'gnutls') diff --git a/community/rtorrent/PKGBUILD b/community/rtorrent/PKGBUILD index 0f387097d..7501d59d5 100644 --- a/community/rtorrent/PKGBUILD +++ b/community/rtorrent/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc='Ncurses BitTorrent client based on libTorrent' url='http://libtorrent.rakshasa.no/' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libtorrent=0.12.9' 'curl' 'xmlrpc-c') source=("http://libtorrent.rakshasa.no/downloads/${pkgname}-${pkgver}.tar.gz") sha1sums=('0ac51c185e98b5a386e5f1a07bca9a9963e2d6ce') diff --git a/community/ruby-cairo/PKGBUILD b/community/ruby-cairo/PKGBUILD index 4c07e6ee6..a082bbacf 100644 --- a/community/ruby-cairo/PKGBUILD +++ b/community/ruby-cairo/PKGBUILD @@ -5,7 +5,7 @@ _pkgname=rcairo pkgver=1.10.0 pkgrel=2 pkgdesc="Ruby bindings for cairo" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cairographics.org/rcairo/" license=('GPL') depends=('ruby' 'cairo>=1.2.0') diff --git a/community/ruby-gtk2/PKGBUILD b/community/ruby-gtk2/PKGBUILD index 0935a6037..c4a2d5bae 100644 --- a/community/ruby-gtk2/PKGBUILD +++ b/community/ruby-gtk2/PKGBUILD @@ -7,7 +7,7 @@ pkgbase=ruby-gtk2 pkgname=('ruby-atk' 'ruby-gdkpixbuf2' 'ruby-gio2' 'ruby-glib2' 'ruby-gtk2' 'ruby-pango') pkgver=1.0.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ruby-gnome2.sourceforge.jp" license=('LGPL') makedepends=('ruby-pkgconfig' 'ruby-cairo' 'gtk2') diff --git a/community/rusxmms/PKGBUILD b/community/rusxmms/PKGBUILD index 28a581ec8..96b89ac1c 100644 --- a/community/rusxmms/PKGBUILD +++ b/community/rusxmms/PKGBUILD @@ -8,7 +8,7 @@ _xmmsver=1.2.11 _csaver=csa43 pkgrel=3 pkgdesc="XMMS with librcc" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=(GPL) url="http://rusxmms.sourceforge.net/" depends=(libsm libxxf86vm zlib gtk libvorbis alsa-lib libgl librcc librcd openssl) diff --git a/community/sage-mathematics/PKGBUILD b/community/sage-mathematics/PKGBUILD index 186d71729..c71dbff1b 100644 --- a/community/sage-mathematics/PKGBUILD +++ b/community/sage-mathematics/PKGBUILD @@ -8,7 +8,7 @@ pkgver=4.7.1 pkgrel=1 pkgdesc='SAGE: Open Source Mathematics Software, a viable free alternative to Magma, Maple, Mathematica, and Matlab.' url='http://www.sagemath.org' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') #depends=('readline') depends=('ppl') diff --git a/community/sakura/PKGBUILD b/community/sakura/PKGBUILD index c8cd7e2d5..aa0f750bb 100644 --- a/community/sakura/PKGBUILD +++ b/community/sakura/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sakura pkgver=2.4.2 pkgrel=1 pkgdesc="A terminal emulator based on GTK and VTE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pleyades.net/david/sakura.php" license=('GPL') depends=('vte' 'libxft' 'desktop-file-utils') diff --git a/community/sarg/PKGBUILD b/community/sarg/PKGBUILD index e2541d597..4a5b15381 100644 --- a/community/sarg/PKGBUILD +++ b/community/sarg/PKGBUILD @@ -7,7 +7,7 @@ pkgname=sarg pkgver=2.3.1 pkgrel=3 pkgdesc="Squid Analysis Report Generator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sarg.sourceforge.net" license=('GPL') depends=('gd' 'libldap') diff --git a/community/sauerbraten/PKGBUILD b/community/sauerbraten/PKGBUILD index 2a845e88d..92e4e66c8 100644 --- a/community/sauerbraten/PKGBUILD +++ b/community/sauerbraten/PKGBUILD @@ -10,7 +10,7 @@ pkgname=('sauerbraten' 'sauerbraten-data') pkgver=2010_07_28_justice_edition pkgrel=2 pkgdesc="Improved version of the Cube engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.sauerbraten.org/" license=('ZLIB') depends=('sdl_mixer' 'sdl_image' 'libgl') diff --git a/community/sawfish/PKGBUILD b/community/sawfish/PKGBUILD index 495031682..984ce840f 100644 --- a/community/sawfish/PKGBUILD +++ b/community/sawfish/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sawfish pkgver=1.8.2 pkgrel=1 pkgdesc="An extensible window manager using a Lisp-based scripting language" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sawfish.wikia.com/wiki/Main_Page" license=('GPL') depends=('libsm' 'rep-gtk' 'hicolor-icon-theme') diff --git a/community/scantailor/PKGBUILD b/community/scantailor/PKGBUILD index 96c166249..1d295ea75 100644 --- a/community/scantailor/PKGBUILD +++ b/community/scantailor/PKGBUILD @@ -6,7 +6,7 @@ pkgname=scantailor pkgver=0.9.10 pkgrel=1 pkgdesc="Interactive post-processing tool for scanned pages" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://scantailor.sourceforge.net" license="GPL" depends=('qt') diff --git a/community/schroot/PKGBUILD b/community/schroot/PKGBUILD index 0e13a1e1a..6cdf2cc9f 100644 --- a/community/schroot/PKGBUILD +++ b/community/schroot/PKGBUILD @@ -11,7 +11,7 @@ url="http://packages.qa.debian.org/s/schroot.html" license=('GPL3') depends=('pam' 'lockdev' 'boost' 'e2fsprogs') optdepends=('btrfs-progs-unstable' 'lvm2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') conflicts=('dchroot') replaces=('dchroot') provides=('schroot' 'sbuild' 'dchroot') diff --git a/community/scilab/PKGBUILD b/community/scilab/PKGBUILD index a1996a774..ed76c2b92 100644 --- a/community/scilab/PKGBUILD +++ b/community/scilab/PKGBUILD @@ -6,7 +6,7 @@ pkgname=scilab pkgver=5.3.1 pkgrel=4 pkgdesc='Scilab is a scientific software package for numerical computations.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.scilab.org/' license=('custom:CeCILL') depends=('libxml2' 'pcre' 'lapack' 'java-batik' 'java-flexdock>=0.5.2' diff --git a/community/scite/PKGBUILD b/community/scite/PKGBUILD index 8a5cdc1ed..3cdb5d823 100644 --- a/community/scite/PKGBUILD +++ b/community/scite/PKGBUILD @@ -7,7 +7,7 @@ pkgname=scite pkgver=2.29 pkgrel=1 pkgdesc='A generally useful editor with facilities for building and running programs.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.scintilla.org/SciTE.html' license=('custom:scite') depends=('desktop-file-utils' 'gtk2' 'glib2') diff --git a/community/scorched3d/PKGBUILD b/community/scorched3d/PKGBUILD index 42e9f414d..83c7a81b1 100644 --- a/community/scorched3d/PKGBUILD +++ b/community/scorched3d/PKGBUILD @@ -5,7 +5,7 @@ pkgname=scorched3d pkgver=43.2a pkgrel=1 pkgdesc="A 3d artillery combat game" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.scorched3d.co.uk/" license=('GPL') depends=('sdl_net' 'wxgtk' 'freealut>=1.0.0-3' 'libvorbis' 'mesa' 'fftw' 'libjpeg>=8' 'xdg-utils') diff --git a/community/scponly/PKGBUILD b/community/scponly/PKGBUILD index 30bcd9d44..3ac5ac4ac 100644 --- a/community/scponly/PKGBUILD +++ b/community/scponly/PKGBUILD @@ -6,7 +6,7 @@ pkgname=scponly pkgver=4.8 pkgrel=7 pkgdesc="A limited shell for ssh/scp" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://sublimation.org/scponly/" depends=('glibc') license=('custom') diff --git a/community/scrotwm/PKGBUILD b/community/scrotwm/PKGBUILD index c89137f73..78ffbde73 100644 --- a/community/scrotwm/PKGBUILD +++ b/community/scrotwm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=scrotwm pkgver=0.9.34 pkgrel=2 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.scrotwm.org" license=('custom:ISC') depends=('dmenu' 'libxrandr' 'libxtst' 'profont') diff --git a/community/scummvm-tools/PKGBUILD b/community/scummvm-tools/PKGBUILD index 56ae948d0..c757fde51 100644 --- a/community/scummvm-tools/PKGBUILD +++ b/community/scummvm-tools/PKGBUILD @@ -10,7 +10,7 @@ pkgdesc="A set of tools that enable you to convert, compress and decode game dat url="http://www.scummvm.org/" license=('GPL') depends=('libpng' 'wxgtk' 'flac' 'libvorbis') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=(http://downloads.sourceforge.net/sourceforge/scummvm/${pkgname}-${pkgver}.tar.gz) md5sums=('0239cb022e508f2399d584efa6f177b2') diff --git a/community/sdcc/PKGBUILD b/community/sdcc/PKGBUILD index d25607944..eb6c882d1 100644 --- a/community/sdcc/PKGBUILD +++ b/community/sdcc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sdcc pkgver=3.0.0 pkgrel=2 pkgdesc="Retargettable ANSI C compiler (Intel 8051, Maxim 80DS390, Zilog Z80 and the Motorola 68HC08)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('bash' 'gcc-libs') makedepends=('gputils' 'flex' 'bison' 'patch') diff --git a/community/sdd/PKGBUILD b/community/sdd/PKGBUILD index 9b538c6e3..12d3ba464 100644 --- a/community/sdd/PKGBUILD +++ b/community/sdd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sdd pkgver=1.52 pkgrel=6 pkgdesc="Faster replacement for a program called dd" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://freshmeat.net/projects/sdd/" source=(ftp://ftp.berlios.de/pub/sdd/sdd-$pkgver.tar.gz diff --git a/community/ser2net/PKGBUILD b/community/ser2net/PKGBUILD index 42ab9590f..1fc73b7e8 100644 --- a/community/ser2net/PKGBUILD +++ b/community/ser2net/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ser2net pkgver=2.7 pkgrel=1 pkgdesc="A proxy that allows telnet/tcp connections to be made to serial ports" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://sourceforge.net/projects/ser2net" license=('GPL') depends=('glibc') diff --git a/community/sfml/PKGBUILD b/community/sfml/PKGBUILD index 4d2318966..29a22b46e 100644 --- a/community/sfml/PKGBUILD +++ b/community/sfml/PKGBUILD @@ -12,7 +12,7 @@ fi pkgrel=1 pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.sfml-dev.org/' license=('zlib') depends=('libsndfile' 'libxrandr' 'libjpeg' 'openal' 'glew' 'freetype2') diff --git a/community/shake/PKGBUILD b/community/shake/PKGBUILD index cc8f72da6..93099b11d 100644 --- a/community/shake/PKGBUILD +++ b/community/shake/PKGBUILD @@ -7,7 +7,7 @@ pkgname=shake pkgver=0.999 pkgrel=1 pkgdesc="Userspace defragmenter that can be run while system is in use" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://vleu.net/shake/" license=('GPL3') depends=('attr') diff --git a/community/shapelib/PKGBUILD b/community/shapelib/PKGBUILD index 7021f6efa..ef72c4536 100644 --- a/community/shapelib/PKGBUILD +++ b/community/shapelib/PKGBUILD @@ -5,7 +5,7 @@ pkgname=shapelib pkgver=1.2.10 pkgrel=4 pkgdesc='simple C API for reading and writing ESRI Shapefiles' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://shapelib.maptools.org/' license=('LGPL' 'MIT') options=('!libtool') diff --git a/community/shell-fm/PKGBUILD b/community/shell-fm/PKGBUILD index d54031f18..2336657b7 100644 --- a/community/shell-fm/PKGBUILD +++ b/community/shell-fm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=shell-fm pkgver=0.7 pkgrel=3 pkgdesc="A console based player for the streams provided by Last.FM" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://github.com/jkramer/$pkgname" license=('GPL') depends=('libmad' 'libao' 'taglib') diff --git a/community/shfs-utils/PKGBUILD b/community/shfs-utils/PKGBUILD index 13477b23d..cf1bf70a9 100644 --- a/community/shfs-utils/PKGBUILD +++ b/community/shfs-utils/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3 pkgdesc="SHell FileSystem Linux utils" url="http://shfs.sourceforge.net/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glibc' 'openssh') makedepends=('patch') source=(http://downloads.sourceforge.net/sourceforge/shfs/shfs-$pkgver.tar.gz \ diff --git a/community/shntool/PKGBUILD b/community/shntool/PKGBUILD index 1d8db06de..5c45b8c46 100644 --- a/community/shntool/PKGBUILD +++ b/community/shntool/PKGBUILD @@ -5,7 +5,7 @@ pkgname=shntool pkgver=3.0.10 pkgrel=1 pkgdesc="A multi-purpose WAVE data processing and reporting utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.etree.org/shnutils/shntool/" license=('GPL') options=(!emptydirs) diff --git a/community/shotwell/PKGBUILD b/community/shotwell/PKGBUILD index 06412266b..13f6fe947 100644 --- a/community/shotwell/PKGBUILD +++ b/community/shotwell/PKGBUILD @@ -7,7 +7,7 @@ pkgname=shotwell pkgver=0.11.4 pkgrel=2 pkgdesc="A digital photo organizer designed for the GNOME desktop environment" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://yorba.org/shotwell/" license=('LGPL2.1') depends=('gconf' 'libgee' 'libgphoto2' 'libunique' 'libwebkit' 'libgexiv2' 'libraw' diff --git a/community/shuffle/PKGBUILD b/community/shuffle/PKGBUILD index e13598c9f..d85a4b641 100644 --- a/community/shuffle/PKGBUILD +++ b/community/shuffle/PKGBUILD @@ -5,7 +5,7 @@ pkgname=shuffle pkgver=1.5 pkgrel=3 pkgdesc="Shuffles lines of input." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.w3.org/People/Bos/Shuffle/" license=('custom') depends=(glibc) diff --git a/community/siege/PKGBUILD b/community/siege/PKGBUILD index 3910b7133..75396a1f8 100644 --- a/community/siege/PKGBUILD +++ b/community/siege/PKGBUILD @@ -5,7 +5,7 @@ pkgname=siege pkgver=2.70 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') pkgdesc="An http regression testing and benchmarking utility" url="http://www.joedog.org/JoeDog/Siege" diff --git a/community/sigil/PKGBUILD b/community/sigil/PKGBUILD index d42a7df02..8cfabf947 100644 --- a/community/sigil/PKGBUILD +++ b/community/sigil/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sigil pkgver=0.4.2 pkgrel=1 pkgdesc="A WYSIWYG ebook editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/sigil/" license=('GPL3') depends=('qt') diff --git a/community/silly/PKGBUILD b/community/silly/PKGBUILD index 390c82194..4aa34ede2 100644 --- a/community/silly/PKGBUILD +++ b/community/silly/PKGBUILD @@ -6,7 +6,7 @@ pkgname=silly pkgver=0.1.0 pkgrel=4 pkgdesc="Simple Image Loading LibrarY, a part of the CEGUI project" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cegui.org.uk/wiki/index.php/SILLY" license=('MIT') depends=('libjpeg' 'libpng' 'gcc-libs') diff --git a/community/simgear/PKGBUILD b/community/simgear/PKGBUILD index 970dbf82b..47fb6260e 100644 --- a/community/simgear/PKGBUILD +++ b/community/simgear/PKGBUILD @@ -7,7 +7,7 @@ pkgname=simgear pkgver=2.4.0 pkgrel=1 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') license=("GPL") diff --git a/community/simh/PKGBUILD b/community/simh/PKGBUILD index 737b69e8f..64ec9c90c 100644 --- a/community/simh/PKGBUILD +++ b/community/simh/PKGBUILD @@ -7,7 +7,7 @@ pkgver=3.8.1 _pkgver=38-1 pkgrel=2 pkgdesc="simulator for assorted historical computers, from Altair to VAX" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://simh.trailing-edge.com" license=("BSD") depends=("libpcap" "glibc") diff --git a/community/simple-scan/PKGBUILD b/community/simple-scan/PKGBUILD index bc08d2ef9..da7b195f1 100644 --- a/community/simple-scan/PKGBUILD +++ b/community/simple-scan/PKGBUILD @@ -5,7 +5,7 @@ pkgname=simple-scan pkgver=3.2.0 pkgrel=1 pkgdesc='Simple scanning utility' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://launchpad.net/simple-scan' license=('GPL3') depends=('sane' 'dconf' 'gtk3' 'colord' 'hicolor-icon-theme') diff --git a/community/sisctrl/PKGBUILD b/community/sisctrl/PKGBUILD index e691edfe2..36379e068 100644 --- a/community/sisctrl/PKGBUILD +++ b/community/sisctrl/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sisctrl pkgver=0.0.20051202 pkgrel=5 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') pkgdesc="SiSCtrl is Display Control Panel for XFree86/X.org SiS driver" makedepends=('pkgconfig') depends=('gtk2' 'libxxf86vm' 'libxv') diff --git a/community/sk1/PKGBUILD b/community/sk1/PKGBUILD index 551df34a5..1356364d3 100644 --- a/community/sk1/PKGBUILD +++ b/community/sk1/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sk1 pkgver=0.9.1 pkgrel=6 pkgdesc="Fork of skencil with improved CMYK support" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://sk1project.org/modules.php?name=Products&product=sk1" depends=('tcl>=7.6' 'tk>=4.2' 'python-lcms' 'pil>=1.0' 'pyxml' 'zenity' 'sk1libs') license=('GPL' 'LGPL') diff --git a/community/sk1libs/PKGBUILD b/community/sk1libs/PKGBUILD index e5c014b93..120f51a3c 100644 --- a/community/sk1libs/PKGBUILD +++ b/community/sk1libs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sk1libs pkgver=0.9.1 pkgrel=2 pkgdesc='A set of python non-GUI extensions for sK1 Project.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://sk1project.org/' license=('custom:LGPL2') depends=('python2' 'freetype2' 'lcms') diff --git a/community/skrooge/PKGBUILD b/community/skrooge/PKGBUILD index 04cdef219..3136ef51f 100644 --- a/community/skrooge/PKGBUILD +++ b/community/skrooge/PKGBUILD @@ -8,7 +8,7 @@ pkgname=skrooge pkgver=1.0.0 pkgrel=1 pkgdesc="A personal finances manager for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://skrooge.org/" license=('GPL') depends=('kdebase-runtime' 'libofx' 'qca-ossl') diff --git a/community/sleuthkit/PKGBUILD b/community/sleuthkit/PKGBUILD index 7ee4b11e7..5eb29e6a9 100644 --- a/community/sleuthkit/PKGBUILD +++ b/community/sleuthkit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sleuthkit pkgver=3.2.3 pkgrel=1 pkgdesc='File system and media management forensic analysis tools' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.sleuthkit.org/sleuthkit' license=('GPL2' 'CPL' 'custom:"IBM Public Licence"') depends=('perl') diff --git a/community/slimevolley/PKGBUILD b/community/slimevolley/PKGBUILD index 0259f974e..9f49ec6bb 100644 --- a/community/slimevolley/PKGBUILD +++ b/community/slimevolley/PKGBUILD @@ -6,7 +6,7 @@ pkgname=slimevolley pkgver=2.4.2 pkgrel=1 pkgdesc="A simple yet fun arcade volley game" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://slime.tuxfamily.org/index.php" license=('GPL') depends=('sdl_net' 'sdl_ttf' 'sdl_image') diff --git a/community/sloccount/PKGBUILD b/community/sloccount/PKGBUILD index 268e4d74b..93a967095 100644 --- a/community/sloccount/PKGBUILD +++ b/community/sloccount/PKGBUILD @@ -10,7 +10,7 @@ pkgdesc="Tools for counting physical source lines of code" url="http://www.dwheeler.com/sloccount/" license=('GPL') depends=('perl') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=(http://www.dwheeler.com/${pkgname}/${pkgname}-${pkgver}.tar.gz) md5sums=('09abd6e2a016ebaf7552068a1dba1249') diff --git a/community/slock/PKGBUILD b/community/slock/PKGBUILD index 94d990dd0..9402c6a6d 100644 --- a/community/slock/PKGBUILD +++ b/community/slock/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 34365 2010-12-06 15:14:05Z bluewind $ +# $Id$ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Sebastian A. Liem <sebastian at liem dot se> @@ -8,13 +8,13 @@ pkgver=0.9 _pkgver="4d3769ac5d02" pkgrel=6 pkgdesc="A simple screen locker for X" -arch=('i686' 'x86_64') +arch=('mips64el' 'i686' 'x86_64') url="http://tools.suckless.org/slock" license=('MIT') depends=('libxext') #http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz -source=("slock-$pkgver.tar.bz2::http://hg.suckless.org/slock/archive/$_pkgver.tar.bz2") -md5sums=('81ca629668cc81f41022fbd094bee3ee') +source=("slock-$pkgver.tar.bz2::http://hg.suckless.org/slock/archive/$_pkgver.tar.gz") +md5sums=('3776b5a8abd64b97aa4f969f3ad3da31') build() { cd "$srcdir/slock-$_pkgver" diff --git a/community/slrn/PKGBUILD b/community/slrn/PKGBUILD index 907711e16..0cfad4b25 100644 --- a/community/slrn/PKGBUILD +++ b/community/slrn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=slrn pkgver=0.9.9p1 pkgrel=6 pkgdesc="An open source text-based news client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.slrn.org/" license=('GPL') depends=('openssl' 'slang') diff --git a/community/smalltalk/PKGBUILD b/community/smalltalk/PKGBUILD index 6efbe0334..0c96a1a2f 100644 --- a/community/smalltalk/PKGBUILD +++ b/community/smalltalk/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=2 pkgdesc='A free implementation of Smalltalk-80 by the GNU project' url='http://smalltalk.gnu.org/' license=('GPL' 'LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!libtool') depends=('gmp' 'libffi' 'libsigsegv' 'readline') diff --git a/community/smbnetfs/PKGBUILD b/community/smbnetfs/PKGBUILD index d03000d33..94c8f7be9 100644 --- a/community/smbnetfs/PKGBUILD +++ b/community/smbnetfs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=smbnetfs pkgver=0.5.3a pkgrel=3 pkgdesc="small C program that mounts Microsoft network neighborhood in single directory." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://smbnetfs.sourceforge.net/" license=('GPL') depends=('fuse' 'smbclient') diff --git a/community/smc/PKGBUILD b/community/smc/PKGBUILD index f96d771bf..a78f04172 100644 --- a/community/smc/PKGBUILD +++ b/community/smc/PKGBUILD @@ -7,7 +7,7 @@ pkgname=smc pkgver=1.9 pkgrel=12 pkgdesc="Secret Maryo Chronicles" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.secretmaryo.org/" license=('GPL3') depends=('sdl_image' 'sdl_ttf' 'sdl_mixer' 'cegui' 'boost-libs' 'smc-data') diff --git a/community/smem/PKGBUILD b/community/smem/PKGBUILD index ee5f99ff4..b8bbcba5a 100644 --- a/community/smem/PKGBUILD +++ b/community/smem/PKGBUILD @@ -11,7 +11,7 @@ url="http://www.selenic.com/smem/" license=("GPL") depends=('python2') optdepends=('python-matplotlib: for chart generation') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=("http://www.selenic.com/smem/download/${pkgname}-${pkgver}.tar.gz") md5sums=('5620f20cae4d4f0e8eb33bdc2736b0f3') diff --git a/community/sniffit/PKGBUILD b/community/sniffit/PKGBUILD index 56fca9456..cf9ef1e77 100644 --- a/community/sniffit/PKGBUILD +++ b/community/sniffit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sniffit pkgver=0.3.7.beta pkgrel=10 pkgdesc="very good packet sniffer for unix with ncurses interactive mode." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://packages.ubuntu.com/source/sniffit" #seems the website are out, ubuntu have all sources #url=http://reptile.rug.ac.be/~coder/sniffit/sniffit.html" diff --git a/community/snort/PKGBUILD b/community/snort/PKGBUILD index e20205c58..b92bcc3cf 100644 --- a/community/snort/PKGBUILD +++ b/community/snort/PKGBUILD @@ -9,7 +9,7 @@ pkgname=snort pkgver=2.9.1.2 pkgrel=1 pkgdesc='A lightweight network intrusion detection system.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.snort.org' license=('GPL') depends=('libdaq' 'libdnet' 'libpcap' 'pcre' 'zlib') diff --git a/community/snownews/PKGBUILD b/community/snownews/PKGBUILD index 1f7619dff..a6bbb6222 100644 --- a/community/snownews/PKGBUILD +++ b/community/snownews/PKGBUILD @@ -6,7 +6,7 @@ pkgname=snownews pkgver=1.5.12 pkgrel=4 pkgdesc="Text mode RSS newsreader for Linux and Unix." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://kiza.kcore.de/software/snownews/" license=('GPL') depends=('libxml2' 'ncurses' 'perl-xml-libxml' 'perl-xml-libxslt' 'openssl') diff --git a/community/soil/PKGBUILD b/community/soil/PKGBUILD index ce0fae6b5..8d7e48609 100644 --- a/community/soil/PKGBUILD +++ b/community/soil/PKGBUILD @@ -5,7 +5,7 @@ pkgname=soil pkgver=0708 pkgrel=1 pkgdesc="tiny C lib primarily for loading textures into OpenGL" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lonesock.net/soil.html" license=('public') makedepends=('unzip') diff --git a/community/solfege/PKGBUILD b/community/solfege/PKGBUILD index 4ae1a450f..fe0e9511f 100644 --- a/community/solfege/PKGBUILD +++ b/community/solfege/PKGBUILD @@ -9,7 +9,7 @@ pkgname=solfege pkgver=3.20.4 pkgrel=1 pkgdesc="Music education and ear training software" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.solfege.org/" license=('GPL3') depends=('pygtk' 'libgtkhtml') diff --git a/community/soundkonverter/PKGBUILD b/community/soundkonverter/PKGBUILD index 16126aa59..2c47900ca 100644 --- a/community/soundkonverter/PKGBUILD +++ b/community/soundkonverter/PKGBUILD @@ -7,7 +7,7 @@ pkgname=soundkonverter pkgver=1.0.0 pkgrel=1 pkgdesc="Front-end to various audio converters" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde-apps.org/content/show.php?content=29024" license=('GPL') depends=('kdemultimedia-kioslave' 'taglib') diff --git a/community/spawn-fcgi/PKGBUILD b/community/spawn-fcgi/PKGBUILD index 6b20d17c9..4bbf779d9 100644 --- a/community/spawn-fcgi/PKGBUILD +++ b/community/spawn-fcgi/PKGBUILD @@ -7,7 +7,7 @@ pkgname=spawn-fcgi pkgver=1.6.3 pkgrel=2 pkgdesc='A FastCGI process manager for web applications' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://redmine.lighttpd.net/projects/spawn-fcgi/' license=('BSD') depends=('glibc') diff --git a/community/speed-dreams/PKGBUILD b/community/speed-dreams/PKGBUILD index 990763d56..1532b9514 100644 --- a/community/speed-dreams/PKGBUILD +++ b/community/speed-dreams/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2.0.0b1 _pkgver=2.0.0-b1-r3937 pkgrel=1 pkgdesc="A racing simulator with rich graphics and physics" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://speed-dreams.sourceforge.net/" license=('GPL2') depends=('sdl' 'freealut' 'freeglut' 'libpng' 'libxi' 'libxmu' 'libxrandr' 'plib>=1.8.3' 'libjpeg' 'zlib' 'enet' 'speed-dreams-data') diff --git a/community/splint/PKGBUILD b/community/splint/PKGBUILD index f6559ab07..bc31421a9 100644 --- a/community/splint/PKGBUILD +++ b/community/splint/PKGBUILD @@ -6,7 +6,7 @@ pkgname=splint pkgver=3.1.2 pkgrel=3 pkgdesc="A tool for statically checking C programs for security vulnerabilities and coding mistakes" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.splint.org/" license=('GPL') depends=('glibc') diff --git a/community/splix/PKGBUILD b/community/splix/PKGBUILD index 746a1a2d9..e2962a372 100644 --- a/community/splix/PKGBUILD +++ b/community/splix/PKGBUILD @@ -7,7 +7,7 @@ pkgname=splix pkgver=2.0.0 pkgrel=10 pkgdesc="CUPS drivers for SPL (Samsung Printer Language) printers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://splix.ap2c.org/" license=('GPL') depends=('libcups' 'gcc-libs' 'ghostscript>=9.02') diff --git a/community/spring/PKGBUILD b/community/spring/PKGBUILD index 2641d1f8f..940681ffd 100644 --- a/community/spring/PKGBUILD +++ b/community/spring/PKGBUILD @@ -7,7 +7,7 @@ pkgname=spring pkgver=0.82.7.1 pkgrel=7 pkgdesc='A free 3D real-time-strategy (RTS) game engine' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://springrts.com/" license=('GPL') depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis') diff --git a/community/springlobby/PKGBUILD b/community/springlobby/PKGBUILD index f79b489ef..7e7177ef7 100644 --- a/community/springlobby/PKGBUILD +++ b/community/springlobby/PKGBUILD @@ -6,7 +6,7 @@ pkgname=springlobby pkgver=0.139 pkgrel=1 pkgdesc="A free cross-platform lobby client for the Spring RTS project." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://springlobby.info/" license=('GPL2') depends=('wxgtk' 'curl' 'libtorrent-rasterbar' 'boost-libs') diff --git a/community/sqlite2/PKGBUILD b/community/sqlite2/PKGBUILD index 0f8ff8f22..b5d55b427 100644 --- a/community/sqlite2/PKGBUILD +++ b/community/sqlite2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sqlite2 pkgver=2.8.17 pkgrel=4 pkgdesc="A C library that implements an SQL database engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.sqlite.org/" depends=('readline>=6.0.00') source=(http://www.sqlite.org/sqlite-$pkgver.tar.gz 'LICENSE') diff --git a/community/sqlitebrowser/PKGBUILD b/community/sqlitebrowser/PKGBUILD index e5a3a5a39..24da0bf9e 100644 --- a/community/sqlitebrowser/PKGBUILD +++ b/community/sqlitebrowser/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.0b1 _pkgrealver=200_b1 pkgrel=1 pkgdesc="SQLite Database browser is a light GUI editor for SQLite databases, built on top of QT" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sqlitebrowser.sf.net" license=('GPL') depends=('qt') diff --git a/community/sqliteman/PKGBUILD b/community/sqliteman/PKGBUILD index 620e86ab8..04cd74807 100644 --- a/community/sqliteman/PKGBUILD +++ b/community/sqliteman/PKGBUILD @@ -8,7 +8,7 @@ pkgname=sqliteman pkgver=1.2.2 pkgrel=4 pkgdesc="The best developer's and/or admin's GUI tool for Sqlite3 in the world" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sqliteman.sf.net" license=('GPL') depends=('qt' 'qscintilla') diff --git a/community/squashfs-tools/PKGBUILD b/community/squashfs-tools/PKGBUILD index 5ca67f8ca..5ee766ced 100644 --- a/community/squashfs-tools/PKGBUILD +++ b/community/squashfs-tools/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=1 pkgdesc="Tools for squashfs, a highly compressed read-only filesystem for Linux." url="http://squashfs.sourceforge.net" license=("GPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('zlib' 'lzo2' 'xz') source=("http://downloads.sourceforge.net/sourceforge/squashfs/squashfs${pkgver}.tar.gz") md5sums=('1b7a781fb4cf8938842279bd3e8ee852') diff --git a/community/sshguard/PKGBUILD b/community/sshguard/PKGBUILD index 0de299933..405321d03 100644 --- a/community/sshguard/PKGBUILD +++ b/community/sshguard/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sshguard pkgver=1.5 pkgrel=3 pkgdesc="brute force detector for SSH, Exim, VSFTPD and more. Blocks by ip with iptables" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') #url="http://sourceforge.net/projects/sshguard/" url="http://www.sshguard.net/" license=('GPL') diff --git a/community/stalonetray/PKGBUILD b/community/stalonetray/PKGBUILD index a55e8abeb..51a4eaf95 100644 --- a/community/stalonetray/PKGBUILD +++ b/community/stalonetray/PKGBUILD @@ -5,7 +5,7 @@ pkgname=stalonetray pkgver=0.8.1 pkgrel=1 pkgdesc="STAnd-aLONE sysTRAY. It has minimal build and run-time dependencies: the Xlib only." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://stalonetray.sourceforge.net" license=('GPL') depends=('libx11' 'libxpm') diff --git a/community/steghide/PKGBUILD b/community/steghide/PKGBUILD index 4eb872e74..26e76cdbd 100644 --- a/community/steghide/PKGBUILD +++ b/community/steghide/PKGBUILD @@ -7,7 +7,7 @@ pkgname=steghide pkgver=0.5.1 pkgrel=5 pkgdesc='Embeds a message in a file by replacing some of the least significant bits.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://steghide.sourceforge.net' license=('GPL') depends=('libmcrypt' 'mhash' 'gcc' 'libjpeg' 'zlib' 'libtool') diff --git a/community/stfl/PKGBUILD b/community/stfl/PKGBUILD index c972edb2d..2bf1dda14 100644 --- a/community/stfl/PKGBUILD +++ b/community/stfl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=stfl pkgver=0.21 pkgrel=3 pkgdesc="Library implementing a curses-based widget set for text terminals" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://clifford.at/stfl/" license=('GPL3') depends=('ncurses') diff --git a/community/stk/PKGBUILD b/community/stk/PKGBUILD index 353f5cb1e..ea4e904e3 100644 --- a/community/stk/PKGBUILD +++ b/community/stk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=stk pkgver=4.4.2 pkgrel=5 pkgdesc="The Synthesis ToolKit in C++" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ccrma.stanford.edu/software/stk/" license=('MIT') depends=('gcc-libs' 'jack') diff --git a/community/stone-soup/PKGBUILD b/community/stone-soup/PKGBUILD index 54fc98c25..6f906779a 100644 --- a/community/stone-soup/PKGBUILD +++ b/community/stone-soup/PKGBUILD @@ -4,7 +4,7 @@ pkgname=stone-soup pkgver=0.9.1 pkgrel=1 pkgdesc='An open-source, single-player, role-playing roguelike game of exploration and treasure-hunting' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://crawl.develz.org/' depends=('lua' 'ncurses' 'sdl_image' 'sqlite3' 'libgl' 'mesa' 'freetype2') makedepends=('bison' 'flex') diff --git a/community/stormbaancoureur/PKGBUILD b/community/stormbaancoureur/PKGBUILD index 484d4371f..e3b15df2c 100644 --- a/community/stormbaancoureur/PKGBUILD +++ b/community/stormbaancoureur/PKGBUILD @@ -7,7 +7,7 @@ pkgname=stormbaancoureur pkgver=2.1.6 pkgrel=1 pkgdesc="Arcade-style car game based on physics" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.stolk.org/stormbaancoureur/" license=('GPL') depends=('freeglut' 'alsa-lib') diff --git a/community/stress/PKGBUILD b/community/stress/PKGBUILD index c755912fd..7c6340f2f 100644 --- a/community/stress/PKGBUILD +++ b/community/stress/PKGBUILD @@ -6,7 +6,7 @@ pkgname=stress pkgver=1.0.4 pkgrel=2 pkgdesc="A tool that stress tests your system (CPU, memory, I/O, disks)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://weather.ou.edu/~apw/projects/stress/" license=('GPL') options=('!emptydirs') diff --git a/community/stunnel/PKGBUILD b/community/stunnel/PKGBUILD index 15530d4dc..e3ed3f61e 100644 --- a/community/stunnel/PKGBUILD +++ b/community/stunnel/PKGBUILD @@ -7,7 +7,7 @@ pkgname=stunnel pkgver=4.45 pkgrel=1 pkgdesc="A program that allows you to encrypt arbitrary TCP connections inside SSL" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.stunnel.org" license=('GPL') depends=('openssl') diff --git a/community/subtitleeditor/PKGBUILD b/community/subtitleeditor/PKGBUILD index 17580677f..e0d167b0d 100644 --- a/community/subtitleeditor/PKGBUILD +++ b/community/subtitleeditor/PKGBUILD @@ -5,7 +5,7 @@ pkgname=subtitleeditor pkgver=0.39.0 pkgrel=1 pkgdesc="A GTK+2 tool to edit subtitles for GNU/Linux/*BSD" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://home.gna.org/subtitleeditor/" license=('GPL3') depends=('enchant' 'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'gstreamermm' 'gtk2' 'gtkmm' 'hicolor-icon-theme' 'libsigc++' 'libxml++' 'xdg-utils') diff --git a/community/subtle/PKGBUILD b/community/subtle/PKGBUILD index 84e963398..60d53fe11 100644 --- a/community/subtle/PKGBUILD +++ b/community/subtle/PKGBUILD @@ -6,7 +6,7 @@ pkgname=subtle pkgver=0.10.3008 pkgrel=1 pkgdesc="A grid-based manual tiling window manager with a strong focus on easy but customizable look and feel" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://subtle.subforge.org" license=("GPL") depends=("libx11" "ruby") diff --git a/community/sunpinyin/PKGBUILD b/community/sunpinyin/PKGBUILD index 55c909ffe..28943e362 100644 --- a/community/sunpinyin/PKGBUILD +++ b/community/sunpinyin/PKGBUILD @@ -4,7 +4,7 @@ pkgname=sunpinyin pkgver=2.0.3 pkgrel=1 pkgdesc='SunPinYin is a Statistical Language Model based pinyin IME by Sun.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://sunpinyin.googlecode.com' license=('LGPL') makedepends=('scons') diff --git a/community/superswitcher/PKGBUILD b/community/superswitcher/PKGBUILD index e085e303c..a265ffac3 100644 --- a/community/superswitcher/PKGBUILD +++ b/community/superswitcher/PKGBUILD @@ -6,7 +6,7 @@ pkgname=superswitcher pkgver=0.6 pkgrel=3 pkgdesc='Powerful window and workspace switching using the Super key' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://code.google.com/p/superswitcher/' license=('GPL') depends=('gconf' 'libwnck' 'dbus-glib') diff --git a/community/supertux/PKGBUILD b/community/supertux/PKGBUILD index 60606f57c..563f2e415 100644 --- a/community/supertux/PKGBUILD +++ b/community/supertux/PKGBUILD @@ -7,7 +7,7 @@ pkgname=supertux pkgver=0.3.3 pkgrel=4 pkgdesc="A classic 2D jump'n run sidescroller game in a style similar to the original SuperMario games" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://super-tux.sourceforge.net/" license=('GPL') depends=('sdl_image' 'curl' 'physfs' 'openal' 'libvorbis' 'libgl' 'glew') diff --git a/community/supertuxkart/PKGBUILD b/community/supertuxkart/PKGBUILD index 0cbd840c7..dcb29d348 100644 --- a/community/supertuxkart/PKGBUILD +++ b/community/supertuxkart/PKGBUILD @@ -8,7 +8,7 @@ pkgname=supertuxkart pkgver=0.7 pkgrel=1 pkgdesc="A kart racing game featuring Tux and his friends" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://supertuxkart.sourceforge.net/" license=('GPL2') depends=('irrlicht' 'openal' 'libvorbis') diff --git a/community/surf/PKGBUILD b/community/surf/PKGBUILD index 9929db995..d6f3420e6 100644 --- a/community/surf/PKGBUILD +++ b/community/surf/PKGBUILD @@ -8,7 +8,7 @@ pkgname=surf pkgver=0.4.1 pkgrel=3 pkgdesc="A simple web browser based on WebKit/GTK+." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://surf.suckless.org/' license=('MIT') depends=('libwebkit' 'xorg-xprop') diff --git a/community/swarp/PKGBUILD b/community/swarp/PKGBUILD index 31cf3ca96..c11c1cd76 100644 --- a/community/swarp/PKGBUILD +++ b/community/swarp/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.1 pkgrel=2 pkgdesc="Simple pointer warp" license=('MIT') -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://tools.suckless.org/" depends=(glibc libx11) source=(http://dl.suckless.org/tools/swarp-$pkgver.tar.gz diff --git a/community/swftools/PKGBUILD b/community/swftools/PKGBUILD index 061a58fb1..5dbf41f29 100644 --- a/community/swftools/PKGBUILD +++ b/community/swftools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=swftools pkgver=0.9.1 pkgrel=1 pkgdesc="A collection of SWF manipulation and creation utilities" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.swftools.org/" license=('GPL') depends=('avifile' 'giflib' 'freeglut' 'lame' 't1lib' 'libjpeg' 'fontconfig') diff --git a/community/swi-prolog/PKGBUILD b/community/swi-prolog/PKGBUILD index 86646aa3b..1d2ca3fb0 100644 --- a/community/swi-prolog/PKGBUILD +++ b/community/swi-prolog/PKGBUILD @@ -6,7 +6,7 @@ pkgname=swi-prolog pkgver=5.10.5 pkgrel=1 pkgdesc='Prolog environment' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.swi-prolog.org/' license=('GPL' 'LGPL') depends=('gmp' 'readline' 'openssl') diff --git a/community/sword/PKGBUILD b/community/sword/PKGBUILD index e79d84f26..3908c9d5d 100644 --- a/community/sword/PKGBUILD +++ b/community/sword/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sword pkgver=1.6.2 pkgrel=5 pkgdesc="Libraries for Bible programs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.crosswire.org/sword/index.jsp" license=('GPL') depends=('curl' 'clucene' 'swig') diff --git a/community/sxiv/PKGBUILD b/community/sxiv/PKGBUILD index 0235cbcef..98e4f2380 100644 --- a/community/sxiv/PKGBUILD +++ b/community/sxiv/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sxiv pkgver=0.9 pkgrel=1 pkgdesc='simple x image viewer' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') install=('sxiv.install') url='https://github.com/muennich/sxiv' diff --git a/community/synce-libmimedir/PKGBUILD b/community/synce-libmimedir/PKGBUILD index fd928a779..323f3c742 100644 --- a/community/synce-libmimedir/PKGBUILD +++ b/community/synce-libmimedir/PKGBUILD @@ -6,7 +6,7 @@ pkgname=synce-libmimedir pkgver=0.4 pkgrel=3 pkgdesc="provide a means of communication with a Windows CE device - library that parses MIME Directory Profile." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://synce.sourceforge.net/" license=('GPL') source=(http://downloads.sourceforge.net/sourceforge/synce/libmimedir-$pkgver.tar.gz) diff --git a/community/synce-librapi/PKGBUILD b/community/synce-librapi/PKGBUILD index 85a2e946f..b8c8123c0 100644 --- a/community/synce-librapi/PKGBUILD +++ b/community/synce-librapi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=synce-librapi pkgver=0.15.2 pkgrel=2 pkgdesc="provide a means of communication with a Windows CE device - libraries and tools for making remote calls to pocket pc" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://synce.sourceforge.net/" license=('GPL') depends=('synce-libsynce') diff --git a/community/synce-libsynce/PKGBUILD b/community/synce-libsynce/PKGBUILD index d0fb0be38..1329374b6 100644 --- a/community/synce-libsynce/PKGBUILD +++ b/community/synce-libsynce/PKGBUILD @@ -6,7 +6,7 @@ pkgname=synce-libsynce pkgver=0.15.1 pkgrel=2 pkgdesc="provide a means of communication with a Windows CE device - libraries" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://synce.sourceforge.net/" license=('GPL') depends=('dbus-glib') diff --git a/community/synce-rra/PKGBUILD b/community/synce-rra/PKGBUILD index 0a305f882..aad00d2a7 100644 --- a/community/synce-rra/PKGBUILD +++ b/community/synce-rra/PKGBUILD @@ -6,7 +6,7 @@ pkgname=synce-rra pkgver=0.14 pkgrel=4 pkgdesc="provide a means of communication with a Windows CE device - rra libraries for synce" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://synce.sourceforge.net/" license=('GPL') depends=('glibc' 'synce-librapi' 'synce-libmimedir') diff --git a/community/synce-serial/PKGBUILD b/community/synce-serial/PKGBUILD index 56375e689..4d08a823d 100644 --- a/community/synce-serial/PKGBUILD +++ b/community/synce-serial/PKGBUILD @@ -6,7 +6,7 @@ pkgname=synce-serial pkgver=0.11 pkgrel=3 pkgdesc="provide a means of communication with a Windows CE device - helper scripts for setting up a serial connection" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://synce.sourceforge.net/" depends=(sh) license=('GPL') diff --git a/community/synce-vdccm/PKGBUILD b/community/synce-vdccm/PKGBUILD index 384394e78..d2e7c3d0b 100644 --- a/community/synce-vdccm/PKGBUILD +++ b/community/synce-vdccm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=synce-vdccm pkgver=0.10.1 pkgrel=3 pkgdesc="provide a means of communication with a Windows CE device - daemon to communicate with a handheld device" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://synce.sourceforge.net/" license=('GPL') depends=('synce-libsynce') diff --git a/community/synergy/PKGBUILD b/community/synergy/PKGBUILD index e23adadc2..c03f1d511 100644 --- a/community/synergy/PKGBUILD +++ b/community/synergy/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.3.8 pkgrel=1 pkgdesc="Share a single mouse and keyboard between multiple computers" url="http://synergy-foss.org" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gcc-libs' 'libxtst' 'libxinerama' ) license=('GPL2') makedepends=('libxt' 'cmake') # used by configure to test for libx11... diff --git a/community/synfig/PKGBUILD b/community/synfig/PKGBUILD index d720c5fa5..f6fe18c2e 100644 --- a/community/synfig/PKGBUILD +++ b/community/synfig/PKGBUILD @@ -6,7 +6,7 @@ pkgname=synfig pkgver=0.63.02 pkgrel=1 pkgdesc="Professional vector animation program (CLI renderer only)" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://synfig.org" license=('GPL2') depends=('libxml++' 'libsigc++2.0' 'etl' 'imagemagick' 'ffmpeg' 'fontconfig' 'libpng' diff --git a/community/synfigstudio/PKGBUILD b/community/synfigstudio/PKGBUILD index cd9990a7d..5b0919d8e 100644 --- a/community/synfigstudio/PKGBUILD +++ b/community/synfigstudio/PKGBUILD @@ -6,7 +6,7 @@ pkgname=synfigstudio pkgver=0.63.02 pkgrel=1 pkgdesc="Professional vector animation program (GUI)" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://synfig.org" license=('GPL2') depends=('gtkmm' 'synfig') diff --git a/community/sysprof/PKGBUILD b/community/sysprof/PKGBUILD index 697cdc142..65072e103 100644 --- a/community/sysprof/PKGBUILD +++ b/community/sysprof/PKGBUILD @@ -8,7 +8,7 @@ pkgname=sysprof pkgver=1.1.8 pkgrel=1 pkgdesc="A sampling CPU profiler that uses a Linux kernel module to profile the entire system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.daimi.au.dk/~sandmann/sysprof/" license=("GPL") source=(http://www.daimi.au.dk/~sandmann/$pkgname/$pkgname-$pkgver.tar.gz) diff --git a/community/sysstat/PKGBUILD b/community/sysstat/PKGBUILD index 6655b0948..1d252b3d1 100644 --- a/community/sysstat/PKGBUILD +++ b/community/sysstat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sysstat pkgver=10.0.1 pkgrel=2 pkgdesc="a collection of performance monitoring tools (iostat,isag,mpstat,pidstat,sadf,sar)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pagesperso-orange.fr/sebastien.godard/" license=('GPL') depends=('lm_sensors') diff --git a/community/systemd/PKGBUILD b/community/systemd/PKGBUILD index 8fe770e58..33ea277bb 100644 --- a/community/systemd/PKGBUILD +++ b/community/systemd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=systemd pkgver=37 pkgrel=1 pkgdesc="Session and Startup manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.freedesktop.org/wiki/Software/systemd" license=('GPL2') depends=('dbus-core' 'kbd' 'libcap' 'util-linux>=2.19' 'udev>=172') diff --git a/community/t1utils/PKGBUILD b/community/t1utils/PKGBUILD index 73d8e0204..9d23ff14d 100644 --- a/community/t1utils/PKGBUILD +++ b/community/t1utils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=t1utils pkgver=1.36 pkgrel=1 pkgdesc="A collection of simple Type 1 font manipulation programs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lcdf.org/~eddietwo/type/#t1utils" license=("custom") depends=('glibc') diff --git a/community/tabbed/PKGBUILD b/community/tabbed/PKGBUILD index aa0c1f369..142c68a81 100644 --- a/community/tabbed/PKGBUILD +++ b/community/tabbed/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tabbed pkgver=0.3 pkgrel=2 pkgdesc='Simple generic tabbed fronted to xembed aware applications.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://tools.suckless.org/tabbed' license=('custom:MIT/X') depends=('libx11') diff --git a/community/taglib-rcc/PKGBUILD b/community/taglib-rcc/PKGBUILD index b79180cd3..ed93be7ab 100644 --- a/community/taglib-rcc/PKGBUILD +++ b/community/taglib-rcc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=taglib-rcc pkgver=1.6.3 pkgrel=1 pkgdesc="taglib with librcc patch" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ktown.kde.org/~wheeler/taglib.html" depends=('gcc-libs' 'zlib' 'bash' libxml2 db librcc) makedepends=(patch) diff --git a/community/tagpy/PKGBUILD b/community/tagpy/PKGBUILD index 7b26e83da..c6871ac03 100644 --- a/community/tagpy/PKGBUILD +++ b/community/tagpy/PKGBUILD @@ -7,7 +7,7 @@ pkgname=tagpy pkgver=0.94.8 pkgrel=5 pkgdesc="Python bindings for TagLib" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pypi.python.org/pypi/tagpy" license=('MIT') depends=('python2' 'taglib' 'boost-libs') diff --git a/community/tagtool/PKGBUILD b/community/tagtool/PKGBUILD index d5fd741c6..08088d1d8 100644 --- a/community/tagtool/PKGBUILD +++ b/community/tagtool/PKGBUILD @@ -7,7 +7,7 @@ pkgname=tagtool pkgver=0.12.3 pkgrel=6 pkgdesc="Tool to edit tags in MP3 and Ogg Vorbis files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://downloads.sourceforge.net/sourceforge/$pkgname" license=('GPL') depends=('hicolor-icon-theme' 'libglade' 'id3lib' 'libvorbis' 'gconf') diff --git a/community/task/PKGBUILD b/community/task/PKGBUILD index afb1493ee..3e007656d 100644 --- a/community/task/PKGBUILD +++ b/community/task/PKGBUILD @@ -8,7 +8,7 @@ pkgname=task pkgver=1.9.4 pkgrel=2 pkgdesc="A command-line todo list manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://taskwarrior.org/projects/show/taskwarrior/" license=('GPL') depends=() diff --git a/community/tasks/PKGBUILD b/community/tasks/PKGBUILD index 3204bd603..78246e1f2 100644 --- a/community/tasks/PKGBUILD +++ b/community/tasks/PKGBUILD @@ -7,7 +7,7 @@ pkgname=tasks pkgver=0.19 pkgrel=2 pkgdesc="A simple to do list application that uses libecal" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://pimlico-project.org/tasks.html" license=('GPL') depends=('evolution-data-server>=3.2.0' 'xdg-utils' 'gtk2') diff --git a/community/tcpflow/PKGBUILD b/community/tcpflow/PKGBUILD index cf8bbbf33..f2d674ea2 100644 --- a/community/tcpflow/PKGBUILD +++ b/community/tcpflow/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tcpflow pkgver=0.21 pkgrel=4 pkgdesc="Captures data transmitted as part of TCP connections then stores the data conveniently" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.circlemud.org/~jelson/software/tcpflow/" license=('GPL') depends=('libpcap') diff --git a/community/tcsh/PKGBUILD b/community/tcsh/PKGBUILD index a1ac07f5b..fda586748 100644 --- a/community/tcsh/PKGBUILD +++ b/community/tcsh/PKGBUILD @@ -7,7 +7,7 @@ pkgname=tcsh pkgver=6.17.00 pkgrel=4 pkgdesc='Enhanced version of the Berkeley C shell.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.tcsh.org/Welcome' license=('BSD') depends=('ncurses') diff --git a/community/tdfsb/PKGBUILD b/community/tdfsb/PKGBUILD index b1fbf25b3..63acbf48f 100644 --- a/community/tdfsb/PKGBUILD +++ b/community/tdfsb/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tdfsb pkgver=0.0.10 pkgrel=4 pkgdesc="SDL based graphical file browser" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.determinate.net/webdata/seg/tdfsb.html" license=('GPL') depends=('smpeg' 'freeglut' 'sdl_image' 'libxmu') diff --git a/community/tdl/PKGBUILD b/community/tdl/PKGBUILD index f848c12a9..326787a77 100644 --- a/community/tdl/PKGBUILD +++ b/community/tdl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tdl pkgver=1.5.2 pkgrel=4 pkgdesc="tdl is a to-do list manager." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.rc0.org.uk/tdl/" license=('GPL') depends=('ncurses') diff --git a/community/tea/PKGBUILD b/community/tea/PKGBUILD index bc653c3c8..6becdb293 100644 --- a/community/tea/PKGBUILD +++ b/community/tea/PKGBUILD @@ -9,7 +9,7 @@ pkgname=tea pkgver=31.0.0 pkgrel=1 pkgdesc="A QT-based text editor for Linux and *BSD. With an ultimate small size TEA provides you hundreds of functions." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://tea-editor.sourceforge.net/" license=('GPL') depends=('qt' 'aspell' 'hunspell') diff --git a/community/ted/PKGBUILD b/community/ted/PKGBUILD index 0a62bc597..f97ffc653 100644 --- a/community/ted/PKGBUILD +++ b/community/ted/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ted pkgver=2.21 pkgrel=2 pkgdesc="An easy rich text processor (with footnote support)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nllgg.nl/Ted/" depends=('bash' 'libtiff' 'libxmu' 'libxpm' 'libpng' 'gtk2') license=('GPL') diff --git a/community/teeworlds/PKGBUILD b/community/teeworlds/PKGBUILD index 4263f59c7..4c9f80ea9 100644 --- a/community/teeworlds/PKGBUILD +++ b/community/teeworlds/PKGBUILD @@ -9,7 +9,7 @@ pkgver=0.6.1 _bamver=0.4.0 pkgrel=1 pkgdesc="A multiplayer 2D shooter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://teeworlds.com" license=('custom') depends=('alsa-lib' 'mesa' 'sdl' 'freetype2') diff --git a/community/tellico/PKGBUILD b/community/tellico/PKGBUILD index 96a6e142f..0d7c36aa6 100644 --- a/community/tellico/PKGBUILD +++ b/community/tellico/PKGBUILD @@ -8,7 +8,7 @@ pkgname=tellico pkgver=2.3.4 pkgrel=1 pkgdesc="A collection manager for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://tellico-project.org/" license=('GPL') depends=('kdebase-workspace' 'yaz' 'exempi' 'libksane' 'taglib' diff --git a/community/terminator/PKGBUILD b/community/terminator/PKGBUILD index eaacd67d3..817bf2368 100644 --- a/community/terminator/PKGBUILD +++ b/community/terminator/PKGBUILD @@ -7,7 +7,7 @@ pkgname=terminator pkgver=0.96 pkgrel=1 pkgdesc='an application that provides lots of terminals in a single window' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.tenshu.net/terminator/' license=('GPL2') depends=('vte' 'pygtk' 'xdg-utils') diff --git a/community/tesseract/PKGBUILD b/community/tesseract/PKGBUILD index 11fd3b848..b75561d87 100644 --- a/community/tesseract/PKGBUILD +++ b/community/tesseract/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tesseract pkgver=3.01 pkgrel=1 pkgdesc="An OCR programm" -arch=(x86_64 i686) +arch=(x86_64 i686 'mips64el') url="http://code.google.com/p/tesseract-ocr" license=("APACHE") depends=(libpng libtiff libjpeg zlib gcc-libs leptonica) diff --git a/community/texmaker/PKGBUILD b/community/texmaker/PKGBUILD index 362ddc191..66729ef29 100644 --- a/community/texmaker/PKGBUILD +++ b/community/texmaker/PKGBUILD @@ -8,7 +8,7 @@ pkgname=texmaker pkgver=3.1 pkgrel=1 pkgdesc='Free cross-platform latex editor' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xm1math.net/texmaker/index.html" license=('GPL') depends=('poppler-qt' 'ghostscript') diff --git a/community/texvc/PKGBUILD b/community/texvc/PKGBUILD index 13684c91b..0ec5e473c 100644 --- a/community/texvc/PKGBUILD +++ b/community/texvc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=texvc pkgver=1.17.0 pkgrel=1 pkgdesc="tex to HTML/MathML/png converter used by mediawiki" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.mediawiki.org/" license=("GPL") depends=('imagemagick' 'ghostscript' 'texlive-core' 'texlive-latexextra') diff --git a/community/tig/PKGBUILD b/community/tig/PKGBUILD index 87e5e4dd8..9a2b54b02 100644 --- a/community/tig/PKGBUILD +++ b/community/tig/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="Text-mode interface for git" depends=('git' 'ncurses') url="http://jonas.nitro.dk/tig/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=("http://jonas.nitro.dk/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz") md5sums=('4fa9e33c5daa76b6fed11e068405356f') diff --git a/community/tilda/PKGBUILD b/community/tilda/PKGBUILD index 7e58700e9..34658be55 100644 --- a/community/tilda/PKGBUILD +++ b/community/tilda/PKGBUILD @@ -7,7 +7,7 @@ pkgname=tilda pkgver=0.9.6 pkgrel=4 pkgdesc="Linux terminal based on classic terminals from first person shooter games" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://tilda.sourceforge.net" license=('GPL') depends=('vte' 'confuse' 'libglade') diff --git a/community/tint2/PKGBUILD b/community/tint2/PKGBUILD index cdafa8d73..c8562dd4b 100644 --- a/community/tint2/PKGBUILD +++ b/community/tint2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tint2 pkgver=0.11 pkgrel=4 pkgdesc="A basic, good-looking task manager for WMs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/tint2/" license=('GPL2') conflicts=('ttm-svn' 'tint') diff --git a/community/tinycdb/PKGBUILD b/community/tinycdb/PKGBUILD index a56b8dc9d..dd9bce78e 100644 --- a/community/tinycdb/PKGBUILD +++ b/community/tinycdb/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tinycdb pkgver=0.77 pkgrel=3 pkgdesc="very fast and simple package for creating and reading constant data bases" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.corpit.ru/mjt/tinycdb.html" license=("GPL") depends=(glibc) diff --git a/community/tinyproxy/PKGBUILD b/community/tinyproxy/PKGBUILD index f2ab10d98..4e165bf32 100644 --- a/community/tinyproxy/PKGBUILD +++ b/community/tinyproxy/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tinyproxy pkgver=1.8.3 pkgrel=1 pkgdesc='A light-weight HTTP proxy daemon for POSIX operating systems.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='https://banu.com/tinyproxy/' license=('GPL') makedepends=('asciidoc') diff --git a/community/tipp10/PKGBUILD b/community/tipp10/PKGBUILD index 43767818f..524c14522 100644 --- a/community/tipp10/PKGBUILD +++ b/community/tipp10/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tipp10 pkgver=2.1.0 pkgrel=3 pkgdesc="intelligent typing tutor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.tipp10.com/" license=('GPL2') depends=('qt>=4.2.2') diff --git a/community/tix/PKGBUILD b/community/tix/PKGBUILD index 6d7ed383d..684ed1441 100644 --- a/community/tix/PKGBUILD +++ b/community/tix/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tix pkgver=8.4.3 pkgrel=2 pkgdesc="Tk Interface eXtension, a powerful set of user interface components" -arch=(i686 'x86_64') +arch=(i686 'x86_64' 'mips64el') url="http://tix.sourceforge.net/" license=("BSD") depends=('tk' 'python' 'libx11') diff --git a/community/tksystray/PKGBUILD b/community/tksystray/PKGBUILD index 73c901237..8a1fa501e 100644 --- a/community/tksystray/PKGBUILD +++ b/community/tksystray/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tksystray pkgver=0.1 pkgrel=4 pkgdesc="tksystray is compatible with freedesktop.org standarts systray for Tk" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://tkabber.jabber.ru/tksystray" license=("GPL") depends=(tcl tk imlib) diff --git a/community/tktheme/PKGBUILD b/community/tktheme/PKGBUILD index 910ce9557..5f9a7a64b 100644 --- a/community/tktheme/PKGBUILD +++ b/community/tktheme/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tktheme pkgver=0.23 pkgrel=6 pkgdesc="A library to allow Tkabber docking in the system tray." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('tk' 'libxpm' 'libxmu') license=("GPL") source=(http://tkabber.jabber.ru/files/other/Tk_Theme-23.tgz) diff --git a/community/tls/PKGBUILD b/community/tls/PKGBUILD index 426ddcfd7..c604b4237 100644 --- a/community/tls/PKGBUILD +++ b/community/tls/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tls pkgver=1.6 pkgrel=3 pkgdesc="OpenSSL extension to Tcl" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://tls.sourceforge.net/" license=('GPL') depends=('tcl' 'openssl' 'awk') diff --git a/community/tmux/PKGBUILD b/community/tmux/PKGBUILD index c2c1efe37..c37dbd826 100644 --- a/community/tmux/PKGBUILD +++ b/community/tmux/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.5 pkgrel=1 pkgdesc="A terminal multiplexer" url="http://tmux.sourceforge.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('BSD') depends=('ncurses' 'libevent') source=(http://downloads.sourceforge.net/tmux/tmux-$pkgver.tar.gz diff --git a/community/tmw/PKGBUILD b/community/tmw/PKGBUILD index 53de9a0a3..fd1c65b13 100644 --- a/community/tmw/PKGBUILD +++ b/community/tmw/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tmw pkgver=0.5.2 pkgrel=1 pkgdesc="The Mana World (TMW) is a serious effort to create an innovative free and open source MMORPG." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://themanaworld.org" license=('GPL') depends=('curl' 'guichan' 'sdl_image' 'libgl' 'libxml2' 'physfs' diff --git a/community/tnef/PKGBUILD b/community/tnef/PKGBUILD index 86b319b14..e1e521a55 100644 --- a/community/tnef/PKGBUILD +++ b/community/tnef/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tnef pkgver=1.4.8 pkgrel=1 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') pkgdesc="Program which operates like tar to unpack the files inside an ms-tnef MIME attachment" url="http://sourceforge.net/projects/tnef/" license=('GPL') diff --git a/community/tnftp/PKGBUILD b/community/tnftp/PKGBUILD index 6ca660613..1dfa52704 100644 --- a/community/tnftp/PKGBUILD +++ b/community/tnftp/PKGBUILD @@ -7,7 +7,7 @@ pkgname=tnftp pkgver=20100108 pkgrel=2 pkgdesc="NetBSD FTP client with several advanced features" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/" license=('BSD') depends=('ncurses' 'dante') diff --git a/community/tomoyo-tools/PKGBUILD b/community/tomoyo-tools/PKGBUILD index d5a011512..051b568b4 100644 --- a/community/tomoyo-tools/PKGBUILD +++ b/community/tomoyo-tools/PKGBUILD @@ -8,7 +8,7 @@ _timestamp=20110929 pkgver=${_basever}.${_timestamp} pkgrel=1 pkgdesc='TOMOYO Linux 2.3.x userspace tools for Linux kernels 2.6.36 - 3.0' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://tomoyo.sourceforge.jp' #url='http://sourceforge.jp/projects/tomoyo/releases/?package_id=9818' license=('GPL') diff --git a/community/toolame/PKGBUILD b/community/toolame/PKGBUILD index 0f9fd76e3..b4ba3d230 100644 --- a/community/toolame/PKGBUILD +++ b/community/toolame/PKGBUILD @@ -7,7 +7,7 @@ pkgname=toolame pkgver=02l pkgrel=8 pkgdesc="An optimized mpeg 1/2 layer 2 audio encoder" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/toolame" license=('LGPL') depends=('glibc') diff --git a/community/tor/PKGBUILD b/community/tor/PKGBUILD index dad132874..61d53c4d6 100644 --- a/community/tor/PKGBUILD +++ b/community/tor/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tor pkgver=0.2.2.34 pkgrel=1 pkgdesc='Anonymizing overlay network.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.torproject.org/' license=('BSD') depends=('openssl' 'libevent' 'tsocks' 'bash') diff --git a/community/tora/PKGBUILD b/community/tora/PKGBUILD index de4385053..0bbdada6b 100644 --- a/community/tora/PKGBUILD +++ b/community/tora/PKGBUILD @@ -7,7 +7,7 @@ pkgname=tora pkgver=2.1.3 pkgrel=2 pkgdesc="Toolkit for databases with support for MySQL and PostgreSQL" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://tora.sourceforge.net" license=('GPL') depends=('qscintilla') diff --git a/community/torch/PKGBUILD b/community/torch/PKGBUILD index c9691a6f6..f7b5d89ce 100644 --- a/community/torch/PKGBUILD +++ b/community/torch/PKGBUILD @@ -5,7 +5,7 @@ pkgname=torch pkgver=3.1 pkgrel=2 pkgdesc="State of the art machine learning library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://packages.debian.org/source/lenny/torch3" license=('GPL') depends=(gcc-libs) diff --git a/community/torcs/PKGBUILD b/community/torcs/PKGBUILD index 99a01a51a..ea76e1c56 100644 --- a/community/torcs/PKGBUILD +++ b/community/torcs/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc="A 3D racing cars simulator using OpenGL" url="http://torcs.sourceforge.net" license=("GPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('freeglut' 'libpng' 'freealut' 'libxi' 'libxmu' 'libxrandr' 'torcs-data') makedepends=('plib') options=('!makeflags') diff --git a/community/transset-df/PKGBUILD b/community/transset-df/PKGBUILD index f5d373fa3..6839abcf0 100644 --- a/community/transset-df/PKGBUILD +++ b/community/transset-df/PKGBUILD @@ -6,7 +6,7 @@ pkgname=transset-df pkgver=6 pkgrel=3 pkgdesc="A patched version of X.Org's transset with added functionality." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://forchheimer.se/transset-df/' license=('GPL') depends=('libxcomposite' 'libxdamage' 'libxrender') diff --git a/community/trayion/PKGBUILD b/community/trayion/PKGBUILD index 693b2095c..365b18a9d 100644 --- a/community/trayion/PKGBUILD +++ b/community/trayion/PKGBUILD @@ -3,7 +3,7 @@ pkgver="0.1.2" pkgrel=1 pkgdesc="FreeDesktop trayicon area for Ion3" url="http://code.google.com/p/trayion" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') depends=('libx11') makedepends=('make') diff --git a/community/tre/PKGBUILD b/community/tre/PKGBUILD index b54263570..0e7ab68e5 100644 --- a/community/tre/PKGBUILD +++ b/community/tre/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tre pkgver=0.8.0 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="POSIX compliant regexp matching library. Includes agrep for aproximate grepping." url="http://laurikari.net/tre" depends=('glibc') diff --git a/community/tremulous/PKGBUILD b/community/tremulous/PKGBUILD index b26368a8b..4c76fcc71 100644 --- a/community/tremulous/PKGBUILD +++ b/community/tremulous/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=7 pkgdesc="A completely free online team based FPS/RTS hybrid game based on the ioquake3 engine." url="http://tremulous.net/" license=("GPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=("sdl" "openal>=1.7.411" "tremulous-data=$pkgver") makedepends=(subversion mesa) source=('tremulous.launcher' 'tremded.launcher' 'tremulous.desktop' 'tremulous.xpm' diff --git a/community/trickle/PKGBUILD b/community/trickle/PKGBUILD index 5b9844932..5560361cd 100644 --- a/community/trickle/PKGBUILD +++ b/community/trickle/PKGBUILD @@ -5,7 +5,7 @@ pkgname=trickle pkgver=1.07 pkgrel=5 pkgdesc="Trickle - lightweight userspace bandwidth shaper" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://monkey.org/~marius/trickle" license=('BSD') depends=("libevent") diff --git a/community/tucan/PKGBUILD b/community/tucan/PKGBUILD index 5dd2d1a95..8f4f3c81d 100644 --- a/community/tucan/PKGBUILD +++ b/community/tucan/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tucan pkgver=0.3.10 pkgrel=1 pkgdesc='Download and upload manager for hosting sites' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://tucaneando.com/index.html' license=('GPL3') depends=('python-imaging' 'python2' 'pygtk' 'tesseract' 'librsvg') diff --git a/community/tuxcards/PKGBUILD b/community/tuxcards/PKGBUILD index 929269c6e..2be7171be 100644 --- a/community/tuxcards/PKGBUILD +++ b/community/tuxcards/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tuxcards pkgver=2.2.1 pkgrel=1 pkgdesc="A hierarchical notebook to enter and manage notes and ideas in a structured manner" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.tuxcards.de" license=('GPL') depends=('qt') diff --git a/community/tuxcmd-modules/PKGBUILD b/community/tuxcmd-modules/PKGBUILD index ea811c041..e9cffb4cf 100644 --- a/community/tuxcmd-modules/PKGBUILD +++ b/community/tuxcmd-modules/PKGBUILD @@ -2,7 +2,7 @@ pkgname=tuxcmd-modules pkgver=0.6.70 pkgrel=1 pkgdesc='Modules for Tux Commander' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://tuxcmd.sourceforge.net/' license=('GPL') depends=('tuxcmd') diff --git a/community/tuxcmd/PKGBUILD b/community/tuxcmd/PKGBUILD index 488cddc44..4bb779b52 100644 --- a/community/tuxcmd/PKGBUILD +++ b/community/tuxcmd/PKGBUILD @@ -2,7 +2,7 @@ pkgname=tuxcmd pkgver=0.6.70 pkgrel=3 pkgdesc='A GTK2 file manager with two panels' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://tuxcmd.sourceforge.net/' license=('GPL') depends=('gtk2') diff --git a/community/tuxguitar/PKGBUILD b/community/tuxguitar/PKGBUILD index fc9c018b9..b455b089a 100644 --- a/community/tuxguitar/PKGBUILD +++ b/community/tuxguitar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tuxguitar pkgver=1.2 pkgrel=4 pkgdesc="multitrack guitar tablature editor and player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') #url="http://www.herac.com.ar/contenidos/tuxguitar.html" url="http://sourceforge.net/projects/tuxguitar" license=('LGPL') diff --git a/community/tuxpaint/PKGBUILD b/community/tuxpaint/PKGBUILD index 782eb0534..ec083254d 100644 --- a/community/tuxpaint/PKGBUILD +++ b/community/tuxpaint/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tuxpaint pkgver=0.9.21 pkgrel=4 pkgdesc="Tux Paint is a free drawing program designed for young children." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.tuxpaint.org" license=('GPL') backup=('etc/tuxpaint/tuxpaint.conf') diff --git a/community/tvision/PKGBUILD b/community/tvision/PKGBUILD index a07df4e45..0b89dcc1d 100644 --- a/community/tvision/PKGBUILD +++ b/community/tvision/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tvision pkgver=2.2.1_r1 pkgrel=2 pkgdesc="turbo vision library port (console interface)" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://tvision.sourceforge.net" license=("GPL") depends=(gpm gcc-libs libxmu) diff --git a/community/tvtime/PKGBUILD b/community/tvtime/PKGBUILD index 32ccec0c5..4ebef581a 100644 --- a/community/tvtime/PKGBUILD +++ b/community/tvtime/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tvtime pkgver=1.0.2 pkgrel=2 pkgdesc="A high quality television application for use with video capture cards" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://tvtime.sourceforge.net/' license=('GPL' 'LGPL') depends=('gcc-libs' 'libpng' 'libxml2' 'freetype2' 'libxtst' 'libxinerama' 'libxv' 'libsm' 'libxxf86vm') diff --git a/community/twin/PKGBUILD b/community/twin/PKGBUILD index 67cd4e1d6..53d5e7541 100644 --- a/community/twin/PKGBUILD +++ b/community/twin/PKGBUILD @@ -3,7 +3,7 @@ pkgname=twin pkgver=0.6.2 pkgrel=1 pkgdesc="A text-mode window environment" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://linuz.sns.it/~max/twin/" license=('GPL' 'LGPL') depends=('ncurses' 'gpm' 'zlib' 'libtool' 'libxpm') diff --git a/community/twinkle/PKGBUILD b/community/twinkle/PKGBUILD index bce91098e..0032df664 100644 --- a/community/twinkle/PKGBUILD +++ b/community/twinkle/PKGBUILD @@ -8,7 +8,7 @@ pkgname=twinkle pkgver=1.4.2 pkgrel=11 pkgdesc="A softphone for voice over IP and instant messaging communications using the SIP protocol" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.twinklephone.com/" license=('GPL') depends=('file' 'speex' 'boost-libs' 'libsndfile' 'commoncpp2' 'libxml2' 'libx11' diff --git a/community/typespeed/PKGBUILD b/community/typespeed/PKGBUILD index 8c574c877..461714d7a 100644 --- a/community/typespeed/PKGBUILD +++ b/community/typespeed/PKGBUILD @@ -4,7 +4,7 @@ pkgname=typespeed pkgver=0.6.5 pkgrel=3 pkgdesc="Test your typing speed, and get your fingers' CPS." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://typespeed.sourceforge.net" license=('GPL') depends=('ncurses') diff --git a/community/ucl/PKGBUILD b/community/ucl/PKGBUILD index 144d9c476..0ac1bb6e1 100644 --- a/community/ucl/PKGBUILD +++ b/community/ucl/PKGBUILD @@ -8,7 +8,7 @@ pkgname=ucl pkgver=1.03 pkgrel=4 pkgdesc="Portable lossless data compression library written in ANSI C" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.oberhumer.com/opensource/ucl/" options=(!libtool) diff --git a/community/ude/PKGBUILD b/community/ude/PKGBUILD index 914052e4b..f30a0faf0 100644 --- a/community/ude/PKGBUILD +++ b/community/ude/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ude pkgver=0.2.10a pkgrel=2 pkgdesc="Unix Desktop Environment is a GUI desktop environment" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libjpeg' 'libxmu' 'libxpm') url="http://udeproject.sourceforge.net/index.shtml" diff --git a/community/udunits/PKGBUILD b/community/udunits/PKGBUILD index b1d7240a4..782e4fd24 100644 --- a/community/udunits/PKGBUILD +++ b/community/udunits/PKGBUILD @@ -6,7 +6,7 @@ pkgname=udunits pkgver=2.1.22 pkgrel=2 pkgdesc='A tool for calculations of physical quantities' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.unidata.ucar.edu/software/udunits/' license=('custom') options=('!libtool') diff --git a/community/ultimate-ircd/PKGBUILD b/community/ultimate-ircd/PKGBUILD index 98c88e7a7..72f8e8ab4 100644 --- a/community/ultimate-ircd/PKGBUILD +++ b/community/ultimate-ircd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ultimate-ircd pkgver=3.0.2 pkgrel=3 pkgdesc="ultimate irc server" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.shadow-realm.org/" license=("GPL") depends=(glibc) diff --git a/community/uml_utilities/PKGBUILD b/community/uml_utilities/PKGBUILD index b0fc5a633..46c03ecb7 100644 --- a/community/uml_utilities/PKGBUILD +++ b/community/uml_utilities/PKGBUILD @@ -6,7 +6,7 @@ pkgname=uml_utilities pkgver=20070815 pkgrel=4 pkgdesc="User Mode Linux Utilities" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('fuse' 'readline' 'perl') url="http://user-mode-linux.sourceforge.net/" source=(http://user-mode-linux.sourceforge.net/${pkgname}_${pkgver}.tar.bz2) diff --git a/community/unbound/PKGBUILD b/community/unbound/PKGBUILD index 00e8f4774..07109a954 100644 --- a/community/unbound/PKGBUILD +++ b/community/unbound/PKGBUILD @@ -8,7 +8,7 @@ pkgname=unbound pkgver=1.4.13 pkgrel=2 pkgdesc='Validating, recursive, and caching DNS resolver' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://unbound.net/' license=('custom:BSD') options=('!libtool') diff --git a/community/unclutter/PKGBUILD b/community/unclutter/PKGBUILD index fc8f40d7b..aad154b49 100644 --- a/community/unclutter/PKGBUILD +++ b/community/unclutter/PKGBUILD @@ -9,7 +9,7 @@ pkgver=8 pkgrel=6 pkgdesc="A small program for hiding the mouse cursor" url="http://ftp.x.org/contrib/utilities/unclutter-8.README" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('Public Domain') depends=('libxext') makedepends=('imake') diff --git a/community/uniconvertor/PKGBUILD b/community/uniconvertor/PKGBUILD index 2196cd9aa..f5e1eccb3 100644 --- a/community/uniconvertor/PKGBUILD +++ b/community/uniconvertor/PKGBUILD @@ -6,7 +6,7 @@ pkgname=uniconvertor pkgver=1.1.5 pkgrel=3 pkgdesc="A universal vector graphics translator using sK1 engine." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sk1project.org/modules.php?name=Products&product=uniconvertor" license=('GPL') depends=('python2' 'pil' 'python-reportlab' 'sk1libs') diff --git a/community/unifdef/PKGBUILD b/community/unifdef/PKGBUILD index b25062afc..cdb7ee936 100644 --- a/community/unifdef/PKGBUILD +++ b/community/unifdef/PKGBUILD @@ -5,7 +5,7 @@ pkgname=unifdef pkgver=2.6 pkgrel=1 pkgdesc="Remove #ifdef'ed lines" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://dotat.at/prog/unifdef/" license=('GPL') depends=() diff --git a/community/units/PKGBUILD b/community/units/PKGBUILD index 7cfab5582..ad4c43b11 100644 --- a/community/units/PKGBUILD +++ b/community/units/PKGBUILD @@ -7,7 +7,7 @@ pkgname=units pkgver=1.88 pkgrel=2 pkgdesc="converts between different units" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/units/units.html" depends=('readline') license=("GPL") diff --git a/community/unpaper/PKGBUILD b/community/unpaper/PKGBUILD index 0a854130e..52b0a52ed 100644 --- a/community/unpaper/PKGBUILD +++ b/community/unpaper/PKGBUILD @@ -6,7 +6,7 @@ pkgname=unpaper pkgver=0.3 pkgrel=2 pkgdesc="post-processing tool for scanned sheets of paper" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://$pkgname.berlios.de/" license="GPL" depends=() diff --git a/community/unrealircd/PKGBUILD b/community/unrealircd/PKGBUILD index e0b22e2e4..e445fa1d8 100644 --- a/community/unrealircd/PKGBUILD +++ b/community/unrealircd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=unrealircd pkgver=3.2.8.1 pkgrel=8 pkgdesc="Open Source IRC Server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://unrealircd.com" license=('GPL2') depends=(openssl curl) diff --git a/community/unrtf/PKGBUILD b/community/unrtf/PKGBUILD index 9797c8e52..4a1ba1423 100644 --- a/community/unrtf/PKGBUILD +++ b/community/unrtf/PKGBUILD @@ -7,7 +7,7 @@ pkgname=unrtf pkgver=0.21.1 pkgrel=1 pkgdesc="Command-line program which converts RTF documents to other formats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/unrtf/unrtf.html" license=('GPL3') depends=('glibc') diff --git a/community/unshield/PKGBUILD b/community/unshield/PKGBUILD index 99cb13787..38cf6894b 100644 --- a/community/unshield/PKGBUILD +++ b/community/unshield/PKGBUILD @@ -5,7 +5,7 @@ pkgname=unshield pkgver=0.6 pkgrel=2 pkgdesc="Extracts CAB files from InstallShield installers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/synce/files/" license=('custom') depends=('zlib') diff --git a/community/uptimed/PKGBUILD b/community/uptimed/PKGBUILD index 7b60c38b8..87ec6b821 100644 --- a/community/uptimed/PKGBUILD +++ b/community/uptimed/PKGBUILD @@ -7,7 +7,7 @@ pkgname=uptimed pkgver=0.3.16 pkgrel=3 pkgdesc="A system uptime record daemon" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') install=$pkgname.install url="http://podgorny.cz/uptimed/" license=('GPL') diff --git a/community/upx/PKGBUILD b/community/upx/PKGBUILD index 68f61ba3b..e3d172960 100644 --- a/community/upx/PKGBUILD +++ b/community/upx/PKGBUILD @@ -7,7 +7,7 @@ pkgname=upx pkgver=3.07 pkgrel=2 pkgdesc='Ultimate executable compressor.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://upx.sourceforge.net/' license=('GPL') depends=('zlib') diff --git a/community/uqm/PKGBUILD b/community/uqm/PKGBUILD index 4d82315d6..d88533b02 100644 --- a/community/uqm/PKGBUILD +++ b/community/uqm/PKGBUILD @@ -8,7 +8,7 @@ pkgname=uqm pkgver=0.7.0 pkgrel=1 pkgdesc="The Ur-Quan Masters is a port of Star Control 2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sc2.sf.net/" license=('GPL') depends=('libmikmod' 'libvorbis' 'sdl_image' 'libgl') diff --git a/community/usb_modeswitch/PKGBUILD b/community/usb_modeswitch/PKGBUILD index b829246a6..64112fe90 100644 --- a/community/usb_modeswitch/PKGBUILD +++ b/community/usb_modeswitch/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.1.9 pkgrel=1 _pkgdata=20110805 pkgdesc="Activating switchable USB devices on Linux." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.draisberghof.de/usb_modeswitch/" license=('GPL') depends=('libusb-compat' 'tcl') diff --git a/community/ushare/PKGBUILD b/community/ushare/PKGBUILD index 0a988e352..8252ba9c9 100644 --- a/community/ushare/PKGBUILD +++ b/community/ushare/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=15 pkgdesc="A free UPnP A/V Media Server for Linux" url="http://ushare.geexbox.org" license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libupnp' 'libdlna' 'sudo') backup=('etc/ushare/ushare.conf' 'etc/conf.d/ushare') diff --git a/community/ussp-push/PKGBUILD b/community/ussp-push/PKGBUILD index 673cb4718..709e347c3 100644 --- a/community/ussp-push/PKGBUILD +++ b/community/ussp-push/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ussp-push pkgver=0.11 pkgrel=3 pkgdesc="OBEX object pusher for Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://xmailserver.org/ussp-push.html" depends=('openobex') diff --git a/community/ustr/PKGBUILD b/community/ustr/PKGBUILD index 9525962a1..721e23528 100644 --- a/community/ustr/PKGBUILD +++ b/community/ustr/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ustr pkgver=1.0.4 pkgrel=2 pkgdesc="micro string API for C" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.and.org/ustr/" license=('GPL') depends=('glibc') diff --git a/community/uucp/PKGBUILD b/community/uucp/PKGBUILD index ffc819a91..6efbdea2f 100644 --- a/community/uucp/PKGBUILD +++ b/community/uucp/PKGBUILD @@ -4,7 +4,7 @@ pkgname=uucp pkgver=1.07 pkgrel=2 pkgdesc="Taylor UUCP is a free implementation of UUCP and is the standard UUCP used on the GNU system" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.gnu.org/software/uucp/uucp.html" license=('GPL') makedepends=('wget' 'sed' 'grep') diff --git a/community/uudeview/PKGBUILD b/community/uudeview/PKGBUILD index 3a81c0c45..43cbc0d35 100644 --- a/community/uudeview/PKGBUILD +++ b/community/uudeview/PKGBUILD @@ -6,7 +6,7 @@ pkgname=uudeview pkgver=0.5.20 pkgrel=9 pkgdesc="UUDeview helps transmitting & recieving binary files using mail or newsgroups. Includes library files." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.fpx.de/fp/Software/UUDeview/" license=('GPL') optdepends=('tk: for GUI') diff --git a/community/uzbl/PKGBUILD b/community/uzbl/PKGBUILD index 25dfa6a08..8feeabdab 100644 --- a/community/uzbl/PKGBUILD +++ b/community/uzbl/PKGBUILD @@ -7,7 +7,7 @@ pkgbase=uzbl pkgname=('uzbl-core' 'uzbl-browser' 'uzbl-tabbed') pkgver=2011.10.01 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.uzbl.org" license=('GPL3') makedepends=('git' 'pkgconfig' 'libwebkit>=1.3.13') diff --git a/community/v8/PKGBUILD b/community/v8/PKGBUILD index b89b9c469..84d97951e 100644 --- a/community/v8/PKGBUILD +++ b/community/v8/PKGBUILD @@ -6,7 +6,7 @@ pkgname=v8 pkgver=3.6.5.1 pkgrel=1 pkgdesc='A fast and modern javascript engine' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://code.google.com/p/v8' license=('BSD') makedepends=('subversion' 'scons') diff --git a/community/vamps/PKGBUILD b/community/vamps/PKGBUILD index a5dd6a799..a0be01624 100644 --- a/community/vamps/PKGBUILD +++ b/community/vamps/PKGBUILD @@ -7,7 +7,7 @@ pkgname=vamps pkgver=0.99.2 pkgrel=8 pkgdesc='Very fast requantisizing tool for backup DVDs' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://vamps.sourceforge.net' license=('GPL2') depends=('libdvdread') diff --git a/community/vbetool/PKGBUILD b/community/vbetool/PKGBUILD index 1eb2b244c..d39993d3b 100644 --- a/community/vbetool/PKGBUILD +++ b/community/vbetool/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=2 pkgdesc="Uses lrmi in order to run code from the video BIOS" url="http://www.srcf.ucam.org/~mjg59/vbetool/" license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('zlib' 'libx86') makedepends=('pciutils') source=("http://www.codon.org.uk/~mjg59/${pkgname}/download/${pkgname}-${pkgver}.tar.gz") diff --git a/community/vbindiff/PKGBUILD b/community/vbindiff/PKGBUILD index 12a64d771..2b89cbe94 100644 --- a/community/vbindiff/PKGBUILD +++ b/community/vbindiff/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vbindiff pkgver=3.0_beta4 pkgrel=2 pkgdesc="displays files in hexadecimal and ASCII (or EBCDIC) and highlight the differences between them" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cjmweb.net/vbindiff/" license=('GPL') depends=('gcc-libs' 'ncurses') diff --git a/community/vdrift/PKGBUILD b/community/vdrift/PKGBUILD index cc617662f..97439f4f2 100644 --- a/community/vdrift/PKGBUILD +++ b/community/vdrift/PKGBUILD @@ -7,7 +7,7 @@ pkgname=vdrift pkgver=2011.10.22 pkgrel=1 pkgdesc="An 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/vhba-module/PKGBUILD b/community/vhba-module/PKGBUILD index 4e2739fb2..828f01308 100644 --- a/community/vhba-module/PKGBUILD +++ b/community/vhba-module/PKGBUILD @@ -7,7 +7,7 @@ pkgver=20110915 _kernver='3.0-ARCH' pkgrel=1 pkgdesc="Kernel module that emulates SCSI devices" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cdemu.sourceforge.net/" license=('GPL2') depends=('linux>=3.0' 'linux<3.1') diff --git a/community/viewnior/PKGBUILD b/community/viewnior/PKGBUILD index d53a3a382..5c2cc31ed 100644 --- a/community/viewnior/PKGBUILD +++ b/community/viewnior/PKGBUILD @@ -7,7 +7,7 @@ pkgname=viewnior pkgver=1.1 pkgrel=1 pkgdesc="A simple, fast and elegant image viewer program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xsisqox.github.com/Viewnior/" license=('GPL3') depends=('gtk2>=2.12') diff --git a/community/vifm/PKGBUILD b/community/vifm/PKGBUILD index dcd4d1252..25dea5a74 100644 --- a/community/vifm/PKGBUILD +++ b/community/vifm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=vifm pkgver=0.7.0 pkgrel=1 pkgdesc="Ncurses based file manager with vi like keybindings" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://vifm.sourceforge.net/" license=('GPL') depends=('ncurses' 'gtk2') diff --git a/community/viking/PKGBUILD b/community/viking/PKGBUILD index b007a93dd..892989f96 100644 --- a/community/viking/PKGBUILD +++ b/community/viking/PKGBUILD @@ -7,7 +7,7 @@ pkgname=viking pkgver=1.2.1 pkgrel=1 pkgdesc="GTK+2 application to manage GPS data" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://viking.sourceforge.net/" license=('GPL2') depends=('curl' 'gpsd' 'gtk2' 'hicolor-icon-theme') diff --git a/community/vile/PKGBUILD b/community/vile/PKGBUILD index 3d0b1e83a..19945365c 100644 --- a/community/vile/PKGBUILD +++ b/community/vile/PKGBUILD @@ -5,7 +5,7 @@ pkgname=vile pkgver=9.8 pkgrel=1 pkgdesc="vi like emacs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://invisible-island.net/vile/vile.html" depends=('ncurses') license=('custom') diff --git a/community/virtualbox/PKGBUILD b/community/virtualbox/PKGBUILD index 7b0ef8200..57ceb8c7f 100644 --- a/community/virtualbox/PKGBUILD +++ b/community/virtualbox/PKGBUILD @@ -4,11 +4,11 @@ pkgbase=virtualbox pkgname=('virtualbox' 'virtualbox-archlinux-additions' 'virtualbox-archlinux-modules' 'virtualbox-sdk') pkgver=4.1.4 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://virtualbox.org' license=('GPL' 'custom') makedepends=('libstdc++5' 'bin86' 'dev86' 'iasl' 'libxslt' 'libxml2' 'libxcursor' 'qt' 'libidl2' 'sdl_ttf' 'alsa-lib' 'libpulse' 'libxtst' -'xalan-c' 'sdl' 'libxmu' 'curl' 'python2' 'linux-headers' 'mesa' 'libxrandr' 'libxinerama' 'libvncserver' 'openjdk6' 'gsoap' 'vde2' +'xalan-c' 'sdl' 'libxmu' 'curl' 'python2' 'linux-libre-headers' 'mesa' 'libxrandr' 'libxinerama' 'libvncserver' 'openjdk6' 'gsoap' 'vde2' 'xorg-server-devel' 'xf86driproto' 'libxcomposite') [[ $CARCH == "x86_64" ]] && makedepends=("${makedepends[@]}" 'gcc-multilib' 'lib32-glibc') source=(http://download.virtualbox.org/virtualbox/${pkgver}/VirtualBox-${pkgver}.tar.bz2 @@ -16,7 +16,7 @@ source=(http://download.virtualbox.org/virtualbox/${pkgver}/VirtualBox-${pkgver} virtualbox-4-makeself-check.patch virtualbox-4-mkisofs-check.patch 10-vboxdrv.rules 60-vboxguest.rules vboxdrv-reference.patch LocalConfig.kmk vboxbuild change_default_driver_dir.patch vbox-service.conf vbox-service.rc) -_kernver=3.0-ARCH +_kernver=3.0-LIBRE build() { cd "$srcdir/VirtualBox-${pkgver}_OSE" @@ -43,7 +43,7 @@ build() { package_virtualbox() { pkgdesc="Powerful x86 virtualization for enterprise as well as home use" - depends=('libxml2' 'libxcursor' 'libidl2' 'libxinerama' 'sdl' 'libxmu' 'curl' 'libvncserver' 'libpng' 'linux-headers' 'gcc' 'make') + depends=('libxml2' 'libxcursor' 'libidl2' 'libxinerama' 'sdl' 'libxmu' 'curl' 'libvncserver' 'libpng' 'linux-libre-headers' 'gcc' 'make') optdepends=('qt: for VirtualBox GUI' 'vde2: Virtual Distributed Ethernet support' 'virtualbox-sdk: developer kit') @@ -170,7 +170,7 @@ package_virtualbox-archlinux-modules(){ pkgdesc="Additions only for Arch Linux guests (kernel modules)" license=('GPL') install=virtualbox-archlinux-modules.install - depends=('linux>=3.0' 'linux<3.1') + depends=('linux-libre>=3.0' 'linux-libre<3.1') replaces=('virtualbox-guest-modules') conflicts=('virtualbox-guest-modules') diff --git a/community/virtviewer/PKGBUILD b/community/virtviewer/PKGBUILD index 6abbad324..4ea807b62 100644 --- a/community/virtviewer/PKGBUILD +++ b/community/virtviewer/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="A lightweight interface for interacting with the graphical display of v depends=('gtk-vnc' 'libglade>=2.6.0' 'libvirt') makedepends=('intltool') url="http://virt-manager.et.redhat.com" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') source=("http://virt-manager.et.redhat.com/download/sources/virt-viewer/virt-viewer-$pkgver.tar.gz") md5sums=('1cc86ed3fbbe37a56faa6476b2e6dbcd') diff --git a/community/visitors/PKGBUILD b/community/visitors/PKGBUILD index 797fddbbe..e1e099c60 100644 --- a/community/visitors/PKGBUILD +++ b/community/visitors/PKGBUILD @@ -6,7 +6,7 @@ pkgname=visitors pkgver=0.7 pkgrel=2 pkgdesc='A very fast web log analyzer' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.hping.org/visitors/" license=('GPL2' 'custom') depends=('glibc') diff --git a/community/vlock/PKGBUILD b/community/vlock/PKGBUILD index 0e79a7875..7beb1f60e 100644 --- a/community/vlock/PKGBUILD +++ b/community/vlock/PKGBUILD @@ -9,7 +9,7 @@ pkgver=2.2.3 pkgrel=1 pkgdesc="A small console locking program" url="http://cthulhu.c3d2.de/~toidinamai/vlock/vlock.html" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') depends=('pam') install=vlock.install diff --git a/community/vmoviedb/PKGBUILD b/community/vmoviedb/PKGBUILD index cff7ee14d..776106028 100644 --- a/community/vmoviedb/PKGBUILD +++ b/community/vmoviedb/PKGBUILD @@ -7,7 +7,7 @@ pkgname=vmoviedb pkgver=0.1.5 pkgrel=4 pkgdesc="A movie collection manager for the Gnome desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://vmoviedb.sourceforge.net" license=('GPL') depends=('libgnomeui' 'gconf>=2.18.0.1-4' 'desktop-file-utils') diff --git a/community/vnstat/PKGBUILD b/community/vnstat/PKGBUILD index 310adf3a1..341ff0199 100644 --- a/community/vnstat/PKGBUILD +++ b/community/vnstat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vnstat pkgver=1.11 pkgrel=2 pkgdesc="A console-based network traffic monitor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://humdi.net/vnstat/" license=('GPL') depends=('bash') diff --git a/community/vobcopy/PKGBUILD b/community/vobcopy/PKGBUILD index 1bffd0fad..77119e34d 100644 --- a/community/vobcopy/PKGBUILD +++ b/community/vobcopy/PKGBUILD @@ -7,7 +7,7 @@ pkgname=vobcopy pkgver=1.2.0 pkgrel=3 pkgdesc="Copies DVD .vob files to harddisk, decrypting them on the way" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.vobcopy.org" license=('GPL2') depends=('libdvdread>=4.1.3' 'libdvdcss') diff --git a/community/vorbisgain/PKGBUILD b/community/vorbisgain/PKGBUILD index 395187354..7c5bc547b 100644 --- a/community/vorbisgain/PKGBUILD +++ b/community/vorbisgain/PKGBUILD @@ -5,7 +5,7 @@ pkgname=vorbisgain pkgver=0.37 pkgrel=2 pkgdesc="A utility that computes the ReplayGain values for Ogg Vorbis files." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sjeng.org/vorbisgain.html" license=('GPL') depends=('libvorbis') diff --git a/community/vorbissimple/PKGBUILD b/community/vorbissimple/PKGBUILD index 8b9284370..8e7970931 100644 --- a/community/vorbissimple/PKGBUILD +++ b/community/vorbissimple/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vorbissimple pkgver=0.0.2 pkgrel=2 pkgdesc="A Vorbis decoder" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kamaelia.sourceforge.net" license=('GPL') options=('!libtool') diff --git a/community/vtk/PKGBUILD b/community/vtk/PKGBUILD index d1f035081..371bf4a83 100644 --- a/community/vtk/PKGBUILD +++ b/community/vtk/PKGBUILD @@ -10,7 +10,7 @@ pkgname=vtk pkgver=5.8.0 pkgrel=2 pkgdesc='A software system for 3D computer graphics, image processing, and visualization which supports a wide variety of visualization algorithms and advanced modeling techniques.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.vtk.org' license=('BSD') depends=('libpng' 'libtiff' 'freetype2' 'boost' 'ffmpeg' 'qt' 'lesstif' 'mysql') diff --git a/community/vym/PKGBUILD b/community/vym/PKGBUILD index cca7d0132..c56dbb428 100644 --- a/community/vym/PKGBUILD +++ b/community/vym/PKGBUILD @@ -7,7 +7,7 @@ pkgname=vym pkgver=1.99.0 pkgrel=1 pkgdesc="A mindmapping tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.insilmaril.de/vym/" license=('GPL') depends=('qt' 'unzip' 'zip') diff --git a/community/vyqchat/PKGBUILD b/community/vyqchat/PKGBUILD index 8bffed66f..e88e9f19f 100644 --- a/community/vyqchat/PKGBUILD +++ b/community/vyqchat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vyqchat pkgver=0.2.8 pkgrel=3 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/w3cam/PKGBUILD b/community/w3cam/PKGBUILD index a0b3016c4..27aa67235 100644 --- a/community/w3cam/PKGBUILD +++ b/community/w3cam/PKGBUILD @@ -6,7 +6,7 @@ pkgname=w3cam pkgver=0.7.2 pkgrel=9 pkgdesc="a small and fast CGI program to retrieve images from a video4linux device." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mpx.freeshell.net/" license=('GPL') depends=(libpng libjpeg) diff --git a/community/warmux/PKGBUILD b/community/warmux/PKGBUILD index 473e98ef7..3fd4f09a0 100644 --- a/community/warmux/PKGBUILD +++ b/community/warmux/PKGBUILD @@ -7,7 +7,7 @@ pkgname=warmux pkgver=11.04.1 pkgrel=3 pkgdesc="A clone of the worms game" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.wormux.org/" license=('GPL') makedepends=('pkgconfig' 'libxml++' 'sdl_image' 'sdl_gfx>=2.0.19' 'sdl_ttf' 'sdl_mixer' 'sdl_net' 'curl>=7.16.2' 'gcc-libs' 'libxml2') diff --git a/community/warsow/PKGBUILD b/community/warsow/PKGBUILD index 2c941c653..b0384e132 100644 --- a/community/warsow/PKGBUILD +++ b/community/warsow/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=2 pkgdesc="a free online multiplayer competitive FPS based on the Qfusion engine" url="http://www.warsow.net/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('curl' 'libjpeg' 'libvorbis' 'libxinerama' 'libxxf86dga' 'libxxf86vm' 'sdl' 'warsow-data') makedepends=('mesa' 'openal' 'unzip') optdepends=('openal: for openal audio support') diff --git a/community/warzone2100/PKGBUILD b/community/warzone2100/PKGBUILD index 334c92f3e..ea04d4520 100644 --- a/community/warzone2100/PKGBUILD +++ b/community/warzone2100/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2.3.9 pkgrel=1 pkgdesc="3D realtime strategy game on a future Earth" url="http://wz2100.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('sdl_net' 'libgl' 'openal' 'libjpeg' 'libpng' 'libvorbis' 'libtheora' 'libmad' 'physfs' 'quesoglc' 'popt' 'ttf-dejavu') makedepends=('gawk' 'bison' 'flex' 'zip' 'unzip' 'mesa') diff --git a/community/wavegain/PKGBUILD b/community/wavegain/PKGBUILD index 6962ab2e5..ae2379453 100644 --- a/community/wavegain/PKGBUILD +++ b/community/wavegain/PKGBUILD @@ -7,7 +7,7 @@ _realname=WaveGain pkgver=1.3.0 pkgrel=1 pkgdesc="A command line tool to normalize sound files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://rarewares.org/others.php" license=('LGPL') depends=('libsndfile') diff --git a/community/wbar/PKGBUILD b/community/wbar/PKGBUILD index ffed2afe7..8968b1045 100644 --- a/community/wbar/PKGBUILD +++ b/community/wbar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=wbar pkgver=2.2.2 pkgrel=1 pkgdesc="A quick launch bar developed with speed in mind" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/wbar" license=('GPL') depends=('libglade' 'imlib2' 'gcc-libs') diff --git a/community/wdm/PKGBUILD b/community/wdm/PKGBUILD index 26775681b..0f1b7b9c1 100644 --- a/community/wdm/PKGBUILD +++ b/community/wdm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=wdm pkgver=1.28 pkgrel=5 pkgdesc="An replacement X window display manager similar to, and based on XDM" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('windowmaker' 'pam' 'bash' 'libxmu') license=('GPL') source=(http://voins.program.ru/$pkgname/$pkgname-$pkgver.tar.bz2) diff --git a/community/webfs/PKGBUILD b/community/webfs/PKGBUILD index c114dd27e..0b9cf4994 100644 --- a/community/webfs/PKGBUILD +++ b/community/webfs/PKGBUILD @@ -7,7 +7,7 @@ pkgname=webfs pkgver=1.21 pkgrel=5 pkgdesc="Simple http server for mostly static content." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://linux.bytesex.org/misc/webfs.html" license=("GPL") depends=('openssl') diff --git a/community/widelands/PKGBUILD b/community/widelands/PKGBUILD index 4d207a5a6..b06dbf980 100644 --- a/community/widelands/PKGBUILD +++ b/community/widelands/PKGBUILD @@ -8,7 +8,7 @@ pkgver=16 _realver=build16 pkgrel=4 pkgdesc="A realtime strategy game with emphasis on economy and transport" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://widelands.org/" license=('GPL') makedepends=('cmake' 'boost' 'sdl_mixer' 'sdl_image' 'sdl_net' 'sdl_ttf' 'sdl_gfx' 'ggz-client-libs' 'lua' 'glew' 'python2') diff --git a/community/windowlab/PKGBUILD b/community/windowlab/PKGBUILD index 80237ed83..e98718ad4 100644 --- a/community/windowlab/PKGBUILD +++ b/community/windowlab/PKGBUILD @@ -6,7 +6,7 @@ pkgname=windowlab pkgver=1.40 pkgrel=1 pkgdesc="A small and simple window manager." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nickgravgaard.com/windowlab" license=('GPL') depends=('xorg-server' 'libxft') diff --git a/community/winefish/PKGBUILD b/community/winefish/PKGBUILD index c692791b8..294f1f6f5 100644 --- a/community/winefish/PKGBUILD +++ b/community/winefish/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.3.3 pkgrel=9 pkgdesc="LaTeX editor based on Bluefish with auto-completion and syntax highlighting" url="http://winefish.berlios.de/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libgnomeui') makedepends=('pkgconfig') diff --git a/community/winegame/PKGBUILD b/community/winegame/PKGBUILD index e38cd9255..7555b9814 100644 --- a/community/winegame/PKGBUILD +++ b/community/winegame/PKGBUILD @@ -5,7 +5,7 @@ pkgname=winegame pkgver=0.2.0 pkgrel=1 pkgdesc="An interface to install windows programs in Wine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/winegame/" license=('GPL3') depends=('libnotify' 'winestuff') diff --git a/community/winestuff/PKGBUILD b/community/winestuff/PKGBUILD index 0a1e18ea3..1e0b25b0d 100644 --- a/community/winestuff/PKGBUILD +++ b/community/winestuff/PKGBUILD @@ -5,7 +5,7 @@ pkgname=winestuff pkgver=0.2.0 pkgrel=1 pkgdesc="Library utility for winegame" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/winegame/" license=('LGPL2.1') depends=('qt' 'fuseiso' 'winetricks') diff --git a/community/wkhtmltopdf/PKGBUILD b/community/wkhtmltopdf/PKGBUILD index bff273d88..94fa7ee98 100644 --- a/community/wkhtmltopdf/PKGBUILD +++ b/community/wkhtmltopdf/PKGBUILD @@ -5,7 +5,7 @@ pkgname=wkhtmltopdf pkgver=0.9.9 pkgrel=1 pkgdesc="Simple shell utility to convert html to pdf using the webkit rendering engine, and qt" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/wkhtmltopdf/" license=('GPL3') depends=('qt') diff --git a/community/wmctrl/PKGBUILD b/community/wmctrl/PKGBUILD index a4cb2b48f..a55c065f5 100644 --- a/community/wmctrl/PKGBUILD +++ b/community/wmctrl/PKGBUILD @@ -8,19 +8,15 @@ pkgver=1.07 pkgrel=2 pkgdesc="Control your EWMH compliant window manager from command line" url="http://sweb.cz/tripie/utils/wmctrl/" -arch=('i686' 'x86_64') +arch=('i686' 'mips64el') license=('GPL') depends=(libxmu glib2) -source=(http://sweb.cz/tripie/utils/wmctrl/dist/$pkgname-$pkgver.tar.gz - get_property-x86_64.patch::http://patch-tracking.debian.net/patch/misc/dl/wmctrl/1.07-6/main.c) -md5sums=('1fe3c7a2caa6071e071ba34f587e1555' - '0d0173fa96e8ff318ea391dffa51235a') +source=(http://sweb.cz/tripie/utils/wmctrl/dist/$pkgname-$pkgver.tar.gz) +md5sums=('1fe3c7a2caa6071e071ba34f587e1555') build() { cd "$srcdir/$pkgname-$pkgver" - patch -p1 -i "$srcdir/get_property-x86_64.patch" - ./configure --prefix=/usr --mandir=$pkgdir/usr/share/man make } @@ -29,4 +25,3 @@ package() { cd "$srcdir/$pkgname-$pkgver" make prefix="$pkgdir/usr" install } - diff --git a/community/wmii/PKGBUILD b/community/wmii/PKGBUILD index a411b5048..8413e3e5d 100644 --- a/community/wmii/PKGBUILD +++ b/community/wmii/PKGBUILD @@ -6,7 +6,7 @@ pkgname=wmii pkgver=3.9.2 pkgrel=2 pkgdesc="A small, dynamic window manager for X11" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('MIT') url="http://wmii.suckless.org/" depends=('libxft' 'libxrandr' 'libxinerama' 'dash') diff --git a/community/wml/PKGBUILD b/community/wml/PKGBUILD index 33c34b025..2124c148a 100644 --- a/community/wml/PKGBUILD +++ b/community/wml/PKGBUILD @@ -5,7 +5,7 @@ pkgname=wml pkgver=2.0.11 pkgrel=7 pkgdesc="The Website Meta Language" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://thewml.org/" license=('GPL') depends=('perl' 'libpng' 'gdbm' 'db' 'ncurses') diff --git a/community/wmname/PKGBUILD b/community/wmname/PKGBUILD index e9c75101e..0d72d64c7 100644 --- a/community/wmname/PKGBUILD +++ b/community/wmname/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="An utility to set the name of your window manager" url="http://www.suckless.org/programs/wmname.html" license=('custom') depends=('libx11') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=("http://dl.suckless.org/tools/wmname-$pkgver.tar.gz") md5sums=('6903d299f84d335e529fbd2c1d6e49fe') diff --git a/community/wol/PKGBUILD b/community/wol/PKGBUILD index 87bfc7005..1bb774627 100644 --- a/community/wol/PKGBUILD +++ b/community/wol/PKGBUILD @@ -6,7 +6,7 @@ pkgname=wol pkgver=0.7.1 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="wol implements Wake On LAN functionality in a small program. It wakes up hardware that is Magic Packet compliant." license=("GPL") depends=(sh) diff --git a/community/workrave/PKGBUILD b/community/workrave/PKGBUILD index 37ce6ac31..9e428da02 100644 --- a/community/workrave/PKGBUILD +++ b/community/workrave/PKGBUILD @@ -6,7 +6,7 @@ pkgname=workrave pkgver=1.9.4 pkgrel=2 pkgdesc="a tool to help RSI" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://workrave.org" depends=('libxtst' 'gtkmm' 'gconf' 'gdome2' 'gstreamer0.10' 'libsm' 'libice') diff --git a/community/wput/PKGBUILD b/community/wput/PKGBUILD index e6fbbfd61..1b0ddcaea 100644 --- a/community/wput/PKGBUILD +++ b/community/wput/PKGBUILD @@ -7,7 +7,7 @@ pkgname=wput pkgver=0.6.2 pkgrel=1 pkgdesc="A command line tool to upload files to FTP site, the opposite to wget" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wput.sourceforge.net/" depends=('gnutls>=2.4.1') license=('GPL') diff --git a/community/wt/PKGBUILD b/community/wt/PKGBUILD index 0ca32716f..f08388ac8 100644 --- a/community/wt/PKGBUILD +++ b/community/wt/PKGBUILD @@ -6,7 +6,7 @@ pkgname=wt pkgver=3.1.11 pkgrel=1 pkgdesc="a C++ library and application server for developing and deploying web applications" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.webtoolkit.eu/" license=('GPL') depends=('boost-libs>=1.36') diff --git a/community/wvdial/PKGBUILD b/community/wvdial/PKGBUILD index 8edab9e52..a6428f314 100644 --- a/community/wvdial/PKGBUILD +++ b/community/wvdial/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.61 pkgrel=3 pkgdesc="A dialer program to connect to the Internet" url="http://alumnit.ca/wiki/index.php?page=WvDial" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') depends=('wvstreams' 'ppp' 'gcc-libs') makedepends=('lockdev') diff --git a/community/wvstreams/PKGBUILD b/community/wvstreams/PKGBUILD index 5be8bf94f..81bd87127 100644 --- a/community/wvstreams/PKGBUILD +++ b/community/wvstreams/PKGBUILD @@ -7,7 +7,7 @@ pkgname=wvstreams pkgver=4.6.1 pkgrel=2 pkgdesc="A network programming library written in C++" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://alumnit.ca/wiki/?page=WvStreams" license=('LGPL') depends=('zlib' 'pam' 'xplc' 'openssl' 'readline') diff --git a/community/wxsvg/PKGBUILD b/community/wxsvg/PKGBUILD index 28bcc240d..aa9d379e1 100644 --- a/community/wxsvg/PKGBUILD +++ b/community/wxsvg/PKGBUILD @@ -6,7 +6,7 @@ pkgname=wxsvg pkgver=1.1.2 pkgrel=1 pkgdesc="C++ library to create, manipulate and render SVG files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wxsvg.sourceforge.net/" license=('custom:wxWindows') depends=('wxgtk' 'libart-lgpl' 'ffmpeg') diff --git a/community/wyrd/PKGBUILD b/community/wyrd/PKGBUILD index 81973859a..30e04b55f 100644 --- a/community/wyrd/PKGBUILD +++ b/community/wyrd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=wyrd pkgver=1.4.5 pkgrel=3 pkgdesc='A text-based front-end to Remind.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://pessimization.com/software/wyrd/' license=('GPL') depends=('remind' 'ncurses') diff --git a/community/xalan-c/PKGBUILD b/community/xalan-c/PKGBUILD index c73848fca..e013f6b97 100644 --- a/community/xalan-c/PKGBUILD +++ b/community/xalan-c/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xalan-c pkgver=1.11_pre1153059 pkgrel=1 pkgdesc="A XSLT processor for transforming XML documents" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xml.apache.org/xalan-c" license=('APACHE') depends=('xerces-c') diff --git a/community/xapian-core/PKGBUILD b/community/xapian-core/PKGBUILD index d18e1a070..fec3402fb 100644 --- a/community/xapian-core/PKGBUILD +++ b/community/xapian-core/PKGBUILD @@ -8,7 +8,7 @@ pkgname=xapian-core pkgver=1.2.7 pkgrel=1 pkgdesc='Open source search engine library.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.xapian.org/' license=('GPL') depends=('sh' 'gcc-libs' 'zlib' 'util-linux') diff --git a/community/xautolock/PKGBUILD b/community/xautolock/PKGBUILD index a2b394e59..72a6ac9d7 100644 --- a/community/xautolock/PKGBUILD +++ b/community/xautolock/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xautolock pkgver=2.2 pkgrel=2 pkgdesc="An automatic X screen-locker/screen-saver" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="ftp://ibiblio.org/pub/Linux/X11/screensavers/" license=('GPL2') depends=('libxss') diff --git a/community/xbindkeys/PKGBUILD b/community/xbindkeys/PKGBUILD index 8e979b07a..913e7cd09 100644 --- a/community/xbindkeys/PKGBUILD +++ b/community/xbindkeys/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xbindkeys pkgver=1.8.5 pkgrel=1 pkgdesc="Launch shell commands with your keyboard or your mouse under X" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nongnu.org/xbindkeys/xbindkeys.html" license=('GPL') depends=('libx11' 'guile' 'tk') diff --git a/community/xboard/PKGBUILD b/community/xboard/PKGBUILD index e44b8e29e..e060ead17 100644 --- a/community/xboard/PKGBUILD +++ b/community/xboard/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xboard pkgver=4.5.2 pkgrel=1 pkgdesc="A graphical user interfaces for chess" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/xboard/" license=('GPL3') depends=('libxaw' 'gnuchess' 'texinfo' 'xdg-utils') diff --git a/community/xcircuit/PKGBUILD b/community/xcircuit/PKGBUILD index 14cb84c31..1cf9b6a4d 100644 --- a/community/xcircuit/PKGBUILD +++ b/community/xcircuit/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xcircuit pkgver=3.7.26 pkgrel=1 pkgdesc="A program for drawing publishable-quality electrical circuit schematic diagrams" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://opencircuitdesign.com/xcircuit" license=('GPL2') depends=('tk' 'libxpm' 'zlib') diff --git a/community/xdebug/PKGBUILD b/community/xdebug/PKGBUILD index 749bcebd6..8c924de9b 100644 --- a/community/xdebug/PKGBUILD +++ b/community/xdebug/PKGBUILD @@ -8,7 +8,7 @@ pkgname=xdebug pkgver=2.1.2 pkgrel=1 pkgdesc="PHP debugging extension" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xdebug.org" license=('GPL') depends=('php') diff --git a/community/xdg-user-dirs/PKGBUILD b/community/xdg-user-dirs/PKGBUILD index 3c1fa8353..25dd339bf 100644 --- a/community/xdg-user-dirs/PKGBUILD +++ b/community/xdg-user-dirs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xdg-user-dirs pkgver=0.14 pkgrel=1 pkgdesc="tool to help manage 'well known' user directories like the desktop folder and the music folder. It also handles localization (i.e. translation) of the filenames. " -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('sh') makedepends=('gawk') url="http://www.freedesktop.org/wiki/Software/xdg-user-dirs" diff --git a/community/xdialog/PKGBUILD b/community/xdialog/PKGBUILD index 750a99ff1..3716f5570 100644 --- a/community/xdialog/PKGBUILD +++ b/community/xdialog/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.3.1 pkgrel=5 pkgdesc="A drop-in replacement for the 'dialog' or 'cdialog' programs" url="http://xdialog.dyns.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gtk2') license=('GPL') source=("http://xdialog.free.fr/Xdialog-${pkgver}.tar.bz2" diff --git a/community/xdiskusage/PKGBUILD b/community/xdiskusage/PKGBUILD index 0ff97363c..833ce7f9e 100644 --- a/community/xdiskusage/PKGBUILD +++ b/community/xdiskusage/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xdiskusage pkgver=1.48 pkgrel=6 pkgdesc="xdiskusage is a user-friendly program to show you what is using up all your disk space" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('fltk') makedepends=('libxi') license=('GPL') diff --git a/community/xdotool/PKGBUILD b/community/xdotool/PKGBUILD index 0ce58a37a..58913e176 100644 --- a/community/xdotool/PKGBUILD +++ b/community/xdotool/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xdotool pkgver=2.20110530.1 pkgrel=1 pkgdesc="Command-line X11 automation tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.semicomplete.com/projects/xdotool/" license=('BSD') depends=('libxtst' 'libxinerama') diff --git a/community/xemacs/PKGBUILD b/community/xemacs/PKGBUILD index 8e7d3fe69..df901e7ab 100644 --- a/community/xemacs/PKGBUILD +++ b/community/xemacs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xemacs pkgver=21.5.31 pkgrel=2 pkgdesc="An highly customizable open source text editor and application development system forked from GNU Emacs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xemacs.org/" license=('GPL') depends=('db' 'libpng' 'libtiff' 'gpm' 'desktop-file-utils' 'libxaw' 'gdbm' 'giflib') diff --git a/community/xerces-c/PKGBUILD b/community/xerces-c/PKGBUILD index dc42d09e5..4dab38499 100644 --- a/community/xerces-c/PKGBUILD +++ b/community/xerces-c/PKGBUILD @@ -8,7 +8,7 @@ pkgname=xerces-c pkgver=3.1.1 pkgrel=2 pkgdesc="A validating XML parser written in a portable subset of C++." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xerces.apache.org/xerces-c" license=("APACHE") depends=('gcc-libs' 'curl') diff --git a/community/xfe/PKGBUILD b/community/xfe/PKGBUILD index 20ba88822..8788a2600 100644 --- a/community/xfe/PKGBUILD +++ b/community/xfe/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xfe pkgver=1.32.4 pkgrel=1 pkgdesc="X File Explorer (Xfe) is an MS-Explorer like file manager for X." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://roland65.free.fr/xfe" license=("GPL") depends=('fox') diff --git a/community/xfmedia/PKGBUILD b/community/xfmedia/PKGBUILD index 7c56c80fe..94776599e 100644 --- a/community/xfmedia/PKGBUILD +++ b/community/xfmedia/PKGBUILD @@ -8,7 +8,7 @@ pkgname=xfmedia pkgver=0.9.2 pkgrel=9 pkgdesc="xfce media player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://spuriousinterrupt.org/projects/xfmedia/" depends=('xine-lib' 'taglib' 'exo' 'libxtst' 'libxss' 'libxfcegui4' 'dbus-glib') diff --git a/community/xiphos/PKGBUILD b/community/xiphos/PKGBUILD index 0473d014b..aca720a45 100755 --- a/community/xiphos/PKGBUILD +++ b/community/xiphos/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xiphos pkgver=3.1.4 pkgrel=8 pkgdesc="A Bible study tool for gtk" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xiphos.org" license=('GPL') depends=('libgsf' 'libglade' 'gtkhtml' 'sword' 'hicolor-icon-theme') diff --git a/community/xkbsel/PKGBUILD b/community/xkbsel/PKGBUILD index 181c09ea3..3598a6611 100644 --- a/community/xkbsel/PKGBUILD +++ b/community/xkbsel/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xkbsel pkgver=0.13 pkgrel=4 pkgdesc="framework for defining, selecting and indicating XKB keyboard mappings" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.meduna.org/sw_xkbsel_en.html" license=('GPL') depends=('gdbm' 'libxaw') diff --git a/community/xkeycaps/PKGBUILD b/community/xkeycaps/PKGBUILD index 8c9a1c9f5..a9aa83962 100644 --- a/community/xkeycaps/PKGBUILD +++ b/community/xkeycaps/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xkeycaps pkgver=2.46 pkgrel=5 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="XKeyCaps is a graphical front-end to xmodmap." url="http://www.jwz.org/xkeycaps/" license=('custom') diff --git a/community/xl2tpd/PKGBUILD b/community/xl2tpd/PKGBUILD index c9a0ceed5..9a0bcbfc5 100644 --- a/community/xl2tpd/PKGBUILD +++ b/community/xl2tpd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xl2tpd pkgver=1.3.0 pkgrel=1 pkgdesc="an open source implementation of the L2TP maintained by Xelerance Corporation" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xelerance.com" license=('GPL') depends=('ppp') diff --git a/community/xloadimage/PKGBUILD b/community/xloadimage/PKGBUILD index b1a2a4aaf..091609005 100644 --- a/community/xloadimage/PKGBUILD +++ b/community/xloadimage/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xloadimage pkgver=4.1 pkgrel=11 pkgdesc="An utility to view many different types of images under X11" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') #url="http://world.std.com/~jimf/xloadimage.html" url="http://sioseis.ucsd.edu/xloadimage.html" license=("MIT") diff --git a/community/xlockmore/PKGBUILD b/community/xlockmore/PKGBUILD index b3c03b06d..a9a182228 100644 --- a/community/xlockmore/PKGBUILD +++ b/community/xlockmore/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xlockmore pkgver=5.34 pkgrel=1 pkgdesc="screen saver / locker for the X Window System" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('BSD') depends=(freetype2 gtk2 libxpm lesstif pam mesa libxmu) url="http://www.tux.org/~bagleyd/xlockmore.html" diff --git a/community/xmldiff/PKGBUILD b/community/xmldiff/PKGBUILD index 167e91ec8..bff34a96d 100644 --- a/community/xmldiff/PKGBUILD +++ b/community/xmldiff/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xmldiff pkgver=0.6.10 pkgrel=1 pkgdesc="A python tool that figures out the differences between two similar XML files, in the same way the diff utility does it" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.logilab.org/project/xmldiff/" license=('GPL2') depends=('python2' 'libxslt' 'jade') diff --git a/community/xmlrpc-c/PKGBUILD b/community/xmlrpc-c/PKGBUILD index 69ebd635d..b4883c4ed 100644 --- a/community/xmlrpc-c/PKGBUILD +++ b/community/xmlrpc-c/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xmlrpc-c pkgver=1858 pkgrel=1 pkgdesc='This library provides a modular implementation of XML-RPC for C and C++' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://xmlrpc-c.sourceforge.net/' license=('custom:xmlrpc-c') depends=('curl' 'libxml2' 'gcc-libs' 'zlib') diff --git a/community/xmms-imms/PKGBUILD b/community/xmms-imms/PKGBUILD index 6e6fe309b..b07fd1af9 100644 --- a/community/xmms-imms/PKGBUILD +++ b/community/xmms-imms/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xmms-imms pkgver=3.1.0_rc8 pkgrel=2 pkgdesc="An intelligent playlist plug-in for XMMS that tracks your listening patterns and dynamically adapts to your taste." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=("GPL") url="http://imms.luminal.org/" depends=('xmms' 'pcre' 'sqlite3' 'taglib' 'glib2' 'sox' 'torch' 'libxss' 'fftw') diff --git a/community/xmms-pulse/PKGBUILD b/community/xmms-pulse/PKGBUILD index 7d54aae91..7f97c4ced 100644 --- a/community/xmms-pulse/PKGBUILD +++ b/community/xmms-pulse/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xmms-pulse pkgver=0.9.4 pkgrel=2 pkgdesc="An XMMS output plugin for the PulseAudio sound server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://0pointer.de/lennart/projects/xmms-pulse" license=('GPL') depends=('xmms' 'pulseaudio') diff --git a/community/xmms-volnorm/PKGBUILD b/community/xmms-volnorm/PKGBUILD index 2d8003258..8b2f6b3f7 100644 --- a/community/xmms-volnorm/PKGBUILD +++ b/community/xmms-volnorm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xmms-volnorm pkgver=0.8.3 pkgrel=4 pkgdesc="A XMMS plug-in to normalize the volume" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://volnorm.sourceforge.net/" license=('GPL') options=('!libtool') diff --git a/community/xmms2/PKGBUILD b/community/xmms2/PKGBUILD index 64af8d2a1..9ec816419 100644 --- a/community/xmms2/PKGBUILD +++ b/community/xmms2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xmms2 pkgver=0.8DrO_o pkgrel=1 pkgdesc="complete rewrite of the popular music player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xmms2.org/" license=('LGPL') backup=('etc/conf.d/xmms2d.conf') diff --git a/community/xmmsctrl/PKGBUILD b/community/xmmsctrl/PKGBUILD index beb2c90f7..95cb17f60 100644 --- a/community/xmmsctrl/PKGBUILD +++ b/community/xmmsctrl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xmmsctrl pkgver=1.9 pkgrel=2 pkgdesc="An XMMS console control application" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cs.aau.dk/~adavid/utils/" license=("GPL") depends=('xmms') diff --git a/community/xmobar/PKGBUILD b/community/xmobar/PKGBUILD index e611eb780..a4a3ad42e 100644 --- a/community/xmobar/PKGBUILD +++ b/community/xmobar/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=2 pkgdesc="A Minimalistic Text Based Status Bar" url="http://hackage.haskell.org/package/xmobar" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gmp' 'libxft' 'libxinerama' 'wireless_tools') makedepends=('ghc>=7.0.2' 'haskell-x11>=1.3.0' 'haskell-x11-xft>=0.2' 'haskell-utf8-string' 'haskell-stm' 'haskell-parsec>=3' 'haskell-mtl>=2') diff --git a/community/xmonad-contrib/PKGBUILD b/community/xmonad-contrib/PKGBUILD index 84455217a..d20980573 100644 --- a/community/xmonad-contrib/PKGBUILD +++ b/community/xmonad-contrib/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xmonad-contrib pkgver=0.9.2 pkgrel=2.1 pkgdesc="Add-ons for xmonad" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xmonad.org/" license=('BSD') depends=('ghc=7.0.3-2' 'xmonad=0.9.2-2.1' 'sh' 'haskell-x11=1.5.0.0' diff --git a/community/xmonad/PKGBUILD b/community/xmonad/PKGBUILD index d669fc325..0e724028d 100644 --- a/community/xmonad/PKGBUILD +++ b/community/xmonad/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xmonad pkgver=0.9.2 pkgrel=2.1 pkgdesc="A lightweight X11 tiled window manager written in Haskell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xmonad.org/" license=('BSD') depends=('ghc=7.0.3' 'gmp' 'haskell-x11=1.5.0.0' 'sh' 'haskell-mtl=2.0.1.0' 'haskell-utf8-string=0.3.6') diff --git a/community/xmoto/PKGBUILD b/community/xmoto/PKGBUILD index 64a776beb..3f13d611e 100644 --- a/community/xmoto/PKGBUILD +++ b/community/xmoto/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xmoto pkgver=0.5.8 pkgrel=1 pkgdesc="A challenging 2D motocross platform game, where physics play an important role." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xmoto.tuxfamily.org" license=('GPL') depends=('bzip2' 'libjpeg' 'libpng' 'lua' 'sdl_mixer' 'ode=0.11.1' 'curl' diff --git a/community/xmove/PKGBUILD b/community/xmove/PKGBUILD index cc7393078..3e923496d 100644 --- a/community/xmove/PKGBUILD +++ b/community/xmove/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xmove pkgver=2.0beta2 pkgrel=4 pkgdesc="A tool to move X windows to different X servers, something like a GNU screen for X." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/archlinux-stuff/" license=('custom') depends=('libx11') diff --git a/community/xnc/PKGBUILD b/community/xnc/PKGBUILD index fe520c655..edb37f897 100644 --- a/community/xnc/PKGBUILD +++ b/community/xnc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xnc pkgver=5.0.4 pkgrel=3 pkgdesc="X nortern captain file manager" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xnc.jinr.ru/" license=('GPL') depends=('gcc-libs' 'libpng' 'libtiff' 'libsm' 'libxext' 'libjpeg>=7') diff --git a/community/xnee/PKGBUILD b/community/xnee/PKGBUILD index 092a0c83a..989a23021 100644 --- a/community/xnee/PKGBUILD +++ b/community/xnee/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xnee pkgver=3.10 pkgrel=1 pkgdesc="A program to record, distribute, and replay X (X11) protocol data" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.sandklef.com/xnee/" license=('GPL3') depends=('gtk2' 'libgnomeui' 'libxtst') diff --git a/community/xosd/PKGBUILD b/community/xosd/PKGBUILD index e604b97e3..f7cef2249 100644 --- a/community/xosd/PKGBUILD +++ b/community/xosd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xosd pkgver=2.2.14 pkgrel=4 pkgdesc="Displays text on your screen. On-Screen-Display-libs for some tools" -arch=('i686' 'x86_64') +arch=("i686" "x86_64" 'mips64el') license=('GPL2') url="http://www.ignavus.net/software.html" depends=('libxt' 'libxinerama' 'sh') diff --git a/community/xpacman/PKGBUILD b/community/xpacman/PKGBUILD index ccefd846b..908a4c7b6 100644 --- a/community/xpacman/PKGBUILD +++ b/community/xpacman/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xpacman pkgver=0.11 pkgrel=5 pkgdesc="X pacman game (use z x / ' q keys)" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.ibiblio.org/pub/X11/contrib/games/" license=('custom') depends=(libx11) diff --git a/community/xpacman2/PKGBUILD b/community/xpacman2/PKGBUILD index 93d4ad8ec..48034026b 100644 --- a/community/xpacman2/PKGBUILD +++ b/community/xpacman2/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.002 _xpkgver=1_002 pkgrel=3 pkgdesc="another X pacman game" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="ftp://ftp.nvg.unit.no/pub/pacman/" license=('GPL') depends=(libx11 ncurses gcc-libs) diff --git a/community/xpad/PKGBUILD b/community/xpad/PKGBUILD index b16213f4a..6cb1a84d9 100644 --- a/community/xpad/PKGBUILD +++ b/community/xpad/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xpad pkgver=4.0 pkgrel=5 pkgdesc="Stickies-like notes program" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('gtk2' 'libsm' 'librsvg') url="http://mterry.name/xpad/" license=('GPL') diff --git a/community/xplanet/PKGBUILD b/community/xplanet/PKGBUILD index be1d39f2e..588fb55e5 100644 --- a/community/xplanet/PKGBUILD +++ b/community/xplanet/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xplanet pkgver=1.2.2 pkgrel=1 pkgdesc="An Xearth wannabe" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xplanet.sourceforge.net/" license=('GPL') depends=('pango' 'libungif' 'libtiff' 'libxss') diff --git a/community/xplc/PKGBUILD b/community/xplc/PKGBUILD index bc029a87c..c7c5a7b5b 100644 --- a/community/xplc/PKGBUILD +++ b/community/xplc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xplc pkgver=0.3.13 pkgrel=3 pkgdesc="Cross-Platform Lightweight Components" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xplc.sourceforge.net" license=('LGPL') depends=('gcc-libs') diff --git a/community/xrestop/PKGBUILD b/community/xrestop/PKGBUILD index 4aa47dbd5..429b33ba6 100644 --- a/community/xrestop/PKGBUILD +++ b/community/xrestop/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xrestop pkgver=0.4 pkgrel=3 pkgdesc="Uses the X-Resource extension to provide 'top' like statistics" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freedesktop.org/wiki/Software/xrestop" license=('GPL') depends=('libxres' 'ncurses') diff --git a/community/xsel/PKGBUILD b/community/xsel/PKGBUILD index 5961b7fb0..ed24d97c3 100644 --- a/community/xsel/PKGBUILD +++ b/community/xsel/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xsel pkgver=1.2.0 pkgrel=3 pkgdesc="XSel is a command-line program for getting and setting the contents of the X selection" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.vergenet.net/~conrad/software/xsel/" license=("custom") depends=(libx11) diff --git a/community/xsensors/PKGBUILD b/community/xsensors/PKGBUILD index 012474a55..277d3ea6b 100644 --- a/community/xsensors/PKGBUILD +++ b/community/xsensors/PKGBUILD @@ -8,7 +8,7 @@ pkgname=xsensors pkgver=0.70 pkgrel=2 pkgdesc="X11 interface to lm_sensors" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.linuxhardware.org/xsensors/" license=('GPL') depends=('gtk2' 'lm_sensors') diff --git a/community/xsettings-client/PKGBUILD b/community/xsettings-client/PKGBUILD index ec8a667f2..ed7f66be9 100644 --- a/community/xsettings-client/PKGBUILD +++ b/community/xsettings-client/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xsettings-client pkgver=0.10 pkgrel=5 pkgdesc="Provides cross toolkit configuration settings such as theme parameters" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://projects.o-hand.com/matchbox/sources" depends=(glibc) diff --git a/community/xskat/PKGBUILD b/community/xskat/PKGBUILD index af88fc66e..119f8d5b6 100644 --- a/community/xskat/PKGBUILD +++ b/community/xskat/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xskat pkgver=4.0 pkgrel=4 pkgdesc="The card game Skat as defined by the official Skat Order" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xskat.de/xskat.html" license=('custom') depends=('libx11') diff --git a/community/xtmsplit/PKGBUILD b/community/xtmsplit/PKGBUILD index 46bc8b101..2ca9375d9 100644 --- a/community/xtmsplit/PKGBUILD +++ b/community/xtmsplit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xtmsplit pkgver=0.2 pkgrel=2 pkgdesc="Xtremsplit-compliant file splitter/merger" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.software.caelistis.be/" license=('GPL') depends=('glibc') diff --git a/community/xvidcap/PKGBUILD b/community/xvidcap/PKGBUILD index 476d1d192..f2ed215bb 100644 --- a/community/xvidcap/PKGBUILD +++ b/community/xvidcap/PKGBUILD @@ -8,7 +8,7 @@ pkgname=xvidcap pkgver=1.1.7 pkgrel=3 pkgdesc="A small tool to capture things going on on an X-Windows display to either individual frames or an MPEG video" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') license=('GPL') url="http://xvidcap.sourceforge.net/" depends=('dbus-glib' 'lame' 'libxmu' 'libglade' 'ffmpeg' 'dbus') diff --git a/community/xvkbd/PKGBUILD b/community/xvkbd/PKGBUILD index b6384fd1d..31c8feced 100644 --- a/community/xvkbd/PKGBUILD +++ b/community/xvkbd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xvkbd pkgver=3.2 pkgrel=1 pkgdesc="virtual (graphical) keyboard program for X Window System" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://homepage3.nifty.com/tsato/xvkbd/" license=('GPL') depends=('libxmu' 'xaw3d' 'glibc' 'libxt' 'libxtst' 'libxp') diff --git a/community/xwax/PKGBUILD b/community/xwax/PKGBUILD index f504189bf..1a98e7f65 100644 --- a/community/xwax/PKGBUILD +++ b/community/xwax/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xwax pkgver=1.0 pkgrel=1 pkgdesc='Open-source vinyl emulation software for Linux.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.xwax.co.uk/' license=('GPL') depends=('alsa-lib' 'sdl_ttf' 'ttf-dejavu') diff --git a/community/xxkb/PKGBUILD b/community/xxkb/PKGBUILD index 4bcf2b771..ee9bd7c19 100644 --- a/community/xxkb/PKGBUILD +++ b/community/xxkb/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xxkb pkgver=1.11 pkgrel=4 pkgdesc="keyboard layout switcher/indicator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/xxkb/" license=('PerlArtistic') depends=('libxpm') diff --git a/community/xylib/PKGBUILD b/community/xylib/PKGBUILD index d9e22e4da..6c599bd66 100644 --- a/community/xylib/PKGBUILD +++ b/community/xylib/PKGBUILD @@ -4,7 +4,7 @@ pkgname=xylib pkgver=0.8 pkgrel=1 pkgdesc='xylib is a portable C++ library for reading files that contain x-y data from powder diffraction, spectroscopy or other experimental methods.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.unipress.waw.pl/fityk/xylib/' license=('LGPL') makedepends=('boost') diff --git a/community/yacpi/PKGBUILD b/community/yacpi/PKGBUILD index 23f2c152a..7ead3986a 100644 --- a/community/yacpi/PKGBUILD +++ b/community/yacpi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=yacpi pkgver=3.0.1 pkgrel=2 pkgdesc="ncurses-based acpi monitor." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ngolde.de/yacpi.html" license=('GPL') depends=(ncurses libacpi) diff --git a/community/yagf/PKGBUILD b/community/yagf/PKGBUILD index 51438b1a5..ddca45200 100644 --- a/community/yagf/PKGBUILD +++ b/community/yagf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=yagf pkgver=0.8.7 pkgrel=1 pkgdesc="QT4-based GUI for Cuneiform OCR" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://symmetrica.net/cuneiform-linux/yagf-en.html" license=('GPL') depends=('cuneiform' 'qt>=4.3' 'aspell') diff --git a/community/yajl/PKGBUILD b/community/yajl/PKGBUILD index 894228fda..c437f9e10 100644 --- a/community/yajl/PKGBUILD +++ b/community/yajl/PKGBUILD @@ -7,7 +7,7 @@ pkgname=yajl pkgver=2.0.2 pkgrel=1 pkgdesc='Yet Another JSON Library.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://lloyd.github.com/yajl/' license=('ISC') makedepends=('cmake') diff --git a/community/yaws/PKGBUILD b/community/yaws/PKGBUILD index 977c56fb5..3474a3ae8 100644 --- a/community/yaws/PKGBUILD +++ b/community/yaws/PKGBUILD @@ -5,7 +5,7 @@ pkgname=yaws pkgver=1.88 pkgrel=3 pkgdesc='Yet Another Web Server -- The pure Erlang HTTP server/framework' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://yaws.hyber.org' license=('BSD') depends=('pam' 'erlang') diff --git a/community/yaz/PKGBUILD b/community/yaz/PKGBUILD index bf42c005f..3c326284e 100644 --- a/community/yaz/PKGBUILD +++ b/community/yaz/PKGBUILD @@ -9,7 +9,7 @@ pkgname=yaz pkgver=4.1.7 pkgrel=2 pkgdesc="A toolkit supporting the development of Z39.50/SRW/SRU clients and servers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('BSD') url="http://www.indexdata.dk/yaz" depends=('openssl' 'libxslt' 'icu') diff --git a/community/zathura/PKGBUILD b/community/zathura/PKGBUILD index 9aef3ce41..454912614 100644 --- a/community/zathura/PKGBUILD +++ b/community/zathura/PKGBUILD @@ -6,7 +6,7 @@ pkgname=zathura pkgver=0.0.8.4 pkgrel=4 pkgdesc="a PDF viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://zathura.pwmt.org" license=('custom') depends=('poppler-glib' 'gtk2' 'cairo') diff --git a/community/zaz/PKGBUILD b/community/zaz/PKGBUILD index 8954f7386..2f08aef15 100644 --- a/community/zaz/PKGBUILD +++ b/community/zaz/PKGBUILD @@ -7,7 +7,7 @@ pkgname=zaz pkgver=1.0.0 pkgrel=1 pkgdesc="Puzzle game where the player has to arrange balls in triplets." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/zaz/" license=('GPL3' 'custom:CCBYSA') depends=('ftgl' 'sdl' 'sdl_image' 'libvorbis' 'libtheora') diff --git a/community/zeromq/PKGBUILD b/community/zeromq/PKGBUILD index bb7239179..b5b326d44 100644 --- a/community/zeromq/PKGBUILD +++ b/community/zeromq/PKGBUILD @@ -4,7 +4,7 @@ pkgname=zeromq pkgver=2.1.10 pkgrel=1 pkgdesc="Fast messaging system built on sockets, C and C++ bindings. aka 0MQ, ZMQ." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.zeromq.org" license=('LGPL') depends=('gcc-libs' 'util-linux') diff --git a/community/znc/PKGBUILD b/community/znc/PKGBUILD index e0d99f4de..ab3c92e82 100644 --- a/community/znc/PKGBUILD +++ b/community/znc/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc='An IRC bouncer with modules & scripts support' url='http://en.znc.in/wiki/index.php/ZNC' license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('c-ares' 'gcc-libs' 'openssl') makedepends=('swig' 'tcl' 'python' 'perl' 'cyrus-sasl') optdepends=('tcl: modtcl module' diff --git a/core/acl/PKGBUILD b/core/acl/PKGBUILD index e177e74f5..dd6ffd124 100644 --- a/core/acl/PKGBUILD +++ b/core/acl/PKGBUILD @@ -4,7 +4,7 @@ pkgname=acl pkgver=2.2.51 pkgrel=1 pkgdesc="Access control list utilities, libraries and headers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://savannah.nongnu.org/projects/acl" license=('LGPL') depends=('attr>=2.4.46') diff --git a/core/attr/PKGBUILD b/core/attr/PKGBUILD index 30f3ad81a..1df0d7b06 100644 --- a/core/attr/PKGBUILD +++ b/core/attr/PKGBUILD @@ -4,7 +4,7 @@ pkgname=attr pkgver=2.4.46 pkgrel=1 pkgdesc="Extended attribute support library for ACL support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://savannah.nongnu.org/projects/attr" license=('LGPL') depends=('glibc') @@ -26,6 +26,7 @@ build() { package() { cd "${srcdir}"/${pkgname}-${pkgver} + export CFLAGS+="-Wparentheses" make DIST_ROOT="${pkgdir}" install install-lib install-dev diff --git a/core/bash/PKGBUILD b/core/bash/PKGBUILD index 8de47d4de..03b81ea83 100644 --- a/core/bash/PKGBUILD +++ b/core/bash/PKGBUILD @@ -8,7 +8,7 @@ _patchlevel=010 #prepare for some patches pkgver=$_basever.$_patchlevel pkgrel=2 pkgdesc="The GNU Bourne Again shell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnu.org/software/bash/bash.html" groups=('base') diff --git a/core/binutils/PKGBUILD b/core/binutils/PKGBUILD index 6e37940ad..186070323 100644 --- a/core/binutils/PKGBUILD +++ b/core/binutils/PKGBUILD @@ -5,10 +5,10 @@ pkgname=binutils pkgver=2.21.1 -pkgrel=2 +pkgrel=2.1 _date=20110627 pkgdesc="A set of programs to assemble and manipulate binary and object files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/binutils/" license=('GPL') groups=('base') @@ -34,6 +34,7 @@ build() { mkdir binutils-build && cd binutils-build [[ $CARCH == "x86_64" ]] && CONFIGFLAG="--enable-64-bit-bfd --disable-multilib" + [[ $CARCH == "mips64el" ]] && CONFIGFLAG="--disable-multilib --disable-werror" ${srcdir}/binutils/configure --prefix=/usr \ --enable-ld=default --enable-gold \ diff --git a/core/bison/PKGBUILD b/core/bison/PKGBUILD index ebd193784..f96f9f137 100644 --- a/core/bison/PKGBUILD +++ b/core/bison/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bison pkgver=2.5 pkgrel=2 pkgdesc="The GNU general-purpose parser generator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') url="http://www.gnu.org/software/bison/bison.html" depends=('glibc' 'm4' 'sh') diff --git a/core/bridge-utils/PKGBUILD b/core/bridge-utils/PKGBUILD index fb452354e..7b2d6bbca 100644 --- a/core/bridge-utils/PKGBUILD +++ b/core/bridge-utils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bridge-utils pkgver=1.5 pkgrel=1 pkgdesc="Utilities for configuring the Linux ethernet bridge" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge" license=('GPL') depends=('glibc') diff --git a/core/btrfs-progs-unstable/PKGBUILD b/core/btrfs-progs-unstable/PKGBUILD index 466829f8c..151a74ef0 100644 --- a/core/btrfs-progs-unstable/PKGBUILD +++ b/core/btrfs-progs-unstable/PKGBUILD @@ -4,7 +4,7 @@ pkgname=btrfs-progs-unstable pkgver=0.19.20101006 pkgrel=1 pkgdesc="btrfs filesystem utilities" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('glibc' 'e2fsprogs') source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.bz2) url="http://btrfs.wiki.kernel.org/" diff --git a/core/bzip2/PKGBUILD b/core/bzip2/PKGBUILD index dfd22798f..fe80a4831 100644 --- a/core/bzip2/PKGBUILD +++ b/core/bzip2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bzip2 pkgver=1.0.6 pkgrel=2 pkgdesc="A high-quality data compression program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://sources.redhat.com/bzip2" groups=('base') diff --git a/core/cloog/PKGBUILD b/core/cloog/PKGBUILD index b61a7a95c..9a3af5e84 100644 --- a/core/cloog/PKGBUILD +++ b/core/cloog/PKGBUILD @@ -5,7 +5,7 @@ pkgname=cloog pkgver=0.16.3 pkgrel=1 pkgdesc="Library that generates loops for scanning polyhedra" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.bastoul.net/cloog/" license=('GPL') depends=('isl' 'gmp') diff --git a/core/coreutils/PKGBUILD b/core/coreutils/PKGBUILD index ee8569c22..a7d830e1e 100644 --- a/core/coreutils/PKGBUILD +++ b/core/coreutils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=coreutils pkgver=8.14 pkgrel=1 pkgdesc="The basic file, shell and text manipulation utilities of the GNU operating system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') url="http://www.gnu.org/software/coreutils" groups=('base') diff --git a/core/cracklib/PKGBUILD b/core/cracklib/PKGBUILD index fb91d8651..fbf548e76 100644 --- a/core/cracklib/PKGBUILD +++ b/core/cracklib/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cracklib pkgver=2.8.18 pkgrel=1 pkgdesc="Password Checking Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://sourceforge.net/projects/cracklib" depends=('glibc' 'zlib') diff --git a/core/crda/PKGBUILD b/core/crda/PKGBUILD index f5264bb73..09861db53 100644 --- a/core/crda/PKGBUILD +++ b/core/crda/PKGBUILD @@ -5,11 +5,11 @@ pkgname=crda pkgver=1.1.2 pkgrel=1 pkgdesc="Central Regulatory Domain Agent for wireless networks" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://wireless.kernel.org/en/developers/Regulatory/CRDA" license=('custom') depends=('wireless-regdb' 'libnl' 'libgcrypt' 'udev' 'iw') -makedepends=('python-m2crypto') +makedepends=('python-m2crypto' 'pkg-config') install=crda.install source=(http://wireless.kernel.org/download/crda/${pkgname}-${pkgver}.tar.bz2 crda.rc) diff --git a/core/cronie/PKGBUILD b/core/cronie/PKGBUILD index 795884823..c23101c6f 100644 --- a/core/cronie/PKGBUILD +++ b/core/cronie/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc='Daemon that runs specified programs at scheduled times and related tools' url='https://fedorahosted.org/cronie/' license=('custom:BSD') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('pam' 'bash' 'run-parts') optdepends=('smtp-server: sending cron job output via email') diff --git a/core/cryptsetup/PKGBUILD b/core/cryptsetup/PKGBUILD index a2a11ec9e..cee08955b 100644 --- a/core/cryptsetup/PKGBUILD +++ b/core/cryptsetup/PKGBUILD @@ -4,7 +4,7 @@ pkgname=cryptsetup pkgver=1.3.1 pkgrel=2 pkgdesc="Userspace setup tool for transparent encryption of block devices using the Linux 2.6 cryptoapi" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://code.google.com/p/cryptsetup/" groups=('base') diff --git a/core/curl/PKGBUILD b/core/curl/PKGBUILD index 6636990e4..b9509ece4 100644 --- a/core/curl/PKGBUILD +++ b/core/curl/PKGBUILD @@ -9,7 +9,7 @@ pkgname=curl pkgver=7.22.0 pkgrel=4 pkgdesc="An URL retrival utility and library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://curl.haxx.se" license=('MIT') depends=('ca-certificates' 'libssh2' 'openssl' 'zlib') diff --git a/core/dash/PKGBUILD b/core/dash/PKGBUILD index 3aeb4b3fe..b46979bc2 100644 --- a/core/dash/PKGBUILD +++ b/core/dash/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dash pkgver=0.5.7 pkgrel=2 pkgdesc="A POSIX compliant shell that aims to be as small as possible" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gondor.apana.org.au/~herbert/dash/" license=('BSD') depends=('glibc') diff --git a/core/db/PKGBUILD b/core/db/PKGBUILD index 9387174b8..a932b75ec 100644 --- a/core/db/PKGBUILD +++ b/core/db/PKGBUILD @@ -7,7 +7,7 @@ pkgname=db pkgver=5.2.36 pkgrel=2 pkgdesc="The Berkeley DB embedded database system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.oracle.com/technology/software/products/berkeley-db/index.html" license=('custom') depends=('gcc-libs' 'sh') diff --git a/core/dbus-core/PKGBUILD b/core/dbus-core/PKGBUILD index 7c1b51286..5d82719ae 100644 --- a/core/dbus-core/PKGBUILD +++ b/core/dbus-core/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.4.16 pkgrel=1 pkgdesc="Freedesktop.org message bus system" url="http://www.freedesktop.org/Software/dbus" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'custom') depends=('expat>=2.0.1' 'coreutils' 'filesystem') makedepends=('libx11') diff --git a/core/dhcpcd/PKGBUILD b/core/dhcpcd/PKGBUILD index 1eb7dc82a..ab53755ab 100644 --- a/core/dhcpcd/PKGBUILD +++ b/core/dhcpcd/PKGBUILD @@ -8,7 +8,7 @@ pkgver=5.2.12 pkgrel=1 pkgdesc="RFC2131 compliant DHCP client daemon" url="http://roy.marples.name/dhcpcd/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('BSD') groups=('base') depends=('glibc' 'sh') diff --git a/core/dialog/PKGBUILD b/core/dialog/PKGBUILD index abf51904c..d02a25b4e 100644 --- a/core/dialog/PKGBUILD +++ b/core/dialog/PKGBUILD @@ -7,7 +7,7 @@ pkgname=dialog pkgver=1.1_20111020 pkgrel=1 pkgdesc="A tool to display dialog boxes from shell scripts" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://invisible-island.net/dialog/" license=('LGPL2.1') depends=('ncurses') diff --git a/core/diffutils/PKGBUILD b/core/diffutils/PKGBUILD index 44b02060d..ec0c05e0b 100644 --- a/core/diffutils/PKGBUILD +++ b/core/diffutils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=diffutils pkgver=3.2 pkgrel=1 pkgdesc="Utility programs used for creating patch files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/diffutils" license=('GPL3') groups=('base') diff --git a/core/dmraid/PKGBUILD b/core/dmraid/PKGBUILD index 5af91a2ec..b15879ebf 100644 --- a/core/dmraid/PKGBUILD +++ b/core/dmraid/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="Device mapper RAID interface" url="http://people.redhat.com/~heinzm/sw/dmraid/" conflicts=('mkinitcpio<0.7') depends=('device-mapper>=2.0.54') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') source=(#ftp://ftp.archlinux.org/other/dmraid/$pkgname-$pkgver.tar.bz2 http://people.redhat.com/~heinzm/sw/dmraid/src/$pkgname-1.0.0.rc16-3.tar.bz2 diff --git a/core/dnsutils/PKGBUILD b/core/dnsutils/PKGBUILD index ad0588a51..793ca8850 100644 --- a/core/dnsutils/PKGBUILD +++ b/core/dnsutils/PKGBUILD @@ -13,7 +13,7 @@ pkgrel=1 pkgdesc='DNS utilities: dig host nslookup' url='http://www.isc.org/software/bind/' license=('custom:ISC') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('openssl' 'idnkit') options=('!makeflags') source=("http://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz" diff --git a/core/e2fsprogs/PKGBUILD b/core/e2fsprogs/PKGBUILD index 09fa0f395..f1683011e 100644 --- a/core/e2fsprogs/PKGBUILD +++ b/core/e2fsprogs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=e2fsprogs pkgver=1.41.14 pkgrel=1 pkgdesc="Ext2/3/4 filesystem utilities" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'MIT') url="http://e2fsprogs.sourceforge.net" groups=('base') diff --git a/core/ed/PKGBUILD b/core/ed/PKGBUILD index a644e33fa..acce94227 100644 --- a/core/ed/PKGBUILD +++ b/core/ed/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ed pkgver=1.5 pkgrel=2 pkgdesc="A POSIX-compliant line editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnu.org/software/ed/ed.html" install=ed.install diff --git a/core/eglibc/PKGBUILD b/core/eglibc/PKGBUILD new file mode 100644 index 000000000..87ea5dc27 --- /dev/null +++ b/core/eglibc/PKGBUILD @@ -0,0 +1,149 @@ +# $Id: PKGBUILD 116984 2011-03-27 06:35:25Z allan $ +# Maintainer: Allan McRae <allan@archlinux.org> + +# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc +# NOTE: valgrind requires rebuilt with each new glibc version + +pkgname=eglibc +pkgver=2.13 +pkgrel=1 +_glibcdate=20110117 +pkgdesc="GNU C Library" +arch=('i686' 'x86_64' 'mips64el') +url="http://www.gnu.org/software/libc" +license=('GPL' 'LGPL') +groups=('base') +depends=('linux-api-headers>=2.6.37' 'tzdata') +makedepends=('gcc>=4.4') +backup=(etc/locale.gen + etc/nscd.conf) +options=('!strip') +install=glibc.install +source=(http://repo.parabolagnulinux.org/other/eglibc-2_13.tar.bz2 + http://repo.parabolagnulinux.org/other/eglibc-linuxthreads-2_13.tar.bz2 + http://repo.parabolagnulinux.org/other/eglibc-localedef-2_13.tar.bz2 + http://repo.parabolagnulinux.org/other/eglibc-ports-2_13.tar.bz2 + nscd + locale.gen.txt + locale-gen) + +build() { + cd ${srcdir} + ln -s eglibc-2_13 eglibc + + cd eglibc + + # timezone data is in separate package (tzdata) + sed -i "s/localedata //" Makeconfig + + for addon in ports ; do + ln -s ../eglibc-$addon-2_13 $addon + done + + install -dm755 ${pkgdir}/etc + touch ${pkgdir}/etc/ld.so.conf + + cd ${srcdir} + mkdir build || true + cd build + + if [[ ${CARCH} = "mips64el" ]]; then + # mips64el is only supported out of tree. + extra_addons=",ports" + fi + + echo "slibdir=/lib" >> configparms + + ${srcdir}/eglibc/configure --prefix=/usr \ + --libdir=/usr/lib --libexecdir=/usr/lib \ + --with-headers=/usr/include \ + --enable-add-ons=nptl,libidn$extra_addons \ + --enable-kernel=2.6.27 \ + --with-tls --with-__thread \ + --enable-bind-now --without-gd \ + --without-cvs --disable-profile \ + --disable-multi-arch + + make +} + +check() { + cd ${srcdir}/build + + # some errors are expected - manually check log files + make -k check || true +} + +package() { + cd ${srcdir}/build + make install_root=${pkgdir} install + + rm ${pkgdir}/etc/ld.so.{cache,conf} + + install -dm755 ${pkgdir}/etc/rc.d + install -dm755 ${pkgdir}/usr/sbin + install -dm755 ${pkgdir}/usr/lib/locale + install -m644 ${srcdir}/eglibc/nscd/nscd.conf ${pkgdir}/etc/nscd.conf + install -m755 ${srcdir}/nscd ${pkgdir}/etc/rc.d/nscd + install -m755 ${srcdir}/locale-gen ${pkgdir}/usr/sbin + install -m644 ${srcdir}/eglibc/posix/gai.conf ${pkgdir}/etc/gai.conf + + sed -i -e 's/^\tserver-user/#\tserver-user/' ${pkgdir}/etc/nscd.conf + + # create /etc/locale.gen + install -m644 ${srcdir}/locale.gen.txt ${pkgdir}/etc/locale.gen + sed -i "s|/| |g" ${srcdir}/eglibc/localedata/SUPPORTED + sed -i 's|\\| |g' ${srcdir}/eglibc/localedata/SUPPORTED + sed -i "s|SUPPORTED-LOCALES=||" ${srcdir}/eglibc/localedata/SUPPORTED + cat ${srcdir}/eglibc/localedata/SUPPORTED >> ${pkgdir}/etc/locale.gen + sed -i "s|^|#|g" ${pkgdir}/etc/locale.gen + + if [[ ${CARCH} = "x86_64" ]]; then + # fix for the linker + sed -i '/RTLDLIST/s%lib64%lib%' ${pkgdir}/usr/bin/ldd + # Comply with multilib binaries, they look for the linker in /lib64 + mkdir ${pkgdir}/lib64 + cd ${pkgdir}/lib64 + ln -v -s ../lib/ld* . + fi + + # manually strip files as stripping libpthread-*.so and libthread_db.so + # with the default $STRIP_SHARED breaks gdb and stripping ld-*.so breaks + # valgrind on x86_64 + + cd $pkgdir + strip $STRIP_BINARIES sbin/{ldconfig,sln} \ + usr/bin/{gencat,getconf,getent,iconv,locale} \ + usr/bin/{localedef,pcprofiledump,rpcgen,sprof} \ + usr/lib/getconf/* \ + usr/sbin/{iconvconfig,nscd,rpcinfo} + [[ $CARCH = "i686" ]] && strip $STRIP_BINARIES usr/bin/lddlibc4 + + strip $STRIP_STATIC usr/lib/*.a \ + lib/{{ld,libpthread}-${pkgver},libthread_db-1.0}.so + + strip $STRIP_SHARED lib/{libanl,libBrokenLocale,libc,libcidn,libcrypt}-${pkgver}.so \ + lib/libnss_{compat,dns,files,hesiod,nis,nisplus}-${pkgver}.so \ + lib/{libdl,libm,libnsl,libresolv,librt,libutil}-${pkgver}.so \ + lib/{libmemusage,libpcprofile,libSegFault}.so \ + usr/lib/{pt_chown,gconv/*.so} +} +md5sums=('b7b17d9c6b5b71b5e5322e04ca63c190' + '483f37cfdd619e81d8ca9e9d713944b5' + '4dadb9203b69a3210d53514bb46f41c3' + '0c5540efc51c0b93996c51b57a8540ae' + '40cd342e21f71f5e49e32622b25acc52' + 'a3ac6f318d680347bb6e2805d42b73b2' + 'b042647ea7d6f22ad319e12e796bd13e' + '24dfab6fd244f3773523412588ecc52c' + '7d0154b7e17ea218c9fa953599d24cc4' + 'b587ee3a70c9b3713099295609afde49' + '07ac979b6ab5eeb778d55f041529d623' + '476e9113489f93b348b21e144b6a8fcf') +md5sums=('0f79580a194657aa74e3331d33a3889e' + 'f07ce5e45308fc7e2faaa55f2c766550' + '40b693a9ce8ab0a8837826160b3419c9' + '973e16228492b46bf731ad5ce2e06e9f' + 'b587ee3a70c9b3713099295609afde49' + '07ac979b6ab5eeb778d55f041529d623' + '476e9113489f93b348b21e144b6a8fcf') diff --git a/core/eglibc/glibc-2.13-prelink.patch b/core/eglibc/glibc-2.13-prelink.patch new file mode 100644 index 000000000..bef7998a8 --- /dev/null +++ b/core/eglibc/glibc-2.13-prelink.patch @@ -0,0 +1,26 @@ +diff --git a/elf/rtld.c b/elf/rtld.c +index 9a560b3..201c9cf 100644 +--- a/elf/rtld.c ++++ b/elf/rtld.c +@@ -2168,6 +2168,10 @@ ERROR: ld.so: object '%s' cannot be loaded as audit interface: %s; ignored.\n", + we need it in the memory handling later. */ + GLRO(dl_initial_searchlist) = *GL(dl_ns)[LM_ID_BASE]._ns_main_searchlist; + ++ /* Remember the last search directory added at startup, now that ++ malloc will no longer be the one from dl-minimal.c. */ ++ GLRO(dl_init_all_dirs) = GL(dl_all_dirs); ++ + if (prelinked) + { + if (main_map->l_info [ADDRIDX (DT_GNU_CONFLICT)] != NULL) +@@ -2288,10 +2292,6 @@ ERROR: ld.so: object '%s' cannot be loaded as audit interface: %s; ignored.\n", + lossage); + } + +- /* Remember the last search directory added at startup, now that +- malloc will no longer be the one from dl-minimal.c. */ +- GLRO(dl_init_all_dirs) = GL(dl_all_dirs); +- + if (! prelinked && rtld_multiple_ref) + { + /* There was an explicit ref to the dynamic linker as a shared lib. diff --git a/core/eglibc/glibc.install b/core/eglibc/glibc.install new file mode 100644 index 000000000..7f85ade96 --- /dev/null +++ b/core/eglibc/glibc.install @@ -0,0 +1,20 @@ +infodir=usr/share/info +filelist=(libc.info{,-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11}) + +post_upgrade() { + sbin/ldconfig -r . + [ -x sbin/init ] && sbin/init u + usr/sbin/locale-gen + + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do + usr/bin/install-info $infodir/$file.gz $infodir/dir 2> /dev/null + done +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do + usr/bin/install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null + done +} diff --git a/core/eglibc/locale-gen b/core/eglibc/locale-gen new file mode 100755 index 000000000..5aff344c4 --- /dev/null +++ b/core/eglibc/locale-gen @@ -0,0 +1,42 @@ +#!/bin/sh + +set -e + +LOCALEGEN=/etc/locale.gen +LOCALES=/usr/share/i18n/locales +if [ -n "$POSIXLY_CORRECT" ]; then + unset POSIXLY_CORRECT +fi + + +[ -f $LOCALEGEN -a -s $LOCALEGEN ] || exit 0; + +# Remove all old locale dir and locale-archive before generating new +# locale data. +rm -rf /usr/lib/locale/* || true + +umask 022 + +is_entry_ok() { + if [ -n "$locale" -a -n "$charset" ] ; then + true + else + echo "error: Bad entry '$locale $charset'" + false + fi +} + +echo "Generating locales..." +while read locale charset; do \ + case $locale in \#*) continue;; "") continue;; esac; \ + is_entry_ok || continue + echo -n " `echo $locale | sed 's/\([^.\@]*\).*/\1/'`"; \ + echo -n ".$charset"; \ + echo -n `echo $locale | sed 's/\([^\@]*\)\(\@.*\)*/\2/'`; \ + echo -n '...'; \ + if [ -f $LOCALES/$locale ]; then input=$locale; else \ + input=`echo $locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; fi; \ + localedef -i $input -c -f $charset -A /usr/share/locale/locale.alias $locale; \ + echo ' done'; \ +done < $LOCALEGEN +echo "Generation complete." diff --git a/core/eglibc/locale.gen.txt b/core/eglibc/locale.gen.txt new file mode 100644 index 000000000..ccdd81734 --- /dev/null +++ b/core/eglibc/locale.gen.txt @@ -0,0 +1,23 @@ +# Configuration file for locale-gen +# +# lists of locales that are to be generated by the locale-gen command. +# +# Each line is of the form: +# +# <locale> <charset> +# +# where <locale> is one of the locales given in /usr/share/i18n/locales +# and <charset> is one of the character sets listed in /usr/share/i18n/charmaps +# +# Examples: +# en_US ISO-8859-1 +# en_US.UTF-8 UTF-8 +# de_DE ISO-8859-1 +# de_DE@euro ISO-8859-15 +# +# The locale-gen command will generate all the locales, +# placing them in /usr/lib/locale. +# +# A list of supported locales is included in this file. +# Uncomment the ones you need. +# diff --git a/community-staging/motion/rc.motion b/core/eglibc/nscd index 6ae95d17b..8b14f2a3f 100755 --- a/community-staging/motion/rc.motion +++ b/core/eglibc/nscd @@ -3,31 +3,35 @@ . /etc/rc.conf . /etc/rc.d/functions -PID=`pidof -o %PPID /usr/bin/motion` +PID=`pidof -o %PPID /usr/sbin/nscd` case "$1" in start) - stat_busy "Starting Motion" - [ -z "$PID" ] && /usr/bin/motion + stat_busy "Starting nscd" + # create necessary directories if they don't already exist + mkdir -p /var/run/nscd /var/db/nscd 2>/dev/null + # remove stale files + rm -f /var/db/nscd/* /var/run/nscd/* 2>/dev/null + [ -z "$PID" ] && /usr/sbin/nscd if [ $? -gt 0 ]; then stat_fail else - add_daemon motion + add_daemon nscd stat_done fi ;; stop) - stat_busy "Stopping Motion" + stat_busy "Stopping nscd" [ ! -z "$PID" ] && kill $PID &> /dev/null if [ $? -gt 0 ]; then stat_fail else - rm_daemon motion + rm_daemon nscd stat_done fi ;; restart) $0 stop - sleep 3 + sleep 1 $0 start ;; *) diff --git a/core/eventlog/PKGBUILD b/core/eventlog/PKGBUILD index 638fe3703..f8ddb12dc 100644 --- a/core/eventlog/PKGBUILD +++ b/core/eventlog/PKGBUILD @@ -6,7 +6,7 @@ pkgname=eventlog pkgver=0.2.12 pkgrel=2 pkgdesc="API to format and send structured log messages" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.balabit.com/support/community/products/" license=('BSD') depends=('glibc') diff --git a/core/expat/PKGBUILD b/core/expat/PKGBUILD index 9daf035ad..ed1f35b48 100644 --- a/core/expat/PKGBUILD +++ b/core/expat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=expat pkgver=2.0.1 pkgrel=6 pkgdesc="An XML parser library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://expat.sourceforge.net" license=('custom') depends=('glibc') diff --git a/core/fakeroot/PKGBUILD b/core/fakeroot/PKGBUILD index cb27de18c..1bcd2b39c 100644 --- a/core/fakeroot/PKGBUILD +++ b/core/fakeroot/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fakeroot pkgver=1.18.1 pkgrel=1 pkgdesc="Gives a fake root environment, useful for building packages as a non-privileged user" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://packages.debian.org/fakeroot" groups=('base-devel') diff --git a/core/file/PKGBUILD b/core/file/PKGBUILD index a9c580977..1cacf025b 100644 --- a/core/file/PKGBUILD +++ b/core/file/PKGBUILD @@ -6,7 +6,7 @@ pkgname=file pkgver=5.09 pkgrel=1 pkgdesc="File type identification utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') groups=('base') url="http://www.darwinsys.com/file/" diff --git a/core/findutils/PKGBUILD b/core/findutils/PKGBUILD index e8d3d8c31..983a6cc55 100644 --- a/core/findutils/PKGBUILD +++ b/core/findutils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=findutils pkgver=4.4.2 pkgrel=4 pkgdesc="GNU utilities to locate files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') groups=('base') depends=('glibc' 'sh') diff --git a/core/flex/PKGBUILD b/core/flex/PKGBUILD index b6d795076..e5309d3a5 100644 --- a/core/flex/PKGBUILD +++ b/core/flex/PKGBUILD @@ -6,7 +6,7 @@ pkgname=flex pkgver=2.5.35 pkgrel=5 pkgdesc="A tool for generating text-scanning programs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://flex.sourceforge.net" license=('custom') groups=('base-devel') diff --git a/core/gawk/PKGBUILD b/core/gawk/PKGBUILD index aadd346cf..f7ad9a459 100644 --- a/core/gawk/PKGBUILD +++ b/core/gawk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gawk pkgver=4.0.0 pkgrel=2 pkgdesc="GNU version of awk" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/directory/GNU/gawk.html" license=('GPL') groups=('base') diff --git a/core/gcc/PKGBUILD b/core/gcc/PKGBUILD index 9d324aff9..5f7bd912f 100644 --- a/core/gcc/PKGBUILD +++ b/core/gcc/PKGBUILD @@ -4,16 +4,24 @@ # toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc # NOTE: libtool requires rebuilt with each new gcc version -pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go') +if [[ "${CARCH}" != "mips64el" ]]; then + pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-ada' 'gcc-go') +else + pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc') +fi pkgver=4.6.2 pkgrel=1 #_snapshot=4.6-20110819 _libstdcppmanver=20110814 # Note: check source directory name when updating this pkgdesc="The GNU Compiler Collection" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL' 'custom') url="http://gcc.gnu.org" -makedepends=('binutils>=2.21-9' 'libmpc' 'cloog' 'ppl' 'gcc-ada') +if [[ "${CARCH}" != "mips64el" ]]; then + makedepends=('binutils>=2.21-9' 'libmpc' 'cloog' 'ppl' 'gcc-ada') +else + makedepends=('binutils>=2.21-9' 'libmpc' 'cloog' 'ppl') +fi checkdepends=('dejagnu') options=('!libtool' '!emptydirs') source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2 @@ -51,11 +59,18 @@ build() { cd ${srcdir} mkdir gcc-build && cd gcc-build + + if [[ "${CARCH}" != "mips64el" ]]; then + languages=c,c++,ada,fortran,go,lto,objc,obj-c++ + else + languages=c,c++,fortran,lto,objc,obj-c++ + fi + ${_basedir}/configure --prefix=/usr \ --libdir=/usr/lib --libexecdir=/usr/lib \ --mandir=/usr/share/man --infodir=/usr/share/info \ - --with-bugurl=https://bugs.archlinux.org/ \ - --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ \ + --with-bugurl=https://bugs.parabolagnulinux.org/ \ + --enable-languages=$languages \ --enable-shared --enable-threads=posix \ --with-system-zlib --enable-__cxa_atexit \ --disable-libunwind-exceptions --enable-clocale=gnu \ @@ -65,7 +80,7 @@ build() { --enable-plugin --with-plugin-ld=ld.gold \ --disable-multilib --disable-libssp --disable-libstdcxx-pch \ --enable-checking=release - make + make profiledbootstrap } check() { @@ -100,7 +115,7 @@ package_gcc-libs() make -j1 DESTDIR=${pkgdir} install-target-libobjc # remove unnecessary files installed by install-target-{libquadmath,libgfortran,libobjc} - rm -rf ${pkgdir}/usr/lib/{gcc/,libgfortran.spec} + rm -rf ${pkgdir}/usr/lib{,32}/{gcc/,libgfortran.spec} # remove static libraries find ${pkgdir} -name *.a -delete @@ -121,18 +136,18 @@ package_gcc() # unfortunately it is much, much easier to install the lot and clean-up the mess... make -j1 DESTDIR=${pkgdir} install - rm $pkgdir/usr/bin/{{$CHOST-,}gfortran,{$CHOST-,}gccgo,gnat*} - rm $pkgdir/usr/lib/*.so* - rm $pkgdir/usr/lib/lib{ffi,gfortran,go{,begin},objc,quadmath}.a - rm $pkgdir/usr/lib/libgfortran.spec - rm -r $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/{ada{include,lib},finclude,include/objc} - rm $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/include/{ffi{,target}.h,quadmath{,_weak}.h} - rm $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/{cc1obj{,plus},f951,gnat1,go1,libgfortranbegin.a} - rm -r $pkgdir/usr/lib/go - rm $pkgdir/usr/share/info/{gccgo,gfortran,gnat*,libgomp,libquadmath}.info - rm $pkgdir/usr/share/locale/{de,fr}/LC_MESSAGES/libstdc++.mo - rm $pkgdir/usr/share/man/man1/{gccgo,gfortran}.1 - rm $pkgdir/usr/share/man/man3/ffi* + rm -f $pkgdir/usr/bin/{{$CHOST-,}gfortran,{$CHOST-,}gccgo,gnat*} + rm -f $pkgdir/usr/lib{,32}/*.so* + rm -f $pkgdir/usr/lib{,32}/lib{ffi,gfortran,go{,begin},objc,quadmath}.a + rm -f $pkgdir/usr/lib{,32}/libgfortran.spec + rm -rf $pkgdir/usr/lib{,32}/gcc/$CHOST/${pkgver}/{ada{include,lib},finclude,include/objc} + rm -f $pkgdir/usr/lib{,32}/gcc/$CHOST/${pkgver}/include/{ffi{,target}.h,quadmath{,_weak}.h} + rm -f $pkgdir/usr/lib{,32}/gcc/$CHOST/${pkgver}/{cc1obj{,plus},f951,gnat1,go1,libgfortranbegin.a} + rm -rf $pkgdir/usr/lib{,32}/go + rm -f $pkgdir/usr/share/info/{gccgo,gfortran,gnat*,libgomp,libquadmath}.info + rm -f $pkgdir/usr/share/locale/{de,fr}/LC_MESSAGES/libstdc++.mo + rm -f $pkgdir/usr/share/man/man1/{gccgo,gfortran}.1 + rm -f $pkgdir/usr/share/man/man3/ffi* # many packages require these symlinks install -dm755 ${pkgdir}/lib @@ -196,8 +211,8 @@ package_gcc-fortran() install -Dm755 gcc/f951 $pkgdir/usr/lib/gcc/$CHOST/$pkgver/f951 # remove libraries included in gcc-libs - rm ${pkgdir}/usr/lib/lib{gfortran,quadmath}.so* - rm ${pkgdir}/usr/share/info/libquadmath.info + rm -f ${pkgdir}/usr/lib{,32}/lib{gfortran,quadmath}.so* + rm -f ${pkgdir}/usr/share/info/libquadmath.info # Install Runtime Library Exception install -Dm644 ${_basedir}/COPYING.RUNTIME \ @@ -215,7 +230,7 @@ package_gcc-objc() install -m755 gcc/cc1obj{,plus} $pkgdir/usr/lib/gcc/$CHOST/$pkgver/ # remove libraries included in gcc-libs - rm ${pkgdir}/usr/lib/libobjc.so* + rm -f ${pkgdir}/usr/lib{,32}/libobjc.so* # Install Runtime Library Exception install -Dm644 ${_basedir}/COPYING.RUNTIME \ diff --git a/core/gdbm/PKGBUILD b/core/gdbm/PKGBUILD index e36a059ac..633a7b177 100644 --- a/core/gdbm/PKGBUILD +++ b/core/gdbm/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=9 pkgdesc="GNU database library" url="http://www.gnu.org/software/gdbm/gdbm.html" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glibc' 'sh') source=(ftp://ftp.gnu.org/gnu/gdbm/${pkgname}-${pkgver}.tar.gz gdbm-1.8.3-zeroheaders.patch diff --git a/core/gettext/PKGBUILD b/core/gettext/PKGBUILD index 8b915e52f..7e8af9342 100644 --- a/core/gettext/PKGBUILD +++ b/core/gettext/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gettext pkgver=0.18.1.1 pkgrel=4 pkgdesc="GNU internationalization library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/gettext/" license=('GPL') groups=('base') @@ -19,7 +19,7 @@ md5sums=('3dd55b952826d2b32f51308f2f91aa89') build() { cd "${srcdir}/${pkgname}-${pkgver}" sed -i -e 's/libexpat.so.0/libexpat.so.1/' gettext-tools/src/x-glade.c - ./configure --prefix=/usr --enable-csharp + ./configure --build=$CHOST --prefix=/usr --enable-csharp make } diff --git a/core/glib2/PKGBUILD b/core/glib2/PKGBUILD index 6c37dd14b..fd861bd2f 100644 --- a/core/glib2/PKGBUILD +++ b/core/glib2/PKGBUILD @@ -6,7 +6,7 @@ pkgver=2.30.1 pkgrel=1 pkgdesc="Common C routines used by GTK+ and other libs" url="http://www.gtk.org/" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('pcre' 'libffi') makedepends=('pkgconfig' 'python2') diff --git a/core/glibc/.arch b/core/glibc/.arch new file mode 100644 index 000000000..9fe4d07f7 --- /dev/null +++ b/core/glibc/.arch @@ -0,0 +1 @@ +mips64el=false diff --git a/core/glibc/PKGBUILD b/core/glibc/PKGBUILD index dd77756e3..a6d490f36 100644 --- a/core/glibc/PKGBUILD +++ b/core/glibc/PKGBUILD @@ -9,7 +9,7 @@ pkgver=2.14.1 pkgrel=1 _glibcdate=20111025 pkgdesc="GNU C Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/libc" license=('GPL' 'LGPL') groups=('base') @@ -21,6 +21,7 @@ backup=(etc/gai.conf options=('!strip') install=glibc.install source=(ftp://ftp.archlinux.org/other/glibc/${pkgname}-${pkgver}_${_glibcdate}.tar.xz + http://repo.parabolagnulinux.org/other/glibc-ports-${pkgver}_${_glibcdate}.tar.xz glibc-2.10-dont-build-timezone.patch glibc-2.10-bz4781.patch glibc-__i686.patch @@ -34,20 +35,6 @@ source=(ftp://ftp.archlinux.org/other/glibc/${pkgname}-${pkgver}_${_glibcdate}.t nscd locale.gen.txt locale-gen) -md5sums=('c52a15134dfa9f2c94f2ccd4cb155cf1' - '4dadb9203b69a3210d53514bb46f41c3' - '0c5540efc51c0b93996c51b57a8540ae' - '40cd342e21f71f5e49e32622b25acc52' - 'a3ac6f318d680347bb6e2805d42b73b2' - 'b042647ea7d6f22ad319e12e796bd13e' - '7d0154b7e17ea218c9fa953599d24cc4' - '6970bcfeb3bf88913436d5112d16f588' - '7da8c554a3b591c7401d7023b1928afc' - 'c5de2a946215d647c8af5432ec4b0da0' - '55febbb72139ac7b65757df085024b83' - 'b587ee3a70c9b3713099295609afde49' - '07ac979b6ab5eeb778d55f041529d623' - '476e9113489f93b348b21e144b6a8fcf') mksource() { @@ -56,6 +43,15 @@ mksource() { git checkout -b glibc-2.14-arch origin/release/2.14/master popd tar -cvJf glibc-${pkgver}_${_glibcdate}.tar.xz glibc/* + mksource-ports +} + +mksource-ports() { + git clone git://sourceware.org/git/glibc-ports.git + pushd glibc-ports + git checkout -b glibc-2.14-arch origin/release/2.14/master + popd + tar -cvJf glibc-ports-${pkgver}_${_glibcdate}.tar.xz glibc-ports/* } build() { @@ -99,6 +95,8 @@ build() { # http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=bdd816a3 (only fedora branch...) patch -Np1 -i ${srcdir}/glibc-2.14-reinstall-nis-rpc-headers.patch + ln -s ../glibc-ports ports + install -dm755 ${pkgdir}/etc touch ${pkgdir}/etc/ld.so.conf @@ -109,18 +107,27 @@ build() { if [[ ${CARCH} = "i686" ]]; then # Hack to fix NPTL issues with Xen, only required on 32bit platforms export CFLAGS="${CFLAGS} -mno-tls-direct-seg-refs" + elif [[ ${CARCH} = "mips64el" ]]; then + # mips64el is only supported out of tree. + extra_addons=",ports" fi - echo "slibdir=/lib" >> configparms + if [[ ${CARCH} != "mips64el" ]]; then + echo "slibdir=/lib" >> configparms + libdir=/usr/lib + else + echo "slibdir=/lib32" >> configparms + libdir=/usr/lib32 + fi # remove hardening options from CFLAGS for building libraries CFLAGS=${CFLAGS/-fstack-protector/} CFLAGS=${CFLAGS/-D_FORTIFY_SOURCE=2/} ${srcdir}/glibc/configure --prefix=/usr \ - --libdir=/usr/lib --libexecdir=/usr/lib \ + --libdir=$libdir --libexecdir=$libdir \ --with-headers=/usr/include \ - --enable-add-ons=nptl,libidn \ + --enable-add-ons=nptl,libidn$extra_addons \ --enable-kernel=2.6.27 \ --with-tls --with-__thread \ --enable-bind-now --without-gd \ @@ -152,11 +159,19 @@ package() { cd ${srcdir}/glibc-build make install_root=${pkgdir} install + if [[ ${CARCH} != "mips64el" ]]; then + libdir=usr/lib + slibdir=lib + else + libdir=usr/lib32 + slibdir=lib32 + fi + rm -f ${pkgdir}/etc/ld.so.{cache,conf} install -dm755 ${pkgdir}/etc/rc.d install -dm755 ${pkgdir}/usr/sbin - install -dm755 ${pkgdir}/usr/lib/locale + install -dm755 ${pkgdir}/${libdir}/locale install -m644 ${srcdir}/glibc/nscd/nscd.conf ${pkgdir}/etc/nscd.conf install -m755 ${srcdir}/nscd ${pkgdir}/etc/rc.d/nscd install -m755 ${srcdir}/locale-gen ${pkgdir}/usr/sbin @@ -179,6 +194,12 @@ package() { mkdir ${pkgdir}/lib64 cd ${pkgdir}/lib64 ln -v -s ../lib/ld* . + elif [[ ${CARCH} = "mips64el" ]]; then + # Previously our binaries used /lib/ld.so.1 as the interpreter, we + # don't want the upgrade to fail due to this. + mkdir ${pkgdir}/lib + cd ${pkgdir}/lib + ln -s ../lib32/ld* . fi # manually strip files as stripping libpthread-*.so and libthread_db.so @@ -189,16 +210,16 @@ package() { strip $STRIP_BINARIES sbin/{ldconfig,sln} \ usr/bin/{gencat,getconf,getent,iconv,locale} \ usr/bin/{localedef,pcprofiledump,rpcgen,sprof} \ - usr/lib/getconf/* \ + $libdir/getconf/* \ usr/sbin/{iconvconfig,nscd} [[ $CARCH = "i686" ]] && strip $STRIP_BINARIES usr/bin/lddlibc4 - strip $STRIP_STATIC usr/lib/*.a \ - lib/{{ld,libpthread}-${pkgver},libthread_db-1.0}.so + strip $STRIP_STATIC $libdir/*.a \ + $slibdir/{{ld,libpthread}-${pkgver},libthread_db-1.0}.so - strip $STRIP_SHARED lib/{libanl,libBrokenLocale,libc,libcidn,libcrypt}-${pkgver}.so \ - lib/libnss_{compat,dns,files,hesiod,nis,nisplus}-${pkgver}.so \ - lib/{libdl,libm,libnsl,libresolv,librt,libutil}-${pkgver}.so \ - lib/{libmemusage,libpcprofile,libSegFault}.so \ - usr/lib/{pt_chown,{audit,gconv}/*.so} + strip $STRIP_SHARED $slibdir/{libanl,libBrokenLocale,libc,libcidn,libcrypt}-${pkgver}.so \ + $slibdir/libnss_{compat,dns,files,hesiod,nis,nisplus}-${pkgver}.so \ + $slibdir/{libdl,libm,libnsl,libresolv,librt,libutil}-${pkgver}.so \ + $slibdir/{libmemusage,libpcprofile,libSegFault}.so \ + $libdir/{pt_chown,{audit,gconv}/*.so} } diff --git a/core/gmp/PKGBUILD b/core/gmp/PKGBUILD index 60ed858b2..e8a2c1367 100644 --- a/core/gmp/PKGBUILD +++ b/core/gmp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gmp pkgver=5.0.2 pkgrel=3 pkgdesc="A free library for arbitrary precision arithmetic" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gmplib.org/" depends=('gcc-libs' 'sh') license=('LGPL3') @@ -22,6 +22,7 @@ build() { patch -Np1 -i $srcdir/538dfce27f41.patch [ "${CARCH}" = "i686" ] && export ABI="32" + [ "${CARCH}" = "mips64el" ] && export ABI="n32" ./configure --build=${CHOST} \ --prefix=/usr --infodir=/usr/share/info \ --enable-cxx diff --git a/core/gpm/PKGBUILD b/core/gpm/PKGBUILD index f0284fc2e..aa147eaff 100644 --- a/core/gpm/PKGBUILD +++ b/core/gpm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gpm pkgver=1.20.6 pkgrel=6 pkgdesc="A mouse server for the console and xterm" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nico.schottelius.org/software/gpm/" license=('GPL') depends=('ncurses' 'bash') diff --git a/core/grep/PKGBUILD b/core/grep/PKGBUILD index 18ef7c6d4..893107e56 100644 --- a/core/grep/PKGBUILD +++ b/core/grep/PKGBUILD @@ -6,7 +6,7 @@ pkgname=grep pkgver=2.9 pkgrel=2 pkgdesc="A string search utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') url="http://www.gnu.org/software/grep/grep.html" groups=('base') diff --git a/core/groff/PKGBUILD b/core/groff/PKGBUILD index 73e68b3a6..9cd958e8c 100644 --- a/core/groff/PKGBUILD +++ b/core/groff/PKGBUILD @@ -4,7 +4,7 @@ pkgname=groff pkgver=1.21 pkgrel=1 pkgdesc="GNU troff text-formatting system" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.gnu.org/software/groff/groff.html" license=('GPL') depends=('perl' 'gcc-libs' 'texinfo') diff --git a/core/gzip/PKGBUILD b/core/gzip/PKGBUILD index 67e967ed8..165c116f7 100644 --- a/core/gzip/PKGBUILD +++ b/core/gzip/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gzip pkgver=1.4 pkgrel=4 pkgdesc="GNU compression utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/gzip/" license=('GPL3') groups=('base') diff --git a/core/hdparm/PKGBUILD b/core/hdparm/PKGBUILD index 680cf51c9..bc305d6cc 100644 --- a/core/hdparm/PKGBUILD +++ b/core/hdparm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=hdparm pkgver=9.37 pkgrel=1 pkgdesc="A shell utility for manipulating Linux IDE drive/driver parameters" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('glibc') optdepends=('sh: required by idectl and ultrabayd') source=(http://downloads.sourceforge.net/sourceforge/hdparm/${pkgname}-${pkgver}.tar.gz diff --git a/core/heirloom-mailx/PKGBUILD b/core/heirloom-mailx/PKGBUILD index d5681bc24..b43230449 100644 --- a/core/heirloom-mailx/PKGBUILD +++ b/core/heirloom-mailx/PKGBUILD @@ -7,7 +7,7 @@ pkgname=heirloom-mailx pkgver=12.5 pkgrel=2 pkgdesc="A commandline utility for sending and receiving email" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://heirloom.sourceforge.net/mailx.html" license=('custom') groups=('base') diff --git a/core/idnkit/PKGBUILD b/core/idnkit/PKGBUILD index 3dd1e0833..ad97b1283 100644 --- a/core/idnkit/PKGBUILD +++ b/core/idnkit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=idnkit pkgver=1.0 pkgrel=1 pkgdesc='Provides functionalities about Internationalized Domain Name processing' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.nic.ad.jp/ja/idn/idnkit/download/' license=('custom:BSD') options=('!makeflags' '!libtool') @@ -17,6 +17,8 @@ backup=('etc/idnalias.conf' 'etc/idn.conf') build() { cd "${srcdir}/idnkit-${pkgver}-src" ./configure \ + --host=$CHOST \ + --build=$CHOST \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ diff --git a/core/ifenslave/PKGBUILD b/core/ifenslave/PKGBUILD index 516eba638..767fddecf 100644 --- a/core/ifenslave/PKGBUILD +++ b/core/ifenslave/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ifenslave pkgver=1.1.0 pkgrel=6 pkgdesc="Utility for bonding ethernet interfaces" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.linuxfoundation.org/en/Net:Bonding" license=('GPL2') depends=('glibc') diff --git a/core/inetutils/PKGBUILD b/core/inetutils/PKGBUILD index ebf19d1ce..2831344f4 100644 --- a/core/inetutils/PKGBUILD +++ b/core/inetutils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=inetutils pkgver=1.8 pkgrel=6 pkgdesc="A collection of common network programs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/inetutils/" license=('GPL3') groups=('base') diff --git a/core/iproute2/PKGBUILD b/core/iproute2/PKGBUILD index 68f05ebac..2eabc228d 100644 --- a/core/iproute2/PKGBUILD +++ b/core/iproute2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=iproute2 pkgver=2.6.39 pkgrel=1 pkgdesc="IP Routing Utilities" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.linux-foundation.org/en/Net:Iproute2" depends=('perl') diff --git a/core/iptables/PKGBUILD b/core/iptables/PKGBUILD index 8715f7d04..d1243e382 100644 --- a/core/iptables/PKGBUILD +++ b/core/iptables/PKGBUILD @@ -6,7 +6,7 @@ pkgname=iptables pkgver=1.4.12.1 pkgrel=1 pkgdesc="A Linux kernel packet control tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.netfilter.org/projects/iptables/index.html" depends=('glibc' 'bash') diff --git a/core/iputils/PKGBUILD b/core/iputils/PKGBUILD index 4de06deed..7c9351502 100644 --- a/core/iputils/PKGBUILD +++ b/core/iputils/PKGBUILD @@ -7,7 +7,7 @@ pkgver=20101006 _traceroutever=1.4a12 pkgrel=1 pkgdesc="IP Configuration Utilities (and Ping)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.linuxfoundation.org/en/Net:Iputils" groups=('base') @@ -31,12 +31,14 @@ build() { # Doc fails to build (see FS#20251) # As a temporary workaround, we use these man pages from Fedora & LFS patch -Np1 -i ../iputils-s20101006-manpages.patch + find . -name Makefile | xargs sed -ri 's/^(CCOPT=.*)$/\1 '"${CFLAGS}"'/' make # build traceroute # this is combined in this package because it's awkward as a separate package cd "${srcdir}/traceroute-${_traceroutever}" patch -Np1 -i ../permission-fix.patch + find . -name Makefile.in | xargs sed -ri 's/^(CCOPT=.*)$/\1 '"${CFLAGS}"'/' ./configure --prefix=/usr \ --sbindir=/bin \ --mandir=/usr/share/man diff --git a/core/isdn4k-utils/PKGBUILD b/core/isdn4k-utils/PKGBUILD index 3db35097e..731138125 100644 --- a/core/isdn4k-utils/PKGBUILD +++ b/core/isdn4k-utils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=isdn4k-utils pkgver=3.2p1 pkgrel=6 pkgdesc="User space administration programs and tools for ISDN" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.isdn4linux.de/" license=('GPL') depends=('ncurses') diff --git a/core/isl/PKGBUILD b/core/isl/PKGBUILD index fc65267df..bf6b8b147 100644 --- a/core/isl/PKGBUILD +++ b/core/isl/PKGBUILD @@ -5,7 +5,7 @@ pkgname=isl pkgver=0.07 pkgrel=1 pkgdesc="Library for manipulating sets and relations of integer points bounded by linear constraints" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kotnet.org/~skimo/isl/" license=('LGPL2.1') options=('!libtool') diff --git a/core/iw/PKGBUILD b/core/iw/PKGBUILD index 8d6015157..e20b5660c 100644 --- a/core/iw/PKGBUILD +++ b/core/iw/PKGBUILD @@ -5,11 +5,11 @@ pkgname=iw pkgver=3.0 pkgrel=1 pkgdesc="nl80211 based CLI configuration utility for wireless devices" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://wireless.kernel.org/en/users/Documentation/iw" license=("GPL") depends=("libnl") -makedepends=("kernel-headers") +makedepends=("linux-api-headers" "pkg-config") source=(http://wireless.kernel.org/download/$pkgname/$pkgname-$pkgver.tar.bz2) sha256sums=('a0ccbf1ce71ae4bdb05495ca18ab00a87c06dce2c3bf8b8358c615e60c4632fb') diff --git a/core/jfsutils/PKGBUILD b/core/jfsutils/PKGBUILD index f0342bad0..a96f6b8c5 100644 --- a/core/jfsutils/PKGBUILD +++ b/core/jfsutils/PKGBUILD @@ -4,7 +4,7 @@ pkgname=jfsutils pkgver=1.1.15 pkgrel=2 pkgdesc="JFS filesystem utilities" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://jfs.sourceforge.net" license=('GPL') groups=('base') diff --git a/core/kbd/PKGBUILD b/core/kbd/PKGBUILD index efe8d3ede..fe30473d1 100644 --- a/core/kbd/PKGBUILD +++ b/core/kbd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=kbd pkgver=1.15.3 pkgrel=2 pkgdesc="Keytable files and keyboard utilities" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="ftp://ftp.altlinux.org/pub/people/legion/kbd/" license=('GPL') depends=('glibc') diff --git a/core/keyutils/PKGBUILD b/core/keyutils/PKGBUILD index ec50d99c8..fe3fc5845 100644 --- a/core/keyutils/PKGBUILD +++ b/core/keyutils/PKGBUILD @@ -4,7 +4,7 @@ pkgname=keyutils pkgver=1.5.2 pkgrel=1 pkgdesc="Linux Key Management Utilities" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.kernel.org" license=('GPL2' 'LGPL2.1') depends=('glibc' 'sh') diff --git a/core/krb5/PKGBUILD b/core/krb5/PKGBUILD index 38cf23966..13e75c5ee 100644 --- a/core/krb5/PKGBUILD +++ b/core/krb5/PKGBUILD @@ -5,7 +5,7 @@ pkgname=krb5 pkgver=1.9.1 pkgrel=5 pkgdesc="The Kerberos network authentication system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://web.mit.edu/kerberos/" license=('custom') depends=('e2fsprogs' 'libldap' 'keyutils') diff --git a/core/less/PKGBUILD b/core/less/PKGBUILD index 20d09d07d..20bdb55e5 100644 --- a/core/less/PKGBUILD +++ b/core/less/PKGBUILD @@ -7,7 +7,7 @@ pkgver=444 pkgrel=2 pkgdesc="A terminal based program for viewing text files" license=('GPL3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.greenwoodsoftware.com/less" groups=('base') depends=('ncurses' 'pcre') diff --git a/core/libarchive/PKGBUILD b/core/libarchive/PKGBUILD index a64e19690..41e5f70e5 100644 --- a/core/libarchive/PKGBUILD +++ b/core/libarchive/PKGBUILD @@ -4,7 +4,7 @@ pkgname=libarchive pkgver=2.8.5 pkgrel=2 pkgdesc="library that can create and read several streaming archive formats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libarchive.googlecode.com/" license=('BSD') depends=('zlib' 'bzip2' 'xz>=5.0.0' 'acl' 'openssl>=1.0.0' 'expat') diff --git a/core/libcap/PKGBUILD b/core/libcap/PKGBUILD index 6afa61fee..53495e583 100644 --- a/core/libcap/PKGBUILD +++ b/core/libcap/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libcap pkgver=2.22 pkgrel=1 pkgdesc="POSIX 1003.1e capabilities" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sites.google.com/site/fullycapable/" license=('GPL2') depends=('glibc' 'attr') diff --git a/core/libedit/PKGBUILD b/core/libedit/PKGBUILD index 280b04ec4..59b8c9433 100644 --- a/core/libedit/PKGBUILD +++ b/core/libedit/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libedit pkgver=20110802_3.0 pkgrel=1 pkgdesc='Command line editor library providing generic line editing, history, and tokenization functions' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.thrysoee.dk/editline/' license=('BSD') depends=('ncurses') diff --git a/core/libevent/PKGBUILD b/core/libevent/PKGBUILD index fefac11ee..5fc26254a 100644 --- a/core/libevent/PKGBUILD +++ b/core/libevent/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libevent pkgver=2.0.15 pkgrel=1 pkgdesc="An event notification library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.monkey.org/~provos/libevent/" license=('GPL2') depends=('openssl') diff --git a/core/libfetch/PKGBUILD b/core/libfetch/PKGBUILD index 328ebcf88..7ad51c2b5 100644 --- a/core/libfetch/PKGBUILD +++ b/core/libfetch/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libfetch pkgver=2.33 pkgrel=3 pkgdesc="URL based download library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('BSD') depends=('openssl>=1.0.0') url="http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/net/libfetch/" diff --git a/core/libgcrypt/PKGBUILD b/core/libgcrypt/PKGBUILD index 974f69b8a..ec4077548 100644 --- a/core/libgcrypt/PKGBUILD +++ b/core/libgcrypt/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgcrypt pkgver=1.5.0 pkgrel=1 pkgdesc="a general purpose crypto library based on the code used" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.gnupg.org" license=('LGPL') depends=('libgpg-error>=1.9') diff --git a/core/libgpg-error/PKGBUILD b/core/libgpg-error/PKGBUILD index b0cbef1c0..d24c58623 100644 --- a/core/libgpg-error/PKGBUILD +++ b/core/libgpg-error/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgpg-error pkgver=1.10 pkgrel=1 pkgdesc="Support library for libgcrypt" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.gnupg.org" license=('LGPL') depends=('glibc' 'sh') diff --git a/core/libgssglue/PKGBUILD b/core/libgssglue/PKGBUILD index d651bf612..3d7678a0c 100644 --- a/core/libgssglue/PKGBUILD +++ b/core/libgssglue/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgssglue pkgver=0.3 pkgrel=1 pkgdesc="Exports a gssapi interface which calls other random gssapi libraries" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.citi.umich.edu/projects/nfsv4/linux/" license=('BSD') depends=('glibc') diff --git a/core/libmpc/PKGBUILD b/core/libmpc/PKGBUILD index f482d4104..df2984082 100644 --- a/core/libmpc/PKGBUILD +++ b/core/libmpc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libmpc pkgver=0.9 pkgrel=2 pkgdesc="Library for the arithmetic of complex numbers with arbitrarily high precision" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.multiprecision.org/" license=('LGPL') depends=('mpfr>=3.0.0') diff --git a/core/libnl/PKGBUILD b/core/libnl/PKGBUILD index 18803a30f..29edac2e7 100644 --- a/core/libnl/PKGBUILD +++ b/core/libnl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libnl pkgver=1.1 pkgrel=3 pkgdesc="Library for applications dealing with netlink sockets" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.infradead.org/~tgr/libnl/" license=('GPL') depends=('glibc') diff --git a/core/libpcap/PKGBUILD b/core/libpcap/PKGBUILD index 845ff13bf..596e16fcc 100644 --- a/core/libpcap/PKGBUILD +++ b/core/libpcap/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libpcap pkgver=1.1.1 pkgrel=2 pkgdesc="A system-independent interface for user-level packet capture" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.tcpdump.org/" license=('BSD') depends=('glibc' 'libnl' 'sh') diff --git a/core/libpipeline/PKGBUILD b/core/libpipeline/PKGBUILD index 086d93d54..a0a0f5045 100644 --- a/core/libpipeline/PKGBUILD +++ b/core/libpipeline/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libpipeline pkgver=1.2.0 pkgrel=1 pkgdesc="a C library for manipulating pipelines of subprocesses in a flexible and convenient way" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libpipeline.nongnu.org/" license=('GPL') groups=('base') diff --git a/core/librpcsecgss/PKGBUILD b/core/librpcsecgss/PKGBUILD index c16ea175b..7031203ce 100644 --- a/core/librpcsecgss/PKGBUILD +++ b/core/librpcsecgss/PKGBUILD @@ -6,7 +6,7 @@ pkgname=librpcsecgss pkgver=0.19 pkgrel=5 pkgdesc="Library for RPCSECGSS support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.citi.umich.edu/projects/nfsv4/linux/" license=('GPL') depends=('glibc' 'krb5' 'libgssglue') diff --git a/core/libsasl/PKGBUILD b/core/libsasl/PKGBUILD index c4f93c384..c9f8a44b9 100644 --- a/core/libsasl/PKGBUILD +++ b/core/libsasl/PKGBUILD @@ -10,11 +10,11 @@ pkgname=libsasl pkgver=2.1.23 pkgrel=8 pkgdesc="Cyrus Simple Authentication Service Layer (SASL) library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cyrusimap.web.cmu.edu/downloads.html#sasl" license=('custom') options=('!makeflags' '!libtool') -makedepends=('postgresql-libs' 'libmysqlclient' 'libldap' 'krb5' 'openssl') +makedepends=('postgresql-libs' 'libmysqlclient' 'libldap' 'krb5' 'openssl' 'libtool' 'groff') source=(ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-sasl-${pkgver}.tar.gz cyrus-sasl-2.1.19-checkpw.c.patch cyrus-sasl-2.1.22-crypt.patch @@ -97,6 +97,8 @@ build() { popd ./configure --prefix=/usr \ + --host=$CHOST \ + --build=$CHOST \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ --disable-static \ diff --git a/core/libssh2/PKGBUILD b/core/libssh2/PKGBUILD index 3fcc6eccd..4a7212c91 100644 --- a/core/libssh2/PKGBUILD +++ b/core/libssh2/PKGBUILD @@ -10,7 +10,7 @@ pkgver=1.3.0 pkgrel=1 pkgdesc="A library implementing the SSH2 protocol as defined by Internet Drafts" url="http://www.libssh2.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('BSD') depends=('openssl') makedepends=('zlib') diff --git a/core/libtirpc/PKGBUILD b/core/libtirpc/PKGBUILD index 6035cdb2c..fac744d86 100644 --- a/core/libtirpc/PKGBUILD +++ b/core/libtirpc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libtirpc pkgver=0.2.2 pkgrel=2 pkgdesc="Transport Independent RPC library (SunRPC replacement)" -arch=('i686' 'x86_64') +arch=(i686 x86_64 mips64el) url="http://libtirpc.sourceforge.net/" license=('BSD') depends=('libgssglue') diff --git a/core/libtool/PKGBUILD b/core/libtool/PKGBUILD index dc3efba50..dd52c6771 100644 --- a/core/libtool/PKGBUILD +++ b/core/libtool/PKGBUILD @@ -8,16 +8,19 @@ pkgname=('libtool' 'libltdl') pkgver=2.4.2 pkgrel=2 pkgdesc="A generic library support script" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/libtool" license=('GPL') options=('!libtool') -source=(ftp://ftp.gnu.org/pub/gnu/libtool/${pkgname}-${pkgver}.tar.xz{,.sig}) +source=(ftp://ftp.gnu.org/pub/gnu/libtool/${pkgname}-${pkgver}.tar.xz{,.sig} + nopic.patch) md5sums=('2ec8997e0c07249eb4cbd072417d70fe' - '1e6ba57420c82c663c85e745d11c7eed') + '1e6ba57420c82c663c85e745d11c7eed' + '46443cf0e3e1b4e4891812af73385615') build() { cd ${srcdir}/${pkgbase}-${pkgver} + [ "$CARCH" = "mips64el" ] && patch -Np1 -i "${srcdir}/nopic.patch" ./configure --prefix=/usr make } diff --git a/core/libtool/nopic.patch b/core/libtool/nopic.patch new file mode 100644 index 000000000..43a712685 --- /dev/null +++ b/core/libtool/nopic.patch @@ -0,0 +1,13 @@ +Index: libtool-2.2.6a/tests/demo-nopic.test +=================================================================== +--- libtool-2.2.6a.orig/tests/demo-nopic.test 2008-11-18 21:11:29.000000000 +0000 ++++ libtool-2.2.6a/tests/demo-nopic.test 2008-11-18 21:12:41.000000000 +0000 +@@ -26,7 +26,7 @@ + . tests/defs || exit 1 + + case "$host" in +-hppa*|x86_64*|s390*) ++hppa*|x86_64*|s390*|mips*|arm*) + func_skip "$host doesn't like non-PIC shared libs" + ;; + *-solaris*|*-sunos*) diff --git a/core/libusb-compat/PKGBUILD b/core/libusb-compat/PKGBUILD index b2b16ced6..2391c2cbd 100644 --- a/core/libusb-compat/PKGBUILD +++ b/core/libusb-compat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libusb-compat pkgver=0.1.3 pkgrel=1 pkgdesc="Library to enable user space application programs to communicate with USB devices" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libusb' 'sh') url="http://libusb.sourceforge.net/" license=('LGPL') diff --git a/core/libusb/PKGBUILD b/core/libusb/PKGBUILD index 31f148fc1..c7ab438b6 100644 --- a/core/libusb/PKGBUILD +++ b/core/libusb/PKGBUILD @@ -5,7 +5,7 @@ pkgver=1.0.8 pkgrel=2 depends=('glibc') pkgdesc="Library to enable user space application programs to communicate with USB devices." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://libusb.sourceforge.net/" license=('LGPL') source=(http://downloads.sourceforge.net/libusb/libusb-${pkgver}.tar.bz2) diff --git a/core/links/PKGBUILD b/core/links/PKGBUILD index 6825536f5..c52cf0a05 100644 --- a/core/links/PKGBUILD +++ b/core/links/PKGBUILD @@ -5,7 +5,7 @@ pkgname=links pkgver=2.3 pkgrel=1 pkgdesc="A text WWW browser, similar to Lynx" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://links.twibright.com/" license=('GPL') depends=('bzip2' 'zlib' 'openssl' 'gpm') diff --git a/core/linux-api-headers/PKGBUILD b/core/linux-api-headers/PKGBUILD index cc3c67a28..2acfc5dc5 100644 --- a/core/linux-api-headers/PKGBUILD +++ b/core/linux-api-headers/PKGBUILD @@ -8,20 +8,20 @@ pkgver=3.0.1 _basever=3.0 pkgrel=1 pkgdesc="Kernel headers sanitized for use in userspace" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/libc" license=('GPL2') provides=("kernel-headers=${pkgver}") conflicts=('kernel-headers') replaces=('kernel-headers') -source=(http://www.kernel.org/pub/linux/kernel/v${_basever}/linux-${_basever}.tar.bz2 - http://www.kernel.org/pub/linux/kernel/v${_basever}/patch-${pkgver}.bz2) -md5sums=('398e95866794def22b12dfbc15ce89c0' - 'ac49f7907f1fc85fbab92d0f1aa1552a') +source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/${_basever}-libre/linux-${_basever}-libre.tar.xz" + "http://linux-libre.fsfla.org/pub/linux-libre/releases/${pkgver}-libre/patch-${_basever}-libre-${pkgver}-libre.xz") +md5sums=('44e7bc20c235a193f9b6123a8d5e9509' + 'af8d721036d89ed5500675c3289e3b48') build() { cd ${srcdir}/linux-${_basever} - [[ $pkgver != $_basever ]] && patch -Np1 -i ${srcdir}/patch-${pkgver} + [[ $pkgver != $_basever ]] && patch -Np1 -i ${srcdir}/patch-${_basever}-libre-${pkgver}-libre make mrproper make headers_check diff --git a/core/linux-atm/PKGBUILD b/core/linux-atm/PKGBUILD index 2a7f7c7e0..0939ae538 100644 --- a/core/linux-atm/PKGBUILD +++ b/core/linux-atm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=linux-atm pkgver=2.5.1 pkgrel=2 pkgdesc="Drivers and tools to support ATM networking under Linux." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glibc') url="http://linux-atm.sourceforge.net/" license=(GPL) diff --git a/core/logrotate/PKGBUILD b/core/logrotate/PKGBUILD index c59ae4eca..97cddc85d 100644 --- a/core/logrotate/PKGBUILD +++ b/core/logrotate/PKGBUILD @@ -6,7 +6,7 @@ pkgname=logrotate pkgver=3.8.1 pkgrel=1 pkgdesc="Rotates system logs automatically" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://fedorahosted.org/logrotate/" license=('GPL') groups=('base') diff --git a/core/lvm2/PKGBUILD b/core/lvm2/PKGBUILD index 2bfdc78b0..f736cc8ac 100644 --- a/core/lvm2/PKGBUILD +++ b/core/lvm2/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=lvm2 pkgname=('lvm2' 'device-mapper') pkgver=2.02.88 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceware.org/lvm2/" license=('GPL2' 'LGPL2.1') groups=('base') diff --git a/core/lzo2/PKGBUILD b/core/lzo2/PKGBUILD index dd0c5e65b..7b56fe632 100644 --- a/core/lzo2/PKGBUILD +++ b/core/lzo2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lzo2 pkgver=2.06 pkgrel=1 pkgdesc="Portable lossless data compression library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.oberhumer.com/opensource/lzo" license=('GPL') depends=('glibc') diff --git a/core/m4/PKGBUILD b/core/m4/PKGBUILD index de13524da..52eb11804 100644 --- a/core/m4/PKGBUILD +++ b/core/m4/PKGBUILD @@ -6,7 +6,7 @@ pkgname=m4 pkgver=1.4.16 pkgrel=2 pkgdesc="The GNU macro processor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/m4" license=('GPL3') groups=('base-devel') diff --git a/core/make/PKGBUILD b/core/make/PKGBUILD index 3f38c53f3..4106f80fa 100644 --- a/core/make/PKGBUILD +++ b/core/make/PKGBUILD @@ -6,7 +6,7 @@ pkgname=make pkgver=3.82 pkgrel=4 pkgdesc="GNU make utility to maintain groups of programs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/make" license=('GPL3') groups=('base-devel') diff --git a/core/man-db/PKGBUILD b/core/man-db/PKGBUILD index 25675079f..7a2ece22f 100644 --- a/core/man-db/PKGBUILD +++ b/core/man-db/PKGBUILD @@ -6,7 +6,7 @@ pkgname=man-db pkgver=2.6.0.2 pkgrel=2 pkgdesc="A utility for reading man pages" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nongnu.org/man-db/" license=('GPL' 'LGPL') groups=('base') diff --git a/core/mdadm/PKGBUILD b/core/mdadm/PKGBUILD index 790e9f4d0..d793695f0 100644 --- a/core/mdadm/PKGBUILD +++ b/core/mdadm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mdadm pkgver=3.2.2 pkgrel=4 pkgdesc="A tool for managing/monitoring Linux md device arrays, also known as Software RAID" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://www.cse.unsw.edu.au/~neilb/source/mdadm/" groups=('base') diff --git a/core/mkinitcpio-busybox/PKGBUILD b/core/mkinitcpio-busybox/PKGBUILD index eb4f651d9..9c03696d4 100644 --- a/core/mkinitcpio-busybox/PKGBUILD +++ b/core/mkinitcpio-busybox/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mkinitcpio-busybox pkgver=1.19.2 pkgrel=1 pkgdesc="base initramfs tools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.busybox.net/" license=('GPL') depends=('glibc') @@ -19,7 +19,12 @@ sha256sums=('ea7ec9b6df70b8c528f4a2b6300e9913431c7223308fb08dfafa7508d75a0cb9' build() { cd "$srcdir/busybox-$pkgver" - local safeflags="${CARCH/_/-} -mtune=generic -Os -pipe -fno-strict-aliasing" + case $CARCH in + mips64el) + local safeflags='-O2 -march=loongson2f -mabi=n32 -mplt -Wa,-mfix-loongson2f-nop -Os -pipe -fno-strict-aliasing' ;; + *) + local safeflags="${CARCH/_/-} -mtune=generic -Os -pipe -fno-strict-aliasing" ;; + esac sed 's|^\(CONFIG_EXTRA_CFLAGS\)=.*|\1="-march='"$safeflags"'"|' \ "$srcdir/config" > .config diff --git a/core/mkinitcpio-nfs-utils/PKGBUILD b/core/mkinitcpio-nfs-utils/PKGBUILD index 78d5c4737..69b494888 100644 --- a/core/mkinitcpio-nfs-utils/PKGBUILD +++ b/core/mkinitcpio-nfs-utils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mkinitcpio-nfs-utils pkgver=0.2 pkgrel=2 pkgdesc="ipconfig and nfsmount tools for NFS root support in mkinitcpio" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.archlinux.org/" license=('GPL2') depends=('glibc') diff --git a/core/mkinitcpio/PKGBUILD b/core/mkinitcpio/PKGBUILD new file mode 100644 index 000000000..49ca6284c --- /dev/null +++ b/core/mkinitcpio/PKGBUILD @@ -0,0 +1,29 @@ +pkgname=mkinitcpio +pkgver=0.7.4 +pkgrel=1 +epoch=14 +pkgdesc="Modular initramfs image creation utility" +arch=('mips64el') +url="http://www.archlinux.org/" +license=('GPL') +depends=('mkinitcpio-busybox>=1.16.1-2' 'module-init-tools' 'util-linux>=2.19' 'libarchive' 'coreutils' + 'bash' 'findutils' 'sed' 'grep' 'filesystem>=2011.10-1' 'udev>=171-2' 'file' 'gzip') +optdepends=('xz: Use lzma or xz compression for the initramfs image' + 'bzip2: Use bzip2 compression for the initramfs image' + 'lzop: Use lzo compression for the initramfs image' + 'mkinitcpio-nfs-utils: Support for root filesystem on NFS') +replaces=('mkinitrd' 'mkinitramfs' 'klibc' 'klibc-extras' 'klibc-kbd' + 'klibc-module-init-tools' 'klibc-udev') +source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz" + 'patch.patch') +backup=(etc/mkinitcpio.conf) +sha256sums=('60ce2c78ecec35a9762c300774753da6870b4469f3b259fe0c116771ff643fd6' + 'abf6bb9d692838cc2f97f12f0901f0209dbf6f437f9590accd26dbcfc48f1b16') + +package() { + cd "$srcdir/$pkgname-$pkgver" + + patch install/base ../patch.patch + + make DESTDIR="$pkgdir" install +}
\ No newline at end of file diff --git a/core/mkinitcpio/patch.patch b/core/mkinitcpio/patch.patch new file mode 100644 index 000000000..ce3553557 --- /dev/null +++ b/core/mkinitcpio/patch.patch @@ -0,0 +1,4 @@ +4c4 +< for dir in proc sys dev run usr/{bin,sbin}; do +--- +> for dir in lib32 proc sys dev run usr/{bin,sbin}; do # Added `lib32' like fauno told me to. diff --git a/core/mlocate/PKGBUILD b/core/mlocate/PKGBUILD index ef1b74590..818bae57c 100644 --- a/core/mlocate/PKGBUILD +++ b/core/mlocate/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mlocate pkgver=0.24 pkgrel=2 pkgdesc="Faster merging drop-in for slocate" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://carolina.mff.cuni.cz/~trmac/blog/mlocate" license=('GPL') conflicts=('slocate') diff --git a/core/module-init-tools/PKGBUILD b/core/module-init-tools/PKGBUILD index e65f419df..d3299c964 100644 --- a/core/module-init-tools/PKGBUILD +++ b/core/module-init-tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=module-init-tools pkgver=3.16 pkgrel=1 pkgdesc="utilities needed by Linux systems for managing loadable kernel modules" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kerneltools.org" license=('GPL') depends=('glibc') diff --git a/core/mpfr/PKGBUILD b/core/mpfr/PKGBUILD index 00c4962d9..0ed1392cb 100644 --- a/core/mpfr/PKGBUILD +++ b/core/mpfr/PKGBUILD @@ -8,7 +8,8 @@ _patchlevel=p1 pkgver=${_pkgver}.${_patchlevel} pkgrel=1 pkgdesc="Multiple-precision floating-point library" -arch=('i686' 'x86_64') +license=('LGPL') +arch=('i686' 'x86_64' 'mips64el') url="http://www.mpfr.org/" license=('LGPL') depends=('gmp>=5.0') diff --git a/core/nano/PKGBUILD b/core/nano/PKGBUILD index ab760c2df..bdd3d4a5a 100644 --- a/core/nano/PKGBUILD +++ b/core/nano/PKGBUILD @@ -6,7 +6,7 @@ pkgname=nano pkgver=2.2.6 pkgrel=1 pkgdesc="Pico editor clone with enhancements" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.nano-editor.org" groups=('base') diff --git a/core/ncurses/PKGBUILD b/core/ncurses/PKGBUILD index fdf6a0343..4496b8989 100644 --- a/core/ncurses/PKGBUILD +++ b/core/ncurses/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ncurses pkgver=5.9 pkgrel=2 pkgdesc="System V Release 4.0 curses emulation library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/ncurses/" license=('MIT') depends=('glibc') diff --git a/core/net-tools/PKGBUILD b/core/net-tools/PKGBUILD index e48e2fc5a..5c761e2a2 100644 --- a/core/net-tools/PKGBUILD +++ b/core/net-tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=net-tools pkgver=1.60.20110819cvs pkgrel=1 pkgdesc="Configuration tools for Linux networking" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://www.tazenda.demon.co.uk/phil/net-tools" depends=('glibc') diff --git a/core/nfs-utils/PKGBUILD b/core/nfs-utils/PKGBUILD index cdcbf3e86..eced63917 100644 --- a/core/nfs-utils/PKGBUILD +++ b/core/nfs-utils/PKGBUILD @@ -9,7 +9,7 @@ pkgname=nfs-utils pkgver=1.2.5 pkgrel=1 pkgdesc="Support programs for Network File Systems" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://nfs.sourceforge.net' license=('GPL') backup=(etc/{exports,idmapd.conf} etc/conf.d/{nfs-common.conf,nfs-server.conf}) diff --git a/core/nfsidmap/PKGBUILD b/core/nfsidmap/PKGBUILD index a402e5c84..08a78b077 100644 --- a/core/nfsidmap/PKGBUILD +++ b/core/nfsidmap/PKGBUILD @@ -6,7 +6,7 @@ pkgname=nfsidmap pkgver=0.24 pkgrel=3 pkgdesc="Library to help mapping IDs, mainly for NFSv4" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.citi.umich.edu/projects/nfsv4/linux/" depends=('glibc' 'libldap>=2.4.18') license=('custom:nfsidmap') diff --git a/core/nilfs-utils/PKGBUILD b/core/nilfs-utils/PKGBUILD index 5821edea0..75f0f8f89 100644 --- a/core/nilfs-utils/PKGBUILD +++ b/core/nilfs-utils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=nilfs-utils pkgver=2.0.23 pkgrel=1 pkgdesc="A log-structured file system supporting continuous snapshotting (userspace utils)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nilfs.org/" license=('GPL2' 'LGPL2.1') backup=('etc/nilfs_cleanerd.conf') diff --git a/core/openldap/PKGBUILD b/core/openldap/PKGBUILD index 1d5cc207d..2dcb2954c 100644 --- a/core/openldap/PKGBUILD +++ b/core/openldap/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=openldap pkgname=('libldap' 'openldap') pkgver=2.4.26 pkgrel=5 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.openldap.org/" license=('custom') makedepends=('libfetch' 'libltdl' 'libsasl') diff --git a/core/openssh/PKGBUILD b/core/openssh/PKGBUILD index a8899d96c..fcdcb99f9 100644 --- a/core/openssh/PKGBUILD +++ b/core/openssh/PKGBUILD @@ -7,7 +7,7 @@ pkgname=openssh pkgver=5.9p1 pkgrel=4 pkgdesc='Free version of the SSH connectivity tools' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom:BSD') url='http://www.openssh.org/portable.html' backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/pam.d/sshd' 'etc/conf.d/sshd') diff --git a/core/openssl/PKGBUILD b/core/openssl/PKGBUILD index f3ddf3b87..a0237888d 100644 --- a/core/openssl/PKGBUILD +++ b/core/openssl/PKGBUILD @@ -7,7 +7,7 @@ _ver=1.0.0e pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}} pkgrel=1 pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer Security' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='https://www.openssl.org' license=('custom:BSD') depends=('perl') diff --git a/core/openvpn/PKGBUILD b/core/openvpn/PKGBUILD index 378c58edd..d90a8a570 100644 --- a/core/openvpn/PKGBUILD +++ b/core/openvpn/PKGBUILD @@ -5,7 +5,7 @@ pkgname=openvpn pkgver=2.2.1 pkgrel=1 pkgdesc="An easy-to-use, robust, and highly configurable VPN (Virtual Private Network)" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://openvpn.net/index.php/open-source.html" depends=('openssl' 'lzo2' 'iproute2') license=('custom') diff --git a/core/pacman/pacman.conf.mips64el b/core/pacman/pacman.conf.mips64el new file mode 100644 index 000000000..09a5c8d5a --- /dev/null +++ b/core/pacman/pacman.conf.mips64el @@ -0,0 +1,86 @@ +# +# /etc/pacman.conf +# +# See the pacman.conf(5) manpage for option and repository directives + +# +# GENERAL OPTIONS +# +[options] +# The following paths are commented out with their default values listed. +# If you wish to use different paths, uncomment and update the paths. +#RootDir = / +#DBPath = /var/lib/pacman/ +#CacheDir = /var/cache/pacman/pkg/ +#LogFile = /var/log/pacman.log +HoldPkg = pacman glibc +# If upgrades are available for these packages they will be asked for first +SyncFirst = pacman +#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u +#XferCommand = /usr/bin/curl -C - -f %u > %o +#CleanMethod = KeepInstalled +Architecture = mips64el + +# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup +#IgnorePkg = +#IgnoreGroup = + +#NoUpgrade = +#NoExtract = + +# Misc options (all disabled by default) +#UseSyslog +#ShowSize +#UseDelta +#TotalDownload +#CheckSpace + +# +# REPOSITORIES +# - can be defined here or included from another file +# - pacman will search repositories in the order defined here +# - local/custom mirrors can be added here or in separate files +# - repositories listed first will take precedence when packages +# have identical names, regardless of version number +# - URLs will have $repo replaced by the name of the current repo +# - URLs will have $arch replaced by the name of the architecture +# +# Repository entries are of the format: +# [repo-name] +# Server = ServerName +# Include = IncludePath +# +# The header [repo-name] is crucial - it must be present and +# uncommented to enable the repo. +# + +# The testing repositories are disabled by default. To enable, uncomment the +# repo name header and Include lines. You can add preferred servers immediately +# after the header, and they will be used before the default mirrors. + +#[libre-testing] +#Include = /etc/pacman.d/mirrorlist + +#[testing] +#Include = /etc/pacman.d/mirrorlist + +[libre] +Include = /etc/pacman.d/mirrorlist + +[core] +Include = /etc/pacman.d/mirrorlist + +[extra] +Include = /etc/pacman.d/mirrorlist + +#[community-testing] +#Include = /etc/pacman.d/mirrorlist + +[community] +Include = /etc/pacman.d/mirrorlist + +# An example of a custom package repository. See the pacman manpage for +# tips on creating your own repositories. +#[custom] +#Server = file:///home/custompkgs + diff --git a/core/pam/PKGBUILD b/core/pam/PKGBUILD index 2ac87cd2c..097eac49c 100644 --- a/core/pam/PKGBUILD +++ b/core/pam/PKGBUILD @@ -6,11 +6,13 @@ pkgname=pam pkgver=1.1.5 pkgrel=1 pkgdesc="PAM (Pluggable Authentication Modules) library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.kernel.org/pub/linux/libs/pam/" depends=('glibc' 'db' 'cracklib' 'libtirpc') makedepends=('flex' 'w3m' 'docbook-xml>=4.4' 'docbook-xsl') +[ "$CARCH" = "mips64el" ] && \ +makedepends=('flex' 'docbook-xml>=4.4' 'docbook-xsl') backup=(etc/security/{access.conf,group.conf,limits.conf,namespace.conf,namespace.init,pam_env.conf,time.conf} etc/pam.d/other etc/default/passwd etc/environment) source=(https://fedorahosted.org/releases/l/i/linux-pam/Linux-PAM-$pkgver.tar.bz2 #http://www.kernel.org/pub/linux/libs/pam/library/Linux-PAM-$pkgver.tar.bz2 diff --git a/core/patch/PKGBUILD b/core/patch/PKGBUILD index 8c0185fa9..c833ac954 100644 --- a/core/patch/PKGBUILD +++ b/core/patch/PKGBUILD @@ -6,7 +6,7 @@ pkgname=patch pkgver=2.6.1 pkgrel=3 pkgdesc="A utility to apply patch files to original sources" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/patch/patch.html" license=('GPL') groups=('base-devel') diff --git a/core/pciutils/PKGBUILD b/core/pciutils/PKGBUILD index 0cf79dfb3..28017b729 100644 --- a/core/pciutils/PKGBUILD +++ b/core/pciutils/PKGBUILD @@ -4,7 +4,7 @@ pkgname=pciutils pkgver=3.1.8 pkgrel=1 pkgdesc="PCI bus configuration space access library and tools" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') groups=('base') url="http://mj.ucw.cz/pciutils.html" diff --git a/core/pcmciautils/PKGBUILD b/core/pcmciautils/PKGBUILD index fee30155d..6c165e745 100644 --- a/core/pcmciautils/PKGBUILD +++ b/core/pcmciautils/PKGBUILD @@ -4,7 +4,7 @@ pkgname=pcmciautils pkgver=018 pkgrel=1 pkgdesc="Utilities for inserting and removing PCMCIA cards" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html" license=('GPL') groups=('base') diff --git a/core/pcre/PKGBUILD b/core/pcre/PKGBUILD index 489408a43..0bb067f67 100644 --- a/core/pcre/PKGBUILD +++ b/core/pcre/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pcre pkgver=8.20 pkgrel=1 pkgdesc="A library that implements Perl 5-style regular expressions" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.pcre.org/" license=('BSD') depends=('gcc-libs') diff --git a/core/perl/PKGBUILD b/core/perl/PKGBUILD index 46ca72ef2..720f72aae 100644 --- a/core/perl/PKGBUILD +++ b/core/perl/PKGBUILD @@ -7,7 +7,7 @@ pkgname=perl pkgver=5.14.2 pkgrel=2 pkgdesc="A highly capable, feature-rich programming language" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'PerlArtistic') url="http://www.perl.org" groups=('base') diff --git a/core/pkg-config/PKGBUILD b/core/pkg-config/PKGBUILD index ce42fd9b7..0ca43e47c 100644 --- a/core/pkg-config/PKGBUILD +++ b/core/pkg-config/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pkg-config pkgver=0.26 pkgrel=2 pkgdesc="A system for managing library compile/link flags" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pkgconfig.freedesktop.org/wiki/" license=('GPL') groups=('base-devel') diff --git a/core/popt/PKGBUILD b/core/popt/PKGBUILD index 202126bab..09ec1ca1a 100644 --- a/core/popt/PKGBUILD +++ b/core/popt/PKGBUILD @@ -9,7 +9,7 @@ pkgname=popt pkgver=1.16 pkgrel=4 pkgdesc="A commandline option parser" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://rpm5.org" license=('custom') depends=('glibc') diff --git a/core/ppl/PKGBUILD b/core/ppl/PKGBUILD index 953f1da9b..193da1a19 100644 --- a/core/ppl/PKGBUILD +++ b/core/ppl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ppl pkgver=0.11.2 pkgrel=2 pkgdesc="A modern library for convex polyhedra and other numerical abstractions." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cs.unipr.it/ppl" license=('GPL3') depends=('gmp>=5.0') diff --git a/core/ppp/PKGBUILD b/core/ppp/PKGBUILD index 6d283d52a..038c0f52c 100644 --- a/core/ppp/PKGBUILD +++ b/core/ppp/PKGBUILD @@ -4,7 +4,7 @@ pkgname=ppp pkgver=2.4.5 pkgrel=2 pkgdesc="A daemon which implements the Point-to-Point Protocol for dial-up networking" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.samba.org/ppp/" license=('custom:GPL/BSD') groups=('base') diff --git a/core/pptpclient/PKGBUILD b/core/pptpclient/PKGBUILD index 85bf0544e..68f497aa1 100644 --- a/core/pptpclient/PKGBUILD +++ b/core/pptpclient/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pptpclient pkgver=1.7.2 pkgrel=3 pkgdesc="Client for the proprietary Microsoft Point-to-Point Tunneling Protocol, PPTP." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pptpclient.sourceforge.net/" license=('GPL') depends=('ppp' 'iproute2') diff --git a/core/procinfo-ng/PKGBUILD b/core/procinfo-ng/PKGBUILD index f908879af..65e348f20 100644 --- a/core/procinfo-ng/PKGBUILD +++ b/core/procinfo-ng/PKGBUILD @@ -6,7 +6,7 @@ pkgname=procinfo-ng pkgver=2.0.304 pkgrel=2 pkgdesc="Displays useful information from /proc" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://procinfo-ng.sourceforge.net/" license=('GPL2' 'LGPL2.1') depends=('ncurses' 'perl') diff --git a/core/procps/PKGBUILD b/core/procps/PKGBUILD index b04ebf52c..99d7884a7 100644 --- a/core/procps/PKGBUILD +++ b/core/procps/PKGBUILD @@ -5,7 +5,7 @@ pkgname=procps pkgver=3.2.8 pkgrel=4 pkgdesc="Utilities for monitoring your system and processes on your system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://procps.sourceforge.net/" license=('GPL' 'LGPL') groups=('base') diff --git a/core/psmisc/PKGBUILD b/core/psmisc/PKGBUILD index 1783c528a..4afc63462 100644 --- a/core/psmisc/PKGBUILD +++ b/core/psmisc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=psmisc pkgver=22.14 pkgrel=1 pkgdesc="Miscellaneous procfs tools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://psmisc.sourceforge.net/index.html" license=('GPL') groups=('base') diff --git a/core/readline/PKGBUILD b/core/readline/PKGBUILD index add0fe75b..ac994b4b8 100644 --- a/core/readline/PKGBUILD +++ b/core/readline/PKGBUILD @@ -8,7 +8,7 @@ _patchlevel=001 #prepare for some patches pkgver=$_basever.$_patchlevel pkgrel=3 pkgdesc="GNU readline library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://tiswww.case.edu/php/chet/readline/rltop.html" license=('GPL') depends=('glibc' 'ncurses') diff --git a/core/reiserfsprogs/PKGBUILD b/core/reiserfsprogs/PKGBUILD index 6b7beb8f6..c723d2922 100644 --- a/core/reiserfsprogs/PKGBUILD +++ b/core/reiserfsprogs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=reiserfsprogs pkgver=3.6.21 pkgrel=3 pkgdesc="Reiserfs utilities" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kernel.org/pub/linux/utils/fs/reiserfs/README" license=('GPL') groups=('base') diff --git a/core/rfkill/PKGBUILD b/core/rfkill/PKGBUILD index bf8259e65..e17e77cb5 100644 --- a/core/rfkill/PKGBUILD +++ b/core/rfkill/PKGBUILD @@ -6,7 +6,7 @@ pkgname=rfkill pkgver=0.4 pkgrel=2 pkgdesc="A tool for enabling and disabling wireless devices" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://linuxwireless.org/en/users/Documentation/rfkill" license=('custom') depends=('glibc' 'filesystem>=2010.01') diff --git a/core/rpcbind/PKGBUILD b/core/rpcbind/PKGBUILD index 9120c7d3c..2d3c66e67 100644 --- a/core/rpcbind/PKGBUILD +++ b/core/rpcbind/PKGBUILD @@ -5,7 +5,7 @@ pkgname=rpcbind pkgver=0.2.0 pkgrel=3 pkgdesc="portmap replacement which supports RPC over various protocols" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('bash' 'glibc' 'libtirpc') url="http://rpcbind.sourceforge.net" license=('custom') diff --git a/core/run-parts/PKGBUILD b/core/run-parts/PKGBUILD index 8db863192..e459b8bf5 100644 --- a/core/run-parts/PKGBUILD +++ b/core/run-parts/PKGBUILD @@ -5,7 +5,7 @@ pkgname=run-parts pkgver=4.0.2 pkgrel=1 pkgdesc='run scripts or programs in a directory' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://packages.qa.debian.org/d/debianutils.html' license=('GPL') depends=('glibc') diff --git a/core/sdparm/PKGBUILD b/core/sdparm/PKGBUILD index f1ff5950a..a61ecc2c7 100644 --- a/core/sdparm/PKGBUILD +++ b/core/sdparm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=sdparm pkgver=1.06 pkgrel=1 pkgdesc="An utility similar to hdparm but for SCSI devices" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sg.danny.cz/sg/sdparm.html" license=('BSD') depends=('glibc') diff --git a/core/sed/PKGBUILD b/core/sed/PKGBUILD index 5e268d05e..6a82e6b4d 100644 --- a/core/sed/PKGBUILD +++ b/core/sed/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sed pkgver=4.2.1 pkgrel=4 pkgdesc="GNU stream editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/sed" license=('GPL3') groups=('base') diff --git a/core/shadow/PKGBUILD b/core/shadow/PKGBUILD index b3a130166..45e945496 100644 --- a/core/shadow/PKGBUILD +++ b/core/shadow/PKGBUILD @@ -5,7 +5,7 @@ pkgname=shadow pkgver=4.1.4.3 pkgrel=2 pkgdesc="Password and account management tool suite with support for shadow files and PAM" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://pkg-shadow.alioth.debian.org/' license=('BSD') groups=('base') diff --git a/core/sqlite3/PKGBUILD b/core/sqlite3/PKGBUILD index c82d70599..3604536c1 100644 --- a/core/sqlite3/PKGBUILD +++ b/core/sqlite3/PKGBUILD @@ -3,25 +3,22 @@ # Contributor: Tom Newsom <Jeepster@gmx.co.uk> pkgbase="sqlite3" -pkgname=('sqlite3' 'sqlite3-tcl' 'sqlite3-doc') +pkgname=('sqlite3' 'sqlite3-tcl') _amalgamationver=3070900 _amalgamationver2=${_amalgamationver/00/} _docver=${_amalgamationver} #3070700 pkgver=${_amalgamationver2//0/.} pkgrel=1 pkgdesc="A C library that implements an SQL database engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://www.sqlite.org/" makedepends=('tcl' 'readline>=6.0.00') source=( # tarball containing the amalgamation for SQLite 3.7.5 together with a configure script and makefile for building it; includes now also the Tcl Extension Architecture (TEA) http://www.sqlite.org/sqlite-autoconf-$_amalgamationver.tar.gz - #http://www.sqlite.org/sqlite-doc-${_amalgamationver}.zip - http://www.sqlite.org/sqlite-doc-${_docver}.zip license.txt) options=('!libtool' '!emptydirs') md5sums=('dce303524736fe89a76b8ed29d566352' - 'c48c231dd43d3b74f1d00c36424d87f4' 'c1cdbc5544034d9012e421e75a5e4890') build() { @@ -63,25 +60,3 @@ package_sqlite3-tcl() { cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea make DESTDIR=${pkgdir} install } - -package_sqlite3-doc() { - pkgdesc="most of the static HTML files that comprise this website, including all of the SQL Syntax and the C/C++ interface specs and other miscellaneous documentation" - #arch=('any') - not yet supported - - #cd ${srcdir}/sqlite-doc-${_amalgamationver} - cd ${srcdir}/sqlite-doc-${_docver} - mkdir -p ${pkgdir}/usr/share/doc/${pkgbase} - cp -R * ${pkgdir}/usr/share/doc/${pkgbase}/ - - # fix permissions and remove obsolete files; https://bugs.archlinux.org/task/24605 - find ${pkgdir} -type f -perm 755 -exec ls -lha {} \; - find ${pkgdir} -type f -perm 755 -exec chmod 644 {} \; - - find ${pkgdir} -type f -name '*~' -exec ls -lha {} \; - find ${pkgdir} -type d -name '*~' -exec ls -lha {} \; - find ${pkgdir} -name '*~' -exec rm -f {} \; - - find ${pkgdir} -type f -name '.~*' -exec ls -lha {} \; # /build/pkg/sqlite3-doc/usr/share/doc/sqlite3/images/fileformat/.~lock.indexpage.odg# - find ${pkgdir} -type d -name '.~*' -exec ls -lha {} \; - find ${pkgdir} -name '.~*' -exec rm -f {} \; -} diff --git a/core/sqlite3/PKGBUILD.mips64el b/core/sqlite3/PKGBUILD.mips64el new file mode 100644 index 000000000..98f925d56 --- /dev/null +++ b/core/sqlite3/PKGBUILD.mips64el @@ -0,0 +1,62 @@ +# $Id: PKGBUILD 130058 2011-07-01 19:36:29Z andyrtr $ +# Maintainer: Andreas Radke <andyrtr@archlinux.org> +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> + +pkgbase="sqlite3" +pkgname=('sqlite3' 'sqlite3-tcl') +_amalgamationver=3070701 +_amalgamationver2=${_amalgamationver/00/} +_docver=${_amalgamationver} #3070700 +pkgver=${_amalgamationver2//0/.} +pkgrel=1 +pkgdesc="A C library that implements an SQL database engine" +arch=('i686' 'x86_64' 'mips64el') +license=('custom') +url="http://www.sqlite.org/" +makedepends=('tcl' 'readline>=6.0.00') +source=( # tarball containing the amalgamation for SQLite 3.7.5 together with a configure script and makefile for building it; includes now also the Tcl Extension Architecture (TEA) + http://www.sqlite.org/sqlite-autoconf-$_amalgamationver.tar.gz + license.txt) +options=('!libtool' '!emptydirs') +md5sums=('554026fe7fac47b1cf61c18d5fe43419' + 'c1cdbc5544034d9012e421e75a5e4890') + +build() { + export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE" + + # build sqlite + cd "$srcdir"/sqlite-autoconf-$_amalgamationver + ./configure --prefix=/usr \ + --disable-static + make + + # build the tcl extension + cd "$srcdir"/sqlite-autoconf-$_amalgamationver/tea + ./configure --prefix=/usr \ + --with-system-sqlite + make + +} + +package_sqlite3() { + + pkgdesc="A C library that implements an SQL database engine" + depends=('readline>=6.0.00') + conflicts=('sqlite') + replaces=('sqlite') + + cd ${srcdir}/sqlite-autoconf-$_amalgamationver + make DESTDIR=${pkgdir} install + + # license + install -D -m644 ${srcdir}/license.txt ${pkgdir}/usr/share/licenses/${pkgname}/license.txt +} + +package_sqlite3-tcl() { + + pkgdesc="sqlite3 Tcl Extension Architecture (TEA)" + depends=('sqlite3>=3.7.5') + + cd ${srcdir}/sqlite-autoconf-$_amalgamationver/tea + make DESTDIR=${pkgdir} install +} diff --git a/core/sudo/PKGBUILD b/core/sudo/PKGBUILD index 9a160f365..ca7ec89c0 100644 --- a/core/sudo/PKGBUILD +++ b/core/sudo/PKGBUILD @@ -7,7 +7,7 @@ _ver=1.8.3p1 pkgver=${_ver/[a-z]/.${_ver//[0-9.]/}} pkgrel=1 pkgdesc="Give certain users the ability to run some commands as root" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.sudo.ws/sudo/" license=('custom') depends=('glibc' 'pam') diff --git a/core/sysfsutils/PKGBUILD b/core/sysfsutils/PKGBUILD index 9749d29b4..d33e59680 100644 --- a/core/sysfsutils/PKGBUILD +++ b/core/sysfsutils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sysfsutils pkgver=2.1.0 pkgrel=6 pkgdesc="System Utilities Based on Sysfs" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'LGPL') url="http://linux-diag.sourceforge.net/Sysfsutils.html" groups=('base') diff --git a/core/syslinux/.arch b/core/syslinux/.arch new file mode 100644 index 000000000..9fe4d07f7 --- /dev/null +++ b/core/syslinux/.arch @@ -0,0 +1 @@ +mips64el=false diff --git a/core/syslog-ng/PKGBUILD b/core/syslog-ng/PKGBUILD index e27aaa126..b83a5a570 100644 --- a/core/syslog-ng/PKGBUILD +++ b/core/syslog-ng/PKGBUILD @@ -7,7 +7,7 @@ pkgname=syslog-ng pkgver=3.3.1 pkgrel=1 pkgdesc="Next-generation syslogd with advanced networking and filtering capabilities" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') groups=('base') url="http://www.balabit.com/network-security/syslog-ng/" diff --git a/core/sysvinit/PKGBUILD b/core/sysvinit/PKGBUILD index 27045eca0..caf26a1c5 100644 --- a/core/sysvinit/PKGBUILD +++ b/core/sysvinit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sysvinit pkgver=2.88 pkgrel=3 pkgdesc="Linux System V Init" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://savannah.nongnu.org/projects/sysvinit" license=('GPL') groups=('base') diff --git a/core/tar/PKGBUILD b/core/tar/PKGBUILD index f064f08c1..ffd5cb336 100644 --- a/core/tar/PKGBUILD +++ b/core/tar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tar pkgver=1.26 pkgrel=2 pkgdesc="Utility used to store, backup, and transport files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/tar/tar.html" license=('GPL3') groups=('base') diff --git a/core/texinfo/PKGBUILD b/core/texinfo/PKGBUILD index 9ba51eca5..119e114ca 100644 --- a/core/texinfo/PKGBUILD +++ b/core/texinfo/PKGBUILD @@ -6,7 +6,7 @@ pkgname=texinfo pkgver=4.13a pkgrel=6 pkgdesc="Utilities to work with and produce manuals, ASCII text, and on-line documentation from a single source file" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/texinfo/" license=('GPL3') groups=('base') diff --git a/core/tzdata/PKGBUILD b/core/tzdata/PKGBUILD index 54108609a..a1b8601c0 100644 --- a/core/tzdata/PKGBUILD +++ b/core/tzdata/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 _tzcode=2011i _tzdata=2011n pkgdesc="Sources for time zone and daylight saving time data" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.twinsun.com/tz/tz-link.htm" license=('GPL') depends=() diff --git a/core/udev/PKGBUILD b/core/udev/PKGBUILD index 544af8f71..15ab470d2 100644 --- a/core/udev/PKGBUILD +++ b/core/udev/PKGBUILD @@ -8,7 +8,7 @@ pkgbase="udev" pkgname=('udev' 'udev-compat') pkgver=174 pkgrel=1 -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html" license=('GPL') groups=('base') @@ -21,6 +21,11 @@ source=(http://people.freedesktop.org/~kay/$pkgbase-$pkgver.tar.bz2 build() { cd $srcdir/$pkgbase-$pkgver + if [ "$CARCH" = "mips64el" ]; then + msg "Remove -Wl,--gc-sections" + sed -i "/--gc-sections/d" Makefile.* + fi + ./configure --sysconfdir=/etc\ --with-rootlibdir=/lib\ --libexecdir=/lib/udev\ diff --git a/core/usbutils/PKGBUILD b/core/usbutils/PKGBUILD index 4d2ca6ad2..3fe65e8c4 100644 --- a/core/usbutils/PKGBUILD +++ b/core/usbutils/PKGBUILD @@ -6,7 +6,7 @@ pkgver=004 pkgrel=1 _usb_ids_date=2011.08.17 pkgdesc="USB Device Utilities" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') groups=('base') makedepends=('wget') diff --git a/core/util-linux/PKGBUILD b/core/util-linux/PKGBUILD index 002fa77fb..61ef4e610 100644 --- a/core/util-linux/PKGBUILD +++ b/core/util-linux/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2.20.1 pkgrel=1 pkgdesc="Miscellaneous system utilities for Linux" url="http://userweb.kernel.org/~kzak/util-linux-ng/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('base') depends=('filesystem') replaces=('linux32' 'util-linux-ng') diff --git a/core/vi/PKGBUILD b/core/vi/PKGBUILD index edb6f7939..315396003 100644 --- a/core/vi/PKGBUILD +++ b/core/vi/PKGBUILD @@ -6,7 +6,7 @@ pkgver=050325 pkgrel=2 epoch=1 pkgdesc='The original ex/vi text editor.' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://ex-vi.sourceforge.net/' license=('custom:ex') depends=('ncurses') diff --git a/core/wget/PKGBUILD b/core/wget/PKGBUILD index bb30e7e22..168ab9bda 100644 --- a/core/wget/PKGBUILD +++ b/core/wget/PKGBUILD @@ -6,7 +6,7 @@ pkgname=wget pkgver=1.13.4 pkgrel=1 pkgdesc="A network utility to retrieve files from the Web" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/wget/wget.html" license=('GPL3') groups=('base') diff --git a/core/which/PKGBUILD b/core/which/PKGBUILD index 65495fe69..6a60bea84 100644 --- a/core/which/PKGBUILD +++ b/core/which/PKGBUILD @@ -6,7 +6,7 @@ pkgname=which pkgver=2.20 pkgrel=5 pkgdesc="A utility to show the full path of commands" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xs4all.nl/~carlo17/which" license=('GPL3') groups=('base') diff --git a/core/wireless_tools/PKGBUILD b/core/wireless_tools/PKGBUILD index a60b8b2a6..922f4dc7b 100644 --- a/core/wireless_tools/PKGBUILD +++ b/core/wireless_tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=wireless_tools pkgver=29 pkgrel=4 pkgdesc="Wireless Tools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html" license=('GPL') depends=('glibc') diff --git a/core/wpa_actiond/PKGBUILD b/core/wpa_actiond/PKGBUILD index 7701e4c8f..6ab3a526a 100644 --- a/core/wpa_actiond/PKGBUILD +++ b/core/wpa_actiond/PKGBUILD @@ -4,7 +4,7 @@ pkgname=wpa_actiond pkgver=1.1 pkgrel=2 pkgdesc="Daemon that connects to wpa_supplicant and handles connect and disconnect events" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://projects.archlinux.org/wpa_actiond.git/" license=('GPL') depends=('glibc' 'wpa_supplicant') diff --git a/core/wpa_supplicant/PKGBUILD b/core/wpa_supplicant/PKGBUILD index c2a1ac2d5..d34f6dd97 100644 --- a/core/wpa_supplicant/PKGBUILD +++ b/core/wpa_supplicant/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.7.3 pkgrel=3 pkgdesc="A utility providing key negotiation for WPA wireless networks" url="http://hostap.epitest.fi/wpa_supplicant" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('openssl' 'dbus-core>=1.2.4' 'readline>=6.0' 'libnl') optdepends=('wpa_supplicant_gui: wpa_gui program') license=('GPL') diff --git a/core/xfsprogs/PKGBUILD b/core/xfsprogs/PKGBUILD index 962f08b0f..9d01c2a9b 100644 --- a/core/xfsprogs/PKGBUILD +++ b/core/xfsprogs/PKGBUILD @@ -4,7 +4,7 @@ pkgname=xfsprogs pkgver=3.1.5 pkgrel=1 pkgdesc="XFS filesystem utilities" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://oss.sgi.com/projects/xfs/" groups=('base') @@ -17,6 +17,7 @@ md5sums=('b1db37749e2b4149a0dd178abff956be') build() { cd "${srcdir}/${pkgname}-${pkgver}" export OPTIMIZER="-march=${CARCH/_/-} -O1" + [ "$CARCH" = "mips64el" ] && export OPTIMIZER="-mabi=n32 -march=loongson2f -O1" export DEBUG=-DNDEBUG make } diff --git a/core/xinetd/PKGBUILD b/core/xinetd/PKGBUILD index 27bf3b2a0..552b96cf9 100644 --- a/core/xinetd/PKGBUILD +++ b/core/xinetd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xinetd pkgver=2.3.14 pkgrel=7 pkgdesc="A secure replacement for inetd" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xinetd.org/" license=('custom') optdepends=('perl: for xconv.pl script') @@ -25,7 +25,8 @@ md5sums=('567382d7972613090215c6c54f9b82d9' build() { cd $srcdir/$pkgname-$pkgver sed -i "s#${prefix}/man#${prefix}/share/man#" configure - ./configure --prefix=/usr --without-libwrap + ./configure --prefix=/usr --without-libwrap \ + --build=${CHOST} --host=${CHOST} make } diff --git a/core/xz/PKGBUILD b/core/xz/PKGBUILD index e2c47b128..cb1c045b3 100644 --- a/core/xz/PKGBUILD +++ b/core/xz/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xz pkgver=5.0.3 pkgrel=1 pkgdesc='Library and command line tools for XZ and LZMA compressed files' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://tukaani.org/xz/' license=('GPL' 'LGPL' 'custom') depends=('sh') diff --git a/core/zlib/PKGBUILD b/core/zlib/PKGBUILD index d1f16c1b2..e92f893de 100644 --- a/core/zlib/PKGBUILD +++ b/core/zlib/PKGBUILD @@ -5,7 +5,7 @@ pkgname=zlib pkgver=1.2.5 pkgrel=4 pkgdesc='Compression library implementing the deflate compression method found in gzip and PKZIP' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://www.zlib.net/" depends=('glibc') diff --git a/elementary/gtk-engine-equinox/PKGBUILD b/elementary/gtk-engine-equinox/PKGBUILD index 32f5db368..1fa27c798 100644 --- a/elementary/gtk-engine-equinox/PKGBUILD +++ b/elementary/gtk-engine-equinox/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A heavily modified version of the beautiful Aurora engine" url="http://gnome-look.org/content/show.php/Equinox+GTK+Engine?content=121881" license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gtk2') makedepends=('pkgconfig') conflicts=() diff --git a/elementary/postler/PKGBUILD b/elementary/postler/PKGBUILD index 55b523f82..38a5d9a0d 100644 --- a/elementary/postler/PKGBUILD +++ b/elementary/postler/PKGBUILD @@ -4,7 +4,7 @@ pkgname=postler pkgver=0.1.1 pkgrel=2 pkgdesc="Postler is simple desktop mail client built in vala" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/postler" license=('GPL') depends=('libwebkit' 'libunique' 'libcanberra' 'libnotify') diff --git a/elementary/vala-010/PKGBUILD b/elementary/vala-010/PKGBUILD index 7712f99c4..aad2232fe 100644 --- a/elementary/vala-010/PKGBUILD +++ b/elementary/vala-010/PKGBUILD @@ -5,7 +5,7 @@ _pkgname=vala pkgver=0.10.4 pkgrel=1 pkgdesc="Compiler for the GObject type system (0.10 branch)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/Vala" license=('LGPL2.1') depends=('glib2') diff --git a/extra/a2ps/PKGBUILD b/extra/a2ps/PKGBUILD index ae316078b..b1fa5191c 100644 --- a/extra/a2ps/PKGBUILD +++ b/extra/a2ps/PKGBUILD @@ -5,7 +5,7 @@ pkgname=a2ps pkgver=4.14 pkgrel=2 pkgdesc="An Any to PostScript filter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/a2ps/" license=('GPL3') depends=('ghostscript' 'psutils' 'imagemagick' 'perl') diff --git a/extra/a52dec/PKGBUILD b/extra/a52dec/PKGBUILD index a5743a79e..581b0abd1 100644 --- a/extra/a52dec/PKGBUILD +++ b/extra/a52dec/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.7.4 pkgrel=5 pkgdesc="A free library for decoding ATSC A/52 streams" url="http://liba52.sourceforge.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') depends=('glibc') options=(!libtool) @@ -21,7 +21,8 @@ build() { cd "${srcdir}/${pkgname}-${pkgver}" patch -Np1 -i "${srcdir}/a52dec-0.7.4-build.patch" ./bootstrap - ./configure --prefix=/usr --enable-shared + ./configure --prefix=/usr --enable-shared \ + --build=$CHOST --host=$CHOST make } diff --git a/extra/aalib/PKGBUILD b/extra/aalib/PKGBUILD index d86d8220c..08c9e2f60 100644 --- a/extra/aalib/PKGBUILD +++ b/extra/aalib/PKGBUILD @@ -5,7 +5,7 @@ pkgname=aalib pkgver=1.4rc5 pkgrel=8 pkgdesc="A portable ASCII art graphic library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://aa-project.sourceforge.net/aalib/" license=('LGPL') depends=('glibc' 'ncurses' 'gpm' 'libx11') diff --git a/extra/abiword/PKGBUILD b/extra/abiword/PKGBUILD deleted file mode 100644 index 2bb71bb52..000000000 --- a/extra/abiword/PKGBUILD +++ /dev/null @@ -1,63 +0,0 @@ -# $Id: PKGBUILD 139550 2011-10-03 12:22:58Z jgc $ -# Maintainer: Giovanni Scafora <giovanni@archlinux.org> -# Contributor: Maël Lavault <moimael@neuf.fr> - -pkgbase=abiword -pkgname=('abiword' 'abiword-plugins') -pkgver=2.8.6 -pkgrel=6 -arch=('i686' 'x86_64') -license=('GPL') -url="http://www.abisource.com" -makedepends=('pkgconfig' 'asio' 'boost' 'fribidi' 'goffice' 'libwmf' 'wv' 'link-grammar' 'gtkmathview' 'aiksaurus' 'libxslt' 'enchant' 'libots' 'libwpg' 'librsvg' 'loudmouth' 'libsoup') -options=('!makeflags' '!libtool') -source=("http://www.abisource.com/downloads/${pkgbase}/${pkgver}/source/${pkgbase}-${pkgver}.tar.gz" - compat_libwpg_0_9.patch - abiword-2.8.6-no-undefined.patch) -sha1sums=('998f69d038000b3fc027d4259548f02d67c8d0df' - 'e5374f439e3d9b63a4bbd2cd39146c67cf1e85ea' - '159b1cd0b9354868ab86f851b64a03dae7d254dc') - -build() { - cd "${srcdir}/${pkgbase}-${pkgver}" - - patch -Np1 -i "${srcdir}/compat_libwpg_0_9.patch" - # fix a gcc 4.6.x build issue, patch from Fedora - patch -Np1 -i "${srcdir}/abiword-2.8.6-no-undefined.patch" - libtoolize --force - autoreconf - - ./configure --prefix=/usr --enable-clipart --enable-templates --enable-collab-backend-xmpp --enable-collab-backend-tcp --enable-collab-backend-service --disable-collab-backend-sugar --enable-plugins --without-gnomevfs --with-gio --with-goffice --disable-static --with-psiconv-config=/nothere - make -} - -package_abiword() { - pkgdesc="A fully-featured word processor" - depends=('fribidi' 'wv' 'goffice' 'librsvg' 'enchant' 'desktop-file-utils') - install=$pkgname.install - optdepends=('abiword-plugins') - conflicts=("abiword-plugins<${pkgver}-${pkgrel}") - - cd "${srcdir}/${pkgbase}-${pkgver}" - sed -i plugins/Makefile \ - -e 's/ collab / /' \ - -e 's/ wpg / /' \ - -e 's/ wmf / /' \ - -e 's/ grammar / /' \ - -e 's/ mathview / /' \ - -e 's/ aiksaurus / /' \ - -e 's/ latex / /' \ - -e 's/ ots / /' \ - -e 's/ wordperfect / /' - make DESTDIR="${pkgdir}" install -} - -package_abiword-plugins() { - pkgdesc="Additional plugins for Abiword" - depends=("abiword=${pkgver}-${pkgrel}" 'loudmouth' 'libwpg' 'libwmf' 'link-grammar' 'gtkmathview' 'aiksaurus' 'libxslt' 'libsoup' 'libots' 'libgsf') - - cd "${srcdir}/${pkgbase}-${pkgver}/plugins" - for dir in collab wpg wmf grammar mathview aiksaurus latex ots wordperfect; do - make -C ${dir} DESTDIR="${pkgdir}" install - done -} diff --git a/extra/abook/PKGBUILD b/extra/abook/PKGBUILD index 33832c165..44f9699b8 100644 --- a/extra/abook/PKGBUILD +++ b/extra/abook/PKGBUILD @@ -8,7 +8,7 @@ pkgname=abook pkgver=0.6.0pre2 pkgrel=3 pkgdesc='Text-based addressbook designed for use with Mutt' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://abook.sourceforge.net/' license=('GPL2') depends=('readline') diff --git a/extra/accountsservice/PKGBUILD b/extra/accountsservice/PKGBUILD index 0222f00e5..69602c83c 100644 --- a/extra/accountsservice/PKGBUILD +++ b/extra/accountsservice/PKGBUILD @@ -5,7 +5,7 @@ pkgname=accountsservice pkgver=0.6.15 pkgrel=1 pkgdesc="D-Bus interface for user account query and manipulation" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://cgit.freedesktop.org/accountsservice/" license=('GPL3') depends=('dbus-glib' 'polkit') diff --git a/extra/acpi/PKGBUILD b/extra/acpi/PKGBUILD index 10d25d391..0014dd64d 100644 --- a/extra/acpi/PKGBUILD +++ b/extra/acpi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=acpi pkgver=1.5 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/extra/acpid/PKGBUILD b/extra/acpid/PKGBUILD index c9464974e..828c589c0 100644 --- a/extra/acpid/PKGBUILD +++ b/extra/acpid/PKGBUILD @@ -8,7 +8,7 @@ pkgname=acpid pkgver=2.0.12 pkgrel=1 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/extra/aiksaurus/PKGBUILD b/extra/aiksaurus/PKGBUILD index ae6b40bc2..7363dc4a6 100644 --- a/extra/aiksaurus/PKGBUILD +++ b/extra/aiksaurus/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3 pkgdesc="A cross-platform, open-source thesaurus" url="http://aiksaurus.sourceforge.net/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!libtool') depends=('gtk2') source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz" diff --git a/extra/aisleriot/PKGBUILD b/extra/aisleriot/PKGBUILD index ade20128a..22eb0e4b1 100644 --- a/extra/aisleriot/PKGBUILD +++ b/extra/aisleriot/PKGBUILD @@ -5,7 +5,7 @@ pkgname=aisleriot pkgver=3.2.1 pkgrel=1 pkgdesc="GNOME Solitaire card games" -arch=(i686 x86_64) +arch=(mips64el) license=(GPL) url="http://www.gnome.org" groups=('gnome-extra') diff --git a/extra/akonadi/PKGBUILD b/extra/akonadi/PKGBUILD index 3194c2099..79118b7e5 100644 --- a/extra/akonadi/PKGBUILD +++ b/extra/akonadi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=akonadi pkgver=1.6.2 pkgrel=1 pkgdesc="PIM layer, which provides an asynchronous API to access all kind of PIM data" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://pim.kde.org/akonadi' license=('LGPL') depends=('shared-mime-info' 'boost-libs' 'mysql' 'soprano') @@ -19,6 +19,7 @@ build() { cd "${srcdir}" mkdir build cd build + CXX="g++" \ cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ diff --git a/extra/alex/PKGBUILD b/extra/alex/PKGBUILD index 7d1e975ba..1882aaf44 100644 --- a/extra/alex/PKGBUILD +++ b/extra/alex/PKGBUILD @@ -7,7 +7,7 @@ pkgname=alex pkgver=2.3.5 pkgrel=1.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/extra/allegro/PKGBUILD b/extra/allegro/PKGBUILD index dfded5632..70cb9519f 100644 --- a/extra/allegro/PKGBUILD +++ b/extra/allegro/PKGBUILD @@ -7,7 +7,7 @@ pkgname=allegro pkgver=5.0.4 pkgrel=2 pkgdesc="Portable library mainly aimed at video game and multimedia programming" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://alleg.sourceforge.net/" license=('custom') depends=('jack' 'libxpm' 'libxxf86vm' 'libxxf86dga' 'libxcursor' 'libpng' 'libgl' 'libjpeg') diff --git a/extra/alsa-lib/PKGBUILD b/extra/alsa-lib/PKGBUILD index b5f7fda08..957ef0b1c 100644 --- a/extra/alsa-lib/PKGBUILD +++ b/extra/alsa-lib/PKGBUILD @@ -5,7 +5,7 @@ pkgname=alsa-lib pkgver=1.0.24.1 pkgrel=1 pkgdesc="An alternative implementation of Linux sound support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.alsa-project.org" depends=('glibc') optdepends=('python2: for python smixer plugin') diff --git a/extra/alsa-oss/PKGBUILD b/extra/alsa-oss/PKGBUILD index 2d32793d0..213721546 100644 --- a/extra/alsa-oss/PKGBUILD +++ b/extra/alsa-oss/PKGBUILD @@ -5,7 +5,7 @@ pkgname=alsa-oss pkgver=1.0.17 pkgrel=2 pkgdesc="OSS compatibility library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.alsa-project.org" options=('!libtool') diff --git a/extra/alsa-plugins/PKGBUILD b/extra/alsa-plugins/PKGBUILD index b485b65db..11aed0c85 100644 --- a/extra/alsa-plugins/PKGBUILD +++ b/extra/alsa-plugins/PKGBUILD @@ -7,7 +7,7 @@ pkgname=alsa-plugins pkgver=1.0.24 pkgrel=2 pkgdesc="Extra alsa plugins" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.alsa-project.org" license=(GPL) depends=(alsa-lib) diff --git a/extra/alsa-utils/PKGBUILD b/extra/alsa-utils/PKGBUILD index cb8da4e3d..b19663a19 100644 --- a/extra/alsa-utils/PKGBUILD +++ b/extra/alsa-utils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=alsa-utils pkgver=1.0.24.2 pkgrel=3 pkgdesc="An alternative implementation of Linux sound support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.alsa-project.org" #can not use >=$pkgver due to use of letters in alsa-lib update versioning depends=("alsa-lib>1.0.24" 'dialog' 'pciutils' 'ncurses' 'psmisc') diff --git a/extra/alsaplayer/PKGBUILD b/extra/alsaplayer/PKGBUILD index ed5a8b546..e768b82ca 100644 --- a/extra/alsaplayer/PKGBUILD +++ b/extra/alsaplayer/PKGBUILD @@ -5,7 +5,7 @@ pkgname=alsaplayer pkgver=0.99.81 pkgrel=2 pkgdesc="A heavily multi-threaded PCM player that tries to excercise the ALSA library and driver quite a bit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.alsaplayer.org/" license=('GPL') depends=('gcc-libs' 'desktop-file-utils') diff --git a/extra/amarok/PKGBUILD b/extra/amarok/PKGBUILD index a8183bd63..2dbf5d668 100644 --- a/extra/amarok/PKGBUILD +++ b/extra/amarok/PKGBUILD @@ -7,7 +7,7 @@ replaces=('amarok-base' 'amarok-engine-xine' 'amarok-base-mysqlfree') pkgver=2.4.3 pkgrel=1 pkgdesc="The powerful music player for KDE" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://amarok.kde.org" license=('GPL2' 'LGPL2.1' 'FDL') depends=('kdebase-runtime' 'mysql' 'qtscriptgenerator' 'taglib-extras' diff --git a/extra/amule/PKGBUILD b/extra/amule/PKGBUILD index 8f0ae710d..c48d39b3c 100644 --- a/extra/amule/PKGBUILD +++ b/extra/amule/PKGBUILD @@ -8,7 +8,7 @@ pkgname=amule pkgver=10648 pkgrel=1 pkgdesc="An eMule-like client for ed2k p2p network" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.amule.org" license=('GPL') depends=('wxgtk' 'gd' 'geoip' 'libupnp' 'crypto++' 'libsm') diff --git a/extra/anjuta/PKGBUILD b/extra/anjuta/PKGBUILD index 2ef6f8f57..4baf7e714 100644 --- a/extra/anjuta/PKGBUILD +++ b/extra/anjuta/PKGBUILD @@ -6,7 +6,7 @@ pkgname=anjuta pkgver=3.2.1 pkgrel=1 pkgdesc="GNOME Integrated Development Environment (IDE)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('vte3' 'gdl' 'autogen' 'devhelp' 'glade' 'libgda' 'subversion' 'gnome-icon-theme' 'hicolor-icon-theme' 'vala' 'python2' 'shared-mime-info' 'desktop-file-utils') makedepends=('gnome-doc-utils' 'intltool' 'gobject-introspection') diff --git a/extra/anthy/PKGBUILD b/extra/anthy/PKGBUILD index c38e8ba48..c0a3fbf9a 100644 --- a/extra/anthy/PKGBUILD +++ b/extra/anthy/PKGBUILD @@ -8,7 +8,7 @@ pkgver=9100h _filecode=37536 pkgrel=2 pkgdesc='Hiragana text to Kana Kanji mixed text Japanese input method' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://sourceforge.jp/projects/anthy/' license=('LGPL' 'GPL') options=('!libtool') diff --git a/extra/antlr2/PKGBUILD b/extra/antlr2/PKGBUILD index 021da9bb4..b002792bb 100644 --- a/extra/antlr2/PKGBUILD +++ b/extra/antlr2/PKGBUILD @@ -7,7 +7,7 @@ pkgbase=antlr2 pkgname=('antlr2' 'python-antlr2') pkgver=2.7.7 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.antlr2.org/" license=('custom') makedepends=('java-environment' 'python2' 'sh') diff --git a/extra/apache/PKGBUILD b/extra/apache/PKGBUILD index 6f2ee060d..37d1a4a27 100644 --- a/extra/apache/PKGBUILD +++ b/extra/apache/PKGBUILD @@ -7,7 +7,7 @@ pkgname=apache pkgver=2.2.21 pkgrel=1 pkgdesc='A high performance Unix-based HTTP server' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!libtool') url='http://www.apache.org/dist/httpd' license=('APACHE') diff --git a/extra/apr-util/PKGBUILD b/extra/apr-util/PKGBUILD index 5cdab4d99..05a1627f5 100644 --- a/extra/apr-util/PKGBUILD +++ b/extra/apr-util/PKGBUILD @@ -6,7 +6,7 @@ pkgname=apr-util pkgver=1.3.12 pkgrel=2 pkgdesc="The Apache Portable Runtime" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://apr.apache.org/" depends=('apr' 'gdbm' 'expat' 'db' 'libldap' 'unixodbc') options=('!libtool') diff --git a/extra/apr/PKGBUILD b/extra/apr/PKGBUILD index 3f18110f0..78753328d 100644 --- a/extra/apr/PKGBUILD +++ b/extra/apr/PKGBUILD @@ -7,7 +7,7 @@ pkgname=apr pkgver=1.4.5 pkgrel=1 pkgdesc="The Apache Portable Runtime" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://apr.apache.org/" depends=('util-linux-ng>=2.16') options=('!libtool') diff --git a/extra/apricots/PKGBUILD b/extra/apricots/PKGBUILD index 34e21a32f..409e7f7e2 100644 --- a/extra/apricots/PKGBUILD +++ b/extra/apricots/PKGBUILD @@ -5,7 +5,7 @@ pkgname=apricots pkgver=0.2.6 pkgrel=4 pkgdesc="A simple 2D flying/bombing game similar to basic side scrollers" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') license=('GPL') url="http://www.fishies.org.uk/apricots.html" depends=('gcc-libs' 'openal' 'sdl' 'freealut') diff --git a/extra/ardour/PKGBUILD b/extra/ardour/PKGBUILD index 3f0574d4e..dbae38b33 100644 --- a/extra/ardour/PKGBUILD +++ b/extra/ardour/PKGBUILD @@ -11,7 +11,7 @@ pkgname=ardour pkgver=2.8.12 pkgrel=1 pkgdesc="A multichannel hard disk recorder and digital audio workstation" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ardour.org/" license=('GPL') depends=('liblrdf>=0.4.0-8' 'liblo' 'libusb-compat' diff --git a/extra/arj/PKGBUILD b/extra/arj/PKGBUILD index 7c2b457ca..bf0a734bf 100644 --- a/extra/arj/PKGBUILD +++ b/extra/arj/PKGBUILD @@ -8,7 +8,7 @@ pkgver=3.10.22 pkgrel=6 pkgdesc="Free and portable clone of the ARJ archiver" url="http://arj.sourceforge.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') options=('!makeflags') depends=('glibc') diff --git a/extra/arora/PKGBUILD b/extra/arora/PKGBUILD index 9bcf87b01..d1606a56b 100644 --- a/extra/arora/PKGBUILD +++ b/extra/arora/PKGBUILD @@ -7,7 +7,7 @@ pkgname=arora pkgver=0.11.0 pkgrel=2 pkgdesc='A cross platform web browser built using Qt and WebKit' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.arora-browser.org' license=('GPL') depends=('qt' 'desktop-file-utils') diff --git a/extra/asio/PKGBUILD b/extra/asio/PKGBUILD index add8358e0..a22be2d05 100644 --- a/extra/asio/PKGBUILD +++ b/extra/asio/PKGBUILD @@ -6,7 +6,7 @@ pkgname=asio pkgver=1.4.8 pkgrel=1 pkgdesc="Cross-platform C++ library for ASynchronous network I/O" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://asio.sourceforge.net" license=('custom') depends=('boost') diff --git a/extra/aspell-de/PKGBUILD b/extra/aspell-de/PKGBUILD index 7d15c7fe8..7346d3070 100644 --- a/extra/aspell-de/PKGBUILD +++ b/extra/aspell-de/PKGBUILD @@ -7,7 +7,7 @@ pkgname=aspell-de pkgver=20110609 pkgrel=1 pkgdesc="German dictionary for aspell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://j3e.de/ispell/igerman98/index.html" license=('GPL2') depends=('aspell') diff --git a/extra/aspell-en/PKGBUILD b/extra/aspell-en/PKGBUILD index 6ac72bed5..5cbe89c17 100644 --- a/extra/aspell-en/PKGBUILD +++ b/extra/aspell-en/PKGBUILD @@ -4,7 +4,7 @@ pkgname=aspell-en pkgver=7.1 pkgrel=1 pkgdesc="English dictionary for aspell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://aspell.net/" license=('custom') depends=('aspell') diff --git a/extra/aspell-es/PKGBUILD b/extra/aspell-es/PKGBUILD index 81a93400e..58827eeda 100644 --- a/extra/aspell-es/PKGBUILD +++ b/extra/aspell-es/PKGBUILD @@ -7,7 +7,7 @@ pkgname=aspell-es pkgver=1.11 pkgrel=4 pkgdesc="Spanish dictionary for aspell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://aspell.net/" license=('GPL') depends=('aspell') diff --git a/extra/aspell-fr/PKGBUILD b/extra/aspell-fr/PKGBUILD index ef91b7513..8d8a36cf8 100644 --- a/extra/aspell-fr/PKGBUILD +++ b/extra/aspell-fr/PKGBUILD @@ -7,7 +7,7 @@ pkgname=aspell-fr pkgver=0.50.3 pkgrel=5 pkgdesc="French dictionary for aspell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://aspell.net/" license=('GPL') depends=('aspell') diff --git a/extra/aspell-hu/PKGBUILD b/extra/aspell-hu/PKGBUILD index 748f3b129..3afb7f8cb 100644 --- a/extra/aspell-hu/PKGBUILD +++ b/extra/aspell-hu/PKGBUILD @@ -6,7 +6,7 @@ pkgname=aspell-hu pkgver=0.99.4.2 pkgrel=2 pkgdesc="Hungarian spellcheck dictionary for aspell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://aspell.net/" license=('GPL') depends=('aspell') diff --git a/extra/aspell-it/PKGBUILD b/extra/aspell-it/PKGBUILD index f577080e1..342907206 100644 --- a/extra/aspell-it/PKGBUILD +++ b/extra/aspell-it/PKGBUILD @@ -6,7 +6,7 @@ pkgname=aspell-it pkgver=2.2_20050523 pkgrel=3 pkgdesc="Italian dictionary for aspell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://aspell.net/" license=('GPL2') depends=('aspell') diff --git a/extra/aspell-nl/PKGBUILD b/extra/aspell-nl/PKGBUILD index d0bb9a4af..6e5cce482 100644 --- a/extra/aspell-nl/PKGBUILD +++ b/extra/aspell-nl/PKGBUILD @@ -7,7 +7,7 @@ pkgname=aspell-nl pkgver=0.50.2 pkgrel=1 pkgdesc="Dutch dictionary for aspell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://aspell.net/" license=('custom') depends=('aspell') diff --git a/extra/aspell-pt/PKGBUILD b/extra/aspell-pt/PKGBUILD index 6fac241b7..846abf74a 100644 --- a/extra/aspell-pt/PKGBUILD +++ b/extra/aspell-pt/PKGBUILD @@ -9,7 +9,7 @@ _pkgverBR=20090702 pkgver=$_pkgverBR pkgrel=2 pkgdesc="Portuguese and Brazilian Portuguese dictionary for aspell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://aspell.net/" license=('GPL2') depends=('aspell') diff --git a/extra/aspell-ru/PKGBUILD b/extra/aspell-ru/PKGBUILD index 23b286b01..ed8f25330 100644 --- a/extra/aspell-ru/PKGBUILD +++ b/extra/aspell-ru/PKGBUILD @@ -7,7 +7,7 @@ pkgname=aspell-ru pkgver=0.99f7 pkgrel=4 pkgdesc="Russian dictionary for aspell" -arch=('i686' 'x86_64') #We cannot use 'any' see FS#22443 +arch=('i686' 'x86_64' 'mips64el') #We cannot use 'any' see FS#22443 url="http://aspell.net/" license=('custom') depends=('aspell') diff --git a/extra/aspell/PKGBUILD b/extra/aspell/PKGBUILD index 1b88938d3..a6e4e621d 100644 --- a/extra/aspell/PKGBUILD +++ b/extra/aspell/PKGBUILD @@ -9,8 +9,8 @@ pkgver=0.60.6.1 _pkgmajorver=0.60 pkgrel=1 pkgdesc="A spell checker designed to eventually replace Ispell" -arch=('i686' 'x86_64') url="http://aspell.net/" +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('gcc-libs' 'ncurses') optdepends=('perl: to import old dictionaries') diff --git a/extra/asymptote/PKGBUILD b/extra/asymptote/PKGBUILD index 3dadd0b5d..9eabbf7e3 100644 --- a/extra/asymptote/PKGBUILD +++ b/extra/asymptote/PKGBUILD @@ -7,7 +7,7 @@ pkgname=asymptote pkgver=2.13 pkgrel=1 pkgdesc="A vector graphics language (like metapost)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://asymptote.sourceforge.net/" license=("GPL3") depends=('texlive-core' 'gc' 'freeglut' 'gsl' 'fftw') diff --git a/extra/at-spi/PKGBUILD b/extra/at-spi/PKGBUILD index 0970c90f4..82cc1b4ec 100644 --- a/extra/at-spi/PKGBUILD +++ b/extra/at-spi/PKGBUILD @@ -5,7 +5,7 @@ pkgname=at-spi pkgver=1.32.0 pkgrel=4 pkgdesc="Assistive Technology Service Provider Interface" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libbonobo' 'libxtst' 'gtk2' 'gconf') makedepends=('pkgconfig' 'python2' 'intltool' 'libice' 'libsm') diff --git a/extra/at-spi2-atk/PKGBUILD b/extra/at-spi2-atk/PKGBUILD index c78c48373..bd62ef75f 100644 --- a/extra/at-spi2-atk/PKGBUILD +++ b/extra/at-spi2-atk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=at-spi2-atk pkgver=2.2.1 pkgrel=1 pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnome.org" license=('GPL2') depends=('at-spi2-core' 'libx11' 'atk' 'dconf') diff --git a/extra/at-spi2-core/PKGBUILD b/extra/at-spi2-core/PKGBUILD index 73c41fd57..872d9006c 100644 --- a/extra/at-spi2-core/PKGBUILD +++ b/extra/at-spi2-core/PKGBUILD @@ -5,7 +5,7 @@ pkgname=at-spi2-core pkgver=2.2.1 pkgrel=1 pkgdesc="Protocol definitions and daemon for D-Bus at-spi" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnome.org" license=('GPL2') depends=('dbus-core' 'glib2' 'libxtst') diff --git a/extra/at/PKGBUILD b/extra/at/PKGBUILD index 0f6736512..58c74feb5 100644 --- a/extra/at/PKGBUILD +++ b/extra/at/PKGBUILD @@ -6,7 +6,7 @@ pkgname=at pkgver=3.1.13 pkgrel=1 pkgdesc="AT and batch delayed command scheduling utility and daemon" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://packages.qa.debian.org/a/at.html" license=('GPL') depends=('pam') diff --git a/extra/aterm/PKGBUILD b/extra/aterm/PKGBUILD index 0dafc580a..25e2b51e0 100644 --- a/extra/aterm/PKGBUILD +++ b/extra/aterm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=aterm pkgver=1.0.1 pkgrel=3 pkgdesc="An xterm replacement with transparency support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://aterm.sourceforge.net/" license=('GPL') depends=('libx11') diff --git a/extra/atk/PKGBUILD b/extra/atk/PKGBUILD index 33b1f015c..728d6a5bb 100644 --- a/extra/atk/PKGBUILD +++ b/extra/atk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=atk pkgver=2.2.0 pkgrel=1 pkgdesc="A library providing a set of interfaces for accessibility" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('glib2') makedepends=('gobject-introspection') diff --git a/extra/atkmm/PKGBUILD b/extra/atkmm/PKGBUILD index 1cb843d48..9bc7244d4 100644 --- a/extra/atkmm/PKGBUILD +++ b/extra/atkmm/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=atkmm pkgname=(atkmm atkmm-docs) pkgver=2.22.6 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=('atk' 'glibmm' 'glibmm-docs' 'libsigc++') license=('LGPL') options=('!libtool' '!emptydirs') diff --git a/extra/attica/PKGBUILD b/extra/attica/PKGBUILD index 66000ef1f..a984a7082 100644 --- a/extra/attica/PKGBUILD +++ b/extra/attica/PKGBUILD @@ -5,7 +5,7 @@ pkgname=attica pkgver=0.2.0 pkgrel=1 pkgdesc='A library to access Open Collaboration Service providers' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('LGPL') depends=('qt') diff --git a/extra/aubio/PKGBUILD b/extra/aubio/PKGBUILD index e172e1fe1..517f756d6 100644 --- a/extra/aubio/PKGBUILD +++ b/extra/aubio/PKGBUILD @@ -7,7 +7,7 @@ pkgname=aubio pkgver=0.3.2 pkgrel=4 pkgdesc="A library for audio labelling" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://aubio.org/" license=('GPL') depends=('libsamplerate' 'fftw' 'jack') diff --git a/extra/audacious/PKGBUILD b/extra/audacious/PKGBUILD index cfda8b416..8af53c3d5 100644 --- a/extra/audacious/PKGBUILD +++ b/extra/audacious/PKGBUILD @@ -9,10 +9,10 @@ pkgrel=1 pkgdesc='Lightweight, GTK-based advanced audio player focused on audio quality' url='http://audacious-media-player.org/' license=('GPL3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gtk3' 'libmcs' 'dbus-glib' 'libguess' 'libsm' 'audacious-plugins' 'hicolor-icon-theme' 'gtk-update-icon-cache' 'desktop-file-utils') -optdepends=('unzip: zipped skins support') +optdepends=('p7zip-libre: zipped skins support') source=("http://distfiles.atheme.org/${pkgname}-${pkgver}.tar.gz") sha1sums=('d4bb828e4ead275bded85cf8b0aa258c347106cb') diff --git a/extra/audacity/PKGBUILD b/extra/audacity/PKGBUILD index d5c42fd92..cbfaeda07 100644 --- a/extra/audacity/PKGBUILD +++ b/extra/audacity/PKGBUILD @@ -5,7 +5,7 @@ pkgname=audacity pkgver=1.3.13 pkgrel=1 pkgdesc="A program that lets you manipulate digital audio waveforms" -arch=('i686' 'x86_64') +arch=(mips64el) url="http://audacity.sourceforge.net/" license=('GPL') depends=('libvorbis' 'libmad' 'libid3tag' 'wxgtk' 'libsamplerate' 'lame' 'hicolor-icon-theme' diff --git a/extra/audiofile/PKGBUILD b/extra/audiofile/PKGBUILD index 70d3364d9..a7cebf945 100644 --- a/extra/audiofile/PKGBUILD +++ b/extra/audiofile/PKGBUILD @@ -4,7 +4,7 @@ pkgname=audiofile pkgver=0.2.7 pkgrel=1 pkgdesc="Silicon Graphics Audio File Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.68k.org/~michael/audiofile/" license=('LGPL') depends=('glibc') diff --git a/extra/autogen/PKGBUILD b/extra/autogen/PKGBUILD index b98ddacc7..fa335c045 100644 --- a/extra/autogen/PKGBUILD +++ b/extra/autogen/PKGBUILD @@ -7,7 +7,7 @@ pkgname=autogen pkgver=5.12 pkgrel=1 pkgdesc="A tool designed to simplify the creation and maintenance of programs that contain large amounts of repetitious text" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://autogen.sourceforge.net/" license=('GPL3') depends=('guile' 'libxml2') diff --git a/extra/automoc4/PKGBUILD b/extra/automoc4/PKGBUILD index a6f7bc58d..2d0f8dc7c 100644 --- a/extra/automoc4/PKGBUILD +++ b/extra/automoc4/PKGBUILD @@ -6,7 +6,7 @@ pkgname=automoc4 pkgver=0.9.88 pkgrel=2 pkgdesc="Automatic moc for Qt4" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('custom') depends=('qt') diff --git a/extra/autopano-sift-c/PKGBUILD b/extra/autopano-sift-c/PKGBUILD index 35a5d7fdc..69a9432f2 100644 --- a/extra/autopano-sift-c/PKGBUILD +++ b/extra/autopano-sift-c/PKGBUILD @@ -7,7 +7,7 @@ pkgname=autopano-sift-c pkgver=2.5.1 pkgrel=2 pkgdesc="Identify key feature points within arbitrary images" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hugin.sourceforge.net/" license=('GPL2') depends=('libxml2' 'libpano13>=2.9.17' 'gcc-libs') diff --git a/extra/avahi/PKGBUILD b/extra/avahi/PKGBUILD index b298f17e3..72a021dd1 100644 --- a/extra/avahi/PKGBUILD +++ b/extra/avahi/PKGBUILD @@ -4,12 +4,13 @@ pkgname=avahi pkgver=0.6.30 -pkgrel=5 +pkgrel=5.1 pkgdesc='A multicast/unicast DNS-SD framework' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.avahi.org/' license=('LGPL') depends=('expat' 'libdaemon' 'glib2' 'dbus' 'libcap' 'gdbm') +[ "$CARCH" = "mips64el" ] || { optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc' 'gtk2: gtk2 bindings' 'qt3: qt3 bindings' @@ -21,6 +22,19 @@ optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc' 'nss-mdns: NSS support for mDNS') makedepends=('qt' 'qt3' 'pygtk' 'mono' 'intltool' 'dbus-python' 'gtk-sharp-2' 'gobject-introspection' 'gtk3') +} + +[ "$CARCH" = "mips64el" ] && { +optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc' + 'gtk2: gtk2 bindings' + 'qt: qt bindings' + 'pygtk: avahi-bookmarks, avahi-discover' + 'twisted: avahi-bookmarks' + 'dbus-python: avahi-discover' + 'nss-mdns: NSS support for mDNS') +makedepends=('qt' 'pygtk' 'intltool' 'dbus-python' + 'gobject-introspection' 'gtk3') +} backup=(etc/avahi/avahi-daemon.conf etc/avahi/services/{sftp-,}ssh.service) install=install conflicts=('howl' 'mdnsresponder') @@ -40,6 +54,9 @@ build() { sed -i 's/netdev/network/g' avahi-daemon/avahi-dbus.conf patch -p1 -i "../rc.d.patch" + [ "$CARCH" = "mips64el" ] && \ + extra="--disable-qt3 --disable-mono" + # pygtk requires python2; make it explicit in case other python are installed: FS#21865 PYTHON=python2 \ PKG_CONFIG_PATH=/opt/qt/lib/pkgconfig \ @@ -57,6 +74,7 @@ build() { --with-avahi-priv-access-group=network \ --with-autoipd-user=avahi \ --with-autoipd-group=avahi \ + $extra \ --with-systemdsystemunitdir=/lib/systemd/system # See FS#20999 make diff --git a/extra/avfs/PKGBUILD b/extra/avfs/PKGBUILD index a647b1185..288312c7a 100644 --- a/extra/avfs/PKGBUILD +++ b/extra/avfs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=avfs pkgver=0.9.9 pkgrel=1 pkgdesc="A virtual filesystem which enables programs to look inside archived or compressed files, or access remote files" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://avf.sourceforge.net/" source=(http://downloads.sourceforge.net/sourceforge/avf/${pkgname}-${pkgver}.tar.bz2) diff --git a/extra/avidemux/PKGBUILD b/extra/avidemux/PKGBUILD index 3bf48567d..a0ecb58ef 100644 --- a/extra/avidemux/PKGBUILD +++ b/extra/avidemux/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=avidemux pkgname=('avidemux-cli' 'avidemux-gtk' 'avidemux-qt') pkgver=2.5.5 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://fixounet.free.fr/avidemux/" makedepends=('cmake' 'libxslt' 'gtk2' 'qt' 'jack' 'libvorbis' 'sdl' 'libxv' \ diff --git a/extra/avogadro/PKGBUILD b/extra/avogadro/PKGBUILD index f85ad30cd..a30a4355e 100644 --- a/extra/avogadro/PKGBUILD +++ b/extra/avogadro/PKGBUILD @@ -6,7 +6,7 @@ pkgname=avogadro pkgver=1.0.3 pkgrel=3 pkgdesc="An advanced molecular editor based on Qt" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://avogadro.openmolecules.net/wiki/Main_Page" license=('GPL2') depends=('eigen' 'openbabel' 'python2-pyqt' 'boost-libs' 'glew' 'python2-numpy') diff --git a/extra/babl/PKGBUILD b/extra/babl/PKGBUILD index f8db47877..98005f9d9 100644 --- a/extra/babl/PKGBUILD +++ b/extra/babl/PKGBUILD @@ -5,7 +5,7 @@ pkgname=babl pkgver=0.1.4 pkgrel=1 pkgdesc="Dynamic, any to any, pixel format conversion library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gegl.org/babl/" license=('LGPL3') depends=('glibc') diff --git a/extra/banshee/PKGBUILD b/extra/banshee/PKGBUILD index 79a6d8ac0..8e94c989e 100644 --- a/extra/banshee/PKGBUILD +++ b/extra/banshee/PKGBUILD @@ -5,7 +5,7 @@ pkgname=banshee pkgver=2.2.1 pkgrel=1 pkgdesc="Music management and playback for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://banshee.fm/" license=('MIT') depends=(libxxf86vm gstreamer0.10-base-plugins mono-addins notify-sharp-svn dbus-sharp-glib boo libwebkit libsoup-gnome gdata-sharp taglib-sharp gtk-sharp-beans 'gudev-sharp' 'gkeyfile-sharp' gconf-sharp libmtp libgpod mono-zeroconf desktop-file-utils hicolor-icon-theme xdg-utils media-player-info) diff --git a/extra/barcode/PKGBUILD b/extra/barcode/PKGBUILD index 99dcd7755..6cf46cf26 100644 --- a/extra/barcode/PKGBUILD +++ b/extra/barcode/PKGBUILD @@ -5,7 +5,7 @@ pkgname=barcode pkgver=0.98 pkgrel=3 pkgdesc="A tool to convert text strings to printed bars" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/barcode/" license=('GPL') depends=('glibc') diff --git a/extra/basket/PKGBUILD b/extra/basket/PKGBUILD index 0ad964ea1..8887cd7ca 100644 --- a/extra/basket/PKGBUILD +++ b/extra/basket/PKGBUILD @@ -7,7 +7,7 @@ pkgname=basket pkgver=1.81 pkgrel=1 pkgdesc="All-purpose notes taker for KDE." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://basket.kde.org/" depends=('kdelibs' 'gpgme' 'qimageblitz' 'hicolor-icon-theme') makedepends=('cmake' 'automoc4') diff --git a/extra/bc/PKGBUILD b/extra/bc/PKGBUILD index 96ab3239b..7723696ae 100644 --- a/extra/bc/PKGBUILD +++ b/extra/bc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=bc pkgver=1.06 pkgrel=8 pkgdesc="An arbitrary precision calculator language" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/bc/" license=('GPL') depends=('readline') diff --git a/extra/beep/PKGBUILD b/extra/beep/PKGBUILD index bee2afc6d..f7a9853ea 100644 --- a/extra/beep/PKGBUILD +++ b/extra/beep/PKGBUILD @@ -5,7 +5,7 @@ pkgname=beep pkgver=1.3 pkgrel=1 pkgdesc="Advanced PC speaker beeping program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.johnath.com/beep" license=('GPL2') depends=('glibc') diff --git a/extra/bftpd/PKGBUILD b/extra/bftpd/PKGBUILD index 4ceec50e9..664c29d51 100644 --- a/extra/bftpd/PKGBUILD +++ b/extra/bftpd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=bftpd pkgver=3.6 pkgrel=1 pkgdesc="Small, easy-to-configure FTP server" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://bftpd.sourceforge.net/" license=('GPL') depends=('glibc' 'pam') diff --git a/extra/bigloo/PKGBUILD b/extra/bigloo/PKGBUILD index 62edcf962..dddf5cf4b 100644 --- a/extra/bigloo/PKGBUILD +++ b/extra/bigloo/PKGBUILD @@ -8,7 +8,7 @@ _pkgver=3.7a-2 pkgver=${_pkgver/-/_} pkgrel=1 pkgdesc="Fast scheme compiler" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www-sop.inria.fr/mimosa/fp/Bigloo/" license=('GPL' 'LGPL') depends=('openssl' 'sqlite3' 'alsa-lib') diff --git a/extra/bind/PKGBUILD b/extra/bind/PKGBUILD index 0053d4c6e..e9243bbad 100644 --- a/extra/bind/PKGBUILD +++ b/extra/bind/PKGBUILD @@ -13,7 +13,7 @@ pkgrel=1 pkgdesc='Berkeley Internet Name Daemon is the reference implementation of the DNS protocols' url='http://www.isc.org/software/bind/' license=('custom:ISC') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('openssl' 'krb5' 'libxml2') options=('!makeflags' '!libtool') source=("http://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz" diff --git a/extra/bitlbee/PKGBUILD b/extra/bitlbee/PKGBUILD index e12295d43..4f63eeece 100644 --- a/extra/bitlbee/PKGBUILD +++ b/extra/bitlbee/PKGBUILD @@ -9,7 +9,7 @@ pkgname=bitlbee pkgver=3.0.3 pkgrel=4 pkgdesc='Brings instant messaging (XMPP, MSN, Yahoo!, AIM, ICQ, Twitter) to IRC' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.bitlbee.org/' license=('GPL') depends=('openssl' 'glib2' 'libotr') @@ -35,6 +35,7 @@ build() { --ssl=openssl \ --strip=0 \ --otr=1 \ + --ssl=gnutls make } diff --git a/extra/blas/PKGBUILD b/extra/blas/PKGBUILD index 872e57bc7..cf6369fed 100755 --- a/extra/blas/PKGBUILD +++ b/extra/blas/PKGBUILD @@ -11,7 +11,7 @@ url="http://www.netlib.org/blas" makedepends=('gcc-fortran') depends=('gcc-libs') pkgdesc="Basic Linear Algebra Subprograms" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=("custom") source=(http://www.netlib.org/lapack/lapack-${pkgver}.tgz lapack-3.1.1-make.inc.patch diff --git a/extra/blender/PKGBUILD b/extra/blender/PKGBUILD index 334fbd7fb..7f7524a58 100644 --- a/extra/blender/PKGBUILD +++ b/extra/blender/PKGBUILD @@ -16,7 +16,7 @@ pkgver=2.60a pkgrel=1 epoch=3 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/extra/bluedevil/PKGBUILD b/extra/bluedevil/PKGBUILD index d0cf8b899..ad2437496 100644 --- a/extra/bluedevil/PKGBUILD +++ b/extra/bluedevil/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bluedevil pkgver=1.2.2 pkgrel=1 pkgdesc='KDE bluetooth framework' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://projects.kde.org/projects/extragear/base/bluedevil" license=('GPL') depends=('kdebase-workspace' 'libbluedevil' 'obex-data-server' 'obexd-client') diff --git a/extra/bluefish/PKGBUILD b/extra/bluefish/PKGBUILD index e0e160d4d..3bdb68c03 100644 --- a/extra/bluefish/PKGBUILD +++ b/extra/bluefish/PKGBUILD @@ -5,7 +5,7 @@ pkgname=bluefish pkgver=2.0.3 pkgrel=1 pkgdesc="A powerful HTML editor for experienced web designers and programmers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://bluefish.openoffice.nl/" license=('GPL3') depends=('pcre' 'gtk2' 'enchant' 'desktop-file-utils' 'shared-mime-info') diff --git a/extra/bluez-hcidump/PKGBUILD b/extra/bluez-hcidump/PKGBUILD index 29a5da889..95651cdbe 100644 --- a/extra/bluez-hcidump/PKGBUILD +++ b/extra/bluez-hcidump/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.1 pkgrel=1 pkgdesc="Bluetooth HCI package analyzer" url="http://www.bluez.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') depends=('glibc' 'bluez') source=("http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.gz") diff --git a/extra/bluez/PKGBUILD b/extra/bluez/PKGBUILD index ae17ecb75..80773fdf5 100644 --- a/extra/bluez/PKGBUILD +++ b/extra/bluez/PKGBUILD @@ -7,7 +7,7 @@ pkgver=4.96 pkgrel=1 pkgdesc="Libraries and tools for the Bluetooth protocol stack" url="http://www.bluez.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') depends=('dbus-core') makedepends=('gstreamer0.10-base' 'libusb-compat' 'libnl' 'libsndfile') diff --git a/extra/bmp-musepack/PKGBUILD b/extra/bmp-musepack/PKGBUILD index 408e4113d..0cde321fb 100644 --- a/extra/bmp-musepack/PKGBUILD +++ b/extra/bmp-musepack/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bmp-musepack pkgver=1.2 pkgrel=4 pkgdesc="A BMP plugin for playing sounds in Musepack (MPC) format" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://musepack.net/" license=('BSD') depends=('bmp' 'libmpcdec' 'taglib') diff --git a/extra/bmp-wma/PKGBUILD b/extra/bmp-wma/PKGBUILD index bf2deef41..55449d66f 100644 --- a/extra/bmp-wma/PKGBUILD +++ b/extra/bmp-wma/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=4 pkgdesc="WMA plugin for Beep Media Player" url="http://bmp-plugins.berlios.de/novelian/project.php?p=bmp-wma" license=('GPL') -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') depends=('bmp') groups=('bmp-plugins' 'bmp-io-plugins') options=('!libtool' '!emptydirs') diff --git a/extra/bmp/PKGBUILD b/extra/bmp/PKGBUILD index 50bbb6257..ea646f637 100644 --- a/extra/bmp/PKGBUILD +++ b/extra/bmp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bmp pkgver=0.9.7.1 pkgrel=8 pkgdesc="gtk2 port of xmms" -arch=('i686' 'x86_64') +arch=(i686 x86_64 mips64el) url="http://sourceforge.net/projects/beepmp/" license=('GPL') depends=('id3lib' 'libglade' 'libsm' 'libvorbis' 'alsa-lib' 'unzip' 'desktop-file-utils') diff --git a/extra/bochs/PKGBUILD b/extra/bochs/PKGBUILD index 0e4920fe7..46bc1161d 100644 --- a/extra/bochs/PKGBUILD +++ b/extra/bochs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bochs pkgver=2.4.6 pkgrel=1 pkgdesc="A portable x86 PC emulation software package" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://bochs.sourceforge.net/" source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz) diff --git a/extra/bogofilter/PKGBUILD b/extra/bogofilter/PKGBUILD index 860895cf9..9c939fe03 100644 --- a/extra/bogofilter/PKGBUILD +++ b/extra/bogofilter/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bogofilter pkgver=1.2.2 pkgrel=3 pkgdesc="A fast Bayesian spam filtering tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') url="http://bogofilter.sourceforge.net" depends=('db' 'perl' 'gsl') diff --git a/extra/boo/PKGBUILD b/extra/boo/PKGBUILD index b9fcee689..c630d2d8c 100644 --- a/extra/boo/PKGBUILD +++ b/extra/boo/PKGBUILD @@ -7,7 +7,7 @@ pkgname=boo pkgver=0.9.4.9 pkgrel=1 pkgdesc="A wrist friendly language for the CLI" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://boo.codehaus.org/" license=('GPL') depends=('sh' 'mono' 'shared-mime-info') diff --git a/extra/boost/PKGBUILD b/extra/boost/PKGBUILD index 62c11fdb2..67219aee0 100644 --- a/extra/boost/PKGBUILD +++ b/extra/boost/PKGBUILD @@ -9,7 +9,7 @@ pkgname=('boost-libs' 'boost') pkgver=1.47.0 _boostver=${pkgver//./_} pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.boost.org/" makedepends=('icu' 'python' 'python2' 'bzip2' 'zlib' 'openmpi') source=(http://downloads.sourceforge.net/${pkgbase}/${pkgbase}_${_boostver}.tar.gz @@ -37,6 +37,7 @@ build() { _bindir="bin.linuxx86" [ "${CARCH}" = "x86_64" ] && _bindir="bin.linuxx86_64" + [ "${CARCH}" = "mips64el" ] && _bindir="bin.linuxmips" install -d "${_stagedir}"/usr/bin install ${_bindir}/bjam "${_stagedir}"/usr/bin/bjam diff --git a/extra/botan/PKGBUILD b/extra/botan/PKGBUILD index 2d05b70e8..1623c55c4 100644 --- a/extra/botan/PKGBUILD +++ b/extra/botan/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.10.0 pkgrel=1 pkgdesc="BSD-licensed crypto library written in C++" license=('BSD') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://botan.randombit.net/" depends=('gcc-libs' 'sh') makedepends=('python2') diff --git a/extra/brasero/PKGBUILD b/extra/brasero/PKGBUILD index 6e033451c..aff70e67f 100644 --- a/extra/brasero/PKGBUILD +++ b/extra/brasero/PKGBUILD @@ -7,7 +7,7 @@ pkgname=brasero pkgver=3.2.0 pkgrel=1 pkgdesc="A disc burning application for Gnome" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnome.org/projects/brasero" license=('GPL') options=('!libtool' '!emptydirs') diff --git a/extra/brltty/PKGBUILD b/extra/brltty/PKGBUILD index e173c7e6c..32801c297 100644 --- a/extra/brltty/PKGBUILD +++ b/extra/brltty/PKGBUILD @@ -7,7 +7,7 @@ pkgname=brltty pkgver=4.2 pkgrel=4 pkgdesc="Braille display driver for Linux/Unix" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mielke.cc/brltty" license=('GPL' 'LGPL') depends=('libxaw' 'at-spi' 'gpm' 'icu' 'python2' 'tcl' 'atk' 'libxtst') diff --git a/extra/bzflag/PKGBUILD b/extra/bzflag/PKGBUILD index 08871b559..ba2e71452 100644 --- a/extra/bzflag/PKGBUILD +++ b/extra/bzflag/PKGBUILD @@ -10,7 +10,7 @@ pkgdesc='Multiplayer 3D tank battle game' url='http://bzflag.org/' license=('LGPL') options=('!libtool') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('curl' 'glew' 'mesa' 'sdl') source=("http://downloads.sourceforge.net/project/bzflag/bzflag%20source/${pkgver}/bzflag-${pkgver}.tar.bz2") sha1sums=('af469d63af7143479176ea0ac91ce2eaa6e4561f') diff --git a/extra/bzr/PKGBUILD b/extra/bzr/PKGBUILD index 4f82d185b..d68c778a5 100644 --- a/extra/bzr/PKGBUILD +++ b/extra/bzr/PKGBUILD @@ -6,7 +6,7 @@ pkgname=bzr pkgver=2.4.2 pkgrel=1 pkgdesc="A decentralized revision control system (bazaar)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://bazaar.canonical.com/en/" license=('GPL') depends=('python2') diff --git a/extra/c-ares/PKGBUILD b/extra/c-ares/PKGBUILD index d16d11ce9..75c8351dc 100644 --- a/extra/c-ares/PKGBUILD +++ b/extra/c-ares/PKGBUILD @@ -7,7 +7,7 @@ pkgname=c-ares pkgver=1.7.4 pkgrel=1 pkgdesc='C library that performs DNS requests and name resolves asynchronously' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://c-ares.haxx.se/' license=('custom') depends=('glibc') diff --git a/extra/cabal-install/PKGBUILD b/extra/cabal-install/PKGBUILD index 78c9c8902..dda18250d 100644 --- a/extra/cabal-install/PKGBUILD +++ b/extra/cabal-install/PKGBUILD @@ -6,7 +6,7 @@ pkgrel=1 pkgdesc="The command-line interface for Cabal and Hackage." url="http://hackage.haskell.org/package/cabal-install" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=('ghc=7.0.2' 'haskell-http>=4000.1.1' 'haskell-zlib') depends=('gmp' zlib) options=('strip') diff --git a/extra/cagibi/PKGBUILD b/extra/cagibi/PKGBUILD index ac8f2a431..2f81cc228 100644 --- a/extra/cagibi/PKGBUILD +++ b/extra/cagibi/PKGBUILD @@ -5,7 +5,7 @@ pkgname=cagibi pkgver=0.2.0 pkgrel=1 pkgdesc='A cache/proxy daemon for SSDP (the discovery part of UPnP)' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('LGPL') depends=('qt') diff --git a/extra/cairo-perl/PKGBUILD b/extra/cairo-perl/PKGBUILD index b697e5e16..8f260c3a8 100644 --- a/extra/cairo-perl/PKGBUILD +++ b/extra/cairo-perl/PKGBUILD @@ -6,7 +6,7 @@ _realname=Cairo pkgver=1.061 pkgrel=4 pkgdesc="Perl wrappers for cairo" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://gtk2-perl.sourceforge.net/" options=('!emptydirs') diff --git a/extra/cairo/PKGBUILD b/extra/cairo/PKGBUILD index 9c80110a0..356a9d270 100644 --- a/extra/cairo/PKGBUILD +++ b/extra/cairo/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cairo pkgver=1.10.2 pkgrel=2 pkgdesc="Cairo vector graphics library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL' 'MPL') url="http://cairographics.org/" depends=('libpng>=1.4.0' 'libxrender' 'fontconfig>=2.8.0' 'pixman>=0.18.4' 'glib2>=2.24.0' 'sh') diff --git a/extra/cairomm/PKGBUILD b/extra/cairomm/PKGBUILD index 8bd23555e..faa47880f 100644 --- a/extra/cairomm/PKGBUILD +++ b/extra/cairomm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cairomm pkgver=1.10.0 pkgrel=1 pkgdesc="C++ bindings to Cairo vector graphics library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cairographics.org" license=('LGPL' 'MPL') depends=('cairo' 'libsigc++') diff --git a/extra/camsource/PKGBUILD b/extra/camsource/PKGBUILD index 5c6221769..02fc14222 100644 --- a/extra/camsource/PKGBUILD +++ b/extra/camsource/PKGBUILD @@ -5,7 +5,7 @@ pkgname=camsource pkgver=0.7.0 pkgrel=6 pkgdesc="Grabs images from a v4l and v4l2 webcam devices" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://camsource.sourceforge.net/" license=('GPL') depends=('libxml2' 'libjpeg>=8') diff --git a/extra/capi4hylafax/PKGBUILD b/extra/capi4hylafax/PKGBUILD index 039ea496d..f8918d70e 100644 --- a/extra/capi4hylafax/PKGBUILD +++ b/extra/capi4hylafax/PKGBUILD @@ -5,7 +5,7 @@ pkgname=capi4hylafax pkgver=010300 pkgrel=4 pkgdesc="capi plugin for hylafax to enable isdn faxing" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="ftp://ftp.avm.de/tools" license=('GPL') depends=('glibc' 'capi4k-utils' 'hylafax' 'gcc-libs' 'libtiff') diff --git a/extra/capi4k-utils/PKGBUILD b/extra/capi4k-utils/PKGBUILD index 07ec42be0..c76578120 100644 --- a/extra/capi4k-utils/PKGBUILD +++ b/extra/capi4k-utils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=capi4k-utils pkgver=050718 pkgrel=8 pkgdesc="capi utils for isdn cards" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="ftp://ftp.in-berlin.de/pub/capi4linux/" makedepends=('ppp') diff --git a/extra/capseo/PKGBUILD b/extra/capseo/PKGBUILD index 9a5f526c1..a185964b4 100644 --- a/extra/capseo/PKGBUILD +++ b/extra/capseo/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.3 pkgrel=2 epoch=1 pkgdesc="Capseo video codec" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://dev.gentoo.org/~trapni/capseo/" license=('GPL2') depends=('libgl' 'gcc-libs') diff --git a/extra/catdoc/PKGBUILD b/extra/catdoc/PKGBUILD index cf8523bff..aa4f7da01 100644 --- a/extra/catdoc/PKGBUILD +++ b/extra/catdoc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=catdoc pkgver=0.94.2 pkgrel=3 pkgdesc="A convertor for Microsoft Word, Excel, PowerPoint and RTF Files to text" -arch=('i686' 'x86_64') +arch=(i686 x86_64 'mips64el') url="http://www.wagner.pp.ru/~vitus/software/catdoc/" license=('GPL') depends=('glibc') diff --git a/extra/ccache/PKGBUILD b/extra/ccache/PKGBUILD index 4edd77bf7..f33a8b078 100644 --- a/extra/ccache/PKGBUILD +++ b/extra/ccache/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ccache pkgver=3.1.6 pkgrel=1 pkgdesc="A compiler cache" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ccache.samba.org/" license=('GPL') depends=('zlib') diff --git a/extra/cd-discid/PKGBUILD b/extra/cd-discid/PKGBUILD index c19387e97..71ca9eabd 100644 --- a/extra/cd-discid/PKGBUILD +++ b/extra/cd-discid/PKGBUILD @@ -7,7 +7,7 @@ pkgname=cd-discid pkgver=0.9 pkgrel=3 pkgdesc="A backend utility to get CDDB discid information from a CD-ROM disc" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lly.org/~rcw/cd-discid/" license=('GPL') depends=('glibc') diff --git a/extra/cdargs/PKGBUILD b/extra/cdargs/PKGBUILD index 28e471e84..7d721064b 100644 --- a/extra/cdargs/PKGBUILD +++ b/extra/cdargs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cdargs pkgver=1.35 pkgrel=3 pkgdesc="A replacement for 'cd' that includes bookmarks/browsing for faster navigation" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.skamphausen.de/cgi-bin/ska/CDargs" depends=('ncurses' 'gcc-libs') diff --git a/extra/cdparanoia/PKGBUILD b/extra/cdparanoia/PKGBUILD index c51bd4ce0..223570a22 100644 --- a/extra/cdparanoia/PKGBUILD +++ b/extra/cdparanoia/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cdparanoia pkgver=10.2 pkgrel=3 pkgdesc="Compact Disc Digital Audio extraction tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xiph.org/paranoia/" license=('GPL') depends=('glibc') diff --git a/extra/cdrdao/PKGBUILD b/extra/cdrdao/PKGBUILD index 3ef570fbe..289b3825c 100644 --- a/extra/cdrdao/PKGBUILD +++ b/extra/cdrdao/PKGBUILD @@ -7,7 +7,7 @@ pkgbase=('cdrdao') pkgname=('cdrdao' 'gcdmaster') pkgver=1.2.3 pkgrel=6 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://cdrdao.sourceforge.net/" makedepends=('gcc-libs' 'lame' 'libmad' 'libvorbis' 'libao' 'libgnomeuimm') diff --git a/extra/celestia/PKGBUILD b/extra/celestia/PKGBUILD index 702e3e05f..e41ce2589 100644 --- a/extra/celestia/PKGBUILD +++ b/extra/celestia/PKGBUILD @@ -6,7 +6,7 @@ pkgname=celestia pkgver=1.6.1 pkgrel=1 pkgdesc="Real-time space simulation" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.shatters.net/celestia/" depends=('gtk2' 'libtheora' 'lua' 'gtkglext' 'glut' 'libxmu' 'mesa' 'libjpeg') diff --git a/extra/cfitsio/PKGBUILD b/extra/cfitsio/PKGBUILD index 554c12923..5f1992744 100644 --- a/extra/cfitsio/PKGBUILD +++ b/extra/cfitsio/PKGBUILD @@ -7,7 +7,7 @@ pkgver=3.280 _pkgver=3280 pkgrel=1 pkgdesc="A library of C and Fortran subroutines for reading and writing data files in FITS (Flexible Image Transport System) data format" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html" license=('GPL2') depends=('glibc') diff --git a/extra/cheese/PKGBUILD b/extra/cheese/PKGBUILD index f2061e399..c0a9544e0 100644 --- a/extra/cheese/PKGBUILD +++ b/extra/cheese/PKGBUILD @@ -5,7 +5,7 @@ pkgname=cheese pkgver=3.2.1 pkgrel=1 pkgdesc="Use your webcam to take photos and videos, apply fancy special effects and share the fun with others" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('gnome-desktop' 'gtk3' 'libcanberra' 'librsvg' 'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'gstreamer0.10-bad' 'clutter-gst' 'clutter-gtk' 'mx' 'libgee' 'gnome-video-effects' 'hicolor-icon-theme' 'dconf') diff --git a/extra/chemtool/PKGBUILD b/extra/chemtool/PKGBUILD index b3992140d..b5fbb721b 100644 --- a/extra/chemtool/PKGBUILD +++ b/extra/chemtool/PKGBUILD @@ -5,7 +5,7 @@ pkgname=chemtool pkgver=1.6.12 pkgrel=3 pkgdesc="A small program for drawing chemical structures" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/chemtool.html" depends=('gtk2') diff --git a/extra/chkrootkit/PKGBUILD b/extra/chkrootkit/PKGBUILD index bb9303fc0..0ecbf3586 100644 --- a/extra/chkrootkit/PKGBUILD +++ b/extra/chkrootkit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=chkrootkit pkgver=0.49 pkgrel=3 pkgdesc="Locally checks for signs of a rootkit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.chkrootkit.org" depends=('sh' 'net-tools') license=('BSD') diff --git a/extra/chmlib/PKGBUILD b/extra/chmlib/PKGBUILD index 24589b4b2..04c8de5a6 100644 --- a/extra/chmlib/PKGBUILD +++ b/extra/chmlib/PKGBUILD @@ -7,16 +7,23 @@ pkgname=chmlib pkgver=0.40 pkgrel=2 pkgdesc="Library for dealing with Microsoft ITSS/CHM format files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://morte.jedrea.com/~jedwin/projects/chmlib/" options=('!libtool') license=('LGPL') depends=('glibc') -source=("http://morte.jedrea.com/~jedwin/projects/${pkgname}/${pkgname}-${pkgver}.tar.bz2") -md5sums=('7ea49ed8c335215c1edc6fae83e6b912') +source=("http://morte.jedrea.com/~jedwin/projects/${pkgname}/${pkgname}-${pkgver}.tar.bz2" + 'src_chm_lib.c.diff') +md5sums=('7ea49ed8c335215c1edc6fae83e6b912' + '08fe9d62302a50f23cffb6c2a7524b6d') build() { cd "${srcdir}"/${pkgname}-${pkgver} + +# Patch from debian + [ "$CARCH" = "mips64el" ] && \ + patch -Np1 -i $srcdir/src_chm_lib.c.diff + ./configure --prefix=/usr \ --enable-examples=yes make diff --git a/extra/chmlib/src_chm_lib.c.diff b/extra/chmlib/src_chm_lib.c.diff new file mode 100644 index 000000000..742e0e521 --- /dev/null +++ b/extra/chmlib/src_chm_lib.c.diff @@ -0,0 +1,58 @@ +Patch to fix integer types problem by Goswin von Brederlow +<brederlo@informatik.uni-tuebingen.de> (#258444) +--- chmlib-0.39.orig/src/chm_lib.c ++++ chmlib-0.39/src/chm_lib.c +@@ -56,6 +56,7 @@ + + #include "lzx.h" + ++#include <stdint.h> + #include <stdlib.h> + #include <string.h> + #ifdef CHM_DEBUG +@@ -149,22 +150,9 @@ + typedef __int64 Int64; + typedef unsigned __int64 UInt64; + +-/* I386, 32-bit, non-Windows */ +-/* Sparc */ +-/* MIPS */ +-/* PPC */ +-#elif __i386__ || __sun || __sgi || __ppc__ +-typedef unsigned char UChar; +-typedef short Int16; +-typedef unsigned short UInt16; +-typedef long Int32; +-typedef unsigned long UInt32; +-typedef long long Int64; +-typedef unsigned long long UInt64; +- + /* x86-64 */ + /* Note that these may be appropriate for other 64-bit machines. */ +-#elif __x86_64__ || __ia64__ ++#elif defined(__LP64__) + typedef unsigned char UChar; + typedef short Int16; + typedef unsigned short UInt16; +@@ -173,10 +161,18 @@ + typedef long Int64; + typedef unsigned long UInt64; + ++/* I386, 32-bit, non-Windows */ ++/* Sparc */ ++/* MIPS */ ++/* PPC */ + #else +- +-/* yielding an error is preferable to yielding incorrect behavior */ +-#error "Please define the sized types for your platform in chm_lib.c" ++typedef unsigned char UChar; ++typedef short Int16; ++typedef unsigned short UInt16; ++typedef long Int32; ++typedef unsigned long UInt32; ++typedef long long Int64; ++typedef unsigned long long UInt64; + #endif + + /* GCC */ diff --git a/extra/cifs-utils/PKGBUILD b/extra/cifs-utils/PKGBUILD index 9c33cefba..1c85829c0 100644 --- a/extra/cifs-utils/PKGBUILD +++ b/extra/cifs-utils/PKGBUILD @@ -4,7 +4,7 @@ pkgname=cifs-utils pkgver=4.9 pkgrel=3 pkgdesc="CIFS filesystem user-space tools" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://wiki.samba.org/index.php/LinuxCIFS_utils" license=('GPL') depends=('libcap' 'keyutils' 'krb5' 'talloc') diff --git a/extra/cinepaint/PKGBUILD b/extra/cinepaint/PKGBUILD index fc4170c95..ab424eca9 100644 --- a/extra/cinepaint/PKGBUILD +++ b/extra/cinepaint/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cinepaint pkgver=0.25.0 pkgrel=1 pkgdesc="Sophisticated graphics manipulation programm supporting > 8bit pictures" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL' 'GPL' 'MIT') url="http://www.cinepaint.org" depends=('gtk2' 'openexr' 'lcms' 'libxpm' 'fltk' 'ftgl' 'desktop-file-utils') diff --git a/extra/clamav/PKGBUILD b/extra/clamav/PKGBUILD index cee554750..50c70dce4 100644 --- a/extra/clamav/PKGBUILD +++ b/extra/clamav/PKGBUILD @@ -7,7 +7,7 @@ pkgname=clamav pkgver=0.97.3 pkgrel=1 pkgdesc='Anti-virus toolkit for Unix' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('bzip2' 'zlib' 'libtool') options=('!libtool') license=('GPL') diff --git a/extra/claws-mail-extra-plugins/PKGBUILD b/extra/claws-mail-extra-plugins/PKGBUILD index e252bbe96..969aae275 100644 --- a/extra/claws-mail-extra-plugins/PKGBUILD +++ b/extra/claws-mail-extra-plugins/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc="Extra plugins for claws-mail" url="http://www.claws-mail.org/plugins.php?branch=EXT" license=('GPL3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('claws-mail>=3.7.10') makedepends=('make' 'bc' 'perl>=5.10.1-5' 'libgtkhtml>=2.11.1-2' 'libnotify>=0.7' 'libxml2>=2.7.6' 'curl>=7.19.7' 'libytnef>=1.5-2' 'libwebkit>=1.6.1' diff --git a/extra/claws-mail/PKGBUILD b/extra/claws-mail/PKGBUILD index 2b68bab55..e298d0cb4 100644 --- a/extra/claws-mail/PKGBUILD +++ b/extra/claws-mail/PKGBUILD @@ -5,12 +5,12 @@ pkgname=claws-mail pkgver=3.7.10 pkgrel=1 pkgdesc="A GTK+ based e-mail client." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') url="http://www.claws-mail.org" depends=('gtk2' 'gnutls' 'startup-notification' 'pilot-link' 'enchant' 'gpgme' 'libetpan' 'libsm' 'db' 'dbus-glib' 'hicolor-icon-theme' 'desktop-file-utils') -makedepends=('compface' 'spamassassin' 'bogofilter' 'valgrind') +makedepends=('compface' 'spamassassin' 'bogofilter') optdepends=('python2: needed for some tools' 'perl: needed for some tools' 'spamassassin: adds support for spamfiltering' diff --git a/extra/clisp/PKGBUILD b/extra/clisp/PKGBUILD index a6451270c..4738a52c6 100644 --- a/extra/clisp/PKGBUILD +++ b/extra/clisp/PKGBUILD @@ -4,7 +4,7 @@ pkgname=clisp pkgver=2.49 pkgrel=1 pkgdesc="ANSI Common Lisp interpreter, compiler and debugger" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://clisp.cons.org/" depends=('readline' 'libsigsegv') @@ -20,8 +20,10 @@ build() { ./configure --prefix=/usr --with-readline --with-ffcall src cd src ./makemake --prefix=/usr --with-readline --with-ffcall --with-dynamic-ffi > Makefile + # Dirty hack for using arimips64 instead of arimips.c + [ $CARCH = "mips64el" ] && ln -s arimips64.c arimips.c make || return 1 sed -i 's,http://www.lisp.org/HyperSpec/,http://www.lispworks.com/reference/HyperSpec/,g' config.lisp make || return 1 make DESTDIR=$pkgdir install || return 1 -} +}
\ No newline at end of file diff --git a/extra/cln/PKGBUILD b/extra/cln/PKGBUILD index 67502ca6c..8f8082f6f 100644 --- a/extra/cln/PKGBUILD +++ b/extra/cln/PKGBUILD @@ -5,10 +5,10 @@ pkgname=cln pkgver=1.3.2 pkgrel=1 pkgdesc="Class library for numbers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ginac.de/CLN/" license=('GPL') -depends=('gmp') +[[ "${CARCH}" == 'mips64el' ]] || depends=('gmp') makedepends=('texlive-core') options=('!libtool') install=cln.install @@ -18,10 +18,22 @@ sha1sums=('c30dca80e75f45e2107f233075e6d0339ea884b0') build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr + sed -i 's/<sizeof(mp_limb_t) > sizeof(long)>/<(sizeof(mp_limb_t) > sizeof(long))>/' configure + # For unknown reasons it fails. + if [[ "${CARCH}" == 'mips64el' ]] ; then + use_gmp=--without-gmp + else + use_gmp= + fi + ./configure --prefix=/usr $use_gmp make all html pdf } +check() { + cd "${srcdir}/${pkgname}-${pkgver}" + make check +} + package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install install-html install-pdf diff --git a/extra/clutter-gst/PKGBUILD b/extra/clutter-gst/PKGBUILD index 6a88e63fa..6f61bdd74 100644 --- a/extra/clutter-gst/PKGBUILD +++ b/extra/clutter-gst/PKGBUILD @@ -5,7 +5,7 @@ pkgname=clutter-gst pkgver=1.4.4 pkgrel=1 pkgdesc="GStreamer bindings for clutter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.clutter-project.org/" license=('LGPL') depends=('clutter' 'gstreamer0.10-base' 'libxdamage') diff --git a/extra/clutter-gtk/PKGBUILD b/extra/clutter-gtk/PKGBUILD index 92b9a1d2c..498ebecd3 100644 --- a/extra/clutter-gtk/PKGBUILD +++ b/extra/clutter-gtk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=clutter-gtk pkgver=1.0.4 pkgrel=1 pkgdesc="GTK clutter widget" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://clutter-project.org/" options=('!libtool') license=('LGPL') diff --git a/extra/clutter-gtk2/PKGBUILD b/extra/clutter-gtk2/PKGBUILD index 3b6d7c4f8..3ba9ffa2d 100644 --- a/extra/clutter-gtk2/PKGBUILD +++ b/extra/clutter-gtk2/PKGBUILD @@ -6,7 +6,7 @@ _pkgbasename=clutter-gtk pkgver=0.10.8 pkgrel=1 pkgdesc="GTK clutter widget" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://clutter-project.org/" options=('!libtool') license=('LGPL') diff --git a/extra/clutter/PKGBUILD b/extra/clutter/PKGBUILD index 66ff38ae1..e0525fa43 100644 --- a/extra/clutter/PKGBUILD +++ b/extra/clutter/PKGBUILD @@ -7,7 +7,7 @@ pkgname=clutter pkgver=1.8.2 pkgrel=1 pkgdesc="A GObject based library for creating fast, visually rich graphical user interfaces" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://clutter-project.org/" options=('!libtool') license=('LGPL') diff --git a/extra/cmake/PKGBUILD b/extra/cmake/PKGBUILD index 0c7b1a706..676f2e0a6 100644 --- a/extra/cmake/PKGBUILD +++ b/extra/cmake/PKGBUILD @@ -7,7 +7,7 @@ pkgname=cmake pkgver=2.8.6 pkgrel=1 pkgdesc="A cross-platform open-source make system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://www.cmake.org" depends=('curl' 'libarchive' 'shared-mime-info') diff --git a/extra/cmatrix/PKGBUILD b/extra/cmatrix/PKGBUILD index 444a463ac..40e62d1fb 100644 --- a/extra/cmatrix/PKGBUILD +++ b/extra/cmatrix/PKGBUILD @@ -5,7 +5,7 @@ pkgname=cmatrix pkgver=1.2a pkgrel=6 pkgdesc="Let you see the matrix code in your console" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.asty.org/cmatrix/" license=('GPL') depends=('ncurses' 'fontconfig') diff --git a/extra/cmt/PKGBUILD b/extra/cmt/PKGBUILD index df73556ce..fd45d6bad 100644 --- a/extra/cmt/PKGBUILD +++ b/extra/cmt/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cmt pkgver=1.16 pkgrel=3 pkgdesc="CMT for LADSPA" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.ladspa.org" depends=('ladspa' 'gcc-libs') diff --git a/extra/cmus/PKGBUILD b/extra/cmus/PKGBUILD index 395192056..beb0e41cc 100644 --- a/extra/cmus/PKGBUILD +++ b/extra/cmus/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cmus pkgver=2.4.2 pkgrel=1 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/extra/cogl/PKGBUILD b/extra/cogl/PKGBUILD index 16321ce85..e8d745d94 100644 --- a/extra/cogl/PKGBUILD +++ b/extra/cogl/PKGBUILD @@ -5,7 +5,7 @@ pkgname=cogl pkgver=1.8.2 pkgrel=1 pkgdesc="An object oriented GL/GLES Abstraction/Utility Layer" -arch=('i686' 'x86_64') +arch=(mips64el) url="http://www.clutter-project.org/" license=('GPL2') depends=('libdrm' 'libxext' 'libxdamage' 'libxcomposite' 'gdk-pixbuf2' 'pango') diff --git a/extra/colord/PKGBUILD b/extra/colord/PKGBUILD index fc4ff867e..fa7c0c9d3 100644 --- a/extra/colord/PKGBUILD +++ b/extra/colord/PKGBUILD @@ -6,7 +6,7 @@ pkgname=colord pkgver=0.1.13 pkgrel=1 pkgdesc="Color daemon" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.freedesktop.org/software/colord" license=('GPL2') depends=('lcms2' 'sqlite3' 'polkit' 'udev' 'sane') diff --git a/extra/compface/PKGBUILD b/extra/compface/PKGBUILD index 98f83cb2c..46ccc1d26 100644 --- a/extra/compface/PKGBUILD +++ b/extra/compface/PKGBUILD @@ -6,7 +6,7 @@ pkgname=compface pkgver=1.5.2 pkgrel=3 pkgdesc="Utils & libs to convert from/to X-Face format." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ftp.xemacs.org/pub/xemacs/aux/" license=('custom') depends=('glibc') diff --git a/extra/conky/PKGBUILD b/extra/conky/PKGBUILD index f81d854d0..4f1af6db7 100644 --- a/extra/conky/PKGBUILD +++ b/extra/conky/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=1 pkgdesc='Lightweight system monitor for X' url='http://conky.sourceforge.net/' license=('BSD' 'GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!emptydirs') makedepends=('pkg-config' 'docbook2x') depends=('alsa-lib' 'libxml2' 'curl' 'wireless_tools' 'libxft' 'glib2' 'libxdamage' 'imlib2') diff --git a/extra/consolekit/PKGBUILD b/extra/consolekit/PKGBUILD index 6ab97891b..6a020498d 100644 --- a/extra/consolekit/PKGBUILD +++ b/extra/consolekit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=consolekit pkgver=0.4.5 pkgrel=1 pkgdesc="A framework for defining and tracking users, login sessions, and seats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.freedesktop.org/wiki/Software/ConsoleKit" license=('GPL') depends=('polkit' 'zlib' 'libx11' 'dbus-glib') diff --git a/extra/cpio/PKGBUILD b/extra/cpio/PKGBUILD index 9f34c4500..c6ebc1d41 100644 --- a/extra/cpio/PKGBUILD +++ b/extra/cpio/PKGBUILD @@ -4,7 +4,7 @@ pkgname=cpio pkgver=2.11 pkgrel=2 pkgdesc="A tool to copy files into or out of a cpio or tar archive" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://www.gnu.org/software/cpio" depends=('glibc') diff --git a/extra/cppunit/PKGBUILD b/extra/cppunit/PKGBUILD index b7dd30d27..79bac05cb 100644 --- a/extra/cppunit/PKGBUILD +++ b/extra/cppunit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cppunit pkgver=1.12.1 pkgrel=3 pkgdesc="A C++ unit testing framework" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cppunit.sourceforge.net" license=('LGPL') depends=('sh' 'gcc-libs') diff --git a/extra/cpufrequtils/PKGBUILD b/extra/cpufrequtils/PKGBUILD index d5b92095b..21ffbe1cd 100644 --- a/extra/cpufrequtils/PKGBUILD +++ b/extra/cpufrequtils/PKGBUILD @@ -7,26 +7,30 @@ pkgname=cpufrequtils pkgver=008 pkgrel=1 pkgdesc="Userspace tools for the kernel cpufreq subsystem" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html" license=('GPL') depends=('sysfsutils') backup=('etc/conf.d/cpufreq') source=(http://www.kernel.org/pub/linux/utils/kernel/cpufreq/${pkgname}-${pkgver}.tar.bz2 cpufreq.rcd - cpufreq.confd) -options=(!libtool) + cpufreq.confd + cpufrequtils-mips.patch) +options=(!libtool !distcc) md5sums=('c59b71c044d463896f3247e8dd83dd7e' '7f2b5085df44d2df3e7c2d0b9f6dab08' - 'baae1f2abffc6bef2bd32a8dd8263c09') + 'baae1f2abffc6bef2bd32a8dd8263c09' + 'edbe311e6813f3b395a08b7f174065c1') build() { cd "${srcdir}/${pkgname}-${pkgver}" - make -j1 || return 1 - make INSTALL="/bin/install -c" mandir=/usr/share/man DESTDIR="${pkgdir}" install || return 1 + [ "$CARCH" = "mips64el" ] && patch -Np0 -i ${srcdir}/cpufrequtils-mips.patch - install -D -m755 ${srcdir}/cpufreq.rcd "${pkgdir}/etc/rc.d/cpufreq" || return 1 - install -D -m644 ${srcdir}/cpufreq.confd "${pkgdir}/etc/conf.d/cpufreq" || return 1 + make -j1 + make INSTALL="/bin/install -c" mandir=/usr/share/man DESTDIR="${pkgdir}" install + + install -D -m755 ${srcdir}/cpufreq.rcd "${pkgdir}/etc/rc.d/cpufreq" + install -D -m644 ${srcdir}/cpufreq.confd "${pkgdir}/etc/conf.d/cpufreq" } diff --git a/extra/cpufrequtils/cpufrequtils-mips.patch b/extra/cpufrequtils/cpufrequtils-mips.patch new file mode 100644 index 000000000..cba8ab48b --- /dev/null +++ b/extra/cpufrequtils/cpufrequtils-mips.patch @@ -0,0 +1,18 @@ +--- utils/aperf.c.orig 2010-07-18 01:38:02.000000000 +0800 ++++ utils/aperf.c 2010-07-18 01:38:39.000000000 +0800 +@@ -68,11 +68,15 @@ + + static int cpu_has_effective_freq() + { ++#if defined(__i386__) || defined(__x86_64__) + /* largest base level */ + if (cpuid_eax(0) < 6) + return 0; + + return cpuid_ecx(6) & 0x1; ++#else ++ return 0; ++#endif + } + + /* diff --git a/extra/crypto++/PKGBUILD b/extra/crypto++/PKGBUILD index 855573288..dce623a36 100644 --- a/extra/crypto++/PKGBUILD +++ b/extra/crypto++/PKGBUILD @@ -10,7 +10,7 @@ pkgver=5.6.1 _srcver=561 pkgrel=2 pkgdesc="A free C++ class library of cryptographic schemes." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cryptopp.com/" license=('custom') depends=('gcc-libs') diff --git a/extra/cscope/PKGBUILD b/extra/cscope/PKGBUILD index b480a8166..c0c7c48d0 100644 --- a/extra/cscope/PKGBUILD +++ b/extra/cscope/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cscope pkgver=15.7a pkgrel=2 pkgdesc="A developers tool for browsing program code" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cscope.sourceforge.net/index.html" license=('BSD') depends=('ncurses' 'sh') diff --git a/extra/ctags/PKGBUILD b/extra/ctags/PKGBUILD index be4e9e20d..041da0283 100644 --- a/extra/ctags/PKGBUILD +++ b/extra/ctags/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ctags pkgver=5.8 pkgrel=2 pkgdesc="Generates an index file of language objects found in source files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('glibc') url="http://ctags.sourceforge.net/" diff --git a/extra/cups-pdf/PKGBUILD b/extra/cups-pdf/PKGBUILD index 5eb0ac5c6..f49de5233 100644 --- a/extra/cups-pdf/PKGBUILD +++ b/extra/cups-pdf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=cups-pdf pkgver=2.6.1 pkgrel=1 pkgdesc="PDF printer for cups" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('cups' 'ghostscript') install=cups-pdf.install url="http://cip.physik.uni-wuerzburg.de/~vrbehr/cups-pdf" diff --git a/extra/cups-pk-helper/PKGBUILD b/extra/cups-pk-helper/PKGBUILD index aaeec33b6..4f491f860 100644 --- a/extra/cups-pk-helper/PKGBUILD +++ b/extra/cups-pk-helper/PKGBUILD @@ -4,7 +4,7 @@ pkgname=cups-pk-helper pkgver=0.1.2 pkgrel=1 pkgdesc="A helper that makes system-config-printer use PolicyKit" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.freedesktop.org/software/cups-pk-helper/releases/" license=('GPL') depends=(dbus-glib polkit libcups) diff --git a/extra/cups/PKGBUILD b/extra/cups/PKGBUILD index 46ece794b..ba3430d87 100644 --- a/extra/cups/PKGBUILD +++ b/extra/cups/PKGBUILD @@ -5,7 +5,7 @@ pkgbase="cups" pkgname=('libcups' 'cups') pkgver=1.5.0 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.cups.org/" makedepends=('libtiff>=3.9.2-2' 'libpng>=1.4.0' 'acl' 'openslp' 'pam' 'xdg-utils' 'krb5' 'gnutls>=2.8.3' 'poppler>=0.12.3' @@ -98,7 +98,6 @@ optdepends=('php: for included phpcups.so module' 'ghostscript: for non-PostScript printers to print with CUPS to convert PostScript to raster images' 'foomatic-db: drivers use Ghostscript to convert PostScript to a printable form directly' 'foomatic-db-engine: drivers use Ghostscript to convert PostScript to a printable form directly' - 'foomatic-db-nonfree: drivers use Ghostscript to convert PostScript to a printable form directly' 'xdg-utils: xdg .desktop file support') cd ${srcdir}/${pkgbase}-${pkgver} diff --git a/extra/cvs/PKGBUILD b/extra/cvs/PKGBUILD index 76f71a2a1..62db9ea0e 100644 --- a/extra/cvs/PKGBUILD +++ b/extra/cvs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=cvs pkgver=1.11.23 pkgrel=7 pkgdesc="Concurrent Versions System - a source control system" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://cvs.nongnu.org" license=('GPL') depends=('krb5') diff --git a/extra/cvsps/PKGBUILD b/extra/cvsps/PKGBUILD index 5caa4b2f1..0a9e8a7dd 100644 --- a/extra/cvsps/PKGBUILD +++ b/extra/cvsps/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3 pkgdesc="Generating 'patchset' information from a CVS repository" url="http://www.cobite.com/cvsps/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('zlib') source=("http://www.cobite.com/${pkgname}/${pkgname}-${pkgver}.tar.gz") md5sums=('bde2110ed9f5d14de8f8cb04e9d596fe') diff --git a/extra/cx_freeze/PKGBUILD b/extra/cx_freeze/PKGBUILD index ee7476c7b..aa727dccd 100644 --- a/extra/cx_freeze/PKGBUILD +++ b/extra/cx_freeze/PKGBUILD @@ -9,7 +9,7 @@ _tarname=cx_Freeze pkgver=4.2.3 pkgrel=1 pkgdesc="A set of utilities for freezing Python scripts into executables" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.python.net/crew/atuining/cx_Freeze/" license=('custom') depends=('python2') diff --git a/extra/cyrus-sasl/PKGBUILD b/extra/cyrus-sasl/PKGBUILD index a845823a0..2b4a1156e 100644 --- a/extra/cyrus-sasl/PKGBUILD +++ b/extra/cyrus-sasl/PKGBUILD @@ -10,11 +10,11 @@ pkgname=('cyrus-sasl' 'cyrus-sasl-gssapi' 'cyrus-sasl-ldap' 'cyrus-sasl-sql') pkgver=2.1.23 pkgrel=8 pkgdesc="Cyrus Simple Authentication Service Layer (SASL) library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cyrusimap.web.cmu.edu/downloads.html#sasl" license=('custom') options=('!makeflags' '!libtool') -makedepends=('postgresql-libs' 'libmysqlclient' 'libldap' 'krb5' 'openssl') +makedepends=('postgresql-libs' 'libmysqlclient' 'libldap' 'krb5' 'openssl' 'libtool' 'groff') source=(ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/cyrus-sasl-${pkgver}.tar.gz cyrus-sasl-2.1.19-checkpw.c.patch cyrus-sasl-2.1.22-crypt.patch @@ -97,6 +97,8 @@ build() { popd ./configure --prefix=/usr \ + --host=$CHOST \ + --build=$CHOST \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ --disable-static \ diff --git a/extra/dansguardian/PKGBUILD b/extra/dansguardian/PKGBUILD index 6d943cc2a..75314e45e 100644 --- a/extra/dansguardian/PKGBUILD +++ b/extra/dansguardian/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2.10.1.1 pkgrel=2 pkgdesc="Squid plugin for web content filtering." url="http://dansguardian.org" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') depends=('squid' 'pcre' 'zlib') install=${pkgname}.install diff --git a/extra/dasher/PKGBUILD b/extra/dasher/PKGBUILD index c40d81bc0..e6da6487b 100644 --- a/extra/dasher/PKGBUILD +++ b/extra/dasher/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dasher pkgver=4.10.1 pkgrel=3 pkgdesc="Information-efficient text-entry interface, driven by natural continuous pointing gestures" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('at-spi' 'libgnomeui' 'gnome-speech' 'gconf' 'hicolor-icon-theme') makedepends=('pkgconfig' 'intltool' 'gnome-doc-utils') diff --git a/extra/davfs2/PKGBUILD b/extra/davfs2/PKGBUILD index ce4340ef7..cf1503d61 100644 --- a/extra/davfs2/PKGBUILD +++ b/extra/davfs2/PKGBUILD @@ -4,7 +4,7 @@ pkgname=davfs2 pkgver=1.4.6 pkgrel=1 pkgdesc="File system driver that allows you to mount a WebDAV server as a local disk drive." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://savannah.nongnu.org/projects/davfs2" license=('GPL') depends=('neon') diff --git a/extra/dbus-glib/PKGBUILD b/extra/dbus-glib/PKGBUILD index 5569f6dc5..fc4c6c60e 100644 --- a/extra/dbus-glib/PKGBUILD +++ b/extra/dbus-glib/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dbus-glib pkgver=0.98 pkgrel=1 pkgdesc="GLib bindings for DBUS" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://www.freedesktop.org/wiki/Software/DBusBindings" depends=('dbus-core' 'glib2') diff --git a/extra/dbus-python/PKGBUILD b/extra/dbus-python/PKGBUILD index 8cfacff43..8120d8b36 100644 --- a/extra/dbus-python/PKGBUILD +++ b/extra/dbus-python/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dbus-python pkgver=0.84.0 pkgrel=1 pkgdesc="Python bindings for DBUS" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL') url="http://www.freedesktop.org/wiki/Software/DBusBindings" depends=('dbus-glib' 'python2') diff --git a/extra/dbus/PKGBUILD b/extra/dbus/PKGBUILD index 9d8ab360b..8de562ddb 100644 --- a/extra/dbus/PKGBUILD +++ b/extra/dbus/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.4.16 pkgrel=1 pkgdesc="Freedesktop.org message bus system" url="http://www.freedesktop.org/Software/dbus" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'custom') depends=("dbus-core>=${pkgver}" 'libx11') source=(http://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz diff --git a/extra/dcfldd/PKGBUILD b/extra/dcfldd/PKGBUILD index b0eb7861f..cd547aba4 100644 --- a/extra/dcfldd/PKGBUILD +++ b/extra/dcfldd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dcfldd pkgver=1.3.4.1 pkgrel=3 pkgdesc="DCFL (DoD Computer Forensics Lab) dd replacement with hashing" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://dcfldd.sourceforge.net/" license=('GPL') depends=('glibc') diff --git a/extra/dconf/PKGBUILD b/extra/dconf/PKGBUILD index 8da8cc7fe..538f77327 100644 --- a/extra/dconf/PKGBUILD +++ b/extra/dconf/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dconf pkgver=0.10.0 pkgrel=1 pkgdesc="A low-level configuration system." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://live.gnome.org/dconf" license=('LGPL2.1') depends=('glib2') diff --git a/extra/dcraw/PKGBUILD b/extra/dcraw/PKGBUILD index 942c64b29..59eb011b1 100644 --- a/extra/dcraw/PKGBUILD +++ b/extra/dcraw/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dcraw pkgver=9.11 pkgrel=1 pkgdesc="A command line based converter for digicams raw output" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cybercom.net/~dcoffin/dcraw/" license=('custom') depends=('lcms' 'jasper') diff --git a/extra/dcron/PKGBUILD b/extra/dcron/PKGBUILD index 5583d9267..c898df935 100644 --- a/extra/dcron/PKGBUILD +++ b/extra/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" backup=('var/spool/cron/root' 'etc/conf.d/crond') diff --git a/extra/ddd/PKGBUILD b/extra/ddd/PKGBUILD index 8fdf4cc16..a7fdf26aa 100644 --- a/extra/ddd/PKGBUILD +++ b/extra/ddd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ddd pkgver=3.3.12 pkgrel=2 pkgdesc="A graphical front-end for command-line debuggers such as GDB, JDB, pydb, perl debugger..." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/ddd/" license=('GPL3' 'LGPL3') depends=('gcc-libs' 'ncurses' 'lesstif' 'libxaw' 'elfutils' 'libxext') diff --git a/extra/ddrescue/PKGBUILD b/extra/ddrescue/PKGBUILD index 9d57d4bb4..d74363da5 100644 --- a/extra/ddrescue/PKGBUILD +++ b/extra/ddrescue/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ddrescue pkgver=1.14 pkgrel=1 pkgdesc="GNU data recovery tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/ddrescue/ddrescue.html" license=('GPL3') depends=('gcc-libs') diff --git a/extra/desktop-file-utils/PKGBUILD b/extra/desktop-file-utils/PKGBUILD index fcc02878f..884bb0985 100644 --- a/extra/desktop-file-utils/PKGBUILD +++ b/extra/desktop-file-utils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=desktop-file-utils pkgver=0.18 pkgrel=1 pkgdesc="Command line utilities for working with desktop entries" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.freedesktop.org/wiki/Software/desktop-file-utils" license=('GPL') depends=('glib2') diff --git a/extra/devhelp/PKGBUILD b/extra/devhelp/PKGBUILD index aa24c7ccd..0ef5723ed 100644 --- a/extra/devhelp/PKGBUILD +++ b/extra/devhelp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=devhelp pkgver=3.2.0 pkgrel=1 pkgdesc="API documentation browser for GNOME" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://live.gnome.org/devhelp/" depends=('gconf' 'libwebkit3' 'hicolor-icon-theme') diff --git a/extra/devilspie/PKGBUILD b/extra/devilspie/PKGBUILD index 1dba7d39b..f4792043c 100644 --- a/extra/devilspie/PKGBUILD +++ b/extra/devilspie/PKGBUILD @@ -7,7 +7,7 @@ pkgname=devilspie pkgver=0.22 pkgrel=4 pkgdesc="x11 window matching utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.burtonini.com/blog/computers/devilspie" license=('GPL') depends=('libwnck') diff --git a/extra/dhcp/PKGBUILD b/extra/dhcp/PKGBUILD index 34c3e4448..b7b23fc58 100644 --- a/extra/dhcp/PKGBUILD +++ b/extra/dhcp/PKGBUILD @@ -9,10 +9,10 @@ pkgver=4.2.1.1 _pkgver=4.2.1-P1 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom:isc-dhcp') url="https://www.isc.org/software/dhcp" -source=(http://ftp.isc.org/isc/${pkgbase}/${pkgbase}-${_pkgver}.tar.gz +source=(ftp://ftp.isc.org/isc/${pkgbase}/${pkgbase}-${_pkgver}.tar.gz dhcp4 dhcp6 dhcp dhcp-4.1.1-missing-ipv6-not-fatal.patch dhclient-script-pathFixes.patch) diff --git a/extra/di/PKGBUILD b/extra/di/PKGBUILD index 65d1420c2..0e80c24ed 100644 --- a/extra/di/PKGBUILD +++ b/extra/di/PKGBUILD @@ -5,7 +5,7 @@ pkgname=di pkgver=4.30 pkgrel=1 pkgdesc="A disk information utility, displaying everything (and more) that your df command does" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gentoo.com/di/" license=('ZLIB') depends=('glibc') diff --git a/extra/diffstat/PKGBUILD b/extra/diffstat/PKGBUILD index b995bb41a..0c0b8720d 100644 --- a/extra/diffstat/PKGBUILD +++ b/extra/diffstat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=diffstat pkgver=1.54 pkgrel=2 pkgdesc="Display a histogram of diff changes" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://invisible-island.net/diffstat" depends=('glibc') license=('MIT') diff --git a/extra/digikam/PKGBUILD b/extra/digikam/PKGBUILD index f88924eea..83a0afe72 100644 --- a/extra/digikam/PKGBUILD +++ b/extra/digikam/PKGBUILD @@ -7,7 +7,7 @@ pkgname=('digikam' 'kipi-plugins' 'libkface' 'libkgeomap' 'libkvkontakte' 'libme pkgver=2.2.0 pkgrel=1 pkgdesc="Digital photo management application for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.digikam.org/" makedepends=('kdepimlibs' 'libkexiv2' 'libkdcraw' 'libkipi' 'libksane' 'liblqr' diff --git a/extra/dirmngr/PKGBUILD b/extra/dirmngr/PKGBUILD index f2f6b60e5..ff276b588 100644 --- a/extra/dirmngr/PKGBUILD +++ b/extra/dirmngr/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dirmngr pkgver=1.1.0 pkgrel=3 pkgdesc="A daemon to handle CRL and certificate requests" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="ftp://ftp.gnupg.org/gcrypt/dirmngr" depends=('libgcrypt' 'libldap' 'libksba' 'libgpg-error' 'libassuan' 'pth') diff --git a/extra/djvulibre/PKGBUILD b/extra/djvulibre/PKGBUILD index 6db90e526..af1ef2255 100644 --- a/extra/djvulibre/PKGBUILD +++ b/extra/djvulibre/PKGBUILD @@ -6,7 +6,7 @@ pkgname=djvulibre pkgver=3.5.24 pkgrel=1 pkgdesc="Suite to create, manipulate and view DjVu ('déjà vu') documents" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') license=('GPL') url="http://djvu.sourceforge.net/" depends=('gcc-libs' 'libtiff' 'bash' 'hicolor-icon-theme') diff --git a/extra/dmapi/PKGBUILD b/extra/dmapi/PKGBUILD index ada627216..c7b6e6683 100644 --- a/extra/dmapi/PKGBUILD +++ b/extra/dmapi/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dmapi pkgver=2.2.10 pkgrel=3 pkgdesc="Data migration API" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://oss.sgi.com/projects/xfs/" license=('GPL') depends=('glibc') diff --git a/extra/dmidecode/PKGBUILD b/extra/dmidecode/PKGBUILD index d013758ad..6f4be11a8 100644 --- a/extra/dmidecode/PKGBUILD +++ b/extra/dmidecode/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dmidecode pkgver=2.11 pkgrel=1 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/dnsmasq/PKGBUILD b/extra/dnsmasq/PKGBUILD index 6751d8023..7a68faa04 100644 --- a/extra/dnsmasq/PKGBUILD +++ b/extra/dnsmasq/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.59 pkgrel=2 pkgdesc="Lightweight, easy to configure DNS forwarder and DHCP server" url="http://www.thekelleys.org.uk/dnsmasq/doc.html" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('glibc' 'dbus-core') makedepends=('libcap>=2.16') diff --git a/extra/docker/PKGBUILD b/extra/docker/PKGBUILD index 3c26eb3cc..6f1529084 100644 --- a/extra/docker/PKGBUILD +++ b/extra/docker/PKGBUILD @@ -5,7 +5,7 @@ pkgname=docker pkgver=1.5 pkgrel=5 pkgdesc="Docker is a docking application (WindowMaker dock app) which acts as a system tray for KDE and GNOME2." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://icculus.org/openbox/2/docker/" license=('GPL') depends=('glibc' 'glib2' 'libx11') diff --git a/extra/dosfstools/PKGBUILD b/extra/dosfstools/PKGBUILD index 587e15ec4..cff0f5841 100644 --- a/extra/dosfstools/PKGBUILD +++ b/extra/dosfstools/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dosfstools pkgver=3.0.11 pkgrel=1 pkgdesc="DOS filesystem utilities" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('glibc') source=(http://www.daniel-baumann.ch/software/dosfstools/$pkgname-$pkgver.tar.bz2) url="http://www.daniel-baumann.ch/software/dosfstools/" diff --git a/extra/dotconf/PKGBUILD b/extra/dotconf/PKGBUILD index c33a2d0e5..7d58d2436 100644 --- a/extra/dotconf/PKGBUILD +++ b/extra/dotconf/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.3 pkgrel=2 pkgdesc='A C library for parsing configuration files' url="https://github.com/williamh/dotconf" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glibc') makedepends=('pkgconfig' 'findutils') license=('LGPL2.1') diff --git a/extra/dovecot/PKGBUILD b/extra/dovecot/PKGBUILD index de9dfa97b..8108bf6b4 100644 --- a/extra/dovecot/PKGBUILD +++ b/extra/dovecot/PKGBUILD @@ -8,7 +8,7 @@ pkgname=dovecot pkgver=2.0.15 pkgrel=1 pkgdesc="An IMAP and POP3 server written with security primarily in mind" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://dovecot.org/" license=("LGPL") depends=('krb5' 'openssl' 'sqlite3>=3.7.5' 'libmysqlclient>=5.5.10' diff --git a/extra/doxygen/PKGBUILD b/extra/doxygen/PKGBUILD index 3cc2150a6..38c885149 100644 --- a/extra/doxygen/PKGBUILD +++ b/extra/doxygen/PKGBUILD @@ -6,7 +6,7 @@ pkgname=('doxygen' 'doxygen-docs') pkgver=1.7.5.1 pkgrel=1 license=('GPL') -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.doxygen.org/" makedepends=('gcc-libs' 'flex' 'qt' 'texlive-core' 'ghostscript' 'texlive-latexextra') source=(ftp://ftp.stack.nl/pub/users/dimitri/${pkgname}-${pkgver}.src.tar.gz) @@ -15,13 +15,16 @@ sha1sums=('15671defd1eefe255aa564b6f3097e30ab07ff55') build() { cd "${srcdir}/${pkgbase}-${pkgver}" - QTDIR=/usr ./configure --prefix /usr --with-doxywizard +# mips64el doesn't have qt yet + [ "$CARCH" != "mips64el" ] && ./configure --prefix /usr --with-doxywizard #QTDIR=/usr + [ "$CARCH" = "mips64el" ] && ./configure --prefix /usr make } package_doxygen() { pkgdesc="A documentation system for C++, C, Java, IDL and PHP" depends=('gcc-libs') + [ "$CARCH" = "mips64el" ] || \ optdepends=('graphviz: for caller/callee graph generation' 'qt: for doxywizard') diff --git a/extra/dssi/PKGBUILD b/extra/dssi/PKGBUILD index 1a24e90ca..84a6bd436 100644 --- a/extra/dssi/PKGBUILD +++ b/extra/dssi/PKGBUILD @@ -7,7 +7,7 @@ pkgname=dssi pkgver=1.1.1 pkgrel=1 pkgdesc="An API for audio processing plugins & softsynths with UIs" -arch=('i686' 'x86_64') +arch=(i686 x86_64 'mips64el') url="http://dssi.sourceforge.net/" license=('LGPL' 'BSD' 'custom') depends=('liblo' 'jack') diff --git a/extra/dvd+rw-tools/PKGBUILD b/extra/dvd+rw-tools/PKGBUILD index 27c8c9122..297eaa67f 100644 --- a/extra/dvd+rw-tools/PKGBUILD +++ b/extra/dvd+rw-tools/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dvd+rw-tools pkgver=7.1 pkgrel=4 pkgdesc="dvd burning tools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://fy.chalmers.se/~appro/linux/DVD+RW" depends=('cdrkit' 'gcc-libs') diff --git a/extra/dvdauthor/PKGBUILD b/extra/dvdauthor/PKGBUILD index 0138bdec1..2b4196bc2 100644 --- a/extra/dvdauthor/PKGBUILD +++ b/extra/dvdauthor/PKGBUILD @@ -8,7 +8,7 @@ pkgname=dvdauthor pkgver=0.7.0 pkgrel=2 pkgdesc="DVD authoring tools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://dvdauthor.sourceforge.net/" license=('GPL') depends=('libdvdread' 'imagemagick' 'libxml2' 'libpng' 'fribidi') diff --git a/extra/dvdrip/PKGBUILD b/extra/dvdrip/PKGBUILD index 28d6e8fe1..2a95af612 100644 --- a/extra/dvdrip/PKGBUILD +++ b/extra/dvdrip/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dvdrip pkgver=0.98.11 pkgrel=9 pkgdesc="A Gtk frontend for transcode writen in Perl" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://www.exit1.org/dvdrip/" install=${pkgname}.install diff --git a/extra/dvdrtools/PKGBUILD b/extra/dvdrtools/PKGBUILD index 555071bef..138c94157 100644 --- a/extra/dvdrtools/PKGBUILD +++ b/extra/dvdrtools/PKGBUILD @@ -7,7 +7,7 @@ pkgname=dvdrtools pkgver=0.3.1 pkgrel=3 pkgdesc="A fork of cdrtools, with the primary goal of supporting writable DVD drives" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://savannah.nongnu.org/projects/dvdrtools/" license=('GPL') depends=('file' 'bash') diff --git a/extra/dvgrab/PKGBUILD b/extra/dvgrab/PKGBUILD index 13f366a06..37633a824 100644 --- a/extra/dvgrab/PKGBUILD +++ b/extra/dvgrab/PKGBUILD @@ -6,7 +6,7 @@ pkgname=dvgrab pkgver=3.5 pkgrel=3 pkgdesc="Saves audio and video data from an IEEE (FireWire) digital source" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kinodv.org" license=('GPL') depends=('libdv' 'libavc1394' 'libjpeg-turbo' 'libiec61883' 'gcc-libs') diff --git a/extra/easytag/PKGBUILD b/extra/easytag/PKGBUILD index 31ea2fff8..f875707ee 100644 --- a/extra/easytag/PKGBUILD +++ b/extra/easytag/PKGBUILD @@ -7,7 +7,7 @@ pkgname=easytag pkgver=2.1.6 pkgrel=3 pkgdesc="Utility for viewing, editing and writing ID3 tags of your MP3 files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://easytag.sourceforge.net/" depends=('id3lib' 'libid3tag' 'gtk2' 'libvorbis' 'flac' 'libmp4v2' 'speex' 'wavpack') diff --git a/extra/ebook-tools/PKGBUILD b/extra/ebook-tools/PKGBUILD index 140b9ca17..10f851255 100644 --- a/extra/ebook-tools/PKGBUILD +++ b/extra/ebook-tools/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ebook-tools pkgver=0.2.1 pkgrel=2 pkgdesc="Tools for accessing and converting various ebook file formats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/ebook-tools" license=('custom') depends=('libzip' 'libxml2') @@ -17,6 +17,7 @@ build() { cd "${srcdir}" mkdir build cd build + CXX="g++" \ cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr diff --git a/extra/ecasound/PKGBUILD b/extra/ecasound/PKGBUILD index 185581224..05eb23efb 100644 --- a/extra/ecasound/PKGBUILD +++ b/extra/ecasound/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ecasound pkgver=2.8.1 pkgrel=1 pkgdesc="A software package designed for multitrack audio processing" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.eca.cx/ecasound/" license=('GPL' 'LGPL') depends=('gcc-libs' 'readline>=6.0.00' 'audiofile' diff --git a/extra/ecl/PKGBUILD b/extra/ecl/PKGBUILD index 8ab9c23ef..273331df9 100644 --- a/extra/ecl/PKGBUILD +++ b/extra/ecl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ecl pkgver=11.1.1 pkgrel=1 pkgdesc="Embeddable Common Lisp" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/ecls/" license=('LGPL') depends=('bash' 'gmp') diff --git a/extra/eclipse/PKGBUILD b/extra/eclipse/PKGBUILD index 3d1f631f8..b80d72e83 100644 --- a/extra/eclipse/PKGBUILD +++ b/extra/eclipse/PKGBUILD @@ -10,7 +10,7 @@ _internal_pkgver=3.7.1 pkgrel=2 _date=201109091335 pkgdesc="An IDE for Java and other languages" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://eclipse.org" depends=('java-environment' 'gtk2' 'unzip' 'libwebkit') install=${pkgname}.install diff --git a/extra/efibootmgr/PKGBUILD b/extra/efibootmgr/PKGBUILD index 7bda0f640..1c25d102d 100755 --- a/extra/efibootmgr/PKGBUILD +++ b/extra/efibootmgr/PKGBUILD @@ -7,7 +7,7 @@ pkgname=efibootmgr pkgver=0.5.4 pkgrel=1 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') diff --git a/extra/eject/PKGBUILD b/extra/eject/PKGBUILD index 131f4584e..dfb974f82 100644 --- a/extra/eject/PKGBUILD +++ b/extra/eject/PKGBUILD @@ -7,8 +7,8 @@ pkgname=eject pkgver=2.1.5 pkgrel=7 -pkgdesc="A program for ejecting removable media under software control." -arch=('i686' 'x86_64') +pkgdesc="A program for ejecting removable media under software control" +arch=('i686' 'x86_64' 'mips64el') url="http://eject.sourceforge.net/" license=('GPL') depends=('glibc') diff --git a/extra/ekiga/PKGBUILD b/extra/ekiga/PKGBUILD index e39a60b26..eea93da40 100644 --- a/extra/ekiga/PKGBUILD +++ b/extra/ekiga/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="VOIP/Videoconferencing app with full SIP and H.323 support (GnomeMeeting expanded and renamed)" url="http://www.ekiga.org" license=(GPL) -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) depends=('opal' 'boost-libs' 'libxv' 'libnotify' 'hicolor-icon-theme' 'avahi' 'gtk2' 'gconf') makedepends=('intltool' 'gnome-doc-utils' 'evolution-data-server' 'boost' 'gnome-common') optdepends=('evolution-data-server: Evolution integration') diff --git a/extra/elfutils/PKGBUILD b/extra/elfutils/PKGBUILD index 7aef0c8f6..1f825930a 100644 --- a/extra/elfutils/PKGBUILD +++ b/extra/elfutils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=elfutils pkgver=0.152 pkgrel=1 pkgdesc="Collection of libraries and utilities for working with ELF object files and DWARF debugging information" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://fedorahosted.org/elfutils/" license=('GPL2') depends=('glibc') diff --git a/extra/emacs/PKGBUILD b/extra/emacs/PKGBUILD index 9ea40af59..180860595 100644 --- a/extra/emacs/PKGBUILD +++ b/extra/emacs/PKGBUILD @@ -10,7 +10,7 @@ pkgver=$_majorver.$_minorver _realver=$_majorver$_minorver pkgrel=3 pkgdesc="The extensible, customizable, self-documenting real-time display editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/emacs/emacs.html" license=('GPL3') depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'gtk2' 'hicolor-icon-theme' 'gconf' 'desktop-file-utils' 'alsa-lib') diff --git a/extra/emelfm2/PKGBUILD b/extra/emelfm2/PKGBUILD index b7a2cd806..e3a78dd72 100644 --- a/extra/emelfm2/PKGBUILD +++ b/extra/emelfm2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=emelfm2 pkgver=0.8.0 pkgrel=1 pkgdesc="A file manager that implements the popular two-pane design" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://emelfm2.net/" depends=('gtk2') license=('GPL') diff --git a/extra/empathy/PKGBUILD b/extra/empathy/PKGBUILD index 5e4cc8fc1..e59d233d7 100644 --- a/extra/empathy/PKGBUILD +++ b/extra/empathy/PKGBUILD @@ -5,7 +5,7 @@ pkgname=empathy pkgver=3.2.1.1 pkgrel=1 pkgdesc="A GNOME instant messaging client using the Telepathy framework." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/Empathy" license=('GPL2') depends=('libpulse' 'clutter-gtk' 'clutter-gst' 'telepathy-mission-control' 'telepathy-logger' 'telepathy-farsight' 'telepathy-farstream' 'folks' 'gnome-keyring' diff --git a/extra/enblend-enfuse/PKGBUILD b/extra/enblend-enfuse/PKGBUILD index 32708fb9c..73d29edab 100644 --- a/extra/enblend-enfuse/PKGBUILD +++ b/extra/enblend-enfuse/PKGBUILD @@ -6,7 +6,7 @@ pkgname=enblend-enfuse pkgver=4.0 pkgrel=3 pkgdesc="intelligent blend tool for overlapping picture" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') license=('GPL') url="http://enblend.sourceforge.net" depends=('openexr' 'glew>=1.5' 'libxmi' 'freeglut' 'libgl' 'lcms' 'texinfo' 'libpng') diff --git a/extra/enca/PKGBUILD b/extra/enca/PKGBUILD index f723af724..c0233ec93 100644 --- a/extra/enca/PKGBUILD +++ b/extra/enca/PKGBUILD @@ -6,7 +6,7 @@ pkgname=enca pkgver=1.13 pkgrel=1 pkgdesc="Charset analyser and converter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freshmeat.net/projects/enca/" options=('!libtool') license=('GPL') diff --git a/extra/enchant/PKGBUILD b/extra/enchant/PKGBUILD index a8dc20ddb..d8621ce2e 100644 --- a/extra/enchant/PKGBUILD +++ b/extra/enchant/PKGBUILD @@ -6,7 +6,7 @@ pkgname=enchant pkgver=1.6.0 pkgrel=4 pkgdesc="A wrapper library for generic spell checking" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.abisource.com/enchant/" license=('LGPL') depends=('aspell' 'dbus-glib' 'hunspell' 'hspell') diff --git a/extra/enlightenment/PKGBUILD b/extra/enlightenment/PKGBUILD index e4a3597a9..f4ec645c3 100644 --- a/extra/enlightenment/PKGBUILD +++ b/extra/enlightenment/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.0.10 _themever=1.0.1 pkgrel=1 pkgdesc="A fast, flexible, and very extensible Window Manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.enlightenment.org" license=('BSD' 'custom') depends=('libxinerama' 'imlib2' 'perl' 'pango' 'libxcomposite' \ diff --git a/extra/enscript/PKGBUILD b/extra/enscript/PKGBUILD index aa9bc0aee..8b2846092 100644 --- a/extra/enscript/PKGBUILD +++ b/extra/enscript/PKGBUILD @@ -6,7 +6,7 @@ pkgname=enscript pkgver=1.6.5.2 pkgrel=1 pkgdesc="Convert ASCII files to PostScript suitable for printing" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') backup=('etc/enscript/enscript.cfg') depends=('glibc') license=('GPL2') diff --git a/extra/eog-plugins/PKGBUILD b/extra/eog-plugins/PKGBUILD index 60914c319..e07ca0bca 100644 --- a/extra/eog-plugins/PKGBUILD +++ b/extra/eog-plugins/PKGBUILD @@ -5,7 +5,7 @@ pkgname=eog-plugins pkgver=3.2.1 pkgrel=1 pkgdesc="Plugins for Eye of Gnome" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnome.org/" license=('GPL2') depends=('eog' 'libpeas' 'libchamplain' 'libexif' 'libgdata') diff --git a/extra/eog/PKGBUILD b/extra/eog/PKGBUILD index 1b307cf58..26a877beb 100644 --- a/extra/eog/PKGBUILD +++ b/extra/eog/PKGBUILD @@ -5,7 +5,7 @@ pkgname=eog pkgver=3.2.1 pkgrel=1 pkgdesc="Eye of Gnome: An image viewing and cataloging program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gnome-desktop' 'libexif' 'lcms2' 'desktop-file-utils' 'exempi' 'libpeas' 'librsvg' 'gnome-icon-theme' 'dconf') makedepends=('gtk-doc' 'intltool') diff --git a/extra/epiphany-extensions/PKGBUILD b/extra/epiphany-extensions/PKGBUILD index c168579d3..2e1094690 100644 --- a/extra/epiphany-extensions/PKGBUILD +++ b/extra/epiphany-extensions/PKGBUILD @@ -6,7 +6,7 @@ pkgver=3.2.0 pkgrel=1 url="http://www.gnome.org/projects/epiphany/" pkgdesc="Various extentions for the Epiphany web browser" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('epiphany' 'opensp' 'hicolor-icon-theme') makedepends=('gnome-doc-utils' 'intltool') diff --git a/extra/epiphany/PKGBUILD b/extra/epiphany/PKGBUILD index 21aa3faac..a47982e99 100644 --- a/extra/epiphany/PKGBUILD +++ b/extra/epiphany/PKGBUILD @@ -6,7 +6,7 @@ pkgver=3.2.1 pkgrel=1 install=epiphany.install pkgdesc="A GNOME web browser based on the WebKit rendering engine." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libsoup-gnome' 'libnotify' 'gsettings-desktop-schemas' 'libwebkit3' 'nss' 'iso-codes' 'dconf' 'gobject-introspection' 'desktop-file-utils' 'hicolor-icon-theme' 'seed') diff --git a/extra/epplet-base/PKGBUILD b/extra/epplet-base/PKGBUILD index 4daecec04..33af3327e 100644 --- a/extra/epplet-base/PKGBUILD +++ b/extra/epplet-base/PKGBUILD @@ -5,7 +5,7 @@ pkgname=epplet-base pkgver=0.13 pkgrel=2 pkgdesc="Addon plugins for the enlightenment windowmanager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.enlightenment.org" license=('GPL') depends=('imlib2' 'libcdaudio' 'libgl') diff --git a/extra/erlang/PKGBUILD b/extra/erlang/PKGBUILD index 57f84c43e..12150c3c6 100644 --- a/extra/erlang/PKGBUILD +++ b/extra/erlang/PKGBUILD @@ -7,7 +7,7 @@ pkgname=erlang pkgver=R14B04 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/extra/ethstatus/PKGBUILD b/extra/ethstatus/PKGBUILD index 9333a6adf..b9352a85a 100644 --- a/extra/ethstatus/PKGBUILD +++ b/extra/ethstatus/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ethstatus pkgver=0.4.3 pkgrel=2 pkgdesc="A simple program for displaying commonly needed/wanted statistics in real time of incoming and outgoing traffic" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://packages.qa.debian.org/e/ethstatus.html" license=('GPL') depends=('ncurses') diff --git a/extra/ethtool/PKGBUILD b/extra/ethtool/PKGBUILD index fb8437925..100333d7c 100644 --- a/extra/ethtool/PKGBUILD +++ b/extra/ethtool/PKGBUILD @@ -6,7 +6,7 @@ pkgver=3.0 pkgrel=1 epoch=1 pkgdesc="Utility for controlling network drivers and hardware" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kernel.org/pub/software/network/ethtool/" license=('GPL') depends=('glibc') diff --git a/extra/ettercap/PKGBUILD b/extra/ettercap/PKGBUILD index 5924d10c7..d3f926c73 100644 --- a/extra/ettercap/PKGBUILD +++ b/extra/ettercap/PKGBUILD @@ -7,7 +7,7 @@ pkgname=('ettercap' 'ettercap-gtk') pkgver=NG_0.7.4.1 _origver=${pkgver/_/-} pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ettercap.sourceforge.net/" license=('GPL') depends=('ncurses' 'openssl' 'libpcap' 'zlib' 'pcre' 'libtool' 'libnet' diff --git a/extra/evilwm/PKGBUILD b/extra/evilwm/PKGBUILD index 4cee0b427..d86cabd4b 100644 --- a/extra/evilwm/PKGBUILD +++ b/extra/evilwm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=evilwm pkgver=1.1.0 pkgrel=1 pkgdesc="A minimalist but usable window manager for the X Window System." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://evilwm.sourceforge.net" license=('custom') depends=('libxrandr') diff --git a/extra/evince/PKGBUILD b/extra/evince/PKGBUILD index b7d0edb29..cf1cbcd38 100644 --- a/extra/evince/PKGBUILD +++ b/extra/evince/PKGBUILD @@ -6,7 +6,7 @@ pkgver=3.2.1 pkgrel=1 pkgdesc="Simply a document viewer" url="http://projects.gnome.org/evince/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gtk3' 'libspectre' 'gsfonts' 'poppler-glib' 'djvulibre' 'gnome-icon-theme' 't1lib' 'libgnome-keyring' 'desktop-file-utils' 'dconf' 'gsettings-desktop-schemas') makedepends=('gnome-doc-utils' 'nautilus' 'texlive-bin' 'intltool' 'gobject-introspection') @@ -19,6 +19,10 @@ sha256sums=('9db61a39c977eb939deaee3ed1e66937f15532f46de988cacd5b638f3960ed35') build() { cd "${srcdir}/${pkgname}-${pkgver}" + +# Build with -march=mips3 + [ "$CARCH" = "mips64el" ] && CFLAGS="${CFLAGS/loongson2f/mips3}" + ./configure --prefix=/usr --sysconfdir=/etc \ --localstatedir=/var --libexecdir=/usr/lib/evince \ --disable-static --enable-nautilus \ diff --git a/extra/evolution-data-server/PKGBUILD b/extra/evolution-data-server/PKGBUILD index 7df8de5c0..e70bce5d4 100644 --- a/extra/evolution-data-server/PKGBUILD +++ b/extra/evolution-data-server/PKGBUILD @@ -5,7 +5,7 @@ pkgname=evolution-data-server pkgver=3.2.1 pkgrel=1 pkgdesc="Centralized access to appointments and contacts" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gconf' 'gnome-online-accounts' 'nss' 'krb5' 'libgweather' 'libical' 'db' 'libgdata') makedepends=('intltool' 'gperf' 'gobject-introspection' 'vala') options=('!libtool') diff --git a/extra/evolution-exchange/PKGBUILD b/extra/evolution-exchange/PKGBUILD index 77ed686dd..2a6e166fc 100644 --- a/extra/evolution-exchange/PKGBUILD +++ b/extra/evolution-exchange/PKGBUILD @@ -5,7 +5,7 @@ pkgname=evolution-exchange pkgver=3.2.1 pkgrel=1 pkgdesc="Ximian Connector Exchange plugin for Evolution" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.ximian.com" depends=('evolution-data-server' 'gtkhtml4' 'gnome-desktop') diff --git a/extra/evolution/PKGBUILD b/extra/evolution/PKGBUILD index 6c4e9598e..394ef098a 100644 --- a/extra/evolution/PKGBUILD +++ b/extra/evolution/PKGBUILD @@ -5,7 +5,7 @@ pkgname=evolution pkgver=3.2.1 pkgrel=1 pkgdesc="Manage your email, contacts and schedule" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gnome-desktop' 'evolution-data-server' 'gtkhtml4' 'libcanberra' 'gstreamer0.10' 'libpst' 'libytnef' 'desktop-file-utils' 'hicolor-icon-theme') makedepends=('intltool' 'gnome-doc-utils' 'networkmanager') diff --git a/extra/exempi/PKGBUILD b/extra/exempi/PKGBUILD index 0f385c8be..a8f53f5e5 100644 --- a/extra/exempi/PKGBUILD +++ b/extra/exempi/PKGBUILD @@ -4,7 +4,7 @@ pkgname=exempi pkgver=2.1.1 pkgrel=1 pkgdesc="A library to parse XMP metadata" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://libopenraw.freedesktop.org/wiki/Exempi" license=('custom:BSD') depends=('gcc-libs>=4.4.2' 'expat>=2.0.1' 'zlib') diff --git a/extra/exiv2/PKGBUILD b/extra/exiv2/PKGBUILD index 278a7dd8d..169dfd138 100644 --- a/extra/exiv2/PKGBUILD +++ b/extra/exiv2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=exiv2 pkgver=0.22 pkgrel=1 pkgdesc="Exif and Iptc metadata manipulation library and tools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://exiv2.org" license=('GPL') depends=('gcc-libs' 'zlib' 'expat') diff --git a/extra/exo/PKGBUILD b/extra/exo/PKGBUILD index ebfbeed84..e6a5d5ab2 100644 --- a/extra/exo/PKGBUILD +++ b/extra/exo/PKGBUILD @@ -7,7 +7,7 @@ pkgname=exo pkgver=0.6.2 pkgrel=3 pkgdesc="Extensions to Xfce by os-cillation" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2' 'LGPL') url="http://www.xfce.org/projects/exo" groups=('xfce4') diff --git a/extra/expect/PKGBUILD b/extra/expect/PKGBUILD index 3b630ba43..57e7fe5f7 100644 --- a/extra/expect/PKGBUILD +++ b/extra/expect/PKGBUILD @@ -5,7 +5,7 @@ pkgname=expect pkgver=5.45 pkgrel=1 pkgdesc="A tool for automating interactive applications" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.nist.gov/el/msid/expect.cfm" license=('custom') depends=('tcl>=8.5.3') diff --git a/extra/f-spot/PKGBUILD b/extra/f-spot/PKGBUILD index 17488c5a5..081ffa01d 100644 --- a/extra/f-spot/PKGBUILD +++ b/extra/f-spot/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.8.2 pkgrel=2 pkgdesc="A personal photo management program for GNOME" url="http://www.gnome.org/projects/f-spot/" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('mono-addins' 'gnome-sharp' 'ndesk-dbus-glib' 'lcms' 'gnome-keyring-sharp' 'flickrnet' 'libgphoto2' 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'libunique') makedepends=('intltool' 'gnome-doc-utils' 'gnome-screensaver') diff --git a/extra/faad2/PKGBUILD b/extra/faad2/PKGBUILD index 04aae2b74..90b7405dc 100644 --- a/extra/faad2/PKGBUILD +++ b/extra/faad2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=faad2 pkgver=2.7 pkgrel=2 pkgdesc="ISO AAC audio decoder" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.audiocoding.com/" license=('custom:GPL') depends=('glibc') diff --git a/extra/facile/PKGBUILD b/extra/facile/PKGBUILD index dc128d465..6d48f77bd 100644 --- a/extra/facile/PKGBUILD +++ b/extra/facile/PKGBUILD @@ -5,7 +5,7 @@ pkgname=facile pkgver=1.1 pkgrel=13 pkgdesc="A Functional Constraint Library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.recherche.enac.fr/opti/facile/" license="LGPL" makedepends=('ocaml') diff --git a/extra/fakechroot/PKGBUILD b/extra/fakechroot/PKGBUILD index 750e87407..f7c5cc8ad 100644 --- a/extra/fakechroot/PKGBUILD +++ b/extra/fakechroot/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fakechroot pkgver=2.15 pkgrel=1 pkgdesc="Gives a fake chroot environment" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://github.com/fakechroot/fakechroot/wiki" license=('LGPL') options=('!libtool') diff --git a/extra/farsight2/PKGBUILD b/extra/farsight2/PKGBUILD index 0a74c8618..02144244e 100644 --- a/extra/farsight2/PKGBUILD +++ b/extra/farsight2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=farsight2 pkgver=0.0.31 pkgrel=1 pkgdesc="Audio/Video conference software for Instant Messengers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://farsight.freedesktop.org" license=('LGPL') depends=('libnice' 'gstreamer0.10-base-plugins' 'gstreamer0.10-good' 'gstreamer0.10-bad' 'gstreamer0.10-python' 'pygobject') diff --git a/extra/fastjar/PKGBUILD b/extra/fastjar/PKGBUILD index 345493735..f0bb8176c 100644 --- a/extra/fastjar/PKGBUILD +++ b/extra/fastjar/PKGBUILD @@ -5,7 +5,7 @@ pkgname=fastjar pkgver=0.98 pkgrel=1 pkgdesc="Sun java jar compatible archiver" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://savannah.nongnu.org/projects/fastjar" license=('GPL') depends=('zlib' 'texinfo') diff --git a/extra/fbida/PKGBUILD b/extra/fbida/PKGBUILD index b6081ed88..5b52a4e5f 100644 --- a/extra/fbida/PKGBUILD +++ b/extra/fbida/PKGBUILD @@ -5,7 +5,7 @@ pkgname=fbida pkgver=2.08 pkgrel=1 pkgdesc="Few applications to display and elementary edit images: fbi, fbgs, ida, exiftran" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kraxel.org/blog/linux/fbida/" license=('GPL2') depends=('giflib' 'libtiff' 'libexif' 'lesstif' 'libpng' 'fontconfig') diff --git a/extra/fbset/PKGBUILD b/extra/fbset/PKGBUILD index 89cd0b7ae..787008d0f 100644 --- a/extra/fbset/PKGBUILD +++ b/extra/fbset/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fbset pkgver=2.1 pkgrel=4 pkgdesc="Framebuffer setup utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://users.telenet.be/geertu/Linux/fbdev/" license=('GPL') depends=('glibc') diff --git a/extra/fcgi/PKGBUILD b/extra/fcgi/PKGBUILD index 39584d9b9..a093e0fb1 100644 --- a/extra/fcgi/PKGBUILD +++ b/extra/fcgi/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.4.0 pkgrel=7 depends=('gcc-libs') pkgdesc="FASTCgi(fcgi) islanguage independent, high performant extension to CGI" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') options=('!libtool' '!makeflags') url="http://www.fastcgi.com" diff --git a/extra/fcitx/PKGBUILD b/extra/fcitx/PKGBUILD index fea27eed6..00ddeae8a 100644 --- a/extra/fcitx/PKGBUILD +++ b/extra/fcitx/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=fcitx pkgname=('fcitx' 'fcitx-gtk2' 'fcitx-gtk3' 'fcitx-qt') pkgver=4.1.2 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/fcitx/" license=('GPL') makedepends=('cmake' 'intltool' 'doxygen' 'gtk2' 'gtk3' 'qt' 'dbus-glib' 'icu') diff --git a/extra/feh/PKGBUILD b/extra/feh/PKGBUILD index 8f7577438..84b4598bc 100644 --- a/extra/feh/PKGBUILD +++ b/extra/feh/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=1 pkgdesc='Fast and light imlib2-based image viewer' url='http://feh.finalrewind.org/' license=('MIT') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('giblib' 'curl' 'libxinerama') optdepends=('perl: feh-cam, webcam wrapper for feh') makedepends=('libxt') diff --git a/extra/festival/PKGBUILD b/extra/festival/PKGBUILD index 1124eb914..4ec82f8d7 100644 --- a/extra/festival/PKGBUILD +++ b/extra/festival/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.1 _suffix=release pkgrel=3 pkgdesc="A general multi-lingual speech synthesis system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cstr.ed.ac.uk/projects/festival/" license=('BSD' 'GPL' 'custom') depends=('perl') diff --git a/extra/festival/config.guess b/extra/festival/config.guess new file mode 100755 index 000000000..f7dd69ecc --- /dev/null +++ b/extra/festival/config.guess @@ -0,0 +1,1516 @@ +#! /bin/sh +# Attempt to guess a canonical system name. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +# 2011 Free Software Foundation, Inc. + +timestamp='2011-08-20' + +# This file is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Originally written by Per Bothner. Please send patches (context +# diff format) to <config-patches@gnu.org> and include a ChangeLog +# entry. +# +# This script attempts to guess a canonical system name similar to +# config.sub. If it succeeds, it prints the system name on stdout, and +# exits with 0. Otherwise, it exits with 1. +# +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to <config-patches@gnu.org>." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free +Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; + for c in cc gcc c89 c99 ; do + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ; set_cc_for_build= ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +# Note: order is significant - the case branches are not exclusive. + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + case "${UNAME_MACHINE_ARCH}" in + armeb) machine=armeb-unknown ;; + arm*) machine=arm-unknown ;; + sh3el) machine=shl-unknown ;; + sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; + *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + esac + # The Operating System including object format, if it has switched + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ELF__ + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + exit ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit ;; + *:SolidBSD:*:*) + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; + macppc:MirBSD:*:*) + echo powerpc-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit ;; + alpha:OSF1:*:*) + case $UNAME_RELEASE in + *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + # Reset EXIT trap before exiting to avoid spurious non-zero exit code. + exitcode=$? + trap '' 0 + exit $exitcode ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit ;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos + exit ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-morphos + exit ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit ;; + arm:riscos:*:*|arm:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit ;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit ;; + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7; exit ;; + esac ;; + s390x:SunOS:*:*) + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux${UNAME_RELEASE} + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval $set_cc_for_build + SUN_ARCH="i386" + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH="x86_64" + fi + fi + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + exit ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} + exit ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos${UNAME_RELEASE} + ;; + sun4) + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac + exit ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} + exit ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} + exit ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} + exit ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} + exit ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} + exit ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c +#ifdef __cplusplus +#include <stdio.h> /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && + { echo "$SYSTEM_NAME"; exit; } + echo mips-mips-riscos${UNAME_RELEASE} + exit ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] + then + echo m88k-dg-dgux${UNAME_RELEASE} + else + echo m88k-dg-dguxbcs${UNAME_RELEASE} + fi + else + echo i586-dg-dgux${UNAME_RELEASE} + fi + exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + exit ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + exit ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include <sys/systemcfg.h> + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit ;; + *:AIX:*:[4567]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} + exit ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 + exit ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + exit ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + + #define _HPUX_SOURCE + #include <stdlib.h> + #include <unistd.h> + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + eval $set_cc_for_build + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + grep -q __LP64__ + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} + exit ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} + exit ;; + 3050*:HI-UX:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include <unistd.h> + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + echo unknown-hitachi-hiuxwe2 + exit ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd + exit ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf + exit ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi + exit ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:FreeBSD:*:*) + UNAME_PROCESSOR=`/usr/bin/uname -p` + case ${UNAME_PROCESSOR} in + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) + echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; + *:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; + *:Interix*:*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + authenticamd | genuineintel | EM64T) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks + exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + *:GNU:*:*) + # the GNU system + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + exit ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + exit ;; + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; + arm*:Linux:*:*) + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabihf + fi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + cris:Linux:*:*) + echo cris-axis-linux-gnu + exit ;; + crisv32:Linux:*:*) + echo crisv32-axis-linux-gnu + exit ;; + frv:Linux:*:*) + echo frv-unknown-linux-gnu + exit ;; + i*86:Linux:*:*) + LIBC=gnu + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit ;; + ia64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m68*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + mips:Linux:*:* | mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=${UNAME_MACHINE}el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=${UNAME_MACHINE} + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + ;; + or32:Linux:*:*) + echo or32-unknown-linux-gnu + exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-gnu + exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; + esac + exit ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu + exit ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo ${UNAME_MACHINE}-ibm-linux + exit ;; + sh64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + tile*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-gnu + exit ;; + x86_64:Linux:*:*) + echo x86_64-unknown-linux-gnu + exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit ;; + i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + exit ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` + echo ${UNAME_MACHINE}-pc-isc$UNAME_REL + elif /bin/uname -X 2>/dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp + exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi + exit ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} + exit ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} + exit ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} + exit ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) + echo powerpc-unknown-lynxos${UNAME_RELEASE} + exit ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} + exit ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo ${UNAME_MACHINE}-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says <Richard.M.Bartel@ccMail.Census.GOV> + echo i586-unisys-sysv4 + exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes <hewes@openmarket.com>. + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} + exit ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} + exit ;; + SX-6:SUPER-UX:*:*) + echo sx6-nec-superux${UNAME_RELEASE} + exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Darwin:*:*) + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + case $UNAME_PROCESSOR in + i386) + eval $set_cc_for_build + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + UNAME_PROCESSOR="x86_64" + fi + fi ;; + unknown) UNAME_PROCESSOR=powerpc ;; + esac + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + exit ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = "x86"; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + exit ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; + NEO-?:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk${UNAME_RELEASE} + exit ;; + NSE-?:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk${UNAME_RELEASE} + exit ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit ;; + DS/*:UNIX_System_V:*:*) + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + exit ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) + echo mips-sei-seiux${UNAME_RELEASE} + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit ;; + i*86:skyos:*:*) + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + exit ;; + i*86:rdos:*:*) + echo ${UNAME_MACHINE}-pc-rdos + exit ;; + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; +esac + +#echo '(No uname command or uname output not recognized.)' 1>&2 +#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 + +eval $set_cc_for_build +cat >$dummy.c <<EOF +#ifdef _SEQUENT_ +# include <sys/types.h> +# include <sys/utsname.h> +#endif +main () +{ +#if defined (sony) +#if defined (MIPSEB) + /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, + I don't know.... */ + printf ("mips-sony-bsd\n"); exit (0); +#else +#include <sys/param.h> + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); +#endif +#endif + +#if defined (__arm) && defined (__acorn) && defined (__unix) + printf ("arm-acorn-riscix\n"); exit (0); +#endif + +#if defined (hp300) && !defined (hpux) + printf ("m68k-hp-bsd\n"); exit (0); +#endif + +#if defined (NeXT) +#if !defined (__ARCHITECTURE__) +#define __ARCHITECTURE__ "m68k" +#endif + int version; + version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; + if (version < 4) + printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); + else + printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); + exit (0); +#endif + +#if defined (MULTIMAX) || defined (n16) +#if defined (UMAXV) + printf ("ns32k-encore-sysv\n"); exit (0); +#else +#if defined (CMU) + printf ("ns32k-encore-mach\n"); exit (0); +#else + printf ("ns32k-encore-bsd\n"); exit (0); +#endif +#endif +#endif + +#if defined (__386BSD__) + printf ("i386-pc-bsd\n"); exit (0); +#endif + +#if defined (sequent) +#if defined (i386) + printf ("i386-sequent-dynix\n"); exit (0); +#endif +#if defined (ns32000) + printf ("ns32k-sequent-dynix\n"); exit (0); +#endif +#endif + +#if defined (_SEQUENT_) + struct utsname un; + + uname(&un); + + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); + +#endif + +#if defined (vax) +# if !defined (ultrix) +# include <sys/param.h> +# if defined (BSD) +# if BSD == 43 + printf ("vax-dec-bsd4.3\n"); exit (0); +# else +# if BSD == 199006 + printf ("vax-dec-bsd4.3reno\n"); exit (0); +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# endif +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# else + printf ("vax-dec-ultrix\n"); exit (0); +# endif +#endif + +#if defined (alliant) && defined (i860) + printf ("i860-alliant-bsd\n"); exit (0); +#endif + + exit (1); +} +EOF + +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + +# Apollos put the system type in the environment. + +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } + +# Convex versions that predate uname can use getsysinfo(1) + +if [ -x /usr/convex/getsysinfo ] +then + case `getsysinfo -f cpu_type` in + c1*) + echo c1-convex-bsd + exit ;; + c2*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + c34*) + echo c34-convex-bsd + exit ;; + c38*) + echo c38-convex-bsd + exit ;; + c4*) + echo c4-convex-bsd + exit ;; + esac +fi + +cat >&2 <<EOF +$0: unable to guess system type + +This script, last modified $timestamp, has failed to recognize +the operating system you are using. It is advised that you +download the most up to date version of the config scripts from + + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD +and + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + +If the version you run ($0) is already up to date, please +send the following data and any information you think might be +pertinent to <config-patches@gnu.org> in order to provide the needed +information to handle your system. + +config.guess timestamp = $timestamp + +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = ${UNAME_MACHINE} +UNAME_RELEASE = ${UNAME_RELEASE} +UNAME_SYSTEM = ${UNAME_SYSTEM} +UNAME_VERSION = ${UNAME_VERSION} +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/extra/festival/config.sub b/extra/festival/config.sub new file mode 100755 index 000000000..0d2cddec7 --- /dev/null +++ b/extra/festival/config.sub @@ -0,0 +1,1766 @@ +#! /bin/sh +# Configuration validation subroutine script. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +# 2011 Free Software Foundation, Inc. + +timestamp='2011-09-09' + +# This file is (in principle) common to ALL GNU software. +# The presence of a machine in this file suggests that SOME GNU software +# can handle that machine. It does not imply ALL GNU software can. +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Please send patches to <config-patches@gnu.org>. Submit a context +# diff and a properly formatted GNU ChangeLog entry. +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS + +Canonicalize a configuration name. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to <config-patches@gnu.org>." + +version="\ +GNU config.sub ($timestamp) + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free +Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo $1 + exit ;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ + linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] + then os=`echo $1 | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis | -knuth | -cray | -microblaze) + os= + basic_machine=$1 + ;; + -bluegene*) + os=-cnk + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + ;; + -windowsnt*) + os=`echo $os | sed -e 's/windowsnt/winnt/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ + | be32 | be64 \ + | bfin \ + | c4x | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | fido | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | hexagon \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ + | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | mcore | mep | metag \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64octeon | mips64octeonel \ + | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | moxie \ + | mt \ + | msp430 \ + | nds32 | nds32le | nds32be \ + | nios | nios2 \ + | ns16k | ns32k \ + | open8 \ + | or32 \ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pyramid \ + | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu \ + | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | ubicom32 \ + | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | we32k \ + | x86 | xc16x | xstormy16 | xtensa \ + | z8k | z80) + basic_machine=$basic_machine-unknown + ;; + c54x) + basic_machine=tic54x-unknown + ;; + c55x) + basic_machine=tic55x-unknown + ;; + c6x) + basic_machine=tic6x-unknown + ;; + m6811 | m68hc11 | m6812 | m68hc12 | picochip) + # Motorola 68HC11/12. + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + ;; + ms1) + basic_machine=mt-unknown + ;; + + strongarm | thumb | xscale) + basic_machine=arm-unknown + ;; + + xscaleeb) + basic_machine=armeb-unknown + ;; + + xscaleel) + basic_machine=armel-unknown + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ + | be32-* | be64-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | hexagon-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ + | le32-* | le64-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64octeon-* | mips64octeonel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | mt-* \ + | msp430-* \ + | nds32-* | nds32le-* | nds32be-* \ + | nios-* | nios2-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ + | open8-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pyramid-* \ + | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ + | tahoe-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tile*-* \ + | tron-* \ + | ubicom32-* \ + | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ + | vax-* \ + | we32k-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-* | z80-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-unknown + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + abacus) + basic_machine=abacus-unknown + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aros) + basic_machine=i386-pc + os=-aros + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; + c54x-*) + basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c55x-*) + basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c6x-*) + basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16 | cr16-*) + basic_machine=cr16-unknown + os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2* | dpx2*-bull) + basic_machine=m68k-bull + os=-sysv3 + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppa-next) + os=-nextstep3 + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; +# I'm not sure what "Sysv32" means. Should this be sysv3.2? + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + i386-vsta | vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + m88k-omron*) + basic_machine=m88k-omron + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + microblaze) + basic_machine=microblaze-xilinx + ;; + mingw32) + basic_machine=i386-pc + os=-mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + nacl) + basic_machine=le32-unknown + os=-nacl + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next ) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + neo-tandem) + basic_machine=neo-tandem + ;; + nse-tandem) + basic_machine=nse-tandem + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + openrisc | openrisc-*) + basic_machine=or32-unknown + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; + pentium4) + basic_machine=i786-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc | ppcbe) basic_machine=powerpc-unknown + ;; + ppc-* | ppcbe-*) + basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little | ppc64-le | powerpc64-little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rdos) + basic_machine=i386-pc + os=-rdos + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; + sequent) + basic_machine=i386-sequent + ;; + sh) + basic_machine=sh-hitachi + os=-hms + ;; + sh5el) + basic_machine=sh5le-unknown + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + strongarm-* | thumb-*) + basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tile*) + basic_machine=$basic_machine-unknown + os=-linux-gnu + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + xscale-* | xscalee[bl]-*) + basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim + ;; + z80-*-coff) + basic_machine=z80-unknown + os=-sim + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + mmix) + basic_machine=mmix-knuth + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp10) + # there are many clones, so DEC is not a safe bet + basic_machine=pdp10-unknown + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) + basic_machine=sparc-sun + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases + # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -svr4*) + os=-sysv4 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # First accept the basic system types. + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* | -aros* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* | -cegcc* \ + | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -linux-gnu* | -linux-android* \ + | -linux-newlib* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo $os | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -os400*) + os=-os400 + ;; + -wince*) + os=-wince + ;; + -osfrose*) + os=-osfrose + ;; + -osf*) + os=-osf + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -syllable*) + os=-syllable + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2 ) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -tpf*) + os=-tpf + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -es1800*) + os=-ose + ;; + -xenix) + os=-xenix + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -zvmoe) + os=-zvmoe + ;; + -dicos*) + os=-dicos + ;; + -nacl*) + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + c4x-* | tic4x-*) + os=-coff + ;; + tic54x-*) + os=-coff + ;; + tic55x-*) + os=-coff + ;; + tic6x-*) + os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + # This also exists in the configure program, but was not the + # default. + # os=-sunos4 + ;; + m68*-cisco) + os=-aout + ;; + mep-*) + os=-elf + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + *-be) + os=-beos + ;; + *-haiku) + os=-haiku + ;; + *-ibm) + os=-aix + ;; + *-knuth) + os=-mmixware + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next ) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-next) + os=-nextstep3 + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -cnk*|-aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; +esac + +echo $basic_machine$os +exit + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/extra/fetchmail/PKGBUILD b/extra/fetchmail/PKGBUILD index ad0edc057..dd59ca350 100644 --- a/extra/fetchmail/PKGBUILD +++ b/extra/fetchmail/PKGBUILD @@ -5,7 +5,7 @@ pkgname=fetchmail pkgver=6.3.21 pkgrel=2 pkgdesc="A remote-mail retrieval utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://fetchmail.berlios.de/" license=('GPL') depends=('openssl') diff --git a/extra/ffcall/PKGBUILD b/extra/ffcall/PKGBUILD index 5d21a3d7b..f51867990 100644 --- a/extra/ffcall/PKGBUILD +++ b/extra/ffcall/PKGBUILD @@ -6,17 +6,23 @@ pkgname=ffcall pkgver=1.10 pkgrel=4 pkgdesc="C library for implementing foreign function calls in embedded interpreters" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/libffcall/" license=('GPL2') options=('!libtool' '!makeflags') -source=(http://www.haible.de/bruno/gnu/${pkgname}-${pkgver}.tar.gz) -md5sums=('2db95007e901f3bc2ae7e5a9fe9ebea4') +source=(http://www.haible.de/bruno/gnu/${pkgname}-${pkgver}.tar.gz + mipsn32.patch) +md5sums=('2db95007e901f3bc2ae7e5a9fe9ebea4' + '64045515f2664b5544943c6754bf2737') build() { cd "${srcdir}/${pkgname}-${pkgver}" [ "$CARCH" = "x86_64" ] && CONFIGFLAG="--with-pic" + patch -Np0 -i "$srcdir/mipsn32.patch" ./configure --prefix=/usr --mandir=/usr/share/man $CONFIGFLAG + + patch -Np0 -i $srcdir/mipsn32.patch + make } diff --git a/extra/ffcall/mipsn32.patch b/extra/ffcall/mipsn32.patch new file mode 100644 index 000000000..2a667c37c --- /dev/null +++ b/extra/ffcall/mipsn32.patch @@ -0,0 +1,11 @@ +--- autoconf/config.guess.orig 2011-05-08 14:09:55.621461438 -0300 ++++ autoconf/config.guess 2011-05-08 14:10:12.225759443 -0300 +@@ -882,7 +882,7 @@ + #undef mips64 + #undef mips64el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) +- CPU=mips64el ++ CPU=mipsn32 + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=mips64 diff --git a/extra/ffmpeg/PKGBUILD b/extra/ffmpeg/PKGBUILD index b9d49ca06..4d18d7f6b 100644 --- a/extra/ffmpeg/PKGBUILD +++ b/extra/ffmpeg/PKGBUILD @@ -5,20 +5,35 @@ pkgname=ffmpeg pkgver=20111003 -pkgrel=1 +pkgrel=1.1 pkgdesc="Complete and free Internet live audio and video broadcasting solution for Linux/Unix" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ffmpeg.org/" license=('GPL') -depends=('bzip2' 'lame' 'sdl' 'libvorbis' 'xvidcore' 'zlib' 'x264' 'libtheora' 'opencore-amr' 'alsa-lib' 'libvdpau' 'libxfixes' 'schroedinger' 'libvpx' 'libva' 'openjpeg' 'rtmpdump') -makedepends=('yasm' 'git') +if [ "${CARCH}" = "mips64el" ] ; then + depends=('bzip2' 'lame' 'sdl' 'libvorbis' 'xvidcore' 'zlib' 'x264' 'libtheora' 'opencore-amr' 'alsa-lib' 'libxfixes' 'schroedinger' 'libvpx' 'openjpeg' 'rtmpdump') + makedepends=('git' 'pkg-config') +else + depends=('bzip2' 'lame' 'sdl' 'libvorbis' 'xvidcore' 'zlib' 'x264' 'libtheora' 'opencore-amr' 'alsa-lib' 'libvdpau' 'libxfixes' 'schroedinger' 'libvpx' 'libva' 'openjpeg' 'rtmpdump') + makedepends=('yasm' 'git' 'pkg-config') +fi #git clone git://git.videolan.org/ffmpeg.git -source=(ftp://ftp.archlinux.org/other/ffmpeg/${pkgname}-${pkgver}.tar.xz) -md5sums=('38139817bee918a5664c549adb487468') +source=(ftp://ftp.archlinux.org/other/ffmpeg/${pkgname}-${pkgver}.tar.xz + ffmpeg-loongson.patch) +md5sums=('38139817bee918a5664c549adb487468' + '081d03278559a351322157a441fabcf5') build() { cd "$srcdir/$pkgname" +# [ "$CARCH" = "mips64el" ] && patch -Np1 -i $srcdir/ffmpeg-loongson.patch + + if [ "$CARCH" = "mips64el" ] ; then + extraconf="--disable-runtime-cpudetect --disable-vdpau --disable-vaapi" + else + extraconf="" + fi + ./configure \ --prefix=/usr \ --enable-libmp3lame \ @@ -38,7 +53,9 @@ build() { --enable-gpl \ --enable-version3 \ --enable-runtime-cpudetect \ - --disable-debug + --disable-static \ + --disable-debug \ + $extraconf make make tools/qt-faststart diff --git a/extra/ffmpeg/ffmpeg-loongson.patch b/extra/ffmpeg/ffmpeg-loongson.patch new file mode 100644 index 000000000..501eafd15 --- /dev/null +++ b/extra/ffmpeg/ffmpeg-loongson.patch @@ -0,0 +1,1794 @@ +diff --git a/configure b/configure +index 25e8cef..1d6c652 100755 +--- a/configure ++++ b/configure +@@ -230,6 +230,7 @@ Advanced options (experts only): + --disable-armvfp disable ARM VFP optimizations + --disable-iwmmxt disable iwmmxt optimizations + --disable-mmi disable MMI optimizations ++ --disable-loongson2mmi disable LOONGSON2 Multi-Media Instructions usage" + --disable-neon disable neon optimizations + --disable-vis disable VIS optimizations + --disable-yasm disable use of yasm assembler +@@ -995,6 +996,7 @@ ARCH_EXT_LIST=' + armvfp + iwmmxt + mmi ++ loongson2mmi + mmx + mmx2 + neon +@@ -2862,6 +2864,7 @@ if enabled arm; then + fi + if enabled mips; then + echo "MMI enabled ${mmi-no}" ++ echo "LOONGSON2MMI enabled ${loongson2mmi-no}" + fi + if enabled ppc; then + echo "AltiVec enabled ${altivec-no}" +diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h +index add4b10..8244e51 100644 +--- a/libavcodec/avcodec.h ++++ b/libavcodec/avcodec.h +@@ -1586,6 +1586,8 @@ typedef struct AVCodecContext { + #define FF_IDCT_SIMPLENEON 22 + #define FF_IDCT_SIMPLEALPHA 23 + #define FF_IDCT_BINK 24 ++#define FF_IDCT_LIBMPEG2LOONGSON2 25 ++#define FF_IDCT_XVIDLOONGSON2 26 + + /** + * slice count +diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c +index bbfdb6a..dfc3452 100644 +--- a/libavcodec/dsputil.c ++++ b/libavcodec/dsputil.c +@@ -4525,6 +4525,7 @@ av_cold void dsputil_init(DSPContext* c, AVCodecContext *avctx) + if (HAVE_MMI) dsputil_init_mmi (c, avctx); + if (ARCH_SH4) dsputil_init_sh4 (c, avctx); + if (ARCH_BFIN) dsputil_init_bfin (c, avctx); ++ if (HAVE_LOONGSON2MMI) dsputil_init_loongson2(c, avctx); + + for(i=0; i<64; i++){ + if(!c->put_2tap_qpel_pixels_tab[0][i]) +diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h +index d1816e6..1a72ae9 100644 +--- a/libavcodec/dsputil.h ++++ b/libavcodec/dsputil.h +@@ -636,6 +636,7 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx); + void dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx); + void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx); + void dsputil_init_vis(DSPContext* c, AVCodecContext *avctx); ++void dsputil_init_loongson2(DSPContext* c, AVCodecContext *avctx); + + void ff_dsputil_init_dwt(DSPContext *c); + void ff_cavsdsp_init(DSPContext* c, AVCodecContext *avctx); +diff --git a/libavcodec/loongson2/dsputil_loongson2.c b/libavcodec/loongson2/dsputil_loongson2.c +new file mode 100644 +index 0000000..01bd3ac +--- /dev/null ++++ b/libavcodec/loongson2/dsputil_loongson2.c +@@ -0,0 +1,221 @@ ++/* ++ * Copyright(C) 2006-2010 comcat <jiankemeng@gmail.com> ++ * ++ * Optimized for Loongson2 CPUs by comcat <jiankemeng@gmail.com> ++ * ++ */ ++ ++#include "dsputil_loongson2.h" ++#include "../simple_idct.h" ++#include "../mpegvideo.h" ++ ++//extern void ff_idct_xvid_loongson2(short *block); ++ ++extern void ff_loongson2_idct(DCTELEM *block); ++extern void ff_idct_xvid_loongson2(short *block); ++ ++static void add_pixels_clamped_loongson2(const DCTELEM *block, uint8_t *restrict pixels, int line_size) ++{ ++ const DCTELEM *p; ++ uint8_t *pix; ++ int i,j; ++ p = block; ++ pix = pixels; ++ i = 4; ++ j = line_size << 1; ++ __asm __volatile("xor $f14, $f14, $f14\n\t"); ++ do { ++ __asm __volatile( ++// ".set mips3 \n\t" ++ "ldc1 $f0, 0(%2) \n\t" ++ "ldc1 $f2, 8(%2) \n\t" ++ "ldc1 $f4, 16(%2) \n\t" ++ "ldc1 $f6, 24(%2) \n\t" ++ "ldc1 $f8, %0 \n\t" ++ "ldc1 $f12, %1 \n\t" ++ "mov.d $f10, $f8 \n\t" ++ ++ "punpcklbh $f8, $f8, $f14 \n\t" ++ "punpckhbh $f10, $f10, $f14\n\t" ++ ++ "paddsh $f0, $f0, $f8 \n\t" ++ "paddsh $f2, $f2, $f10 \n\t" ++ ++ "mov.d $f10, $f12 \n\t" ++ ++ "punpcklbh $f12, $f12, $f14\n\t" ++ "punpckhbh $f10, $f10, $f14\n\t" ++ ++ "paddsh $f4, $f4, $f12 \n\t" ++ "paddsh $f6, $f6, $f10 \n\t" ++ ++ "packushb $f0, $f0, $f2 \n\t" ++ "packushb $f4, $f4, $f6 \n\t" ++ ++ "sdc1 $f0, %0 \n\t" ++ "sdc1 $f4, %1 \n\t" ++// ".set mips2 \n\t" ++ :"+m"(*pix), "+m"(*(pix+line_size)) ++ :"r"(p) ++ :"$f0","$f2","$f4","$f6","$f8","$f10","$f12","$f14","memory"); ++ pix += j; ++ p += 16; ++ } while (--i); ++ ++} ++ ++static void put_pixels_clamped_loongson2(const DCTELEM *block, uint8_t *restrict pixels, int line_size) ++{ ++ const DCTELEM *p; ++ uint8_t *pix; ++ int tmp = line_size * 3; ++ p = block; ++ pix = pixels; ++ __asm __volatile ++ ( ++// ".set mips3 \n\t" ++ //"dadd $12, $0, $0\n\t" ++ //"dadd $13, $0, $0\n\t" ++ //"dadd $14, $0, $0\n\t" ++ ++ "ldc1 $f0, 0(%3)\n\t" ++ "ldc1 $f2, 8(%3)\n\t" ++ "ldc1 $f4, 16(%3)\n\t" ++ "ldc1 $f6, 24(%3)\n\t" ++ "ldc1 $f8, 32(%3)\n\t" ++ "ldc1 $f10, 40(%3)\n\t" ++ "ldc1 $f16, 48(%3)\n\t" ++ "ldc1 $f18, 56(%3)\n\t" ++ ++ "packushb $f0, $f0, $f2\n\t" ++ "packushb $f4, $f4, $f6\n\t" ++ "packushb $f8, $f8, $f10\n\t" ++ "packushb $f16, $f16, $f18\n\t" ++ ++ "add $12, %0, %1\n\t" ++ "add $13, $12, %1\n\t" ++ "add $14, %0, %2\n\t" ++ ++ "sdc1 $f0, 0(%0)\n\t" ++ "sdc1 $f4, 0($12)\n\t" ++ "sdc1 $f8, 0($13)\n\t" ++ "sdc1 $f16, 0($14)\n\t" ++// ".set mips2\n\t" ++ : ++ :"r" (pix), "r" (line_size), "r" (tmp), "r"(p) ++ :"$12","$13","$14","$f0","$f2","$f4","$f6","$f8","$f10","$16","$18" ++ ); ++ ++ pix += line_size*4; ++ p += 32; ++ ++ __asm __volatile ++ ( ++// ".set mips3 \n\t" ++ ++ "dadd $12, $0, $0\n\t" ++ "dadd $13, $0, $0\n\t" ++ "dadd $14, $0, $0\n\t" ++ "lw $12, %3\n\t" ++ ++ "ldc1 $f0, 0($12)\n\t" ++ "ldc1 $f2, 8($12)\n\t" ++ "ldc1 $f4, 16($12)\n\t" ++ "ldc1 $f6, 24($12)\n\t" ++ "ldc1 $f8, 32($12)\n\t" ++ "ldc1 $f10, 40($12)\n\t" ++ "ldc1 $f16, 48($12)\n\t" ++ "ldc1 $f18, 56($12)\n\t" ++ ++ "packushb $f0, $f0, $f2\n\t" ++ "packushb $f4, $f4, $f6\n\t" ++ "packushb $f8, $f8, $f10\n\t" ++ "packushb $f16, $f16, $f18\n\t" ++ ++ "add $12, %1, %0\n\t" ++ "add $13, $12, %1\n\t" ++ "add $15, %2, %0\n\t" ++ ++ "sdc1 $f0, 0(%0)\n\t" ++ "sdc1 $f4, 0($12)\n\t" ++ ++ "sdc1 $f8, 0($13)\n\t" ++ "sdc1 $f16, 0($15)\n\t" ++// ".set mips2\n\t" ++ : ++ :"r" (pix), "r" (line_size), "r" (tmp), "m"(p) ++ :"$12","$13","$15","$f0","$f2","$f4","$f6","$f8","$f10","$16","$18","memory" ++ ); ++ ++} ++ ++/* ++void put_signed_pixels_clamped_loongson2(const DCTELEM *block, uint8_t *pixels, int line_size) ++{ ++ ++} ++ ++ ++void ff_loongson2_idct_put(uint8_t *dest, int line_size, DCTELEM *block) ++{ ++ ff_loongson2_idct(block); ++ put_pixels_clamped_loongson2(block, dest, line_size); ++} ++ ++void ff_loongson2_idct_add(uint8_t *dest, int line_size, DCTELEM *block) ++{ ++ ff_loongson2_idct(block); ++ add_pixels_clamped_loongson2(block, dest, line_size); ++}*/ ++ ++static void ff_idct_xvid_loongson2_put(uint8_t *dest, int line_size, DCTELEM *block) ++{ ++ ff_idct_xvid_loongson2(block); ++ put_pixels_clamped_loongson2(block, dest, line_size); ++} ++ ++static void ff_idct_xvid_loongson2_add(uint8_t *dest, int line_size, DCTELEM *block) ++{ ++ ff_idct_xvid_loongson2(block); ++ add_pixels_clamped_loongson2(block, dest, line_size); ++} ++ ++void dsputil_init_loongson2(DSPContext *c, AVCodecContext *avctx) ++{ ++ ++ const int idct_algo = avctx->idct_algo; ++ ++/* ++#ifdef CONFIG_ENCODERS ++ const int dct_algo = avctx->dct_algo; ++ if(dct_algo == FF_DCT_AUTO || dct_algo == FF_DCT_LOONGSON2) ++ c->fdct = ff_fdct_loongson2; ++#endif ++*/ ++ ++#if 0 ++ if(avctx->lowres==0) ++ { ++ if(idct_algo == FF_IDCT_LIBMPEG2LOONGSON2) ++ { ++ c->idct_add = ff_loongson2_idct_add; ++ c->idct_put = ff_loongson2_idct_put; ++ c->idct = ff_loongson2_idct; ++ } ++ else if(idct_algo == FF_IDCT_XVIDLOONGSON2) ++ { ++#endif ++ c->idct_add = ff_idct_xvid_loongson2_add; ++ c->idct_put = ff_idct_xvid_loongson2_put; ++ c->idct = ff_idct_xvid_loongson2; ++ //} ++ //} ++ ++ c->put_pixels_clamped = put_pixels_clamped_loongson2; ++ c->add_pixels_clamped = add_pixels_clamped_loongson2; ++ ++#ifdef CONFIG_ENCODERS ++ dsputil_init_pix_loongson2(c, avctx); ++#endif ++ ++} +diff --git a/libavcodec/loongson2/dsputil_loongson2.d b/libavcodec/loongson2/dsputil_loongson2.d +new file mode 100644 +index 0000000..808f0a3 +--- /dev/null ++++ b/libavcodec/loongson2/dsputil_loongson2.d +@@ -0,0 +1,18 @@ ++libavcodec/loongson2/dsputil_loongson2.o: \ ++ libavcodec/loongson2/dsputil_loongson2.c \ ++ libavcodec/loongson2/dsputil_loongson2.h libavcodec/dsputil.h \ ++ libavutil/intreadwrite.h config.h libavutil/bswap.h \ ++ libavutil/attributes.h libavutil/common.h libavutil/intmath.h \ ++ libavutil/mem.h libavutil/internal.h libavutil/timer.h libavutil/libm.h \ ++ libavutil/mips/intreadwrite.h libavcodec/avcodec.h libavutil/avutil.h \ ++ libavutil/error.h libavutil/avutil.h libavutil/mathematics.h \ ++ libavutil/rational.h libavutil/intfloat_readwrite.h libavutil/log.h \ ++ libavutil/pixfmt.h libavutil/avconfig.h \ ++ libavcodec/loongson2/../simple_idct.h libavcodec/loongson2/../dsputil.h \ ++ libavcodec/loongson2/../mpegvideo.h libavcodec/loongson2/../get_bits.h \ ++ libavutil/bswap.h libavutil/common.h libavutil/log.h \ ++ libavcodec/loongson2/../mathops.h libavcodec/loongson2/../mips/mathops.h \ ++ libavcodec/loongson2/../put_bits.h libavcodec/loongson2/../ratecontrol.h \ ++ libavcodec/loongson2/../eval.h libavcodec/loongson2/../parser.h \ ++ libavcodec/loongson2/../avcodec.h libavcodec/loongson2/../mpeg12data.h \ ++ libavutil/rational.h libavcodec/loongson2/../rl.h +diff --git a/libavcodec/loongson2/dsputil_loongson2.h b/libavcodec/loongson2/dsputil_loongson2.h +new file mode 100644 +index 0000000..87c7bd9 +--- /dev/null ++++ b/libavcodec/loongson2/dsputil_loongson2.h +@@ -0,0 +1,3 @@ ++#include "libavcodec/dsputil.h" ++ ++void dsputil_init_pix_loongson2(DSPContext* c, AVCodecContext *avctx); +diff --git a/libavcodec/loongson2/dsputil_loongson2.o b/libavcodec/loongson2/dsputil_loongson2.o +new file mode 100644 +index 0000000..fca0b55 +Binary files /dev/null and b/libavcodec/loongson2/dsputil_loongson2.o differ +diff --git a/libavcodec/loongson2/idct_loongson2.c b/libavcodec/loongson2/idct_loongson2.c +new file mode 100644 +index 0000000..539cab5 +--- /dev/null ++++ b/libavcodec/loongson2/idct_loongson2.c +@@ -0,0 +1,336 @@ ++/* ++ * Copyright (C) 2000-2003 Michel Lespinasse <walken@zoy.org> ++ * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca> ++ * ++ * Copyright (c) 2007-2010 comcat <jiankemeng@gmail.com>. ++ * ++ * Optimized for Loongson2 CPUs by comcat <jiankemeng@gmail.com> ++ * ++ * Based on i386 ++ */ ++ ++#include "libavutil/common.h" ++#include "dsputil_loongson2.h" ++ ++ ++#define ATTR_ALIGN(align) __attribute__ ((__aligned__ (align))) ++ ++ ++#define ROW_SHIFT 11 ++#define COL_SHIFT 6 ++ ++#define round(bias) ((int)(((bias)+0.5) * (1<<ROW_SHIFT))) ++#define rounder(bias) {round (bias), round (bias)} ++ ++ ++ ++#define loongson2_table(c1,c2,c3,c4,c5,c6,c7) { c4,c2,-c4,-c2, \ ++ c4,c6,c4,c6, \ ++ c1,c3,-c1,-c5,\ ++ c5,c7,c3,-c7, \ ++ c4,-c6,c4,-c6, \ ++ -c4,c2,c4,-c2, \ ++ c5,-c1,c3,-c1, \ ++ c7,c3,c7,-c5 } ++ ++ ++static inline void loongson2_row_head(int16_t * const row, const int offset, ++ const int16_t * const table) ++{ ++ __asm__ volatile( ++// ".set\tmips3\n" ++ ".set noreorder\n" ++ "ldc1 $f6,%0\n" ++ "ldc1 $f14,%1\n" ++ "ldc1 $f2,%2\n" ++ "ldc1 $f8,%3\n" ++ "dli $12,%4\n" ++ "dmtc1 $12,$f16\n" ++ "mov.d $f4,$f6\n" ++ "mov.d $f10,$f14\n" ++ "pmaddhw $f2,$f2,$f4\n" ++ "pshufh $f6,$f6,$f16\n" ++ ".set reorder\n" ++// ".set\tmips0\n" ++ : ++ :"m"(*(row+offset)),"m"(*(row+offset+4)),"m"(*table),"m"(*(table+4)),"i"(0x4e) ++ :"$f2","$f4","$f6","$f8","$f10","$f14","$f16","$12" ++ ); ++} ++ ++ ++static inline void loongson2_row(const int16_t * const table, ++ const int32_t * const rounder) ++{ ++ __asm__ volatile ( ++// ".set\tmips3\n" ++ ".set\tnoreorder\n" ++ "ldc1 $f0,%0\n" ++ "pmaddhw $f8,$f8,$f6\n" ++ "ldc1 $f16,%1\n" ++ "dli $13,%8\n" ++ "ldc1 $f20,%2\n" ++ "pmaddhw $f0,$f0,$f14\n" ++ "ldc1 $f22,%3\n" ++ "pmaddhw $f4,$f4,$f16\n" ++ "paddw $f2,$f2,$f22\n" ++ "ldc1 $f22,%4\n" ++ "dmtc1 $13,$f16\n" ++ "paddw $f2,$f2,$f8\n" ++ "pmaddhw $f14,$f14,$f22\n" ++ "mov.d $f8,$f2\n" ++ "pshufh $f10,$f10,$f16\n" ++ "ldc1 $f22,%3\n" ++ "pmaddhw $f20,$f20,$f10\n" ++ "ldc1 $f16,%5\n" ++ "paddw $f4,$f4,$f22\n" ++ "paddw $f0,$f0,$f20\n" ++ "dli $12,%6\n" ++ "pmaddhw $f6,$f6,$f16\n" ++ "psubw $f2,$f2,$f0\n" ++ "ldc1 $f16,%7\n" ++ "paddw $f0,$f0,$f8\n" ++ "paddw $f4,$f4,$f6\n" ++ "pmaddhw $f10,$f10,$f16\n" ++ "mov.d $f8,$f4\n" ++ "dmtc1 $12,$f16\n" ++ "paddw $f14,$f14,$f10\n" ++ "psraw $f2,$f2,$f16\n" ++ "psraw $f0,$f0,$f16\n" ++ "paddw $f4,$f4,$f14\n" ++ "psubw $f8,$f8,$f14\n" ++ ".set\treorder\n" ++// ".set\tmips0\n" ++ : ++ :"m"(*(table+8)),"m"(*(table+16)),"m"(*(table+12)),"m"(*rounder),"m"(*(table+24)),"m"(*(table+20)),"i"(ROW_SHIFT),"m"(*(table+16)),"i"(0x4e) ++ :"$f0","$f2","$f4","$f6","$f8","$f10","$f14","$f16","$f20","$f22","$12","$13","memory" ++ ); ++} ++ ++static inline void loongson2_row_tail(int16_t * const row, const int store) ++{ ++ __asm__ volatile ( ++// ".set\tmips3\n" ++ ".set\tnoreorder\n" ++ "dli $12,%2\n" ++ "dmtc1 $12,$f16\n" ++ "psraw $f4,$f4,$f16\n" ++ "psraw $f8,$f8,$f16\n" ++ "packsswh $f0,$f0,$f4\n" ++ "packsswh $f8,$f8,$f2\n" ++ "sdc1 $f0,%0\n" ++ "dli $13,%3\n" ++ "dmtc1 $13,$f22\n" ++ "pshufh $f8,$f8,$f22\n" ++ "sdc1 $f8,%1\n" ++ ".set\treorder\n" ++// ".set\tmips0\n" ++ :"=m"(*(row+store)),"=m"(*(row+store+4)) ++ :"i"(ROW_SHIFT),"i"(0xb1) ++ :"$f0","$f2","$f4","$f6","$f8","$f16","$f22","$12","$13","memory" ++ ); ++} ++ ++static inline void loongson2_row_mid(int16_t * const row, const int store, ++ const int offset, ++ const int16_t * const table) ++{ ++ __asm__ volatile ( ++// ".set\tmips3\n" ++ ".set\tnoreorder\n" ++ "ldc1 $f6,%2\n" ++ "dli $12,%3\n" ++ "dmtc1 $12,$f16\n" ++ "psraw $f4,$f4,$f16\n" ++ "ldc1 $f14,%4\n" ++ "psraw $f8,$f8,$f16\n" ++ "packsswh $f0,$f0,$f4\n" ++ "mov.d $f10,$f14\n" ++ "packsswh $f8,$f8,$f2\n" ++ "mov.d $f4,$f6\n" ++ "sdc1 $f0,%0\n" ++ "dli $13,%5\n" ++ "dmtc1 $13,$f22\n" ++ "pshufh $f8,$f8,$f22\n" ++ "ldc1 $f2,%6\n" ++ "sdc1 $f8,%1\n" ++ "pmaddhw $f2,$f2,$f4\n" ++ "ldc1 $f8,%7\n" ++ "dli $12,%8\n" ++ "dmtc1 $12,$f16\n" ++ "pshufh $f6,$f6,$f16\n" ++ ".set\treorder\n" ++// ".set\tmips0\n" ++ :"=m"(*(row+store)),"=m"(*(row+store+4)) ++ : "m"(*(row+offset)),"i"(ROW_SHIFT),"m"(*(row+offset+4)),"i"(0xb1),"m"(*table),"m"(*(table+4)),"i"(0x4e) ++ :"$f0","$f2","$f4","$f6","$f8","$f10","$14","$f16","$f22","$12","$13","memory" ++ ); ++} ++ ++static inline void idct_col(int16_t * const col, const int offset) ++{ ++#define T1 13036 ++#define T2 27146 ++#define T3 43790 ++#define C4 23170 ++ static const short _T1[] ATTR_ALIGN(8) = {T1,T1,T1,T1}; ++ static const short _T2[] ATTR_ALIGN(8) = {T2,T2,T2,T2}; ++ static const short _T3[] ATTR_ALIGN(8) = {T3,T3,T3,T3}; ++ static const short _C4[] ATTR_ALIGN(8) = {C4,C4,C4,C4}; ++ ++ __asm__ volatile ( ++// ".set\tmips3\n" ++ ".set\tnoreorder\n" ++ "ldc1 $f4,%8\n" ++ "ldc1 $f0,%9\n" ++ "mov.d $f6,$f4\n" ++ "ldc1 $f8,%10\n" ++ "pmulhh $f4,$f4,$f0\n" ++ "ldc1 $f14,%11\n" ++ "pmulhh $f6,$f6,$f8\n" ++ "ldc1 $f10,%12\n" ++ "mov.d $f20,$f14\n" ++ "ldc1 $f2,%13\n" ++ "psubsh $f4,$f4,$f8\n" ++ "ldc1 $f8,%14\n" ++ "pmulhh $f14,$f14,$f2\n" ++ "paddsh $f0,$f0,$f6\n" ++ "pmulhh $f20,$f20,$f10\n" ++ "mov.d $f6,$f8\n" ++ "paddsh $f14,$f14,$f2\n" ++ "ldc1 $f16,%15\n" ++ "pmulhh $f8,$f8,$f16\n" ++ "paddsh $f20,$f20,$f10\n" ++ "psubsh $f14,$f14,$f10\n" ++ "paddsh $f20,$f20,$f2\n" ++ "ldc1 $f2,%16\n" ++ "mov.d $f10,$f4\n" ++ "pmulhh $f6,$f6,$f2\n" ++ "psubsh $f4,$f4,$f14\n" ++ "psubsh $f8,$f8,$f2\n" ++ "paddsh $f14,$f14,$f10\n" ++ "sdc1 $f4,%0\n" ++ "mov.d $f10,$f0\n" ++ "ldc1 $f22,%15\n" ++ "paddsh $f6,$f6,$f22\n" ++ "paddsh $f10,$f10,$f20\n" ++ "psubsh $f0,$f0,$f20\n" ++ "mov.d $f20,$f0\n" ++ "ldc1 $f2,%17\n" ++ "paddsh $f0,$f0,$f14\n" ++ "ldc1 $f4,%18\n" ++ "psubsh $f20,$f20,$f14\n" ++ "sdc1 $f10,%1\n" ++ "pmulhh $f0,$f0,$f4\n" ++ "mov.d $f10,$f8\n" ++ "pmulhh $f20,$f20,$f4\n" ++ "ldc1 $f14,%19\n" ++ "mov.d $f4,$f2\n" ++ "psubsh $f2,$f2,$f14\n" ++ "paddsh $f4,$f4,$f14\n" ++ "paddsh $f8,$f8,$f2\n" ++ "mov.d $f14,$f4\n" ++ "psubsh $f2,$f2,$f10\n" ++ "paddsh $f14,$f14,$f6\n" ++ "paddsh $f0,$f0,$f0\n" ++ "psubsh $f4,$f4,$f6\n" ++ "paddsh $f20,$f20,$f20\n" ++ "mov.d $f6,$f2\n" ++ "mov.d $f10,$f8\n" ++ "paddsh $f2,$f2,$f20\n" ++ "dli $12,%20\n" ++ "dmtc1 $12,$f16\n" ++ "psrah $f2,$f2,$f16\n" ++ "paddsh $f8,$f8,$f0\n" ++ "psrah $f8,$f8,$f16\n" ++ "psubsh $f10,$f10,$f0\n" ++ "ldc1 $f0,%12\n" ++ "psubsh $f6,$f6,$f20\n" ++ "psrah $f10,$f10,$f16\n" ++ "mov.d $f20,$f14\n" ++ "sdc1 $f8,%2\n" ++ "psrah $f6,$f6,$f16\n" ++ "sdc1 $f2,%3\n" ++ "paddsh $f14,$f14,$f0\n" ++ "ldc1 $f8,%13\n" ++ "psubsh $f20,$f20,$f0\n" ++ "psrah $f14,$f14,$f16\n" ++ "mov.d $f2,$f4\n" ++ "sdc1 $f6,%1\n" ++ "psubsh $f2,$f2,$f8\n" ++ "psrah $f20,$f20,$f16\n" ++ "paddsh $f8,$f8,$f4\n" ++ "sdc1 $f14,%4\n" ++ "psrah $f2,$f2,$f16\n" ++ "sdc1 $f10,%5\n" ++ "psrah $f8,$f8,$f16\n" ++ "sdc1 $f20,%6\n" ++ "sdc1 $f2,%7\n" ++ "sdc1 $f8,%0\n" ++ ".set\treorder\n" ++// ".set\tmips0\n" ++ :"=m"(*(col+offset+3*8)),"=m"(*(col+offset+5*8)),"=m"(*(col+offset+1*8)),"=m"(*(col+offset+2*8)),"=m"(*(col+offset+0*8)),"=m"(*(col+offset+6*8)),"=m"(*(col+offset+7*8)),"=m"(*(col+offset+4*8)) ++ :"m"(*_T1),"m"(*(col+offset+1*8)),"m"(*(col+offset+7*8)),"m"(*_T3),"m"(*(col+offset+5*8)),"m"(*(col+offset+3*8)),"m"(*_T2),"m"(*(col+offset+2*8)),"m"(*(col+offset+6*8)),"m"(*(col+offset+0*8)),"m"(*_C4),"m"(*(col+offset+4*8)),"i"(COL_SHIFT) ++ :"$f0","$f2","$f4","$f6","$f8","$f10","$14","$f16","$20","$f22","$12","memory" ++ ); ++} ++ ++static const int32_t rounder0[] ATTR_ALIGN(8) = ++ rounder ((1 << (COL_SHIFT - 1)) - 0.5); ++static const int32_t rounder4[] ATTR_ALIGN(8) = rounder (0); ++static const int32_t rounder1[] ATTR_ALIGN(8) = ++ rounder (1.25683487303); /* C1*(C1/C4+C1+C7)/2 */ ++static const int32_t rounder7[] ATTR_ALIGN(8) = ++ rounder (-0.25); /* C1*(C7/C4+C7-C1)/2 */ ++static const int32_t rounder2[] ATTR_ALIGN(8) = ++ rounder (0.60355339059); /* C2 * (C6+C2)/2 */ ++static const int32_t rounder6[] ATTR_ALIGN(8) = ++ rounder (-0.25); /* C2 * (C6-C2)/2 */ ++static const int32_t rounder3[] ATTR_ALIGN(8) = ++ rounder (0.087788325588); /* C3*(-C3/C4+C3+C5)/2 */ ++static const int32_t rounder5[] ATTR_ALIGN(8) = ++ rounder (-0.441341716183); /* C3*(-C5/C4+C5-C3)/2 */ ++ ++ ++#undef COL_SHIFT ++#undef ROW_SHIFT ++ ++ ++#define declare_idct(idct,table,idct_row_head,idct_row,idct_row_tail,idct_row_mid) \ ++inline void idct (int16_t * const block) \ ++{ \ ++ static const int16_t table04[] ATTR_ALIGN(16) = \ ++ table (22725, 21407, 19266, 16384, 12873, 8867, 4520); \ ++ static const int16_t table17[] ATTR_ALIGN(16) = \ ++ table (31521, 29692, 26722, 22725, 17855, 12299, 6270); \ ++ static const int16_t table26[] ATTR_ALIGN(16) = \ ++ table (29692, 27969, 25172, 21407, 16819, 11585, 5906); \ ++ static const int16_t table35[] ATTR_ALIGN(16) = \ ++ table (26722, 25172, 22654, 19266, 15137, 10426, 5315); \ ++ \ ++ idct_row_head (block, 0*8, table04); \ ++ idct_row (table04, rounder0); \ ++ idct_row_mid (block, 0*8, 4*8, table04); \ ++ idct_row (table04, rounder4); \ ++ idct_row_mid (block, 4*8, 1*8, table17); \ ++ idct_row (table17, rounder1); \ ++ idct_row_mid (block, 1*8, 7*8, table17); \ ++ idct_row (table17, rounder7); \ ++ idct_row_mid (block, 7*8, 2*8, table26); \ ++ idct_row (table26, rounder2); \ ++ idct_row_mid (block, 2*8, 6*8, table26); \ ++ idct_row (table26, rounder6); \ ++ idct_row_mid (block, 6*8, 3*8, table35); \ ++ idct_row (table35, rounder3); \ ++ idct_row_mid (block, 3*8, 5*8, table35); \ ++ idct_row (table35, rounder5); \ ++ idct_row_tail (block, 5*8); \ ++ \ ++ idct_col (block, 0); \ ++ idct_col (block, 4); \ ++} ++ ++void ff_loongson2_idct(DCTELEM *block); ++ ++declare_idct (ff_loongson2_idct, loongson2_table, ++ loongson2_row_head, loongson2_row, loongson2_row_tail, loongson2_row_mid) +diff --git a/libavcodec/loongson2/idct_loongson2_xvid.c b/libavcodec/loongson2/idct_loongson2_xvid.c +new file mode 100644 +index 0000000..4a1ee1e +--- /dev/null ++++ b/libavcodec/loongson2/idct_loongson2_xvid.c +@@ -0,0 +1,301 @@ ++/* ++ * XVID MPEG-4 VIDEO CODEC ++ * ++ * Copyright(C) 2006-2010 comcat <jiankemeng@gmail.com> ++ * ++ * Optimized for Loongson2 CPUs by comcat <jiankemeng@gmail.com> ++ * ++ * Based on i386 ++ * ++ */ ++ ++ ++#include <inttypes.h> ++#include "../avcodec.h" ++ ++void ff_idct_xvid_loongson2(short *block); ++ ++//============================================================================= ++// Macros and other preprocessor constants ++//============================================================================= ++ ++#define BITS_INV_ACC 5 // 4 or 5 for IEEE ++#define SHIFT_INV_ROW (16 - BITS_INV_ACC) //11 ++#define SHIFT_INV_COL (1 + BITS_INV_ACC) //6 ++#define RND_INV_ROW (1024 * (6 - BITS_INV_ACC)) ++#define RND_INV_COL (16 * (BITS_INV_ACC - 3)) ++#define RND_INV_CORR (RND_INV_COL - 1) ++ ++#define BITS_FRW_ACC 3 // 2 or 3 for accuracy ++#define SHIFT_FRW_COL BITS_FRW_ACC ++#define SHIFT_FRW_ROW (BITS_FRW_ACC + 17) ++#define RND_FRW_ROW (262144*(BITS_FRW_ACC - 1)) ++ ++ ++//----------------------------------------------------------------------------- ++// Various memory constants (trigonometric values or rounding values) ++//----------------------------------------------------------------------------- ++ ++static const int16_t tg_1_16[4*4] attribute_used __attribute__ ((aligned(8))) = { ++ 13036,13036,13036,13036, // tg * (2<<16) + 0.5 ++ 27146,27146,27146,27146, // tg * (2<<16) + 0.5 ++ -21746,-21746,-21746,-21746, // tg * (2<<16) + 0.5 ++ 23170,23170,23170,23170}; // cos * (2<<15) + 0.5 ++ ++static const int32_t rounder_0[2*8] attribute_used __attribute__ ((aligned(8))) = { ++ 65536,65536, ++ 3597,3597, ++ 2260,2260, ++ 1203,1203, ++ 0,0, ++ 120,120, ++ 512,512, ++ 512,512}; ++ ++ ++// Table for rows 0,4 - constants are multiplied by cos_4_16 ++static const int16_t tab_i_04_mmx[32*4] attribute_used __attribute__ ((aligned(8))) = { ++ 16384,16384,16384,-16384, // movq-> w06 w04 w02 w00 ++ 21407,8867,8867,-21407, // w07 w05 w03 w01 ++ 16384,-16384,16384,16384, // w14 w12 w10 w08 ++ -8867,21407,-21407,-8867, // w15 w13 w11 w09 ++ 22725,12873,19266,-22725, // w22 w20 w18 w16 ++ 19266,4520,-4520,-12873, // w23 w21 w19 w17 ++ 12873,4520,4520,19266, // w30 w28 w26 w24 ++ -22725,19266,-12873,-22725, // w31 w29 w27 w25 ++// Table for rows 1,7 - constants are multiplied by cos_1_16 ++ 22725,22725,22725,-22725, // movq-> w06 w04 w02 w00 ++ 29692,12299,12299,-29692, // w07 w05 w03 w01 ++ 22725,-22725,22725,22725, // w14 w12 w10 w08 ++ -12299,29692,-29692,-12299, // w15 w13 w11 w09 ++ 31521,17855,26722,-31521, // w22 w20 w18 w16 ++ 26722,6270,-6270,-17855, // w23 w21 w19 w17 ++ 17855,6270,6270,26722, // w30 w28 w26 w24 ++ -31521,26722,-17855,-31521, // w31 w29 w27 w25 ++// Table for rows 2,6 - constants are multiplied by cos_2_16 ++ 21407,21407,21407,-21407, // movq-> w06 w04 w02 w00 ++ 27969,11585,11585,-27969, // w07 w05 w03 w01 ++ 21407,-21407,21407,21407, // w14 w12 w10 w08 ++ -11585,27969,-27969,-11585, // w15 w13 w11 w09 ++ 29692,16819,25172,-29692, // w22 w20 w18 w16 ++ 25172,5906,-5906,-16819, // w23 w21 w19 w17 ++ 16819,5906,5906,25172, // w30 w28 w26 w24 ++ -29692,25172,-16819,-29692, // w31 w29 w27 w25 ++// Table for rows 3,5 - constants are multiplied by cos_3_16 ++ 19266,19266,19266,-19266, // movq-> w06 w04 w02 w00 ++ 25172,10426,10426,-25172, // w07 w05 w03 w01 ++ 19266,-19266,19266,19266, // w14 w12 w10 w08 ++ -10426,25172,-25172,-10426, // w15 w13 w11 w09 ++ 26722,15137,22654,-26722, // w22 w20 w18 w16 ++ 22654,5315,-5315,-15137, // w23 w21 w19 w17 ++ 15137,5315,5315,22654, // w30 w28 w26 w24 ++ -26722,22654,-15137,-26722, // w31 w29 w27 w25 ++}; ++ ++ ++// %3 for rows 0,4 - constants are multiplied by cos_4_16 ++static const int16_t tab_i_04_xmm[32*4] attribute_used __attribute__ ((aligned(8))) = { ++ 16384,21407,16384,8867, // movq-> w05 w04 w01 w00 ++ 16384,8867,-16384,-21407, // w07 w06 w03 w02 ++ 16384,-8867,16384,-21407, // w13 w12 w09 w08 ++ -16384,21407,16384,-8867, // w15 w14 w11 w10 ++ 22725,19266,19266,-4520, // w21 w20 w17 w16 ++ 12873,4520,-22725,-12873, // w23 w22 w19 w18 ++ 12873,-22725,4520,-12873, // w29 w28 w25 w24 ++ 4520,19266,19266,-22725, // w31 w30 w27 w26 ++// %3 for rows 1,7 - constants are multiplied by cos_1_16 ++ 22725,29692,22725,12299, // movq-> w05 w04 w01 w00 ++ 22725,12299,-22725,-29692, // w07 w06 w03 w02 ++ 22725,-12299,22725,-29692, // w13 w12 w09 w08 ++ -22725,29692,22725,-12299, // w15 w14 w11 w10 ++ 31521,26722,26722,-6270, // w21 w20 w17 w16 ++ 17855,6270,-31521,-17855, // w23 w22 w19 w18 ++ 17855,-31521,6270,-17855, // w29 w28 w25 w24 ++ 6270,26722,26722,-31521, // w31 w30 w27 w26 ++// %3 for rows 2,6 - constants are multiplied by cos_2_16 ++ 21407,27969,21407,11585, // movq-> w05 w04 w01 w00 ++ 21407,11585,-21407,-27969, // w07 w06 w03 w02 ++ 21407,-11585,21407,-27969, // w13 w12 w09 w08 ++ -21407,27969,21407,-11585, // w15 w14 w11 w10 ++ 29692,25172,25172,-5906, // w21 w20 w17 w16 ++ 16819,5906,-29692,-16819, // w23 w22 w19 w18 ++ 16819,-29692,5906,-16819, // w29 w28 w25 w24 ++ 5906,25172,25172,-29692, // w31 w30 w27 w26 ++// %3 for rows 3,5 - constants are multiplied by cos_3_16 ++ 19266,25172,19266,10426, // movq-> w05 w04 w01 w00 ++ 19266,10426,-19266,-25172, // w07 w06 w03 w02 ++ 19266,-10426,19266,-25172, // w13 w12 w09 w08 ++ -19266,25172,19266,-10426, // w15 w14 w11 w10 ++ 26722,22654,22654,-5315, // w21 w20 w17 w16 ++ 15137,5315,-26722,-15137, // w23 w22 w19 w18 ++ 15137,-26722,5315,-15137, // w29 w28 w25 w24 ++ 5315,22654,22654,-26722, // w31 w30 w27 w26 ++}; ++ ++ ++ ++#define DCT_8_INV_ROW_LOONGSON2(A1,A2,A3,A4)\ ++ "ldc1 $f0, " #A1 " \n\t"/* 0 ; x3 x2 x1 x0*/\ ++ "ldc1 $f2, 8+" #A1 " \n\t"/* 1 ; x7 x6 x5 x4*/\ ++ "mov.d $f4, $f0 \n\t"/* 2 ; x3 x2 x1 x0*/\ ++ "ldc1 $f6, " #A3 " \n\t"/* 3 ; w05 w04 w01 w00*/\ ++ "li $12, 0x88 \n\t"\ ++ "dmtc1 $12, $f16 \n\t"\ ++ "pshufh $f0, $f0, $f16 \n\t"/* x2 x0 x2 x0*/\ ++ "ldc1 $f8, 8+" #A3 " \n\t"/* 4 ; w07 w06 w03 w02*/\ ++ "mov.d $f10, $f2 \n\t"/* 5 ; x7 x6 x5 x4*/\ ++ "pmaddhw $f6, $f6, $f0 \n\t"/* x2*w05+x0*w04 x2*w01+x0*w00*/\ ++ "ldc1 $f12, 32+" #A3 " \n\t"/* 6 ; w21 w20 w17 w16*/\ ++ "pshufh $f2, $f2, $f16 \n\t"/* x6 x4 x6 x4*/\ ++ "pmaddhw $f8, $f8, $f2 \n\t"/* x6*w07+x4*w06 x6*w03+x4*w02*/\ ++ "li $12, 0xdd \n\t"\ ++ "dmtc1 $12, $f16 \n\t"\ ++ "ldc1 $f14, 40+" #A3 " \n\t"/* 7 ; w23 w22 w19 w18*/\ ++ "pshufh $f4, $f4, $f16 \n\t"/* x3 x1 x3 x1*/\ ++ "pmaddhw $f12, $f12, $f4 \n\t"/* x3*w21+x1*w20 x3*w17+x1*w16*/\ ++ "ldc1 $f18, " #A4 " \n\t" \ ++ "ldc1 $f20, 16+" #A3 " \n\t" \ ++ "ldc1 $f22, 24+" #A3 " \n\t" \ ++ "ldc1 $f24, 48+" #A3 " \n\t" \ ++ "ldc1 $f26, 56+" #A3 " \n\t" \ ++ "pshufh $f10, $f10, $f16 \n\t"/* x7 x5 x7 x5*/\ ++ "pmaddhw $f14, $f14, $f10 \n\t"/* x7*w23+x5*w22 x7*w19+x5*w18*/\ ++ "paddw $f6, $f6, $f18 \n\t"/* +%4*/\ ++ "pmaddhw $f0, $f0, $f20 \n\t"/* x2*w13+x0*w12 x2*w09+x0*w08*/\ ++ "paddw $f6, $f6, $f8 \n\t"/* 4 ; a1=sum(even1) a0=sum(even0)*/\ ++ "pmaddhw $f2, $f2, $f22 \n\t"/* x6*w15+x4*w14 x6*w11+x4*w10*/\ ++ "mov.d $f8, $f6 \n\t"/* 4 ; a1 a0*/\ ++ "li $12, 11 \n\t"\ ++ "dmtc1 $12, $f16 \n\t"\ ++ "pmaddhw $f4, $f4, $f24 \n\t"/* x3*w29+x1*w28 x3*w25+x1*w24*/\ ++ "paddw $f12, $f12, $f14 \n\t"/* 7 ; b1=sum(odd1) b0=sum(odd0)*/\ ++ "pmaddhw $f10, $f10, $f26 \n\t"/* x7*w31+x5*w30 x7*w27+x5*w26*/\ ++ "paddw $f6, $f6, $f12 \n\t"/* a1+b1 a0+b0*/\ ++ "paddw $f0, $f0, $f18 \n\t"/* +%4*/\ ++ "psraw $f6, $f6, $f16 \n\t"/* y1=a1+b1 y0=a0+b0*/\ ++ "paddw $f0, $f0, $f2 \n\t"/* 1 ; a3=sum(even3) a2=sum(even2)*/\ ++ "psubw $f8, $f8, $f12 \n\t"/* 6 ; a1-b1 a0-b0*/\ ++ "mov.d $f14, $f0 \n\t"/* 7 ; a3 a2*/\ ++ "paddw $f4, $f4, $f10 \n\t"/* 5 ; b3=sum(odd3) b2=sum(odd2)*/\ ++ "paddw $f0, $f0, $f4 \n\t"/* a3+b3 a2+b2*/\ ++ "psraw $f8, $f8, $f16 \n\t"/* y6=a1-b1 y7=a0-b0*/\ ++ "psubw $f14, $f14, $f4 \n\t"/* 2 ; a3-b3 a2-b2*/\ ++ "psraw $f0, $f0, $f16 \n\t"/* y3=a3+b3 y2=a2+b2*/\ ++ "psraw $f14, $f14, $f16 \n\t"/* y4=a3-b3 y5=a2-b2*/\ ++ "li $12, 0xb1 \n\t"\ ++ "dmtc1 $12, $f20 \n\t"\ ++ "packsswh $f6, $f6, $f0 \n\t"/* 0 ; y3 y2 y1 y0*/\ ++ "packsswh $f14, $f14, $f8 \n\t"/* 4 ; y6 y7 y4 y5*/\ ++ "sdc1 $f6, " #A2 " \n\t"/* 3 ; save y3 y2 y1 y0*/\ ++ "pshufh $f14, $f14, $f20 \n\t"/* y7 y6 y5 y4*/\ ++ "sdc1 $f14, 8 +" #A2 " \n\t"/* 7 ; save y7 y6 y5 y4*/\ ++ ++ ++#define DCT_8_INV_COL(A1,A2)\ ++ "ldc1 $f0, 2*8(%3) \n\t"/* */\ ++ "ldc1 $f6, 16*3+" #A1 " \n\t"/* x3 */\ ++ "mov.d $f2, $f0 \n\t"/* tg_3_16*/\ ++ "ldc1 $f10, 16*5+" #A1 " \n\t"/* x5 */\ ++ "pmulhh $f0, $f0, $f6 \n\t"/* x3*(tg_3_16-1)*/\ ++ "ldc1 $f8, (%3) \n\t"\ ++ "pmulhh $f2, $f2, $f10 \n\t"/* x5*(tg_3_16-1)*/\ ++ "ldc1 $f14, 16*7+" #A1 " \n\t"/* x7 */\ ++ "mov.d $f4, $f8 \n\t"/* tg_1_16*/\ ++ "ldc1 $f12, 16*1+" #A1 " \n\t"/* x1 */\ ++ "pmulhh $f8, $f8, $f14 \n\t"/* x7*tg_1_16*/\ ++ "paddsh $f0, $f0, $f6 \n\t"/* x3*tg_3_16*/\ ++ "pmulhh $f4, $f4, $f12 \n\t"/* x1*tg_1_16*/\ ++ "paddsh $f2, $f2, $f6 \n\t"/* x3+x5*(tg_3_16-1)*/\ ++ "psubsh $f0, $f0, $f10 \n\t"/* x3*tg_3_16-x5 = tm35*/\ ++ "ldc1 $f6, 3*8(%3) \n\t"\ ++ "paddsh $f2, $f2, $f10 \n\t"/* x3+x5*tg_3_16 = tp35*/\ ++ "paddsh $f8, $f8, $f12 \n\t"/* x1+tg_1_16*x7 = tp17*/\ ++ "psubsh $f4, $f4, $f14 \n\t"/* x1*tg_1_16-x7 = tm17*/\ ++ "mov.d $f10, $f8 \n\t"/* tp17*/\ ++ "mov.d $f12, $f4 \n\t"/* tm17*/\ ++ "paddsh $f10, $f10, $f2 \n\t"/* tp17+tp35 = b0*/\ ++ "psubsh $f12, $f12, $f0 \n\t"/* tm17-tm35 = b3*/\ ++ "psubsh $f8, $f8, $f2 \n\t"/* tp17-tp35 = t1*/\ ++ "paddsh $f4, $f4, $f0 \n\t"/* tm17+tm35 = t2*/\ ++ "ldc1 $f14, 1*8(%3) \n\t"\ ++ "mov.d $f2, $f8 \n\t"/* t1*/\ ++ "sdc1 $f10, 3*16+" #A2 " \n\t"/* save b0*/\ ++ "paddsh $f2, $f2, $f4 \n\t"/* t1+t2*/\ ++ "sdc1 $f12, 5*16+" #A2 " \n\t"/* save b3*/\ ++ "psubsh $f8, $f8, $f4 \n\t"/* t1-t2*/\ ++ "ldc1 $f10, 2*16+" #A1 " \n\t"\ ++ "mov.d $f0, $f14 \n\t"/* tg_2_16*/\ ++ "ldc1 $f12, 6*16+" #A1 " \n\t"\ ++ "pmulhh $f0, $f0, $f10 \n\t"/* x2*tg_2_16*/\ ++ "pmulhh $f14, $f14, $f12 \n\t"/* x6*tg_2_16*/\ ++ "pmulhh $f2, $f2, $f6 \n\t"/* ocos_4_16*(t1+t2) = b1/2*/\ ++ "ldc1 $f4, 0*16+" #A1 " \n\t"\ ++ "pmulhh $f8, $f8, $f6 \n\t"/* ocos_4_16*(t1-t2) = b2/2*/\ ++ "psubsh $f0, $f0, $f12 \n\t"/* t2*tg_2_16-x6 = tm26*/\ ++ "mov.d $f6, $f4 \n\t"/* x0*/\ ++ "ldc1 $f12, 4*16+" #A1 " \n\t"\ ++ "paddsh $f14, $f14, $f10 \n\t"/* x2+x6*tg_2_16 = tp26*/\ ++ "paddsh $f4, $f4, $f12 \n\t"/* x0+x4 = tp04*/\ ++ "psubsh $f6, $f6, $f12 \n\t"/* x0-x4 = tm04*/\ ++ "mov.d $f10, $f4 \n\t"/* tp04*/\ ++ "mov.d $f12, $f6 \n\t"/* tm04*/\ ++ "psubsh $f4, $f4, $f14 \n\t"/* tp04-tp26 = a3*/\ ++ "paddsh $f6, $f6, $f0 \n\t"/* tm04+tm26 = a1*/\ ++ "paddsh $f2, $f2, $f2 \n\t"/* b1*/\ ++ "paddsh $f8, $f8, $f8 \n\t"/* b2*/\ ++ "paddsh $f10, $f10, $f14 \n\t"/* tp04+tp26 = a0*/\ ++ "psubsh $f12, $f12, $f0 \n\t"/* tm04-tm26 = a2*/\ ++ "li $12, 6 \n\t"\ ++ "dmtc1 $12, $f18 \n\t"\ ++ "mov.d $f14, $f6 \n\t"/* a1*/\ ++ "mov.d $f0, $f12 \n\t"/* a2*/\ ++ "paddsh $f6, $f6, $f2 \n\t"/* a1+b1*/\ ++ "paddsh $f12, $f12, $f8 \n\t"/* a2+b2*/\ ++ "psrah $f6, $f6, $f18 \n\t"/* dst1*/\ ++ "psubsh $f14, $f14, $f2 \n\t"/* a1-b1*/\ ++ "psrah $f12, $f12, $f18 \n\t"/* dst2*/\ ++ "psubsh $f0, $f0, $f8 \n\t"/* a2-b2*/\ ++ "ldc1 $f2, 3*16+" #A2 " \n\t"/* load b0*/\ ++ "psrah $f14, $f14, $f18 \n\t"/* dst6*/\ ++ "mov.d $f8, $f10 \n\t"/* a0*/\ ++ "psrah $f0, $f0, $f18 \n\t"/* dst5*/\ ++ "sdc1 $f6, 1*16+" #A2 " \n\t"\ ++ "paddsh $f10, $f10, $f2 \n\t"/* a0+b0*/\ ++ "sdc1 $f12, 2*16+" #A2 " \n\t"\ ++ "psubsh $f8, $f8, $f2 \n\t"/* a0-b0*/\ ++ "ldc1 $f6, 5*16+" #A2 " \n\t"/* load b3*/\ ++ "psrah $f10, $f10, $f18 \n\t"/* dst0*/\ ++ "mov.d $f12, $f4 \n\t"/* a3*/\ ++ "psrah $f8, $f8, $f18 \n\t"/* dst7*/\ ++ "sdc1 $f0, 5*16+" #A2 " \n\t"\ ++ "paddsh $f4, $f4, $f6 \n\t"/* a3+b3*/\ ++ "sdc1 $f14, 6*16+" #A2 " \n\t"\ ++ "psubsh $f12, $f12, $f6 \n\t"/* a3-b3*/\ ++ "sdc1 $f10, 0*16+" #A2 " \n\t"\ ++ "psrah $f4, $f4, $f18 \n\t"/* dst3*/\ ++ "sdc1 $f8, 7*16+" #A2 " \n\t"\ ++ "psrah $f12, $f12, $f18 \n\t"/* dst4*/\ ++ "sdc1 $f4, 3*16+" #A2 " \n\t"\ ++ "sdc1 $f12, 4*16+" #A2 " \n\t" ++ ++ ++ ++void ff_idct_xvid_loongson2(short *block){ ++ __asm__ volatile( ++ //# Process each row ++ DCT_8_INV_ROW_LOONGSON2(0*16(%0), 0*16(%0), 64*0(%2), 8*0(%1)) ++ DCT_8_INV_ROW_LOONGSON2(1*16(%0), 1*16(%0), 64*1(%2), 8*1(%1)) ++ DCT_8_INV_ROW_LOONGSON2(2*16(%0), 2*16(%0), 64*2(%2), 8*2(%1)) ++ DCT_8_INV_ROW_LOONGSON2(3*16(%0), 3*16(%0), 64*3(%2), 8*3(%1)) ++ DCT_8_INV_ROW_LOONGSON2(4*16(%0), 4*16(%0), 64*0(%2), 8*4(%1)) ++ DCT_8_INV_ROW_LOONGSON2(5*16(%0), 5*16(%0), 64*3(%2), 8*5(%1)) ++ DCT_8_INV_ROW_LOONGSON2(6*16(%0), 6*16(%0), 64*2(%2), 8*6(%1)) ++ DCT_8_INV_ROW_LOONGSON2(7*16(%0), 7*16(%0), 64*1(%2), 8*7(%1)) ++ ++ //# Process the columns (4 at a time) ++ DCT_8_INV_COL(0(%0), 0(%0)) ++ DCT_8_INV_COL(8(%0), 8(%0)) ++ : ++ : "r"(block), "r"(rounder_0), "r"(tab_i_04_xmm), "r"(tg_1_16) ++ :"$f0","$f2","$f4","$f6","$f8","$f10","$f12","$f14","$f18","$f16","$20","$22","$24","$26"); ++} ++ +diff --git a/libavcodec/loongson2/motion_est_loongson2.c b/libavcodec/loongson2/motion_est_loongson2.c +new file mode 100644 +index 0000000..bb67290 +--- /dev/null ++++ b/libavcodec/loongson2/motion_est_loongson2.c +@@ -0,0 +1,365 @@ ++/* ++ * Loongson2E MMI optimized motion estimation ++ * Copyright (c) 2007 comcat <jiankemeng@gmail.com>. ++ * ++ * based on Michael Niedermayer <michaelni@gmx.at> ++ * ++ */ ++ ++#include "dsputil_loongson2.h" ++#include "../avcodec.h" ++ ++static const __attribute__ ((aligned(8))) uint64_t round_tab[3]={ ++ 0x0000000000000000ULL, ++ 0x0001000100010001ULL, ++ 0x0002000200020002ULL, ++}; ++ ++static attribute_used __attribute__ ((aligned(8))) uint64_t bone= 0x0101010101010101LL; ++ ++static inline void sad8_1_loongson2(uint8_t *blk1, uint8_t *blk2, int stride, int h) ++{ ++ long len= -(stride*h); ++ __asm__ volatile( ++ ++// ".set mips3 \n\t" ++ ".align 4 \n\t" ++ ++ "move $8, %0 \n\t" ++ "move $21, %1 \n\t" ++ "move $22, %2 \n\t" ++ "move $23, %3 \n\t" ++ ++ "1: \n\t" ++ ++ "add $9, $8, $21 \n\t" ++ "add $10, $8, $22 \n\t" ++ ++ "uld $11, ($9) \n\t" ++ "dmtc1 $11, $f0 \n\t" ++ ++ "uld $12, ($9) \n\t" ++ "dmtc1 $12, $f4 \n\t" ++ ++ "pasubub $f10, $f0, $f4 \n\t" ++ "biadd $f0, $f10 \n\t" ++ ++ "add $8, $8, $23 \n\t" ++ ++ "add $9, $8, $21 \n\t" ++ "add $10, $8, $22 \n\t" ++ ++ "uld $11, ($9) \n\t" ++ "dmtc1 $11, $f2 \n\t" ++ ++ "uld $12, ($10) \n\t" ++ "dmtc1 $12, $f6 \n\t" ++ ++ "pasubub $f16, $f2, $f6 \n\t" ++ "biadd $f6, $f16 \n\t" ++ ++ "paddh $f0, $f0, $f6 \n\t" ++ ++ "paddh $f12, $f12, $f0 \n\t" ++ ++ "bltz $8, 1b \n\t" ++ "add $8, $8, $23 \n\t" ++ ++ : "+r" (len) ++ : "r" (blk1 - len), "r" (blk2 - len), "r" ((long)stride) ++ : "$8", "$9", "$10", "$21", "$22", "$23", "$f0", "$f2", "$f4", "$f6", "$f10", "$f16" ++ ); ++} ++ ++static inline void sad8_2_loongson2(uint8_t *blk1a, uint8_t *blk1b, uint8_t *blk2, int stride, int h) ++{ ++ long len= -(stride*h); ++ __asm__ volatile( ++ ++// ".set mips3 \n\t" ++ ".align 4 \n\t" ++ ++ "move $8, %0 \n\t" ++ ++ "1: \n\t" ++ "add $9, $8, %1 \n\t" ++ "add $10, $8, %2 \n\t" ++ "add $11, $8, %3 \n\t" ++ ++ "uld $12, ($9) \n\t" ++ "dmtc1 $12, $f0 \n\t" ++ "uld $13, ($10) \n\t" ++ "dmtc1 $13, $f4 \n\t" ++ ++ "pavgb $f0, $f0, $f4 \n\t" ++ ++ "uld $12, ($11) \n\t" ++ "dmtc1 $12, $f4 \n\t" ++ ++ "pasubub $f10, $f0, $f4 \n\t" ++ "biadd $f0, $f10 \n\t" ++ ++ "add $8, $8, %4 \n\t" ++ ++ "add $9, $8, %1 \n\t" ++ "add $10, $8, %2 \n\t" ++ "add $11, $8, %3 \n\t" ++ ++ "uld $12, ($9) \n\t" ++ "dmtc1 $12, $f2 \n\t" ++ "uld $13, ($10) \n\t" ++ "dmtc1 $13, $f6 \n\t" ++ ++ "pavgb $f6, $f6, $f2 \n\t" ++ ++ "uld $12, ($11) \n\t" ++ "dmtc1 $12, $f2 \n\t" ++ ++ "pasubub $f16, $f6, $f2 \n\t" ++ "biadd $f6, $f16 \n\t" ++ ++ "paddh $f0, $f0, $f6 \n\t" ++ "paddh $f12, $f12, $f0 \n\t" ++ ++ "bltz $8, 1b \n\t" ++ "add $8, $8, %4 \n\t" ++ : "+r" (len) ++ : "r" (blk1a - len), "r" (blk1b -len), "r" (blk2 - len), "r" ((long)stride) ++ : "$8", "$9", "$10", "$11", "$12", "$13", "$f0", "$f2", "$f4", "$f6", "$f10", "$f16" ++ ); ++} ++ ++static inline void sad8_4_loongson2(uint8_t *blk1, uint8_t *blk2, int stride, int h) ++{ ++ long len= -(stride*h); ++ __asm__ volatile( ++ ++ ++// ".set mips3 \n\t" ++ ".align 4 \n\t" ++ ++ "ldc1 $f10, "MANGLE(bone)" \n\t" ++ ++ "move $8, %0 \n\t" ++ ++ "1: \n\t" ++ "add $9, $8, %1 \n\t" ++ "add $10, $8, %2 \n\t" ++ "add $11, $8, %3 \n\t" ++ ++ "uld $12, ($9) \n\t" ++ "dmtc1 $12, $f0 \n\t" ++ ++ "uld $13, ($10) \n\t" ++ "dmtc1 $13, $f4 \n\t" ++ ++ "uld $12, 1($9) \n\t" ++ "dmtc1 $12, $f2 \n\t" ++ ++ "uld $13, 1($10) \n\t" ++ "dmtc1 $13, $f6 \n\t" ++ ++ "pavgb $f0, $f0, $f4 \n\t" ++ "pavgb $f6, $f6, $f2 \n\t" ++ ++ "psubusb $f6, $f6, $f10 \n\t" ++ "pavgb $f0, $f0, $f6 \n\t" ++ ++ "uld $13, 1($11) \n\t" ++ "dmtc1 $13, $f4 \n\t" ++ ++ "pasubub $f16, $f0, $f4 \n\t" ++ "biadd $f0, $f16 \n\t" ++ ++ "add $8, $8, %4 \n\t" ++ ++ "add $9, $8, %1 \n\t" ++ "add $10, $8, %2 \n\t" ++ "add $11, $8, %3 \n\t" ++ ++ "uld $12, ($9) \n\t" ++ "dmtc1 $12, $f2 \n\t" ++ "uld $13, ($10) \n\t" ++ "dmtc1 $12, $f6 \n\t" ++ "uld $12, 1($9) \n\t" ++ "dmtc1 $12, $f4 \n\t" ++ "uld $13, 1($10) \n\t" ++ "dmtc1 $12, $f8 \n\t" ++ ++ "pavgb $f2, $f2, $f6 \n\t" ++ "pavgb $f4, $f4, $f8 \n\t" ++ ++ "psubusb $f4, $f4, $f10 \n\t" ++ "pavgb $f4, $f4, $f2 \n\t" ++ ++ "uld $13, ($11) \n\t" ++ "dmtc1 $13, $f2 \n\t" ++ ++ "pasubub $f18, $f4, $f2 \n\t" ++ "biadd $f4, $f18 \n\t" ++ ++ "paddh $f0, $f0, $f4 \n\t" ++ "paddh $f12, $f12, $f0 \n\t" ++ ++ "bltz $8, 1b \n\t" ++ "add $8, $8, %4 \n\t" ++ : "+r" (len) ++ : "r" (blk1 - len), "r" (blk1 - len + stride), "r" (blk2 - len), "r" ((long)stride) ++ : "$8", "$9", "$10", "$11", "$12", "$13", "$f0", "$f2", "$f4", "$f6", "$f8", "$f10", "$f16", "$f18" ++ ); ++} ++ ++static inline int sum_loongson2(void) ++{ ++ int ret; ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ ++ "dmfc1 %0, $f12 \n\t" ++ : "=r" (ret) ++ ); ++ return ret; ++} ++ ++ ++static int sad8_loongson2(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h) ++{ ++ assert(h==8); ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ "xor $f14, $f14, $f14 \n\t" ++ "xor $f12, $f12, $f12 \n\t" ++ : ++ ); ++ ++ sad8_1_loongson2(blk1, blk2, stride, 8); ++ ++ return sum_loongson2(); ++} ++ ++static int sad8_x2_loongson2(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h) ++{ ++ assert(h==8); ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ "xor $f14, $f14, $f14 \n\t" ++ "xor $f12, $f12, $f12 \n\t" ++ ++ "ldc1 $f10, %0 \n\t" ++ :: "m"(round_tab[1]) ++ ); ++ ++ sad8_2_loongson2(blk1, blk1+1, blk2, stride, 8); ++ ++ return sum_loongson2(); ++} ++ ++static int sad8_y2_loongson2(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h) ++{ ++ assert(h==8); ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ "xor $f14, $f14, $f14 \n\t" ++ "xor $f12, $f12, $f12 \n\t" ++ ++ "ldc1 $f10, %0 \n\t" ++ :: "m"(round_tab[1]) ++ ); ++ ++ sad8_2_loongson2(blk1, blk1+stride, blk2, stride, 8); ++ ++ return sum_loongson2(); ++} ++ ++static int sad8_xy2_loongson2(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h) ++{ ++ assert(h==8); ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ "xor $f14, $f14, $f14 \n\t" ++ "xor $f12, $f12, $f12 \n\t" ++ "ldc1 $f10, %0 \n\t" ++ :: "m"(round_tab[2]) ++ ); ++ ++ sad8_4_loongson2(blk1, blk2, stride, 8); ++ ++ return sum_loongson2(); ++} ++ ++static int sad16_loongson2(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h) ++{ ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ "xor $f14, $f14, $f14 \n\t" ++ "xor $f12, $f12, $f12 \n\t":); ++ ++ sad8_1_loongson2(blk1 , blk2 , stride, h); ++ sad8_1_loongson2(blk1+8, blk2+8, stride, h); ++ ++ return sum_loongson2(); ++} ++ ++static int sad16_x2_loongson2(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h) ++{ ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ "xor $f14, $f14, $f14 \n\t" ++ "xor $f12, $f12, $f12 \n\t" ++ "ldc1 $f10, %0 \n\t" ++ :: "m"(round_tab[1]) ++ ); ++ ++ sad8_2_loongson2(blk1 , blk1+1, blk2 , stride, h); ++ sad8_2_loongson2(blk1+8, blk1+9, blk2+8, stride, h); ++ ++ return sum_loongson2(); ++} ++ ++static int sad16_y2_loongson2(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h) ++{ ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ "xor $f14, $f14, $f14 \n\t" ++ "xor $f12, $f12, $f12 \n\t" ++ "ldc1 $f10, %0 \n\t" ++ :: "m"(round_tab[1]) ++ ); ++ ++ sad8_2_loongson2(blk1 , blk1+stride, blk2 , stride, h); ++ sad8_2_loongson2(blk1+8, blk1+stride+8,blk2+8, stride, h); ++ ++ return sum_loongson2(); ++} ++ ++static int sad16_xy2_loongson2(void *v, uint8_t *blk2, uint8_t *blk1, int stride, int h) ++{ ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ "xor $f14, $f14, $f14 \n\t" ++ "xor $f12, $f12, $f12 \n\t" ++ "ldc1 $f10, %0 \n\t" ++ :: "m"(round_tab[2]) ++ ); ++ ++ sad8_4_loongson2(blk1 , blk2 , stride, h); ++ sad8_4_loongson2(blk1+8, blk2+8, stride, h); ++ ++ return sum_loongson2(); ++} ++ ++ ++void dsputil_init_pix_loongson2(DSPContext* c, AVCodecContext *avctx) ++{ ++ c->pix_abs[0][0] = sad16_loongson2; ++ c->pix_abs[0][1] = sad16_x2_loongson2; ++ c->pix_abs[0][2] = sad16_y2_loongson2; ++ c->pix_abs[0][3] = sad16_xy2_loongson2; ++ c->pix_abs[1][0] = sad8_loongson2; ++ c->pix_abs[1][1] = sad8_x2_loongson2; ++ c->pix_abs[1][2] = sad8_y2_loongson2; ++ c->pix_abs[1][3] = sad8_xy2_loongson2; ++ ++ c->sad[0]= sad16_loongson2; ++ c->sad[1]= sad8_loongson2; ++} +diff --git a/libavcodec/loongson2/mpegvideo_loongson2.c b/libavcodec/loongson2/mpegvideo_loongson2.c +new file mode 100644 +index 0000000..18d070a +--- /dev/null ++++ b/libavcodec/loongson2/mpegvideo_loongson2.c +@@ -0,0 +1,385 @@ ++/* ++ * The simplest mpeg encoder (well, it was the simplest!) ++ * Copyright (c) 2007-2010 comcat <jiankemeng@gmail.com>. ++ * ++ * Optimized for Loongson2 CPUs by comcat <jiankemeng@gmail.com> ++ * ++ * Based on i386 ++ */ ++ ++#include "dsputil_loongson2.h" ++#include "../mpegvideo.h" ++#include "../avcodec.h" ++ ++extern uint8_t zigzag_direct_noperm[64]; ++extern uint16_t inv_zigzag_direct16[64]; ++ ++static const unsigned long long int mm_wabs __attribute__ ((aligned(8))) = 0xffffffffffffffffULL; ++static const unsigned long long int mm_wone __attribute__ ((aligned(8))) = 0x0001000100010001ULL; ++ ++ ++static void dct_unquantize_h263_intra_loongson2(MpegEncContext *s, ++ DCTELEM *block, int n, int qscale) ++{ ++ long level, qmul, qadd, nCoeffs; ++ ++ qmul = qscale << 1; ++ ++ assert(s->block_last_index[n]>=0 || s->h263_aic); ++ if (!s->h263_aic) { ++ if (n < 4) ++ level = block[0] * s->y_dc_scale; ++ else ++ level = block[0] * s->c_dc_scale; ++ qadd = (qscale - 1) | 1; ++ }else{ ++ qadd = 0; ++ level= block[0]; ++ } ++ if(s->ac_pred) ++ nCoeffs=63; ++ else ++ nCoeffs= s->inter_scantable.raster_end[ s->block_last_index[n] ]; ++ ++ ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ ++ "xor $f12, $f12, $f12 \n\t" ++ "lwc1 $f12, %1 \n\t" ++ ++ "xor $f10, $f10, $f10 \n\t" ++ ++ "packsswh $f12, $f12, $f12 \n\t" ++ ++ "lwc1 $f10, %2 \n\t" ++ ++ "packsswh $f10, $f10, $f10 \n\t" ++ ++ "packsswh $f12, $f12, $f12 \n\t" ++ ++ "xor $f14, $f14, $f14 \n\t" ++ ++ "packsswh $f10, $f10, $f10 \n\t" ++ ++ "xor $f8, $f8, $f8 \n\t" ++ ++ "psubh $f14, $f14, $f10 \n\t" ++ ++ ++ "1: \n\t" ++ "add $12, %0, %3 \n\t" ++ ++ "ldc1 $f0, ($12) \n\t" ++ ++ "ldc1 $f2, 8($12) \n\t" ++ ++ "mov.d $f4, $f0 \n\t" ++ "mov.d $f6, $f2 \n\t" ++ ++ "pmullh $f0, $f0, $f12 \n\t" ++ "pmullh $f2, $f2, $f12 \n\t" ++ ++ "pcmpgth $f4, $f4, $f8 \n\t" ++ "pcmpgth $f6, $f6, $f8 \n\t" ++ ++ "xor $f0, $f0, $f4 \n\t" ++ "xor $f2, $f2, $f6 \n\t" ++ ++ ++ "paddh $f0, $f0, $f14 \n\t" ++ ++ "paddh $f2, $f2, $f14 \n\t" ++ ++ ++ "xor $f4, $f4, $f0 \n\t" ++ ++ "xor $f6, $f6, $f2 \n\t" ++ ++ ++ "pcmpeqh $f0, $f0, $f14 \n\t" ++ ++ "pcmpeqh $f2, $f2, $f14 \n\t" ++ ++ ++ "pandn $f0, $f0, $f4 \n\t" ++ ++ "pandn $f2, $f2, $f6 \n\t" ++ ++ ++ "sdc1 $f0, ($12) \n\t" ++ ++ "sdc1 $f2, 8($12) \n\t" ++ ++ ++ "addiu %3, %3, 16 \n\t" ++ ++ "blez %3, 1b \n\t" ++ "nop \n\t" ++ ::"r" (block+nCoeffs), "m"(qmul), "m" (qadd), "r" (2*(-nCoeffs)) ++ : "memory" ++ ); ++ block[0]= level; ++} ++ ++ ++static void dct_unquantize_h263_inter_loongson2(MpegEncContext *s, ++ DCTELEM *block, int n, int qscale) ++{ ++ long qmul, qadd, nCoeffs; ++ ++ qmul = qscale << 1; ++ qadd = (qscale - 1) | 1; ++ ++ assert(s->block_last_index[n]>=0 || s->h263_aic); ++ ++ nCoeffs= s->inter_scantable.raster_end[ s->block_last_index[n] ]; ++ ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ ++ "xor $f12, $f12, $f12 \n\t" ++ "lwc1 $f12, %1 \n\t" ++ ++ "xor $f10, $f10, $f10 \n\t" ++ ++ "packsswh $f12, $f12, $f12 \n\t" ++ ++ "lwc1 $f10, %2 \n\t" ++ ++ "packsswh $f10, $f10, $f10 \n\t" ++ ++ "xor $f14, $f14, $f14 \n\t" ++ ++ "packsswh $f12, $f12, $f12 \n\t" ++ ++ "packsswh $f10, $f10, $f10 \n\t" ++ ++ "xor $f8, $f8, $f8 \n\t" ++ ++ "psubh $f14, $f14, $f10 \n\t" ++ ++ ++ "1: \n\t" ++ "add $12, %0, %3 \n\t" ++ ++ "ldc1 $f0, ($12) \n\t" ++ ++ "ldc1 $f2, 8($12) \n\t" ++ ++ "mov.d $f4, $f0 \n\t" ++ "mov.d $f6, $f2 \n\t" ++ ++ "pmullh $f0, $f0, $f12 \n\t" ++ ++ "pmullh $f2, $f2, $f12 \n\t" ++ ++ "pcmpgth $f4, $f4, $f8 \n\t" ++ ++ "pcmpgth $f6, $f6, $f8 \n\t" ++ ++ "xor $f0, $f0, $f4 \n\t" ++ ++ "xor $f2, $f2, $f6 \n\t" ++ ++ "paddh $f0, $f0, $f14 \n\t" ++ ++ "paddh $f2, $f2, $f14 \n\t" ++ ++ "xor $f4, $f4, $f0 \n\t" ++ ++ "xor $f6, $f6, $f2 \n\t" ++ ++ "pcmpeqh $f0, $f0, $f14 \n\t" ++ ++ "pcmpeqh $f2, $f2, $f14 \n\t" ++ ++ "pandn $f0, $f0, $f4 \n\t" ++ ++ "pandn $f2, $f2, $f6 \n\t" ++ ++ "sdc1 $f0, ($12) \n\t" ++ ++ "sdc1 $f2, 8($12) \n\t" ++ ++ ++ "addiu %3, %3, 16 \n\t" ++ ++ "blez %3, 1b \n\t" ++ "nop \n\t" ++ ::"r" (block+nCoeffs), "m"(qmul), "m" (qadd), "r" (2*(-nCoeffs)) ++ : "memory" ++ ); ++} ++ ++ ++/* draw the edges of width 'w' of an image of size width, height ++ this mmx version can only handle w==8 || w==16 */ ++ ++static void draw_edges_loongson2(uint8_t *buf, int wrap, int width, int height, int w) ++{ ++ uint8_t *ptr, *last_line; ++ int i; ++ ++ last_line = buf + (height - 1) * wrap; ++ ++ ptr = buf; ++ if(w==8) ++ { ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ ++ "move $9, %0 \n\t" ++ ++ "1: \n\t" ++ ++ "xor $f0, $f0, $f0 \n\t" ++ "lwc1 $f0, ($9) \n\t" ++ ++ "punpcklbh $f0, $f0, $f0 \n\t" ++ ++ "add $12, $9, %2 \n\t" ++ ++ "punpcklhw $f0, $f0, $f0 \n\t" ++ ++ "punpcklwd $f0, $f0, $f0 \n\t" ++ ++ "ldc1 $f2, -8($12) \n\t" ++ ++ "sdc1 $f0, -8($9) \n\t" ++ ++ "punpckhbh $f2, $f2, $f2 \n\t" ++ ++ "add $9, $9, %1 \n\t" ++ ++ "punpckhhw $f2, $f2, $f2 \n\t" ++ ++ "sub $13, $9, %3 \n\t" ++ ++ "punpckhwd $f2, $f2, $f2 \n\t" ++ ++ "bltz $13, 1b \n\t" ++ ++ "sdc1 $f2, ($12) \n\t" ++ ++ : "+r" (ptr) ++ : "r" ((long)wrap), "r" ((long)width), "r" (ptr + wrap*height) ++ : "$9", "$13", "$12", "$f2", "$f0" ++ ); ++ } ++ else ++ { ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ ++ "move $8, %0 \n\t" ++ ++ "1: \n\t" ++ ++ "xor $f0, $f0, $f0 \n\t" ++ "lwc1 $f0, ($8) \n\t" ++ ++ "punpcklbh $f0, $f0, $f0 \n\t" ++ "punpcklhw $f0, $f0, $f0 \n\t" ++ "punpcklwd $f0, $f0, $f0 \n\t" ++ ++ "sdc1 $f0, -8($8) \n\t" ++ "sdc1 $f0, -16($8) \n\t" ++ ++ "add $15, $8, %2 \n\t" ++ "ldc1 $f2, -8($15) \n\t" ++ ++ "punpckhbh $f2, $f2, $f2 \n\t" ++ "punpckhhw $f2, $f2, $f2 \n\t" ++ "punpckhwd $f2, $f2, $f2 \n\t" ++ ++ "sdc1 $f2, ($15) \n\t" ++ "sdc1 $f2, 8($15) \n\t" ++ ++ "add $8, $8, %1 \n\t" ++ ++ "sub $16, $8, %3 \n\t" ++ "bltz $16, 1b \n\t" ++ "nop \n\t" ++ : "+r" (ptr) ++ : "r" ((long)wrap), "r" ((long)width), "r" (ptr + wrap*height) ++ : "$8", "$15", "$16", "$f0", "$f2" ++ ); ++ } ++ ++ for(i=0;i<w;i+=4) { ++ ++ ptr= buf - (i + 1) * wrap - w; ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ "move $8, %0 \n\t" ++ ++ "1: \n\t" ++ ++ "add $9, $8, %1 \n\t" ++ "ldc1 $f0, ($9) \n\t" ++ ++ "add $10, $8, %2 \n\t" ++ "add $11, $10, %2 \n\t" ++ "add $12, $8, %3 \n\t" ++ ++ "sdc1 $f0, ($8) \n\t" ++ "sdc1 $f0, ($10) \n\t" ++ "sdc1 $f0, ($11) \n\t" ++ "sdc1 $f0, ($12) \n\t" ++ ++ "addiu $8, $8, 8 \n\t" ++ ++ "sub $13, $8, %4 \n\t" ++ ++ "bltz $13, 1b \n\t" ++ "nop \n\t" ++ ++ : "+r" (ptr) ++ : "r" (((long)buf - (long)ptr - w)), "r" ((long)-wrap), "r" ((long)-wrap*3), "r" (*(ptr+width+2*w)) ++ : "$8", "$9", "$10", "$11", "$12", "$13", "$f0" ++ ); ++ ++ ptr= last_line + (i + 1) * wrap - w; ++ ++ __asm__ volatile( ++// ".set mips3 \n\t" ++ ++ "move $9, %0 \n\t" ++ ++ "1: \n\t" ++ ++ "add $10, $9, %1 \n\t" ++ "ldc1 $f0, ($10) \n\t" ++ ++ "add $11, $9, %2 \n\t" ++ "add $12, $11, %2 \n\t" ++ "add $13, $9, %3 \n\t" ++ ++ "sdc1 $f0, ($9) \n\t" ++ "sdc1 $f0, ($11) \n\t" ++ "sdc1 $f0, ($12) \n\t" ++ "sdc1 $f0, ($13) \n\t" ++ ++ "addiu $9, $9, 8 \n\t" ++ ++ "sub $14, $9, %4 \n\t" ++ ++ "bltz $14, 1b \n\t" ++ "nop \n\t" ++ : "+r" (ptr) ++ : "r" ((long)last_line - (long)ptr - w), "r" ((long)wrap), "r" ((long)wrap*3), "r" (ptr+width+2*w) ++ : "$9", "$10", "$11", "$12", "$13", "$14", "$f0" ++ ++ ); ++ } ++} ++ ++void MPV_common_init_loongson2(MpegEncContext *s) ++{ ++ s->dct_unquantize_h263_intra = dct_unquantize_h263_intra_loongson2; ++ s->dct_unquantize_h263_inter = dct_unquantize_h263_inter_loongson2; ++ ++// draw_edges = draw_edges_loongson2; ++ ++} +diff --git a/libavcodec/mips/Makefile b/libavcodec/mips/Makefile +index 3f4da68..73e4d56 100644 +--- a/libavcodec/mips/Makefile ++++ b/libavcodec/mips/Makefile +@@ -1,3 +1,9 @@ + OBJS-$(HAVE_MMI) += ps2/dsputil_mmi.o \ + ps2/idct_mmi.o \ + ps2/mpegvideo_mmi.o \ ++ ++OBJS-$(HAVE_LOONGSON2MMI) += loongson2/idct_loongson2.o \ ++ loongson2/dsputil_loongson2.o \ ++ loongson2/idct_loongson2_xvid.o \ ++ loongson2/mpegvideo_loongson2.o \ ++ loongson2/motion_est_loongson2.o +diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c +index b47ff9a..af92552 100644 +--- a/libavcodec/mpegvideo.c ++++ b/libavcodec/mpegvideo.c +@@ -176,6 +176,9 @@ av_cold int ff_dct_common_init(MpegEncContext *s) + #elif ARCH_BFIN + MPV_common_init_bfin(s); + #endif ++#ifdef HAVE_LOONGSON2MMI ++ MPV_common_init_loongson2(s); ++#endif + + /* load & permutate scantables + note: only wmv uses different ones +diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h +index 5302be9..8d09906 100644 +--- a/libavcodec/mpegvideo.h ++++ b/libavcodec/mpegvideo.h +@@ -689,6 +689,7 @@ int MPV_encode_picture(AVCodecContext *avctx, unsigned char *buf, int buf_size, + void MPV_common_init_mmx(MpegEncContext *s); + void MPV_common_init_axp(MpegEncContext *s); + void MPV_common_init_mlib(MpegEncContext *s); ++void MPV_common_init_loongson2(MpegEncContext *s); + void MPV_common_init_mmi(MpegEncContext *s); + void MPV_common_init_arm(MpegEncContext *s); + void MPV_common_init_altivec(MpegEncContext *s); +diff --git a/libavcodec/options.c b/libavcodec/options.c +index 7ca1062..c05b3f4 100644 +--- a/libavcodec/options.c.orig 2011-06-22 12:52:11.584428161 -0300 ++++ b/libavcodec/options.c 2011-06-22 12:52:25.003143367 -0300 +@@ -219,6 +219,8 @@ static const AVOption options[]={ + {"simple", NULL, 0, FF_OPT_TYPE_CONST, {.dbl = FF_IDCT_SIMPLE }, INT_MIN, INT_MAX, V|E|D, "idct"}, + {"simplemmx", NULL, 0, FF_OPT_TYPE_CONST, {.dbl = FF_IDCT_SIMPLEMMX }, INT_MIN, INT_MAX, V|E|D, "idct"}, + {"libmpeg2mmx", NULL, 0, FF_OPT_TYPE_CONST, {.dbl = FF_IDCT_LIBMPEG2MMX }, INT_MIN, INT_MAX, V|E|D, "idct"}, ++{"libmpeg2loongson2", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_LIBMPEG2LOONGSON2, INT_MIN, INT_MAX, V|E|D, "idct"}, ++{"xvidloongson2", NULL, 0, FF_OPT_TYPE_CONST, FF_IDCT_XVIDLOONGSON2, INT_MIN, INT_MAX, V|E|D, "idct"}, + {"ps2", NULL, 0, FF_OPT_TYPE_CONST, {.dbl = FF_IDCT_PS2 }, INT_MIN, INT_MAX, V|E|D, "idct"}, + {"mlib", NULL, 0, FF_OPT_TYPE_CONST, {.dbl = FF_IDCT_MLIB }, INT_MIN, INT_MAX, V|E|D, "idct"}, + {"arm", NULL, 0, FF_OPT_TYPE_CONST, {.dbl = FF_IDCT_ARM }, INT_MIN, INT_MAX, V|E|D, "idct"}, diff --git a/extra/ffmpegthumbnailer/PKGBUILD b/extra/ffmpegthumbnailer/PKGBUILD index 82a96c06a..dcf15c5e3 100644 --- a/extra/ffmpegthumbnailer/PKGBUILD +++ b/extra/ffmpegthumbnailer/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Lightweight video thumbnailer that can be used by file managers." url="http://code.google.com/p/ffmpegthumbnailer/" license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ffmpeg' 'libjpeg' 'libpng') optdepends=('gvfs: support for gio uris') source=(http://ffmpegthumbnailer.googlecode.com/files/$pkgname-$pkgver.tar.gz diff --git a/extra/fftw/PKGBUILD b/extra/fftw/PKGBUILD index 65087f373..d6d2555f2 100644 --- a/extra/fftw/PKGBUILD +++ b/extra/fftw/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fftw pkgver=3.3 pkgrel=1 pkgdesc="A library for computing the discrete Fourier transform (DFT)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.fftw.org/" depends=('glibc' 'bash') @@ -26,7 +26,8 @@ build() { cd ${srcdir}/${pkgname}-${pkgver} # use upstream default CFLAGS while keeping our -march/-mtune - CFLAGS+=" -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math" + [ "$CARCH" = "mips64el" ] || CFLAGS+=" -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math" + [ "$CARCH" = "mips64el" ] && CFLAGS+=" -O3 -fomit-frame-pointer -fstrict-aliasing -ffast-math" CONFIGURE="./configure F77=gfortran --prefix=/usr \ --enable-shared --enable-threads" diff --git a/extra/flac/PKGBUILD b/extra/flac/PKGBUILD index 56a7cedd2..85653bc9f 100644 --- a/extra/flac/PKGBUILD +++ b/extra/flac/PKGBUILD @@ -5,11 +5,13 @@ pkgbase=flac pkgname=('flac' 'flac-doc') pkgver=1.2.1 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://flac.sourceforge.net/" license=('BSD' 'GPL') depends=('libogg') makedepends=('nasm' 'xmms') +[ "$CARCH" = "mips64el" ] && \ +makedepends=('nasm') # xmms doesn't build on mips options=('!libtool' '!makeflags') source=(http://downloads.sf.net/sourceforge/${pkgbase}/${pkgbase}-${pkgver}.tar.gz flac-1.2.1-gcc-4.3-includes.patch) @@ -34,6 +36,8 @@ check() { package_flac() { pkgdesc="Free Lossless Audio Codec" optdepends=('xmms: for using the xmms plugin') +[ "$CARCH" = "mips64el" ] && \ + unset optdepends options=('!libtool' '!docs') cd "${srcdir}/${pkgbase}-${pkgver}" diff --git a/extra/fltk/PKGBUILD b/extra/fltk/PKGBUILD index 5c63fd095..a77c78bbf 100644 --- a/extra/fltk/PKGBUILD +++ b/extra/fltk/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=fltk pkgname=('fltk' 'fltk-docs' 'fltk-games') pkgver=1.3.0 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom:LGPL') url="http://www.fltk.org/" makedepends=('mesa' 'doxygen' 'libjpeg' 'libpng' 'libxft' 'libxinerama' \ diff --git a/extra/fluidsynth/PKGBUILD b/extra/fluidsynth/PKGBUILD index b54502a19..3b9d55016 100644 --- a/extra/fluidsynth/PKGBUILD +++ b/extra/fluidsynth/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fluidsynth pkgver=1.1.5 pkgrel=1 pkgdesc="A real-time software synthesizer based on the SoundFont 2 specifications" -arch=('i686' 'x86_64') +arch=(i686 x86_64 'mips64el') url="http://www.fluidsynth.org/" depends=('glib2' 'jack' 'dbus-core' 'libpulse') makedepends=('cmake' 'ladspa' 'doxygen') diff --git a/extra/fluxbox/PKGBUILD b/extra/fluxbox/PKGBUILD index 45db54acd..59b098efe 100644 --- a/extra/fluxbox/PKGBUILD +++ b/extra/fluxbox/PKGBUILD @@ -5,7 +5,7 @@ pkgname=fluxbox pkgver=1.3.2 pkgrel=1 pkgdesc="A lightweight and highly-configurable window manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.fluxbox.org" license=('MIT') depends=('libxft' 'libxpm' 'libxinerama' 'libxrandr' 'gcc-libs' 'imlib2' 'fribidi') diff --git a/extra/fluxter/PKGBUILD b/extra/fluxter/PKGBUILD index 723543918..705b34f5d 100644 --- a/extra/fluxter/PKGBUILD +++ b/extra/fluxter/PKGBUILD @@ -5,7 +5,7 @@ pkgname=fluxter pkgver=0.1.0 pkgrel=5 pkgdesc="A workspace pager for fluxbox" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://benedict.isomedia.com/homes/stevencooper/projects/fluxter.html" license=('GPL') depends=('gcc-libs' 'libx11') diff --git a/extra/folks/PKGBUILD b/extra/folks/PKGBUILD index 772eaf8e6..1b508835d 100644 --- a/extra/folks/PKGBUILD +++ b/extra/folks/PKGBUILD @@ -5,7 +5,7 @@ pkgname=folks pkgver=0.6.4.1 pkgrel=1 pkgdesc="Library to aggregates people into metacontacts" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://telepathy.freedesktop.org/wiki/Folks" license=('LGPL2.1') depends=('telepathy-glib' 'libgee' 'libxml2' 'evolution-data-server' 'libsocialweb') diff --git a/extra/fontconfig/PKGBUILD b/extra/fontconfig/PKGBUILD index 701f308a0..514fc8f9d 100644 --- a/extra/fontconfig/PKGBUILD +++ b/extra/fontconfig/PKGBUILD @@ -4,7 +4,7 @@ pkgname=fontconfig pkgver=2.8.0 pkgrel=1 pkgdesc="A library for configuring and customizing font access" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.fontconfig.org/release/" license=('custom') depends=('expat>=2.0.1' 'freetype2>=2.3.11') diff --git a/extra/fontforge/PKGBUILD b/extra/fontforge/PKGBUILD index a880f0dc7..55401aa90 100644 --- a/extra/fontforge/PKGBUILD +++ b/extra/fontforge/PKGBUILD @@ -7,7 +7,7 @@ pkgname=fontforge pkgver=20110222 pkgrel=2 pkgdesc='Outline and bitmap font editor' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://fontforge.sourceforge.net' license=('BSD') depends=('libxkbui' 'libxi' 'libxml2' 'pango' 'giflib' 'libtiff' 'python2') diff --git a/extra/foobillard++/PKGBUILD b/extra/foobillard++/PKGBUILD index bfc8d10b0..7e77ed5b8 100644 --- a/extra/foobillard++/PKGBUILD +++ b/extra/foobillard++/PKGBUILD @@ -5,7 +5,7 @@ pkgname=foobillard++ pkgver=3.41beta pkgrel=1 pkgdesc="An OpenGL billiard game" -arch=('i686' 'x86_64') +arch=(mips64el) url="http://foobillardplus.sourceforge.net/" license=('GPL2') depends=('bzip2' 'freetype2' 'libpng' 'mesa' 'sdl_net') diff --git a/extra/foomatic/PKGBUILD b/extra/foomatic/PKGBUILD index 7efaa8a18..5354a6c25 100644 --- a/extra/foomatic/PKGBUILD +++ b/extra/foomatic/PKGBUILD @@ -3,7 +3,7 @@ pkgbase="foomatic" pkgname=('foomatic-db' 'foomatic-filters' 'foomatic-db-engine' 'foomatic-db-nonfree') -arch=('i686' 'x86_64') # needs to be changed in the subpackages when makepkg will support it +arch=('i686' 'x86_64' 'mips64el') # needs to be changed in the subpackages when makepkg will support it _snapdate=20110707 _relver=4.0.7 pkgver=${_relver}_${_snapdate} diff --git a/extra/fortune-mod/PKGBUILD b/extra/fortune-mod/PKGBUILD index 9cc9b6ac7..a88f7bdb6 100644 --- a/extra/fortune-mod/PKGBUILD +++ b/extra/fortune-mod/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fortune-mod pkgver=1.99.1 pkgrel=5 pkgdesc="The Fortune Cookie Program from BSD games" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.redellipse.net/code/fortune" license=('BSD') depends=('recode') diff --git a/extra/fping/PKGBUILD b/extra/fping/PKGBUILD index e28a03f4c..74adb467b 100644 --- a/extra/fping/PKGBUILD +++ b/extra/fping/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fping pkgver=2.4b2 pkgrel=4 pkgdesc="A utility to ping multiple hosts at once" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.fping.com/" license=('custom') depends=('glibc') diff --git a/extra/freealut/PKGBUILD b/extra/freealut/PKGBUILD index ae34c1a82..01c3b1a78 100644 --- a/extra/freealut/PKGBUILD +++ b/extra/freealut/PKGBUILD @@ -6,7 +6,7 @@ pkgname=freealut pkgver=1.1.0 pkgrel=4 pkgdesc="OpenAL Utility Toolkit (ALUT)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.openal.org" license=("LGPL") depends=('openal') diff --git a/extra/freeciv/PKGBUILD b/extra/freeciv/PKGBUILD index d451e3146..97f181e2a 100644 --- a/extra/freeciv/PKGBUILD +++ b/extra/freeciv/PKGBUILD @@ -5,7 +5,7 @@ pkgname=freeciv pkgver=2.3.0 pkgrel=1 pkgdesc="A multiuser clone of the famous Microprose game of Civilization" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.freeciv.org/" license=('GPL') depends=('gtk2' 'sdl_mixer' 'bzip2' 'hicolor-icon-theme') diff --git a/extra/freeglut/PKGBUILD b/extra/freeglut/PKGBUILD index ac748f8ee..92859e9f9 100644 --- a/extra/freeglut/PKGBUILD +++ b/extra/freeglut/PKGBUILD @@ -6,7 +6,7 @@ pkgname=freeglut pkgver=2.6.0 pkgrel=1 pkgdesc="Provides functionality for small OpenGL programs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freeglut.sourceforge.net/" license=('MIT') depends=('libxxf86vm' 'mesa' 'libxi') diff --git a/extra/freenx/PKGBUILD b/extra/freenx/PKGBUILD index 3fc10e827..c55c55f31 100644 --- a/extra/freenx/PKGBUILD +++ b/extra/freenx/PKGBUILD @@ -5,7 +5,7 @@ pkgname=freenx pkgver=0.7.3 pkgrel=10 pkgdesc="Free Software (GPL) Implementation of the NX Server" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://freenx.berlios.de" license=('GPL') depends=('nxserver' 'gnu-netcat' 'inetutils' 'openssh' 'expect' 'xorg-xauth' 'xorg-fonts-misc' 'coreutils' 'xorg-xmessage' 'xorg-xrdb' 'xorg-xpr' 'xorg-xset' 'xorg-sessreg') diff --git a/extra/freetds/PKGBUILD b/extra/freetds/PKGBUILD index 1b8b9050d..360dcb568 100644 --- a/extra/freetds/PKGBUILD +++ b/extra/freetds/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.91 pkgrel=1 pkgdesc='Library for accessing Sybase and MS SQL Server databases' url='http://www.freetds.org' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('unixodbc') options=('!libtool') diff --git a/extra/freetype2/PKGBUILD b/extra/freetype2/PKGBUILD index c7094a53a..e08d033e3 100644 --- a/extra/freetype2/PKGBUILD +++ b/extra/freetype2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=freetype2 pkgver=2.4.7 pkgrel=1 pkgdesc="TrueType font rendering library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://freetype.sourceforge.net" depends=('zlib') diff --git a/extra/fribidi/PKGBUILD b/extra/fribidi/PKGBUILD index 55cebf720..e1c1d636b 100644 --- a/extra/fribidi/PKGBUILD +++ b/extra/fribidi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fribidi pkgver=0.19.2 pkgrel=2 pkgdesc="A Free Implementation of the Unicode Bidirectional Algorithm" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://fribidi.org" depends=('glibc') diff --git a/extra/frozen-bubble/PKGBUILD b/extra/frozen-bubble/PKGBUILD index fb21cbd21..c3ce7383a 100644 --- a/extra/frozen-bubble/PKGBUILD +++ b/extra/frozen-bubble/PKGBUILD @@ -8,7 +8,7 @@ _pkgver=2.2.1-beta1 pkgver=${_pkgver/-/} pkgrel=3 pkgdesc="A game in which you throw colorful bubbles and build groups to destroy the bubbles" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.frozen-bubble.org" license=(GPL2) depends=(perl-sdl perl-ipc-system-simple perl-compress-bzip2 perl-file-which) diff --git a/extra/fsarchiver/PKGBUILD b/extra/fsarchiver/PKGBUILD index 306172fac..25317e58e 100644 --- a/extra/fsarchiver/PKGBUILD +++ b/extra/fsarchiver/PKGBUILD @@ -7,7 +7,7 @@ pkgname=fsarchiver pkgver=0.6.12 pkgrel=1 pkgdesc="A safe and flexible file-system backup and deployment tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.fsarchiver.org/" license=('GPL') depends=('bzip2' 'e2fsprogs' 'lzo2' 'xz' 'libgcrypt') diff --git a/extra/fssos-nsvs/PKGBUILD b/extra/fssos-nsvs/PKGBUILD index 16e8be8cc..02bae5641 100644 --- a/extra/fssos-nsvs/PKGBUILD +++ b/extra/fssos-nsvs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=fssos-nsvs pkgver=0.5 pkgrel=7 pkgdesc="NSVS for FSSOS" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://fssos.sourceforge.net/" license=('GPL') depends=('bash' 'mysql>=5.5') diff --git a/extra/ftgl/PKGBUILD b/extra/ftgl/PKGBUILD index b284d4289..7a4bd3c85 100644 --- a/extra/ftgl/PKGBUILD +++ b/extra/ftgl/PKGBUILD @@ -8,7 +8,7 @@ _pkgver=2.1.3-rc5 pkgver=${_pkgver/-/} pkgrel=2 pkgdesc="OpenGL library to use arbitrary fonts" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://ftgl.wiki.sourceforge.net/" license=(MIT) depends=(freetype2 glut) diff --git a/extra/ftjam/PKGBUILD b/extra/ftjam/PKGBUILD index 42726f3cb..cc37b7383 100644 --- a/extra/ftjam/PKGBUILD +++ b/extra/ftjam/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ftjam pkgver=2.5.3rc2 pkgrel=3 pkgdesc='FT Jam - an enhanced version of the Jam build tool' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freetype.org/jam/" license=('custom') depends=('glibc') diff --git a/extra/fuse/PKGBUILD b/extra/fuse/PKGBUILD index 1dfd3e069..92d96cdf0 100644 --- a/extra/fuse/PKGBUILD +++ b/extra/fuse/PKGBUILD @@ -6,7 +6,7 @@ pkgname=fuse pkgver=2.8.6 pkgrel=1 pkgdesc="A library that makes it possible to implement a filesystem in a userspace program." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://fuse.sourceforge.net/" license="GPL2" depends=('glibc') diff --git a/extra/fvwm/PKGBUILD b/extra/fvwm/PKGBUILD index 867680ccb..d45e204f3 100644 --- a/extra/fvwm/PKGBUILD +++ b/extra/fvwm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=fvwm pkgver=2.6.3 pkgrel=1 pkgdesc="A multiple large virtual desktop window manager originally derived from twm" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.fvwm.org" license=('GPL' 'custom') depends=('imlib' 'fribidi' 'perl' 'libstroke' 'libxpm' 'librsvg' 'libxinerama' 'libxcursor') diff --git a/extra/fwbuilder/PKGBUILD b/extra/fwbuilder/PKGBUILD index 63370145d..384b1b6df 100644 --- a/extra/fwbuilder/PKGBUILD +++ b/extra/fwbuilder/PKGBUILD @@ -7,7 +7,7 @@ pkgver=5.0.0.3568 pkgrel=2 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/extra/fyre/PKGBUILD b/extra/fyre/PKGBUILD index a34415046..c9bd6dbaf 100644 --- a/extra/fyre/PKGBUILD +++ b/extra/fyre/PKGBUILD @@ -5,7 +5,7 @@ pkgname=fyre pkgver=1.0.1 pkgrel=4 pkgdesc="Rendering of the Peter de Jong map" -arch=('i686' 'x86_64') +arch=("i686" "x86_64" 'mips64el') url="http://fyre.navi.cx/" license=('GPL') depends=('openexr' 'libglade' 'gnet' 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils') diff --git a/extra/gamin/PKGBUILD b/extra/gamin/PKGBUILD index 4978855d6..b811faa3a 100644 --- a/extra/gamin/PKGBUILD +++ b/extra/gamin/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=5 pkgdesc='File and directory monitoring system defined to be a subset of the FAM (File Alteration Monitor).' url='http://www.gnome.org/~veillard/gamin' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glib2') makedepends=('python2') options=('libtool') diff --git a/extra/garcon/PKGBUILD b/extra/garcon/PKGBUILD index 00c56c1d3..59cdd6952 100644 --- a/extra/garcon/PKGBUILD +++ b/extra/garcon/PKGBUILD @@ -6,7 +6,7 @@ pkgname=garcon pkgver=0.1.9 pkgrel=1 pkgdesc="implementation of the freedesktop.org menu specification" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://wiki.xfce.org/dev/garcon" groups=('xfce4') diff --git a/extra/gc/PKGBUILD b/extra/gc/PKGBUILD index 16f608ea1..f54416b69 100644 --- a/extra/gc/PKGBUILD +++ b/extra/gc/PKGBUILD @@ -2,19 +2,21 @@ # Maintainer: Daniel Isenmann <daniel [at] archlinux.org> # Contributor: dorphell <dorphell@gmx.net> pkgname=gc -pkgver=7.1 -pkgrel=3 +pkgver=7.2alpha6 +pkgrel=1 pkgdesc="A garbage collector for C and C++" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.hpl.hp.com/personal/Hans_Boehm/gc/" license=('GPL') source=(http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/${pkgname}-${pkgver}.tar.gz) depends=('gcc-libs') options=(!libtool) -md5sums=('2ff9924c7249ef7f736ecfe6f08f3f9b') +md5sums=('319d0b18cc4eb735c8038ece9df055e4') build() { cd "${srcdir}/${pkgname}-${pkgver}" + # Installing a single file twice fails. + sed -ri 's/(am__append_6 =) .*$/\1/' Makefile.in ./configure --prefix=/usr --enable-cplusplus make make DESTDIR="${pkgdir}" install diff --git a/extra/gcalctool/PKGBUILD b/extra/gcalctool/PKGBUILD index 20dc1db3d..0a3431588 100644 --- a/extra/gcalctool/PKGBUILD +++ b/extra/gcalctool/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gcalctool pkgver=6.2.0 pkgrel=1 pkgdesc="GNOME Scientific calculator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gtk3' 'dconf') makedepends=('intltool' 'gnome-doc-utils') diff --git a/extra/gcin/PKGBUILD b/extra/gcin/PKGBUILD index 65c57d064..c1d48b9b3 100644 --- a/extra/gcin/PKGBUILD +++ b/extra/gcin/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gcin pkgver=1.7.0 pkgrel=1 pkgdesc='Input method server supporting various input methods' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url='http://hyperrate.com/dir.php?eid=67' depends=('gtk2' 'libxtst') diff --git a/extra/gconf-editor/PKGBUILD b/extra/gconf-editor/PKGBUILD index d6fb91c69..d47432967 100644 --- a/extra/gconf-editor/PKGBUILD +++ b/extra/gconf-editor/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gconf-editor pkgver=3.0.0 pkgrel=1 pkgdesc="Graphical gconf registry editor" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('gconf' 'hicolor-icon-theme') makedepends=('pkgconfig' 'intltool' 'gnome-doc-utils') diff --git a/extra/gconf-perl/PKGBUILD b/extra/gconf-perl/PKGBUILD index e4f58af63..0091031e6 100644 --- a/extra/gconf-perl/PKGBUILD +++ b/extra/gconf-perl/PKGBUILD @@ -6,7 +6,7 @@ _realname=Gnome2-GConf pkgver=1.044 pkgrel=5 pkgdesc="Gnome2-GConf perl bindings for gconf" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://gtk2-perl.sourceforge.net/" makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends') diff --git a/extra/gconf/PKGBUILD b/extra/gconf/PKGBUILD index b44c806e1..adacd8433 100644 --- a/extra/gconf/PKGBUILD +++ b/extra/gconf/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gconf pkgver=3.2.3 pkgrel=1 pkgdesc="A configuration database system" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('libxml2' 'polkit' 'libldap' 'dbus-glib' 'gtk3') makedepends=('intltool' 'gtk-doc' 'gobject-introspection') diff --git a/extra/gconfmm/PKGBUILD b/extra/gconfmm/PKGBUILD index d151b32d1..9e9238284 100644 --- a/extra/gconfmm/PKGBUILD +++ b/extra/gconfmm/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=gconfmm pkgname=('gconfmm' 'gconfmm-docs') pkgver=2.28.2 pkgrel=1 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') makedepends=('pkgconfig' 'gtkmm>=2.20.3' 'glibmm-docs' 'gconf>=2.28.1' 'glibmm>=2.24.2') options=('!libtool') diff --git a/extra/gd/PKGBUILD b/extra/gd/PKGBUILD index 29eeed43a..101641945 100644 --- a/extra/gd/PKGBUILD +++ b/extra/gd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gd pkgver=2.0.36RC1 pkgrel=4 pkgdesc="Library for the dynamic creation of images by programmers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.libgd.org/" license=('custom') depends=('perl' 'libpng' 'fontconfig' 'libjpeg') diff --git a/extra/gdb/PKGBUILD b/extra/gdb/PKGBUILD index 1e54dc324..13c0207d5 100644 --- a/extra/gdb/PKGBUILD +++ b/extra/gdb/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gdb pkgver=7.3.1 pkgrel=1 pkgdesc="The GNU Debugger" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/gdb/" license=('GPL3') depends=('ncurses' 'expat' 'python2') diff --git a/extra/gdk-pixbuf2/PKGBUILD b/extra/gdk-pixbuf2/PKGBUILD index 4e225659c..4aacf4e32 100644 --- a/extra/gdk-pixbuf2/PKGBUILD +++ b/extra/gdk-pixbuf2/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gdk-pixbuf2 pkgver=2.24.0 pkgrel=1 pkgdesc="An image loading library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gtk.org/" license=('GPL2') depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11') diff --git a/extra/gdl/PKGBUILD b/extra/gdl/PKGBUILD index fe83158e8..df31e3cfa 100644 --- a/extra/gdl/PKGBUILD +++ b/extra/gdl/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gdl pkgver=3.2.0 pkgrel=1 pkgdesc="GNOME Docking Library" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL') url="http://www.gnome.org/" depends=('gtk3') diff --git a/extra/gdm/PKGBUILD b/extra/gdm/PKGBUILD index 038f85375..72a36a17e 100644 --- a/extra/gdm/PKGBUILD +++ b/extra/gdm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gdm pkgver=3.2.1.1 pkgrel=1 pkgdesc="Gnome Display Manager (a reimplementation of xdm)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnome.org" backup=('etc/pam.d/gdm-autologin' 'etc/pam.d/gdm-fingerprint' 'etc/pam.d/gdm' 'etc/pam.d/gdm-password' diff --git a/extra/gdome2/PKGBUILD b/extra/gdome2/PKGBUILD index d9511dc1b..c6e1eb377 100644 --- a/extra/gdome2/PKGBUILD +++ b/extra/gdome2/PKGBUILD @@ -4,10 +4,10 @@ pkgname=gdome2 pkgver=0.8.1 -pkgrel=3 +pkgrel=3.1 pkgdesc="Gnome DOM Engine" url="http://gdome2.cs.unibo.it/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('libxml2' 'glib2') options=(!libtool) @@ -16,10 +16,21 @@ md5sums=('bfc114e59eec50cbda8e4ece751ff022') build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --mandir=/usr/share/man + if [ "$CARCH" = mips64el ]; then + CFLAGS="$CFLAGS -fpic" + CXXFLAGS="$CXXFLAGS -fpic" + fi + ./configure --prefix=/usr --mandir=/usr/share/man \ + --host=${CARCH} --disable-static make } +check() { + cd "${srcdir}/${pkgname}-${pkgver}" + make check +} + + package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install diff --git a/extra/gecko-sharp-2.0/PKGBUILD b/extra/gecko-sharp-2.0/PKGBUILD index a6b0033a1..87cc99e47 100644 --- a/extra/gecko-sharp-2.0/PKGBUILD +++ b/extra/gecko-sharp-2.0/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gecko-sharp-2.0 pkgver=0.13 pkgrel=4 pkgdesc="C# bindings for gtkmozembed" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL' 'MPL') url="http://www.mono-project.com/" depends=('xulrunner' 'gtk-sharp-2') diff --git a/extra/gedit/PKGBUILD b/extra/gedit/PKGBUILD index 6fe09697b..69af3bf6f 100644 --- a/extra/gedit/PKGBUILD +++ b/extra/gedit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gedit pkgver=3.2.2 pkgrel=1 pkgdesc="A text editor for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gtksourceview3' 'gsettings-desktop-schemas' 'libpeas' 'enchant' 'iso-codes' 'libsm' 'desktop-file-utils' 'python2-gobject' 'dconf') makedepends=('gnome-doc-utils' 'intltool') diff --git a/extra/geeqie/PKGBUILD b/extra/geeqie/PKGBUILD index ce3605cdb..1b30d10e4 100644 --- a/extra/geeqie/PKGBUILD +++ b/extra/geeqie/PKGBUILD @@ -6,7 +6,7 @@ pkgname=geeqie pkgver=1.0 pkgrel=6 pkgdesc="A lightweight image browser and viewer (fork of GQview)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://geeqie.sourceforge.net/" license=('GPL3') depends=('exiv2' 'gtk2' 'lcms' 'desktop-file-utils') diff --git a/extra/gegl/PKGBUILD b/extra/gegl/PKGBUILD index 4a018da9c..2d99183f7 100644 --- a/extra/gegl/PKGBUILD +++ b/extra/gegl/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gegl pkgver=0.1.6 pkgrel=1 pkgdesc="Graph based image processing framework" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gegl.org/" license=('GPL3' 'LGPL3') depends=('babl' 'libpng' 'libjpeg' 'gtk2') diff --git a/extra/genius/PKGBUILD b/extra/genius/PKGBUILD index fa26e76ad..0eb84efd5 100644 --- a/extra/genius/PKGBUILD +++ b/extra/genius/PKGBUILD @@ -6,7 +6,7 @@ pkgname=genius pkgver=1.0.14 pkgrel=1 pkgdesc="Advanced calculator including a mathematical programming language" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.jirka.org/genius.html" depends=('vte>=0.26.2' 'gtksourceview2>=2.10.5' 'mpfr>=3.0.0' 'desktop-file-utils' 'hicolor-icon-theme') diff --git a/extra/geoip/PKGBUILD b/extra/geoip/PKGBUILD index d969c256c..279078fe1 100644 --- a/extra/geoip/PKGBUILD +++ b/extra/geoip/PKGBUILD @@ -6,7 +6,7 @@ pkgname=geoip pkgver=1.4.8 pkgrel=1 pkgdesc="Non-DNS IP-to-country resolver C library & utils" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.maxmind.com/app/c" license=('GPL') depends=('zlib') diff --git a/extra/gettext-mono/PKGBUILD b/extra/gettext-mono/PKGBUILD index 4ecbe0a05..bb9490811 100644 --- a/extra/gettext-mono/PKGBUILD +++ b/extra/gettext-mono/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gettext-mono pkgver=0.17 pkgrel=4 pkgdesc="mono assemblies for GNU internationalization library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/gettext" license=('GPL3') depends=('mono>=1.9') diff --git a/extra/gftp/PKGBUILD b/extra/gftp/PKGBUILD index 4d4bdd661..bfd5fbe2b 100644 --- a/extra/gftp/PKGBUILD +++ b/extra/gftp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gftp pkgver=2.0.19 pkgrel=3 pkgdesc="A multithreaded ftp client for X Windows" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gtk2' 'openssl' 'readline') source=(http://www.gftp.org/$pkgname-$pkgver.tar.bz2) url="http://www.gftp.org/" diff --git a/extra/ggv/PKGBUILD b/extra/ggv/PKGBUILD index 76c346969..6a85287d8 100644 --- a/extra/ggv/PKGBUILD +++ b/extra/ggv/PKGBUILD @@ -4,7 +4,7 @@ pkgname=ggv pkgver=2.12.0 pkgrel=4 pkgdesc="Postscript viewer" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('libgnomeui' 'ghostscript' 'desktop-file-utils') makedepends=('intltool' 'gnome-doc-utils' 'pkgconfig' 'gnome-common') diff --git a/extra/ggz-client-libs/PKGBUILD b/extra/ggz-client-libs/PKGBUILD index 5c173cc62..530fa77bd 100644 --- a/extra/ggz-client-libs/PKGBUILD +++ b/extra/ggz-client-libs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ggz-client-libs pkgver=0.0.14.1 pkgrel=2 pkgdesc="GGZ client library, used by the GGZ Gaming Zone server (ggzd), the ggzcore library and other components" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ggzgamingzone.org/" license=('LGPL') depends=('libggz>=0.0.14.1' 'expat>=2.0.1') diff --git a/extra/ghc/PKGBUILD b/extra/ghc/PKGBUILD index 9fddba6ca..11a545a29 100644 --- a/extra/ghc/PKGBUILD +++ b/extra/ghc/PKGBUILD @@ -10,7 +10,7 @@ pkgname=ghc pkgver=7.0.3 pkgrel=2 pkgdesc="The Glasgow Haskell Compiler" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.haskell.org/ghc/" license=("custom") depends=('perl' 'gmp>=5.0' gcc) diff --git a/extra/ghex/PKGBUILD b/extra/ghex/PKGBUILD index b4a6c226e..dd4817556 100644 --- a/extra/ghex/PKGBUILD +++ b/extra/ghex/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ghex pkgver=3.0.0 pkgrel=1 pkgdesc="A simple binary editor for the Gnome desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://live.gnome.org/Ghex" depends=('gtk3' 'hicolor-icon-theme') diff --git a/extra/giblib/PKGBUILD b/extra/giblib/PKGBUILD index 7deebc84e..2d938de2e 100644 --- a/extra/giblib/PKGBUILD +++ b/extra/giblib/PKGBUILD @@ -6,7 +6,7 @@ pkgname=giblib pkgver=1.2.4 pkgrel=5 pkgdesc="A library that feh uses as a wrapper to imlib2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freshmeat.net/projects/giblib/" license=('MIT') depends=('imlib2' 'libxext' 'freetype2') diff --git a/extra/gif2png/PKGBUILD b/extra/gif2png/PKGBUILD index b2a2ecc36..762dd3419 100644 --- a/extra/gif2png/PKGBUILD +++ b/extra/gif2png/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gif2png pkgver=2.5.4 pkgrel=1 pkgdesc="A GIF to PNG image format converter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.catb.org/~esr/gif2png/" license=('ZLIB') depends=('libpng') diff --git a/extra/giflib/PKGBUILD b/extra/giflib/PKGBUILD index 86d445528..99b3f6fe6 100644 --- a/extra/giflib/PKGBUILD +++ b/extra/giflib/PKGBUILD @@ -9,7 +9,7 @@ pkgver=4.1.6 pkgrel=4 pkgdesc="A library for reading and writing gif images" url="http://sourceforge.net/projects/giflib/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('MIT') depends=('libx11') provides=("libungif=${pkgver}") diff --git a/extra/gifsicle/PKGBUILD b/extra/gifsicle/PKGBUILD index d4bbf366d..14306db02 100644 --- a/extra/gifsicle/PKGBUILD +++ b/extra/gifsicle/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gifsicle pkgver=1.61 pkgrel=1 pkgdesc="A powerful command-line program for creating, editing, manipulating and getting information about GIF images and animations" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lcdf.org/gifsicle/" license=('GPL') depends=('libx11') diff --git a/extra/gimp-dbp/PKGBUILD b/extra/gimp-dbp/PKGBUILD index f09db2f20..9a5ac4635 100644 --- a/extra/gimp-dbp/PKGBUILD +++ b/extra/gimp-dbp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gimp-dbp pkgver=1.1.9 pkgrel=2 pkgdesc="David's batch processor for the GIMP" -arch=('i686' 'x86_64') +arch=(i686 x86_64 'mips64el') url="http://members.ozemail.com.au/~hodsond/dbp.html" license=('GPL') depends=('gimp') diff --git a/extra/gimp-devel/PKGBUILD b/extra/gimp-devel/PKGBUILD index 7069a1ee7..2b80e462a 100644 --- a/extra/gimp-devel/PKGBUILD +++ b/extra/gimp-devel/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gimp-devel pkgver=2.7.3 pkgrel=2 pkgdesc="GNU Image Manipulation Program (Development Version)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gimp.org/" license=('GPL3' 'LGPL3') depends=('pygtk' 'lcms' 'libxpm' 'libwmf' 'librsvg' 'libmng' 'dbus-glib' \ diff --git a/extra/gimp-gap/PKGBUILD b/extra/gimp-gap/PKGBUILD index cb6c612e4..41f576c52 100644 --- a/extra/gimp-gap/PKGBUILD +++ b/extra/gimp-gap/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gimp-gap pkgver=2.6.0 pkgrel=3 pkgdesc="A Plug-In collection to edit and create animations for the Gimp" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gimp.org/downloads/" depends=('gimp' 'xvidcore' 'bash' 'libjpeg') diff --git a/extra/gimp-refocus/PKGBUILD b/extra/gimp-refocus/PKGBUILD index 5cc3b5703..ad1457deb 100644 --- a/extra/gimp-refocus/PKGBUILD +++ b/extra/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/extra/gimp-ufraw/PKGBUILD b/extra/gimp-ufraw/PKGBUILD index dcee11765..a9efc6192 100644 --- a/extra/gimp-ufraw/PKGBUILD +++ b/extra/gimp-ufraw/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.18 pkgrel=2 pkgdesc="Standalone or gimp plugin converter for raw files" url="http://ufraw.sourceforge.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gtkimageview' 'exiv2' 'lcms' 'bzip2' 'desktop-file-utils') makedepends=('gimp' 'cinepaint') diff --git a/extra/gimp/PKGBUILD b/extra/gimp/PKGBUILD index c083eb449..eb1b6fd3f 100644 --- a/extra/gimp/PKGBUILD +++ b/extra/gimp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gimp pkgver=2.6.11 pkgrel=7 pkgdesc="GNU Image Manipulation Program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gimp.org/" license=('GPL' 'LGPL') depends=('pygtk' 'lcms' 'libxpm' 'libwmf' 'libxmu' 'librsvg' 'libmng' 'dbus-glib' \ diff --git a/extra/git/PKGBUILD b/extra/git/PKGBUILD index bae96c4c7..108ed61d8 100644 --- a/extra/git/PKGBUILD +++ b/extra/git/PKGBUILD @@ -5,7 +5,7 @@ pkgname=git pkgver=1.7.7.2 pkgrel=1 pkgdesc="the fast distributed version control system" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://git-scm.com/" license=('GPL2') depends=('curl' 'expat>=2.0' 'perl-error' 'perl>=5.14.0' 'openssl' 'pcre') diff --git a/extra/gjs/PKGBUILD b/extra/gjs/PKGBUILD index 37ba73ba9..c262561c3 100644 --- a/extra/gjs/PKGBUILD +++ b/extra/gjs/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gjs pkgver=1.30.0 pkgrel=1 pkgdesc="Javascript Bindings for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/Gjs" license=('GPL') depends=('cairo' 'dbus-glib' 'gobject-introspection' 'js') diff --git a/extra/gksu/PKGBUILD b/extra/gksu/PKGBUILD index d48fdb3a7..95fa52151 100644 --- a/extra/gksu/PKGBUILD +++ b/extra/gksu/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gksu pkgver=2.0.2 pkgrel=3 pkgdesc="A graphical frontend for su" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nongnu.org/gksu/index.html" license=('GPL') depends=('libgksu>=2.0.12' 'xorg-xauth') diff --git a/extra/glade-perl/PKGBUILD b/extra/glade-perl/PKGBUILD index 96d77bced..4388acfec 100644 --- a/extra/glade-perl/PKGBUILD +++ b/extra/glade-perl/PKGBUILD @@ -6,7 +6,7 @@ _realname=Gtk2-GladeXML pkgver=1.007 pkgrel=4 pkgdesc="Gtk2-GladeXML perl bindings for glade 2.x" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://gtk2-perl.sourceforge.net/" makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends') diff --git a/extra/glade/PKGBUILD b/extra/glade/PKGBUILD index 39a5f92f2..0b90d2b4c 100644 --- a/extra/glade/PKGBUILD +++ b/extra/glade/PKGBUILD @@ -5,7 +5,7 @@ pkgname=glade pkgver=3.10.2 pkgrel=1 pkgdesc="User interface builder for GTK+ and GNOME." -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL' 'LGPL') depends=('gtk3' 'libxml2' 'desktop-file-utils' 'hicolor-icon-theme') makedepends=('intltool' 'python2' 'gtk-doc' 'gobject-introspection' 'python2-gobject2') diff --git a/extra/glew/PKGBUILD b/extra/glew/PKGBUILD index eb08d7441..51a9e9ea3 100644 --- a/extra/glew/PKGBUILD +++ b/extra/glew/PKGBUILD @@ -6,7 +6,7 @@ pkgname=glew pkgver=1.7.0 pkgrel=1 pkgdesc="The OpenGL Extension Wrangler Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://glew.sourceforge.net" license=('BSD' 'MIT' 'GPL') depends=('libxmu' 'libxi' 'mesa') diff --git a/extra/glhack/PKGBUILD b/extra/glhack/PKGBUILD index 5c073c3b0..914d30c34 100644 --- a/extra/glhack/PKGBUILD +++ b/extra/glhack/PKGBUILD @@ -5,7 +5,7 @@ pkgname=glhack pkgver=1.2 pkgrel=5 pkgdesc="A port of Nethack, a single player dungeon exploration game in 2D" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://glhack.sourceforge.net/" license=('custom') depends=('sdl' 'libpng' 'libgl') diff --git a/extra/glib-networking/PKGBUILD b/extra/glib-networking/PKGBUILD index ad979c58c..c09e20c45 100644 --- a/extra/glib-networking/PKGBUILD +++ b/extra/glib-networking/PKGBUILD @@ -5,7 +5,7 @@ pkgname=glib-networking pkgver=2.30.1 pkgrel=1 pkgdesc="Network-related giomodules for glib" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gtk.org/" license=('GPL2') depends=('glib2' 'libproxy' 'gnutls' 'libgcrypt' 'ca-certificates' 'gsettings-desktop-schemas') diff --git a/extra/glib-perl/PKGBUILD b/extra/glib-perl/PKGBUILD index 89610fe1e..afc112a00 100644 --- a/extra/glib-perl/PKGBUILD +++ b/extra/glib-perl/PKGBUILD @@ -7,7 +7,7 @@ _realname=Glib pkgver=1.223 pkgrel=3 pkgdesc="Perl wrappers for glib 2.x, including GObject" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://gtk2-perl.sourceforge.net/" options=('!emptydirs') diff --git a/extra/glib/PKGBUILD b/extra/glib/PKGBUILD index 480a521e2..1bb00ade4 100644 --- a/extra/glib/PKGBUILD +++ b/extra/glib/PKGBUILD @@ -5,7 +5,7 @@ pkgname=glib pkgver=1.2.10 pkgrel=9 pkgdesc="Common C routines used by Gtk+ and other libs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gtk.org/" license=('LGPL') depends=('glibc') diff --git a/extra/glibmm/PKGBUILD b/extra/glibmm/PKGBUILD index a6a64bcc5..f739422fc 100644 --- a/extra/glibmm/PKGBUILD +++ b/extra/glibmm/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=glibmm pkgname=('glibmm' 'glibmm-docs') pkgver=2.30.0 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') makedepends=('glib2' 'libsigc++2.0' 'pkgconfig') source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz) diff --git a/extra/glpk/PKGBUILD b/extra/glpk/PKGBUILD index 0ec9479fc..c7d7845c1 100644 --- a/extra/glpk/PKGBUILD +++ b/extra/glpk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=glpk pkgver=4.44 pkgrel=1 pkgdesc="GNU Linear Programming Kit : solve LP, MIP and other problems." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/glpk/glpk.html" license=('GPL') depends=('glibc') diff --git a/extra/glsof/PKGBUILD b/extra/glsof/PKGBUILD index 72ce404fc..f1845aafe 100644 --- a/extra/glsof/PKGBUILD +++ b/extra/glsof/PKGBUILD @@ -7,7 +7,7 @@ _fmver=1.5 _qver=1.0.0 pkgrel=1 pkgdesc="Two separate GUI utilities (Queries and Filemonitor) to the lsof command line utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://glsof.sourceforge.net/" license=('GPL3') depends=('sh' 'java-runtime' 'lsof') diff --git a/extra/gluezilla/PKGBUILD b/extra/gluezilla/PKGBUILD index 224068bd6..f59c0421e 100644 --- a/extra/gluezilla/PKGBUILD +++ b/extra/gluezilla/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gluezilla pkgver=2.6 pkgrel=3 pkgdesc="Web browser implementation (Gecko) for Mono, the free .NET runtime" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL2' 'MPL') url="http://www.mono-project.com/" depends=('mono' 'xulrunner>=2.0') diff --git a/extra/gmetadom/PKGBUILD b/extra/gmetadom/PKGBUILD index d23208e45..34618a3ed 100644 --- a/extra/gmetadom/PKGBUILD +++ b/extra/gmetadom/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gmetadom pkgver=0.2.6 pkgrel=3 pkgdesc="C++ bindings for GDome2 DOM implementation" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gmetadom.sourceforge.net/" license=('LGPL') depends=('gdome2') diff --git a/extra/gmime/PKGBUILD b/extra/gmime/PKGBUILD index 7f55fc500..f9adaf9c3 100644 --- a/extra/gmime/PKGBUILD +++ b/extra/gmime/PKGBUILD @@ -6,11 +6,13 @@ pkgname=gmime pkgver=2.4.26 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') makedepends=('gtk-sharp-2' 'pkgconfig') +[ "$CARCH" = "mips64el" ] && \ +makedepends=('pkgconfig') options=('!libtool') source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz) sha256sums=('bad2c9ceb36a685a8f31eccf047be9d761da781c777c7657b093f9ff0bba401f') diff --git a/extra/gmpc/PKGBUILD b/extra/gmpc/PKGBUILD index 1cae5f2db..aab6f690a 100644 --- a/extra/gmpc/PKGBUILD +++ b/extra/gmpc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gmpc pkgver=11.8.16 pkgrel=1 pkgdesc="A GTK2 client for MPD" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gmpclient.org/home" license=('GPL') depends=('libunique' 'libmpd' 'libsoup' 'sqlite3' 'hicolor-icon-theme' 'xdg-utils') diff --git a/extra/gnet/PKGBUILD b/extra/gnet/PKGBUILD index 60b952e00..74f641527 100644 --- a/extra/gnet/PKGBUILD +++ b/extra/gnet/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnet pkgver=2.0.8 pkgrel=2 pkgdesc="A simple network library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/GNetLibrary" license=('LGPL') depends=('glib2') diff --git a/extra/gnokii/PKGBUILD b/extra/gnokii/PKGBUILD index 036522ede..cce1c878e 100644 --- a/extra/gnokii/PKGBUILD +++ b/extra/gnokii/PKGBUILD @@ -8,7 +8,7 @@ pkgname=gnokii pkgver=0.6.30 pkgrel=2 pkgdesc="Tools and user space driver for use with mobile phones" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnokii.org/" license=('GPL') depends=('libusb-compat' 'libxpm' 'bluez' 'libical') diff --git a/extra/gnome-alsamixer/PKGBUILD b/extra/gnome-alsamixer/PKGBUILD index 84698b9c1..272287501 100644 --- a/extra/gnome-alsamixer/PKGBUILD +++ b/extra/gnome-alsamixer/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-alsamixer pkgver=0.9.6 pkgrel=4 pkgdesc="Gnome ALSA mixer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/gnome-alsamixer" license=('GPL') depends=('libgnomeui') diff --git a/extra/gnome-applets/PKGBUILD b/extra/gnome-applets/PKGBUILD index bb3ad8083..87dca22fc 100644 --- a/extra/gnome-applets/PKGBUILD +++ b/extra/gnome-applets/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-applets pkgver=3.2.1 pkgrel=1 pkgdesc="GNOME Applets" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('gnome-panel' 'libgtop' 'gucharmap' 'libnotify' 'cpufrequtils') makedepends=('gnome-doc-utils' 'intltool' 'gnome-settings-daemon' 'networkmanager' 'gnome-common') diff --git a/extra/gnome-bluetooth/PKGBUILD b/extra/gnome-bluetooth/PKGBUILD index 514f4088c..e4c84cba3 100644 --- a/extra/gnome-bluetooth/PKGBUILD +++ b/extra/gnome-bluetooth/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gnome-bluetooth pkgver=3.2.1 pkgrel=1 pkgdesc="The GNOME Bluetooth Subsystem" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/GnomeBluetooth" license=('GPL' 'LGPL') depends=('gtk3' 'hicolor-icon-theme' 'gvfs-obexftp' 'obexd-client' 'dconf') diff --git a/extra/gnome-color-manager/PKGBUILD b/extra/gnome-color-manager/PKGBUILD index 77be710c3..887d73675 100644 --- a/extra/gnome-color-manager/PKGBUILD +++ b/extra/gnome-color-manager/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-color-manager pkgver=3.2.1 pkgrel=1 pkgdesc="Color profile manager for the GNOME desktop" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://projects.gnome.org/gnome-color-manager/" license=(GPL2) depends=('libcanberra' 'vte3' 'exiv2' 'hicolor-icon-theme' 'desktop-file-utils' 'clutter-gtk' 'mash') diff --git a/extra/gnome-control-center/PKGBUILD b/extra/gnome-control-center/PKGBUILD index 659bc103c..991bc2a65 100644 --- a/extra/gnome-control-center/PKGBUILD +++ b/extra/gnome-control-center/PKGBUILD @@ -5,9 +5,9 @@ pkgname=gnome-control-center pkgver=3.2.1 pkgrel=1 pkgdesc="The Control Center for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gtk3' 'gsettings-desktop-schemas' 'gnome-menus' 'gnome-desktop' 'gnome-settings-daemon' 'upower' 'libgtop' 'cups-pk-helper' 'accountsservice' 'sound-theme-freedesktop' 'gnome-online-accounts' 'network-manager-applet') -optdepends=('mesa-demos: provides glxinfo for graphics information' +optdepends=('mesa-demos-libre: provides glxinfo for graphics information' 'apg: adds password generation for user accounts' 'gnome-color-manager: for color management tasks') makedepends=('gnome-doc-utils' 'intltool') diff --git a/extra/gnome-desktop-sharp/PKGBUILD b/extra/gnome-desktop-sharp/PKGBUILD index 34681fe3f..b9cf05068 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' 'gnome-print-sharp' 'gtkhtml-sharp' 'gtksourceview2-sharp' 'rsvg2-sharp' 'vte-sharp' 'wnck-sharp') pkgver=2.26.0 pkgrel=7 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=(LGPL) url="http://gtk-sharp.sourceforge.net" makedepends=('gnome-sharp' 'gnome-desktop2' 'vte' 'librsvg' 'libgnomeprintui' 'libwnck' 'gtkhtml' 'gtksourceview2' 'monodoc') diff --git a/extra/gnome-desktop/PKGBUILD b/extra/gnome-desktop/PKGBUILD index b9e302837..1faf9806b 100644 --- a/extra/gnome-desktop/PKGBUILD +++ b/extra/gnome-desktop/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-desktop pkgver=3.2.1 pkgrel=1 pkgdesc="Library with common API for various GNOME modules" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL') depends=('gsettings-desktop-schemas' 'startup-notification' 'gtk3') makedepends=('gnome-doc-utils' 'intltool' 'gobject-introspection') diff --git a/extra/gnome-desktop2/PKGBUILD b/extra/gnome-desktop2/PKGBUILD index 3829d54f7..77b1a8972 100644 --- a/extra/gnome-desktop2/PKGBUILD +++ b/extra/gnome-desktop2/PKGBUILD @@ -7,7 +7,7 @@ pkgname=${_pkgname}2 pkgver=2.32.1 pkgrel=1 pkgdesc="The GNOME Desktop" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=(GPL LGPL) depends=(gconf gtk2 startup-notification) makedepends=(gnome-doc-utils intltool) diff --git a/extra/gnome-disk-utility/PKGBUILD b/extra/gnome-disk-utility/PKGBUILD index d9de3d900..a7eb125c8 100644 --- a/extra/gnome-disk-utility/PKGBUILD +++ b/extra/gnome-disk-utility/PKGBUILD @@ -7,7 +7,7 @@ pkgname=(gnome-disk-utility libgdu) pkgver=3.0.2 pkgrel=2 pkgdesc="GNOME libraries and applications for dealing with storage devices" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnome.org" makedepends=('dbus-glib' 'libgnome-keyring' 'udisks' 'libunique3' 'libnotify' 'avahi' diff --git a/extra/gnome-games/PKGBUILD b/extra/gnome-games/PKGBUILD index ddaf0d307..fb899dd13 100644 --- a/extra/gnome-games/PKGBUILD +++ b/extra/gnome-games/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-games pkgver=3.2.1 pkgrel=1 pkgdesc="Some Games for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libsm' 'gconf' 'desktop-file-utils' 'libcanberra' 'clutter-gtk' 'hicolor-icon-theme' 'librsvg' 'python2-gobject' 'dconf') makedepends=('gnome-doc-utils' 'intltool' 'gobject-introspection') diff --git a/extra/gnome-keyring-sharp/PKGBUILD b/extra/gnome-keyring-sharp/PKGBUILD index e8d024129..39807dce4 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=2 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=('ndesk-dbus>=0.4' 'libgnome-keyring') diff --git a/extra/gnome-keyring/PKGBUILD b/extra/gnome-keyring/PKGBUILD index 18e3d714e..fe639422f 100644 --- a/extra/gnome-keyring/PKGBUILD +++ b/extra/gnome-keyring/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-keyring pkgver=3.2.1 pkgrel=1 pkgdesc="GNOME Password Management daemon" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'LGPL') depends=('gtk3' 'dconf' 'libgcrypt' 'libcap-ng' 'p11-kit' 'desktop-file-utils' 'hicolor-icon-theme') makedepends=('intltool' 'python2') diff --git a/extra/gnome-media/PKGBUILD b/extra/gnome-media/PKGBUILD index 5697957f8..6d96303ff 100644 --- a/extra/gnome-media/PKGBUILD +++ b/extra/gnome-media/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-media pkgver=2.91.2 pkgrel=3 pkgdesc="GNOME Media Tools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libgnome-media-profiles' 'libcanberra' 'hicolor-icon-theme') makedepends=('intltool' 'pkgconfig' 'gnome-doc-utils') diff --git a/extra/gnome-menus/PKGBUILD b/extra/gnome-menus/PKGBUILD index 9589872bb..a136ea22c 100644 --- a/extra/gnome-menus/PKGBUILD +++ b/extra/gnome-menus/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-menus pkgver=3.2.0.1 pkgrel=1 pkgdesc="GNOME menu specifications" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glib2' 'python2') makedepends=('intltool' 'gobject-introspection') options=('!libtool') diff --git a/extra/gnome-nettool/PKGBUILD b/extra/gnome-nettool/PKGBUILD index d9b56afae..026215dfc 100644 --- a/extra/gnome-nettool/PKGBUILD +++ b/extra/gnome-nettool/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gnome-nettool pkgver=3.0.0 pkgrel=1 pkgdesc="A Collection of GNOME3 Networking Tools." -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL') depends=('gtk3' 'libgtop' 'dnsutils' 'netkit-bsd-finger' 'whois' 'hicolor-icon-theme') makedepends=('gnome-doc-utils' 'pkgconfig' 'intltool') diff --git a/extra/gnome-panel/PKGBUILD b/extra/gnome-panel/PKGBUILD index 61e38e405..d627522a0 100644 --- a/extra/gnome-panel/PKGBUILD +++ b/extra/gnome-panel/PKGBUILD @@ -4,7 +4,7 @@ pkgname=gnome-panel pkgver=3.2.1 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') pkgdesc="The GNOME Panel" url="http://www.gnome.org" diff --git a/extra/gnome-perl/PKGBUILD b/extra/gnome-perl/PKGBUILD index 81f68ee25..cf5d1a776 100644 --- a/extra/gnome-perl/PKGBUILD +++ b/extra/gnome-perl/PKGBUILD @@ -6,7 +6,7 @@ _realname=Gnome2 pkgver=1.042 pkgrel=6 pkgdesc="Perl bindings for libgnome" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://gtk2-perl.sourceforge.net/" makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends') diff --git a/extra/gnome-phone-manager/PKGBUILD b/extra/gnome-phone-manager/PKGBUILD index 4bce16951..6304baeba 100644 --- a/extra/gnome-phone-manager/PKGBUILD +++ b/extra/gnome-phone-manager/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-phone-manager pkgver=0.68 pkgrel=1 pkgdesc="Control your mobile phone from your GNOME desktop." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/PhoneManager" license=('GPL') depends=('evolution-data-server' 'gnokii' 'gnome-bluetooth' 'gnome-icon-theme' 'libcanberra') diff --git a/extra/gnome-pilot/PKGBUILD b/extra/gnome-pilot/PKGBUILD index 9a780339e..bd98ec59c 100644 --- a/extra/gnome-pilot/PKGBUILD +++ b/extra/gnome-pilot/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-pilot pkgver=2.91.93 pkgrel=1 pkgdesc="Pilot Support for Gnome" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('pilot-link' 'evolution-data-server') makedepends=('intltool' 'gob2' 'gnome-doc-utils' 'gnome-panel') diff --git a/extra/gnome-power-manager/PKGBUILD b/extra/gnome-power-manager/PKGBUILD index e69a65c27..0d91ed969 100644 --- a/extra/gnome-power-manager/PKGBUILD +++ b/extra/gnome-power-manager/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-power-manager pkgver=3.2.1 pkgrel=1 pkgdesc="Power management tools." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.gnome.org/projects/gnome-power-manager/" license=('GPL') depends=('gtk3' 'upower' 'dconf' 'hicolor-icon-theme') diff --git a/extra/gnome-python-desktop/PKGBUILD b/extra/gnome-python-desktop/PKGBUILD index d41108c0f..b426842f0 100644 --- a/extra/gnome-python-desktop/PKGBUILD +++ b/extra/gnome-python-desktop/PKGBUILD @@ -7,7 +7,7 @@ pkgbase=gnome-python-desktop pkgname=('gnome-python-desktop' 'python-evolution' 'python-gnomedesktop' 'python-gnomekeyring' 'python-gtop' 'python-metacity' 'python-rsvg' 'python-totem-plparser' 'python-wnck' 'python-gnomeprint') pkgver=2.32.0 pkgrel=8 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'LGPL') options=('!libtool') makedepends=('intltool' 'pkg-config' 'gnome-python' 'evolution-data-server' 'libgnomeprintui' 'libgtop' 'totem-plparser' 'gnome-desktop2' 'metacity' 'librsvg') diff --git a/extra/gnome-python-extras/PKGBUILD b/extra/gnome-python-extras/PKGBUILD index 18d6b3de3..19dbcdbb6 100644 --- a/extra/gnome-python-extras/PKGBUILD +++ b/extra/gnome-python-extras/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=gnome-python-extras pkgname=('gnome-python-extras' 'python2-egg' 'python2-gksu2' 'python2-gtkhtml2' 'python2-gtkspell') pkgver=2.25.3 pkgrel=11 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.daa.com.au/~james/pygtk/" license=('GPL' 'LGPL') makedepends=('libgtkhtml' 'gtkspell' 'libgksu' 'libgnomeui' 'python2' 'pygtk' 'gnome-python') diff --git a/extra/gnome-python/PKGBUILD b/extra/gnome-python/PKGBUILD index b7a0e897f..26966b96d 100644 --- a/extra/gnome-python/PKGBUILD +++ b/extra/gnome-python/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=gnome-python pkgname=('gnome-python' 'python2-bonobo' 'python2-gconf' 'python2-libgnome' 'python2-gnomecanvas' 'python2-gnomevfs') pkgver=2.28.1 pkgrel=7 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') makedepends=('pygtk' 'pyorbit' 'libgnomeui') options=('!libtool') diff --git a/extra/gnome-screensaver/PKGBUILD b/extra/gnome-screensaver/PKGBUILD index 872a3eb51..1672f4955 100644 --- a/extra/gnome-screensaver/PKGBUILD +++ b/extra/gnome-screensaver/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-screensaver pkgver=3.2.0 pkgrel=1 pkgdesc="Screensaver designed to integrate well with the GNOME desktop." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://live.gnome.org/GnomeScreensaver" backup=(etc/pam.d/gnome-screensaver) diff --git a/extra/gnome-session/PKGBUILD b/extra/gnome-session/PKGBUILD index 671597662..1e098f700 100644 --- a/extra/gnome-session/PKGBUILD +++ b/extra/gnome-session/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-session pkgver=3.2.1 pkgrel=1 pkgdesc="The GNOME Session Handler" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'LGPL') depends=('upower' 'gtk3' 'gconf' 'json-glib' 'startup-notification' 'hicolor-icon-theme' 'libxtst' 'polkit-gnome' 'libgl' 'gsettings-desktop-schemas' 'consolekit' 'libsm' 'dconf') makedepends=('intltool' 'mesa' 'xtrans') diff --git a/extra/gnome-settings-daemon/PKGBUILD b/extra/gnome-settings-daemon/PKGBUILD index c64de8104..377a7c9bb 100644 --- a/extra/gnome-settings-daemon/PKGBUILD +++ b/extra/gnome-settings-daemon/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-settings-daemon pkgver=3.2.1 pkgrel=2 pkgdesc="The GNOME Settings daemon" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libgnomekbd' 'gnome-desktop' 'libnotify' 'hicolor-icon-theme' 'libcanberra-pulse' 'gsettings-desktop-schemas' 'nss' 'gconf' 'dconf' 'pulseaudio' 'pulseaudio-alsa' 'upower') makedepends=('intltool' 'gtk-doc' 'gnome-desktop') diff --git a/extra/gnome-sharp/PKGBUILD b/extra/gnome-sharp/PKGBUILD index 276b77a73..c530818c4 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=1 -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/gnome-shell/PKGBUILD b/extra/gnome-shell/PKGBUILD index 11873ea92..3116f3315 100644 --- a/extra/gnome-shell/PKGBUILD +++ b/extra/gnome-shell/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gnome-shell pkgver=3.2.1 pkgrel=1 pkgdesc="The next generation GNOME Shell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/GnomeShell" license=('GPL2') depends=('mutter' 'gjs' 'libcroco' 'gnome-bluetooth' 'gnome-desktop' 'gnome-menus' 'libpulse' 'folks' 'telepathy-logger' 'networkmanager' 'caribou' 'nautilus' 'telepathy-mission-control') diff --git a/extra/gnome-speech/PKGBUILD b/extra/gnome-speech/PKGBUILD index 686de821f..ce1124fef 100644 --- a/extra/gnome-speech/PKGBUILD +++ b/extra/gnome-speech/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-speech pkgver=0.4.25 pkgrel=2 pkgdesc="Gnome Text-to-Speech" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://www.gnome.org" depends=('libbonobo') diff --git a/extra/gnome-system-monitor/PKGBUILD b/extra/gnome-system-monitor/PKGBUILD index 5ebfe3b3c..7f26b0a44 100644 --- a/extra/gnome-system-monitor/PKGBUILD +++ b/extra/gnome-system-monitor/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-system-monitor pkgver=3.2.1 pkgrel=1 pkgdesc="A system monitor for GNOME" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('libwnck3' 'libgtop' 'gtkmm3' 'librsvg' 'gnome-icon-theme') makedepends=('pkgconfig' 'gnome-doc-utils' 'intltool') diff --git a/extra/gnome-terminal/PKGBUILD b/extra/gnome-terminal/PKGBUILD index 484db511a..c4ee90d1c 100644 --- a/extra/gnome-terminal/PKGBUILD +++ b/extra/gnome-terminal/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-terminal pkgver=3.2.1 pkgrel=1 pkgdesc="The GNOME Terminal Emulator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gconf' 'vte3' 'gsettings-desktop-schemas' 'libsm') makedepends=('gnome-doc-utils' 'intltool' 'gtk2') diff --git a/extra/gnome-themes-standard/PKGBUILD b/extra/gnome-themes-standard/PKGBUILD index 1a34c44db..a6d46c6ab 100644 --- a/extra/gnome-themes-standard/PKGBUILD +++ b/extra/gnome-themes-standard/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-themes-standard pkgver=3.2.1 pkgrel=1 pkgdesc="Default themes for the GNOME desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://abattis.org/cantarell/" license=('GPL2') depends=('cantarell-fonts' 'gtk3' 'gtk-engines' 'librsvg') diff --git a/extra/gnome-user-share/PKGBUILD b/extra/gnome-user-share/PKGBUILD index 92baa37ad..f860a5fad 100644 --- a/extra/gnome-user-share/PKGBUILD +++ b/extra/gnome-user-share/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-user-share pkgver=3.0.1 pkgrel=1 pkgdesc="Easy to use user-level file sharing for GNOME." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ftp.gnome.org/pub/GNOME/sources/gnome-user-share/" license=('GPL') depends=('mod_dnssd' 'gconf' 'gtk3' 'hicolor-icon-theme' 'libnotify' 'gnome-bluetooth' 'libcanberra' 'libunique3') diff --git a/extra/gnome-utils/PKGBUILD b/extra/gnome-utils/PKGBUILD index 5017a7712..50c0ecbb1 100644 --- a/extra/gnome-utils/PKGBUILD +++ b/extra/gnome-utils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-utils pkgver=3.2.1 pkgrel=1 pkgdesc="Common GNOME utilities for viewing disk usage, logs and fonts, taking screenshots, managing dictionaries and searching files" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL') depends=('libgtop' 'libcanberra' 'libsm' 'gconf' 'gsettings-desktop-schemas' 'hicolor-icon-theme' 'desktop-file-utils' 'dconf') makedepends=('gnome-doc-utils' 'pkgconfig' 'intltool') diff --git a/extra/gnome-vfs-perl/PKGBUILD b/extra/gnome-vfs-perl/PKGBUILD index 3960f5285..885b50ad2 100644 --- a/extra/gnome-vfs-perl/PKGBUILD +++ b/extra/gnome-vfs-perl/PKGBUILD @@ -6,7 +6,7 @@ _realname=Gnome2-VFS pkgver=1.081 pkgrel=4 pkgdesc="Gnome2-VFS perl bindings for gnome-vfs" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://gtk2-perl.sourceforge.net/" makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends') diff --git a/extra/gnome-vfs/PKGBUILD b/extra/gnome-vfs/PKGBUILD index dae1cfeb1..5d67ca6f1 100644 --- a/extra/gnome-vfs/PKGBUILD +++ b/extra/gnome-vfs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gnome-vfs pkgver=2.24.4 pkgrel=6 pkgdesc="The GNOME Virtual File System" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('gconf' 'bzip2' 'avahi' 'smbclient' 'gnome-mime-data' 'krb5' 'gnutls' 'libgcrypt') makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gnome-common') diff --git a/extra/gnome-vfsmm/PKGBUILD b/extra/gnome-vfsmm/PKGBUILD index c79065313..1816b9be4 100644 --- a/extra/gnome-vfsmm/PKGBUILD +++ b/extra/gnome-vfsmm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gnome-vfsmm pkgver=2.26.0 pkgrel=2 pkgdesc="A C++ wrapper for gnome-vfs." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('gnome-vfs' 'glibmm') makedepends=('pkgconfig' 'doxygen') diff --git a/extra/gnomecanvas-perl/PKGBUILD b/extra/gnomecanvas-perl/PKGBUILD index 2563caae4..88516d278 100644 --- a/extra/gnomecanvas-perl/PKGBUILD +++ b/extra/gnomecanvas-perl/PKGBUILD @@ -6,7 +6,7 @@ _realname=Gnome2-Canvas pkgver=1.002 pkgrel=8 pkgdesc="Gnome2-Canvas perl bindings for libgnomecanvas" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://gtk2-perl.sourceforge.net/" makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends') diff --git a/extra/gnu-netcat/PKGBUILD b/extra/gnu-netcat/PKGBUILD index a436a9d72..c4f500162 100644 --- a/extra/gnu-netcat/PKGBUILD +++ b/extra/gnu-netcat/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.7.1 pkgrel=4 pkgdesc="GNU rewrite of netcat, the network piping application" depends=('glibc' 'texinfo') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://netcat.sourceforge.net/" license=('GPL') replaces=('netcat') diff --git a/extra/gnucash/PKGBUILD b/extra/gnucash/PKGBUILD index e77b1c3ba..37e19bfb2 100644 --- a/extra/gnucash/PKGBUILD +++ b/extra/gnucash/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gnucash pkgver=2.4.8 pkgrel=1 pkgdesc="A personal and small-business financial-accounting application" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnucash.org" license=("GPL") depends=('gtkhtml' 'slib' 'goffice' 'libgnomeui' 'libdbi-drivers' 'aqbanking' 'desktop-file-utils') diff --git a/extra/gnuchess/PKGBUILD b/extra/gnuchess/PKGBUILD index cf9545094..d98c53d73 100644 --- a/extra/gnuchess/PKGBUILD +++ b/extra/gnuchess/PKGBUILD @@ -7,7 +7,7 @@ pkgver=6.0.1 pkgrel=1 pkgdesc="Lets most modern computers play a full game of chess" url="http://www.gnu.org/software/chess/chess.html" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('glibc' 'ncurses' 'readline') source=(ftp://ftp.gnu.org/pub/gnu/chess/$pkgname-$pkgver.tar.gz) diff --git a/extra/gnugo/PKGBUILD b/extra/gnugo/PKGBUILD index 8d0c654ea..b90240431 100644 --- a/extra/gnugo/PKGBUILD +++ b/extra/gnugo/PKGBUILD @@ -8,7 +8,7 @@ pkgname=gnugo pkgver=3.8 pkgrel=2 pkgdesc="A program that plays the game of Go" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/gnugo/" license=('GPL3' 'custom') depends=('ncurses' 'glibc' 'texinfo') diff --git a/extra/gnumeric/PKGBUILD b/extra/gnumeric/PKGBUILD index 51531a917..e13e70e06 100644 --- a/extra/gnumeric/PKGBUILD +++ b/extra/gnumeric/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gnumeric pkgver=1.10.17 pkgrel=1 pkgdesc="A GNOME Spreadsheet Program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnome.org/projects/gnumeric/" license=('GPL') depends=('goffice' 'gconf' 'desktop-file-utils' 'hicolor-icon-theme') diff --git a/extra/gnupg/PKGBUILD b/extra/gnupg/PKGBUILD index 997075abb..43bb5d030 100644 --- a/extra/gnupg/PKGBUILD +++ b/extra/gnupg/PKGBUILD @@ -5,16 +5,19 @@ pkgname=gnupg pkgver=1.4.11 pkgrel=3 pkgdesc="GNU Privacy Guard - a PGP replacement tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') depends=('zlib' 'bzip2' 'libldap>=2.4.18' 'libusb-compat' 'curl>=7.16.2' 'readline>=6.0.00') -source=(ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/gnupg/$pkgname-$pkgver.tar.bz2) +source=(ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/gnupg/$pkgname-$pkgver.tar.bz2 + gnupg_1.4.11_mips_gcc4.4.patch) install=gnupg.install url="http://www.gnupg.org/" -md5sums=('411744e1ef8ce90b87938c4203f001f1') +md5sums=('411744e1ef8ce90b87938c4203f001f1' + '2d919d48c847e9856dabdbb66328f09a') build() { cd ${srcdir}/${pkgname}-${pkgver} + patch -Np1 -i ${srcdir}/gnupg_1.4.11_mips_gcc4.4.patch ./configure --prefix=/usr \ --libexecdir=/usr/lib \ --enable-noexecstack diff --git a/extra/gnupg/gnupg_1.4.11_mips_gcc4.4.patch b/extra/gnupg/gnupg_1.4.11_mips_gcc4.4.patch new file mode 100644 index 000000000..5fcbdc628 --- /dev/null +++ b/extra/gnupg/gnupg_1.4.11_mips_gcc4.4.patch @@ -0,0 +1,47 @@ +## mips_gcc4.4 by Werner Koch +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Build fails on mips(el) due to changes the removal +## DP: of the 'h' constraint for MIPS in gcc-4.4.x versions. +## DP: <URL:http://lists.gnupg.org/pipermail/gnupg-devel/2010-October/025805.html> + +diff -Nur gnupg-1.4.11.orig/mpi/longlong.h gnupg-1.4.11/mpi/longlong.h +--- gnupg-1.4.11.orig/mpi/longlong.h 2010-06-01 13:01:46.000000000 +0200 ++++ gnupg-1.4.11/mpi/longlong.h 2010-10-28 22:01:19.000000000 +0200 +@@ -710,12 +710,13 @@ + ************** MIPS ***************** + ***************************************/ + #if defined (__mips__) && W_TYPE_SIZE == 32 +-#if __GNUC__ > 4 || ( __GNUC__ == 4 && __GNUC_MINOR >= 4 ) +-#define umul_ppmm(w1, w0, u, v) \ ++#if (__GNUC__ >= 5) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4) ++#define umul_ppmm(w1, w0, u, v) \ + do { \ +- UDItype __ll = (UDItype)(u) * (v); \ +- w1 = __ll >> 32; \ +- w0 = __ll; \ ++ UDItype _r; \ ++ _r = (UDItype) u * v; \ ++ (w1) = _r >> 32; \ ++ (w0) = (USItype) _r; \ + } while (0) + #elif __GNUC__ > 2 || __GNUC_MINOR__ >= 7 + #define umul_ppmm(w1, w0, u, v) \ +@@ -742,7 +743,16 @@ + ************** MIPS/64 ************** + ***************************************/ + #if (defined (__mips) && __mips >= 3) && W_TYPE_SIZE == 64 +-#if __GNUC__ > 2 || __GNUC_MINOR__ >= 7 ++# if (__GNUC__ >= 5) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4) ++ typedef unsigned int UTItype __attribute__ ((mode (TI))); ++ # define umul_ppmm(w1, w0, u, v) \ ++ do { \ ++ UTItype _r; \ ++ _r = (UTItype) u * v; \ ++ (w1) = _r >> 64; \ ++ (w0) = (UDItype) _r; \ ++ } while (0) ++# elif if __GNUC__ > 2 || __GNUC_MINOR__ >= 7 + #define umul_ppmm(w1, w0, u, v) \ + __asm__ ("dmultu %2,%3" \ + : "=l" ((UDItype)(w0)), \ diff --git a/extra/gnupg2/PKGBUILD b/extra/gnupg2/PKGBUILD index f237df630..4ecc4aee3 100644 --- a/extra/gnupg2/PKGBUILD +++ b/extra/gnupg2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gnupg2 pkgver=2.0.18 pkgrel=1 pkgdesc="GNU Privacy Guard 2 - a PGP replacement tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libldap' 'curl' 'bzip2' 'zlib' 'libksba' 'libgcrypt' 'pth' 'libusb-compat' 'libassuan' 'texinfo' 'readline' 'pinentry' 'dirmngr') license=('GPL') diff --git a/extra/gnuplot/PKGBUILD b/extra/gnuplot/PKGBUILD index 1207d38a3..9f5b437c4 100644 --- a/extra/gnuplot/PKGBUILD +++ b/extra/gnuplot/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gnuplot pkgver=4.4.3 pkgrel=1 pkgdesc="Plotting package which outputs to X11, PostScript, PNG, GIF, and others" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnuplot.info" license=('custom') depends=('readline' 'gd' 'wxgtk' 'cairo' 'libjpeg' 'lua') diff --git a/extra/gnutls/PKGBUILD b/extra/gnutls/PKGBUILD index de47d7e4a..a78b96d08 100644 --- a/extra/gnutls/PKGBUILD +++ b/extra/gnutls/PKGBUILD @@ -5,13 +5,13 @@ pkgname=gnutls pkgver=3.0.5 pkgrel=1 pkgdesc="A library which provides a secure layer over a reliable transport layer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3' 'LGPL') url="http://www.gnu.org/software/gnutls/" install=gnutls.install options=('!libtool' '!zipman') depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle>=2.4' 'p11-kit') -makedepends=('valgrind') +[ "$CARCH" = "mips64el" ] || makedepends=('valgrind') source=(ftp://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz) md5sums=('c2d4e6344974545c228a1df2147bf334') diff --git a/extra/gob2/PKGBUILD b/extra/gob2/PKGBUILD index 72f0a35df..aedce43a2 100644 --- a/extra/gob2/PKGBUILD +++ b/extra/gob2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gob2 pkgver=2.0.17 pkgrel=1 pkgdesc="GTK Object Builder (GOB) is a simple preprocessor for easily creating GTK objects" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('glib2') url="http://www.5z.com/jirka/gob.html" diff --git a/extra/gobject-introspection/PKGBUILD b/extra/gobject-introspection/PKGBUILD index 7128afb90..739f42ca3 100644 --- a/extra/gobject-introspection/PKGBUILD +++ b/extra/gobject-introspection/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.30.0 pkgrel=1 pkgdesc="Introspection system for GObject-based libraries" url="http://live.gnome.org/GObjectInstrospection" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') license=('LGPL' 'GPL') depends=('glib2' 'python2') makedepends=('cairo') diff --git a/extra/goffice/PKGBUILD b/extra/goffice/PKGBUILD index a7a8f4fe9..07866eafe 100644 --- a/extra/goffice/PKGBUILD +++ b/extra/goffice/PKGBUILD @@ -5,7 +5,7 @@ pkgname=goffice pkgver=0.8.17 pkgrel=1 pkgdesc="A library of document-centric objects and utilities built on top of GLib and Gtk+" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnome.org" license=('GPL') options=('!libtool') diff --git a/extra/gpart/PKGBUILD b/extra/gpart/PKGBUILD index 8798449cd..312ef2953 100644 --- a/extra/gpart/PKGBUILD +++ b/extra/gpart/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gpart pkgver=0.1h pkgrel=4 pkgdesc="A program for recovering corrupt partition tables" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.stud.uni-hannover.de/user/76201/gpart/" license=('GPL') depends=('glibc') diff --git a/extra/gparted/PKGBUILD b/extra/gparted/PKGBUILD index 0fd13ed28..3109c2cc4 100644 --- a/extra/gparted/PKGBUILD +++ b/extra/gparted/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gparted pkgver=0.10.0 pkgrel=1 pkgdesc="A Partition Magic clone, frontend to GNU Parted" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gparted.sourceforge.net" license=('GPL') depends=('parted' 'gtkmm' 'libsigc++') diff --git a/extra/gperf/PKGBUILD b/extra/gperf/PKGBUILD index 7c3ec52bc..efc0ff0c6 100644 --- a/extra/gperf/PKGBUILD +++ b/extra/gperf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gperf pkgver=3.0.4 pkgrel=4 pkgdesc="Perfect hash function generator" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://www.gnu.org/software/gperf/" license=('GPL3') depends=('gcc-libs' 'texinfo') diff --git a/extra/gpgme/PKGBUILD b/extra/gpgme/PKGBUILD index 3593bb5e7..4b3767af5 100644 --- a/extra/gpgme/PKGBUILD +++ b/extra/gpgme/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gpgme pkgver=1.3.1 pkgrel=1 pkgdesc="A C wrapper library for GnuPG" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnupg.org/related_software/gpgme/" license=('GPL') depends=('libgpg-error' 'pth' 'gnupg' 'gnupg2') diff --git a/extra/gphoto2/PKGBUILD b/extra/gphoto2/PKGBUILD index 87e3e619f..88de2bc72 100644 --- a/extra/gphoto2/PKGBUILD +++ b/extra/gphoto2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gphoto2 pkgver=2.4.10 pkgrel=1 pkgdesc="A digital camera download and access program." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.gphoto.org" license=('GPL' 'LGPL') depends=('libgphoto2>=2.4.10' 'popt' 'aalib' 'readline>=6.1') diff --git a/extra/gpsd/PKGBUILD b/extra/gpsd/PKGBUILD index 1c9ae1425..6a15d34cf 100644 --- a/extra/gpsd/PKGBUILD +++ b/extra/gpsd/PKGBUILD @@ -8,7 +8,7 @@ pkgname=gpsd pkgver=3.3 pkgrel=1 pkgdesc="GPS daemon and library to support USB/serial GPS devices" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://catb.org/gpsd/" license=('BSD') depends=('python2' 'libusb' 'bluez' 'desktop-file-utils') diff --git a/extra/gptfdisk/PKGBUILD b/extra/gptfdisk/PKGBUILD index 7a5410ff0..c5de2f9fe 100644 --- a/extra/gptfdisk/PKGBUILD +++ b/extra/gptfdisk/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gptfdisk pkgver=0.8.1 pkgrel=1 pkgdesc="A text-mode partitioning tool that works on Globally Unique Identifier (GUID) Partition Table (GPT) disks" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.rodsbooks.com/gdisk/" license=('GPL2') depends=('gcc-libs' 'util-linux' 'popt' 'icu') diff --git a/extra/gqview/PKGBUILD b/extra/gqview/PKGBUILD index de023d067..d79f3ac79 100644 --- a/extra/gqview/PKGBUILD +++ b/extra/gqview/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gqview pkgver=2.0.4 pkgrel=4 pkgdesc="An image browser and viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gqview.sourceforge.net/" license=('GPL') depends=('gtk2' 'desktop-file-utils') diff --git a/extra/grantlee/PKGBUILD b/extra/grantlee/PKGBUILD index 5acc48479..c71f63ce3 100644 --- a/extra/grantlee/PKGBUILD +++ b/extra/grantlee/PKGBUILD @@ -6,7 +6,7 @@ pkgname=grantlee pkgver=0.2.0 pkgrel=1 pkgdesc="A string template engine based on the Django template system and written in Qt" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gitorious.org/grantlee/pages/Home" license=('LGPL3') depends=('qt') diff --git a/extra/graphicsmagick/PKGBUILD b/extra/graphicsmagick/PKGBUILD index 70b39d568..5a6aa519b 100644 --- a/extra/graphicsmagick/PKGBUILD +++ b/extra/graphicsmagick/PKGBUILD @@ -7,7 +7,7 @@ pkgname=graphicsmagick pkgver=1.3.12 pkgrel=2 pkgdesc="Image processing system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.graphicsmagick.org/" license=('MIT') makedepends=('perl') diff --git a/extra/graphite/PKGBUILD b/extra/graphite/PKGBUILD index 9442d5ee0..24954127d 100644 --- a/extra/graphite/PKGBUILD +++ b/extra/graphite/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=graphite pkgname=('libgraphite' 'pango-graphite') pkgver=2.3.1 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://graphite.sil.org/" makedepends=('pango' 'gcc-libs') options=('!libtool' '!emptydirs') diff --git a/extra/graphviz/PKGBUILD b/extra/graphviz/PKGBUILD index f1e8ba234..2af2c4c62 100644 --- a/extra/graphviz/PKGBUILD +++ b/extra/graphviz/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=4 pkgdesc='Graph visualization software' url='http://www.graphviz.org/' license=('custom:EPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gd' 'librsvg' 'libxaw' 'ghostscript' 'pango') makedepends=('swig' 'mono' 'guile' 'lua' 'ocaml' 'perl' 'php' 'python2' 'r' 'ruby' 'tk' 'qt') optdepends=('mono: sharp bindings' diff --git a/extra/grilo/PKGBUILD b/extra/grilo/PKGBUILD index 802a350ec..9d2d331f3 100644 --- a/extra/grilo/PKGBUILD +++ b/extra/grilo/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.1.17 pkgrel=2 pkgdesc="Framework that provides access to various sources of multimedia content" url="http://www.gnome.org" -arch=('i686' 'x86_64') +arch=(mips64el) license=('LGPL') depends=('gtk3' 'libxml2' 'libsoup') makedepends=('gobject-introspection' 'gtk-doc' 'vala') diff --git a/extra/grip/PKGBUILD b/extra/grip/PKGBUILD index 904ab4eda..d12cfc08c 100644 --- a/extra/grip/PKGBUILD +++ b/extra/grip/PKGBUILD @@ -6,7 +6,7 @@ pkgname=grip pkgver=3.3.1 pkgrel=9 pkgdesc="A cd-player and ripper for the Gnome desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://nostatic.org/grip/" depends=('vte' 'curl' 'libgnomeui' 'id3lib' 'cdparanoia') diff --git a/extra/gsf-sharp/PKGBUILD b/extra/gsf-sharp/PKGBUILD index c0857719e..feabbdea4 100644 --- a/extra/gsf-sharp/PKGBUILD +++ b/extra/gsf-sharp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gsf-sharp pkgver=0.8.1 pkgrel=3 pkgdesc="libgsf .NET binding" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://go-mono.org/" license=('LGPL2') depends=('libgsf>=1.14.1' 'gtk-sharp-2>=2.10') diff --git a/extra/gsl/PKGBUILD b/extra/gsl/PKGBUILD index eda29fb4c..228d50dd8 100644 --- a/extra/gsl/PKGBUILD +++ b/extra/gsl/PKGBUILD @@ -11,7 +11,7 @@ url="http://www.gnu.org/software/gsl/gsl.html" source=(http://ftp.belnet.be/mirror/ftp.gnu.org/gnu/gsl/$pkgname-$pkgver.tar.gz) install=gsl.install license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glibc' 'bash') options=('!libtool') sha1sums=('d914f84b39a5274b0a589d9b83a66f44cd17ca8e') diff --git a/extra/gsm/PKGBUILD b/extra/gsm/PKGBUILD index 647cd2778..b95d4f4e5 100644 --- a/extra/gsm/PKGBUILD +++ b/extra/gsm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gsm pkgver=1.0.13 pkgrel=6 pkgdesc="Shared libraries for GSM 06.10 lossy speech compression" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.quut.com/gsm/" license=('custom') depends=('glibc') diff --git a/extra/gssdp/PKGBUILD b/extra/gssdp/PKGBUILD index aa78f6b01..2ea27fe5a 100644 --- a/extra/gssdp/PKGBUILD +++ b/extra/gssdp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gssdp pkgver=0.12.0 pkgrel=1 pkgdesc="A GObject-based API for handling resource discovery and announcement over SSDP" -arch=('i686' 'x86_64') +arch=(mips64el) url="http://gupnp.org/" license=('LGPL') depends=('libsoup') diff --git a/extra/gstreamer0.10-base/PKGBUILD b/extra/gstreamer0.10-base/PKGBUILD index ad59c539c..d88467e7b 100644 --- a/extra/gstreamer0.10-base/PKGBUILD +++ b/extra/gstreamer0.10-base/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=('gstreamer0.10-base') pkgname=('gstreamer0.10-base' 'gstreamer0.10-base-plugins') pkgver=0.10.35 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') makedepends=('pkgconfig' 'gstreamer0.10>=0.10.35' 'orc' 'libxv' 'alsa-lib' 'cdparanoia' 'libvisual' 'libvorbis' 'libtheora' 'pango' 'gobject-introspection') options=(!libtool !emptydirs) diff --git a/extra/gstreamer0.10-ffmpeg/PKGBUILD b/extra/gstreamer0.10-ffmpeg/PKGBUILD index eed8e4f3d..a5f6db925 100644 --- a/extra/gstreamer0.10-ffmpeg/PKGBUILD +++ b/extra/gstreamer0.10-ffmpeg/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gstreamer0.10-ffmpeg pkgver=0.10.12 pkgrel=1 pkgdesc="Gstreamer FFMpeg Plugin" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gstreamer0.10-base' 'bzip2') makedepends=('pkgconfig' 'yasm' 'sdl') diff --git a/extra/gstreamer0.10-good/PKGBUILD b/extra/gstreamer0.10-good/PKGBUILD index cacb2e3b0..c24fdca2f 100644 --- a/extra/gstreamer0.10-good/PKGBUILD +++ b/extra/gstreamer0.10-good/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=gstreamer0.10-good pkgname=('gstreamer0.10-good' 'gstreamer0.10-good-plugins') pkgver=0.10.30 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') makedepends=('intltool' 'pkgconfig' 'gstreamer0.10-base>=0.10.34' 'libavc1394' 'libiec61883' 'aalib' 'libshout' 'libdv' 'flac' 'gconf' 'wavpack' 'taglib' 'libsoup-gnome' 'v4l-utils' 'libcaca' 'bzip2' 'gdk-pixbuf2' 'libpulse' 'jack' 'udev') url="http://gstreamer.freedesktop.org/" @@ -22,8 +22,8 @@ build() { --disable-schemas-install \ --disable-hal \ --disable-esd \ - --with-package-name="GStreamer Good Plugins (Archlinux)" \ - --with-package-origin="http://www.archlinux.org/" + --with-package-name="GStreamer Good Plugins (Parabola)" \ + --with-package-origin="https://parabolagnulinux.org/" make sed -e 's/gst sys ext/gst/' -i Makefile diff --git a/extra/gstreamer0.10-python/PKGBUILD b/extra/gstreamer0.10-python/PKGBUILD index a4e6c86ec..610483475 100644 --- a/extra/gstreamer0.10-python/PKGBUILD +++ b/extra/gstreamer0.10-python/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gstreamer0.10-python pkgver=0.10.21 pkgrel=1 pkgdesc="Python bindings for GStreamer 0.10" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://gstreamer.freedesktop.org/" depends=('pygobject>=2.20.0' 'gstreamer0.10-base>=0.10.32') diff --git a/extra/gstreamer0.10-ugly/PKGBUILD b/extra/gstreamer0.10-ugly/PKGBUILD index 368c429f3..0ddce1182 100644 --- a/extra/gstreamer0.10-ugly/PKGBUILD +++ b/extra/gstreamer0.10-ugly/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=gstreamer0.10-ugly pkgname=('gstreamer0.10-ugly' 'gstreamer0.10-ugly-plugins') pkgver=0.10.18 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') makedepends=('pkgconfig' 'gstreamer0.10-base>=0.10.34' 'libdvdread' 'lame' 'libmpeg2' 'a52dec' 'libid3tag' 'libmad' 'libsidplay' 'libcdio' 'x264' 'opencore-amr') url="http://gstreamer.freedesktop.org/" diff --git a/extra/gstreamer0.10/PKGBUILD b/extra/gstreamer0.10/PKGBUILD index bde26b026..e7498d2be 100644 --- a/extra/gstreamer0.10/PKGBUILD +++ b/extra/gstreamer0.10/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gstreamer0.10 pkgver=0.10.35 pkgrel=1 pkgdesc="GStreamer Multimedia Framework" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://gstreamer.freedesktop.org/" depends=('libxml2' 'glib2') diff --git a/extra/gthumb/PKGBUILD b/extra/gthumb/PKGBUILD index efdb1066c..ef7f376cc 100644 --- a/extra/gthumb/PKGBUILD +++ b/extra/gthumb/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gthumb pkgver=2.14.0 pkgrel=1 pkgdesc="Image browser and viewer for the GNOME Desktop" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://gthumb.sourceforge.net/" depends=('desktop-file-utils' 'libunique' 'gconf' 'exiv2' 'libsoup-gnome' 'clutter-gtk2') diff --git a/extra/gtk-engines/PKGBUILD b/extra/gtk-engines/PKGBUILD index d614c9def..d9b0c8f79 100644 --- a/extra/gtk-engines/PKGBUILD +++ b/extra/gtk-engines/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gtk-engines pkgver=2.20.2 pkgrel=1 pkgdesc="Theme engines for GTK+ 2" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'LGPL') depends=('gtk2>=2.22.0') makedepends=('pkgconfig' 'intltool') diff --git a/extra/gtk-qt-engine/PKGBUILD b/extra/gtk-qt-engine/PKGBUILD index 81cd26667..ab50578bf 100644 --- a/extra/gtk-qt-engine/PKGBUILD +++ b/extra/gtk-qt-engine/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtk-qt-engine pkgver=1.1 pkgrel=2 pkgdesc="A GTK engine which makes your GTK2 Apps match your QT theme" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://code.google.com/p/gtk-qt-engine/" depends=('libbonoboui' 'kdelibs') diff --git a/extra/gtk-sharp-2/PKGBUILD b/extra/gtk-sharp-2/PKGBUILD index 8b8e86e0b..46ccad415 100644 --- a/extra/gtk-sharp-2/PKGBUILD +++ b/extra/gtk-sharp-2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gtk-sharp-2 pkgver=2.12.10 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>=2.4' 'libglade>=2.6.4' 'gtk2>=2.18.0') diff --git a/extra/gtk-vnc/PKGBUILD b/extra/gtk-vnc/PKGBUILD index 5dc117c4f..0b322c6ba 100644 --- a/extra/gtk-vnc/PKGBUILD +++ b/extra/gtk-vnc/PKGBUILD @@ -8,7 +8,7 @@ pkgname=gtk-vnc pkgver=0.4.3 pkgrel=2 pkgdesc="A VNC viewer widget for GTK" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/gtk-vnc" license=('LGPL') depends=('gtk3') diff --git a/extra/gtk-xfce-engine/PKGBUILD b/extra/gtk-xfce-engine/PKGBUILD index 293f8604a..27566f053 100644 --- a/extra/gtk-xfce-engine/PKGBUILD +++ b/extra/gtk-xfce-engine/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtk-xfce-engine pkgver=2.9.0 pkgrel=1 pkgdesc="A port of Xfce engine to GTK+-2.0" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.xfce.org/" groups=('xfce4') diff --git a/extra/gtk/PKGBUILD b/extra/gtk/PKGBUILD index 30fc520a8..a2310f25f 100644 --- a/extra/gtk/PKGBUILD +++ b/extra/gtk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gtk pkgver=1.2.10 pkgrel=11 pkgdesc="The GTK+ toolkit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gtk.org/" license=('LGPL') depends=('libxi' 'glib' 'sh') diff --git a/extra/gtk2-perl/PKGBUILD b/extra/gtk2-perl/PKGBUILD index 215b21109..ba731572e 100644 --- a/extra/gtk2-perl/PKGBUILD +++ b/extra/gtk2-perl/PKGBUILD @@ -7,7 +7,7 @@ _realname=Gtk2 pkgver=1.222 pkgrel=3 pkgdesc="Gtk2-Perl allows Perl developers to write GTK+ 2.x applications." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://gtk2-perl.sourceforge.net/" makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends') diff --git a/extra/gtk2/PKGBUILD b/extra/gtk2/PKGBUILD index 676a570c2..198a7c697 100644 --- a/extra/gtk2/PKGBUILD +++ b/extra/gtk2/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=gtk2 pkgname=('gtk2' 'gtk-update-icon-cache') pkgver=2.24.7 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gtk.org/" makedepends=('atk' 'pango' 'libxcursor' 'libxinerama' 'libxrandr' 'libxi' 'libxcomposite' 'libxdamage' 'shared-mime-info' 'cairo' 'libcups' 'gdk-pixbuf2' 'gobject-introspection') diff --git a/extra/gtk3/PKGBUILD b/extra/gtk3/PKGBUILD index a2f2c6e70..dcea02a80 100644 --- a/extra/gtk3/PKGBUILD +++ b/extra/gtk3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gtk3 pkgver=3.2.1 pkgrel=1 pkgdesc="GTK+ is a multi-platform toolkit (v3)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gtk.org/" install=gtk3.install depends=('atk' 'cairo' 'gtk-update-icon-cache' 'libcups' 'libxcursor' 'libxinerama' 'libxrandr' 'libxi' 'libxcomposite' 'libxdamage' 'pango' 'shared-mime-info' 'colord') diff --git a/extra/gtkglext/PKGBUILD b/extra/gtkglext/PKGBUILD index 50170f6a3..25b17a369 100644 --- a/extra/gtkglext/PKGBUILD +++ b/extra/gtkglext/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtkglext pkgver=1.2.0 pkgrel=6 pkgdesc="opengl extensions for gtk2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gtkglext.sourceforge.net/" license=('LGPL') depends=('gtk2' 'mesa' 'libxmu') diff --git a/extra/gtkglextmm/PKGBUILD b/extra/gtkglextmm/PKGBUILD index 9265e60dc..c9da3eff1 100644 --- a/extra/gtkglextmm/PKGBUILD +++ b/extra/gtkglextmm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gtkglextmm pkgver=1.2.0 pkgrel=7 pkgdesc="Cpp C++ bindings for gtkglext" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gtkglext.sourceforge.net/" depends=('gtkmm' 'gtkglext') makedepends=('pkgconfig') diff --git a/extra/gtkhtml/PKGBUILD b/extra/gtkhtml/PKGBUILD index c92e9fcaf..9f55b0792 100644 --- a/extra/gtkhtml/PKGBUILD +++ b/extra/gtkhtml/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gtkhtml pkgver=3.32.2 pkgrel=2 pkgdesc="A lightweight HTML renderer/editor widget for GTK2" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('gconf' 'gtk2' 'gnome-icon-theme' 'enchant' 'iso-codes' 'libsoup') makedepends=('intltool') diff --git a/extra/gtkhtml4/PKGBUILD b/extra/gtkhtml4/PKGBUILD index 79f407a09..7ffd4199c 100644 --- a/extra/gtkhtml4/PKGBUILD +++ b/extra/gtkhtml4/PKGBUILD @@ -6,7 +6,7 @@ _pkgbasename=gtkhtml pkgver=4.2.1 pkgrel=1 pkgdesc="A lightweight HTML renderer/editor widget for GTK3" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('gtk3' 'enchant' 'iso-codes' 'gnome-icon-theme' 'libsoup') makedepends=('intltool') diff --git a/extra/gtkimageview/PKGBUILD b/extra/gtkimageview/PKGBUILD index 1b90282d8..fb26676a2 100644 --- a/extra/gtkimageview/PKGBUILD +++ b/extra/gtkimageview/PKGBUILD @@ -7,7 +7,7 @@ pkgname=gtkimageview pkgver=1.6.4 pkgrel=1 pkgdesc="Simple image viewer widget for GTK" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://trac.bjourne.webfactional.com/" license=('LGPL2.1') depends=('gtk2') diff --git a/extra/gtkmathview/PKGBUILD b/extra/gtkmathview/PKGBUILD index 4cad6bb07..dc75031e1 100644 --- a/extra/gtkmathview/PKGBUILD +++ b/extra/gtkmathview/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtkmathview pkgver=0.8.0 pkgrel=3 pkgdesc="C++ rendering engine for MathML documents" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://helm.cs.unibo.it/mml-widget/" license=('GPL') depends=('popt' 'gtk2' 't1lib' 'gmetadom') diff --git a/extra/gtkmm/PKGBUILD b/extra/gtkmm/PKGBUILD index 35801c5cc..00f5ccec6 100644 --- a/extra/gtkmm/PKGBUILD +++ b/extra/gtkmm/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=gtkmm pkgname=('gtkmm' 'gtkmm-docs') pkgver=2.24.2 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=('gtk2' 'pangomm' 'atkmm' 'glibmm-docs') license=('LGPL') options=('!libtool' '!emptydirs') diff --git a/extra/gtkmm3/PKGBUILD b/extra/gtkmm3/PKGBUILD index 943c518e0..ae812c133 100644 --- a/extra/gtkmm3/PKGBUILD +++ b/extra/gtkmm3/PKGBUILD @@ -6,7 +6,7 @@ _pkgbasename=gtkmm pkgname=('gtkmm3' 'gtkmm3-docs') pkgver=3.2.0 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=('gtk3' 'pangomm' 'atkmm' 'glibmm-docs' 'mm-common') license=('LGPL') options=('!libtool' '!emptydirs') diff --git a/extra/gtkpod/PKGBUILD b/extra/gtkpod/PKGBUILD index 2ce59e323..f56c3498e 100644 --- a/extra/gtkpod/PKGBUILD +++ b/extra/gtkpod/PKGBUILD @@ -6,7 +6,7 @@ pkgname=gtkpod pkgver=2.1.0 pkgrel=1 pkgdesc="A platform independent GUI for Apple's iPod using GTK2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gtkpod.sourceforge.net" license=('GPL') depends=('anjuta' 'curl' 'dconf' 'flac' 'libid3tag' 'libgpod>=0.8.0') diff --git a/extra/gtksourceview2/PKGBUILD b/extra/gtksourceview2/PKGBUILD index 21473004f..08f887870 100644 --- a/extra/gtksourceview2/PKGBUILD +++ b/extra/gtksourceview2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gtksourceview2 pkgver=2.10.5 pkgrel=1 pkgdesc="A text widget adding syntax highlighting and more to GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gtk2>=2.22.0' 'libxml2>=2.7.7') makedepends=('intltool' 'pkgconfig') diff --git a/extra/gtksourceview3/PKGBUILD b/extra/gtksourceview3/PKGBUILD index fdeda3cb4..03c3c7c0f 100644 --- a/extra/gtksourceview3/PKGBUILD +++ b/extra/gtksourceview3/PKGBUILD @@ -6,7 +6,7 @@ _pkgbasename=gtksourceview pkgver=3.2.3 pkgrel=1 pkgdesc="A text widget adding syntax highlighting and more to GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gtk3' 'libxml2') makedepends=('intltool' 'pkgconfig' 'gobject-introspection') diff --git a/extra/gtkspell/PKGBUILD b/extra/gtkspell/PKGBUILD index 162584730..272c319ed 100644 --- a/extra/gtkspell/PKGBUILD +++ b/extra/gtkspell/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2.0.16 pkgrel=1 url="http://gtkspell.sourceforge.net/" pkgdesc="GtkSpell 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=('gtk2>=2.18.3' 'enchant>=1.5.0') makedepends=('intltool' 'gtk-doc') diff --git a/extra/gucharmap/PKGBUILD b/extra/gucharmap/PKGBUILD index 5e993e3a3..0a0575363 100644 --- a/extra/gucharmap/PKGBUILD +++ b/extra/gucharmap/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gucharmap pkgver=3.2.1 pkgrel=1 pkgdesc="Gnome Unicode Charmap" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnome.org" depends=('gconf' 'hicolor-icon-theme') diff --git a/extra/guile/PKGBUILD b/extra/guile/PKGBUILD index eafece87a..54e90fd83 100644 --- a/extra/guile/PKGBUILD +++ b/extra/guile/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.8.8 pkgrel=1 pkgdesc="a portable, embeddable Scheme implementation written in C" url="http://www.gnu.org/software/guile/" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('gmp' 'libtool' 'ncurses>=5.7' 'texinfo') install=guile.install diff --git a/extra/gutenprint/PKGBUILD b/extra/gutenprint/PKGBUILD index 602d12bb4..219ea49e7 100644 --- a/extra/gutenprint/PKGBUILD +++ b/extra/gutenprint/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gutenprint pkgver=5.2.7 pkgrel=2 pkgdesc="Top quality printer drivers for POSIX systems" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') install=gutenprint.install depends=('readline' 'gnutls>=2.12.3') # needs to be checked. build log says -Lgnutls but namcap doesn't detect it diff --git a/extra/gv/PKGBUILD b/extra/gv/PKGBUILD index 028bacf99..8ce7b917d 100644 --- a/extra/gv/PKGBUILD +++ b/extra/gv/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gv pkgver=3.7.2 pkgrel=1 pkgdesc="A program to view PostScript and PDF documents" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/gv/" license=('GPL') depends=('xaw3d' 'ghostscript' 'desktop-file-utils') diff --git a/extra/gvfs/PKGBUILD b/extra/gvfs/PKGBUILD index dd451a176..eea981de0 100644 --- a/extra/gvfs/PKGBUILD +++ b/extra/gvfs/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=gvfs pkgname=('gvfs' 'gvfs-smb' 'gvfs-afc' 'gvfs-afp' 'gvfs-gphoto2' 'gvfs-obexftp') pkgver=1.10.1 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') makedepends=('libsoup-gnome' 'libcdio' 'fuse' 'bluez' 'smbclient' 'libgphoto2' 'libarchive' 'libgdu' 'pkgconfig' 'intltool' 'libimobiledevice' 'avahi' 'dconf') url="http://www.gnome.org" diff --git a/extra/gweled/PKGBUILD b/extra/gweled/PKGBUILD index df62dc0a4..ce87fb21e 100644 --- a/extra/gweled/PKGBUILD +++ b/extra/gweled/PKGBUILD @@ -5,7 +5,7 @@ pkgname=gweled pkgver=0.9.1 pkgrel=1 pkgdesc="A puzzle game similar to Bejeweled (aka Diamond Mine)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="https://launchpad.net/gweled/" depends=('gtk2' 'librsvg' 'libmikmod' 'hicolor-icon-theme') diff --git a/extra/habak/PKGBUILD b/extra/habak/PKGBUILD index 69899b64e..88bcf528a 100644 --- a/extra/habak/PKGBUILD +++ b/extra/habak/PKGBUILD @@ -10,7 +10,7 @@ url="http://fvwm-crystal.org" license=('GPL2') depends=('imlib2') source=("http://download.gna.org/fvwm-crystal/habak/$pkgver/$pkgname-$pkgver.tar.gz") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!makeflags') md5sums=('bee5c394989367f7a4c5cb9ec99d307c') diff --git a/extra/happy/PKGBUILD b/extra/happy/PKGBUILD index ac93ba2bf..f9cb98065 100644 --- a/extra/happy/PKGBUILD +++ b/extra/happy/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.18.6 pkgrel=1 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.0.2 haskell-mtl=2.0.1.0) diff --git a/extra/haskell-cgi/PKGBUILD b/extra/haskell-cgi/PKGBUILD index 4b64ba578..1ebe591af 100644 --- a/extra/haskell-cgi/PKGBUILD +++ b/extra/haskell-cgi/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3.1 pkgdesc="A library for writing CGI programs" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.0.3-2' 'haskell-mtl=2.0.1.0-3.1' 'haskell-network=2.3.0.2-2.1' 'haskell-parsec=3.1.1-2.1' 'haskell-xhtml=3000.2.0.1-7.1') options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/extra/haskell-deepseq/PKGBUILD b/extra/haskell-deepseq/PKGBUILD index 934303f2b..92818f74c 100644 --- a/extra/haskell-deepseq/PKGBUILD +++ b/extra/haskell-deepseq/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2.1 pkgdesc="Fully evaluate data structures" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=(ghc=7.0.3-2 sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/extra/haskell-fgl/PKGBUILD b/extra/haskell-fgl/PKGBUILD index 45f466e91..a397c16a1 100644 --- a/extra/haskell-fgl/PKGBUILD +++ b/extra/haskell-fgl/PKGBUILD @@ -6,7 +6,7 @@ pkgrel=4.1 pkgdesc="Martin Erwig's Functional Graph Library" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=() depends=('ghc=7.0.3-2' 'haskell-mtl=2.0.1.0-3.1') options=('strip') diff --git a/extra/haskell-glut/PKGBUILD b/extra/haskell-glut/PKGBUILD index 98a30495c..c47b76613 100644 --- a/extra/haskell-glut/PKGBUILD +++ b/extra/haskell-glut/PKGBUILD @@ -6,7 +6,7 @@ pkgrel=7.1 pkgdesc="A binding for the OpenGL Utility Toolkit" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=() depends=('ghc=7.0.3-2' 'haskell-opengl=2.2.3.0-7.1' 'freeglut') options=('strip') diff --git a/extra/haskell-haskell-src/PKGBUILD b/extra/haskell-haskell-src/PKGBUILD index eeb4844a7..dfc85c3a6 100644 --- a/extra/haskell-haskell-src/PKGBUILD +++ b/extra/haskell-haskell-src/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2.1 pkgdesc="Facilities for manipulating Haskell source code: an abstract syntax, lexer, parser and pretty-printer." url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.0.3-2' 'haskell-syb=0.3-2.1' sh) makedepends=(happy) options=('strip') diff --git a/extra/haskell-html/PKGBUILD b/extra/haskell-html/PKGBUILD index 1d207117e..203bc1589 100644 --- a/extra/haskell-html/PKGBUILD +++ b/extra/haskell-html/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=9.1 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.0.3-2 sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/extra/haskell-http/PKGBUILD b/extra/haskell-http/PKGBUILD index d1106c478..f0f33d5cb 100644 --- a/extra/haskell-http/PKGBUILD +++ b/extra/haskell-http/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3.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.0.3-2' sh 'haskell-network=2.3.0.2-2.1' 'haskell-parsec=3.1.1-2.1' 'haskell-mtl=2.0.1.0-3.1') options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/extra/haskell-hunit/PKGBUILD b/extra/haskell-hunit/PKGBUILD index 401887e4e..c2009a927 100644 --- a/extra/haskell-hunit/PKGBUILD +++ b/extra/haskell-hunit/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2.1 pkgdesc="A unit testing framework for Haskell" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=(ghc=7.0.3-2 sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) diff --git a/extra/haskell-mtl/PKGBUILD b/extra/haskell-mtl/PKGBUILD index e0ee184de..932f9360c 100644 --- a/extra/haskell-mtl/PKGBUILD +++ b/extra/haskell-mtl/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=3.1 pkgdesc="Monad transformer library" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=(ghc=7.0.3-2 sh 'haskell-transformers=0.2.2.0-3.1') options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) diff --git a/extra/haskell-network/PKGBUILD b/extra/haskell-network/PKGBUILD index 372cdf623..2d1b78c75 100644 --- a/extra/haskell-network/PKGBUILD +++ b/extra/haskell-network/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2.1 pkgdesc="Networking-related facilities" url="http://hackage.haskell.org/package/network" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=(ghc=7.0.3-2 sh 'haskell-parsec=3.1.1-2.1') options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/extra/haskell-opengl/PKGBUILD b/extra/haskell-opengl/PKGBUILD index 8d70bbc91..909a68239 100644 --- a/extra/haskell-opengl/PKGBUILD +++ b/extra/haskell-opengl/PKGBUILD @@ -6,7 +6,7 @@ pkgrel=7.1 pkgdesc="A binding for the OpenGL graphics system" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.0.3-2' 'mesa') options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/extra/haskell-parallel/PKGBUILD b/extra/haskell-parallel/PKGBUILD index 0e46c2c93..7b13af989 100644 --- a/extra/haskell-parallel/PKGBUILD +++ b/extra/haskell-parallel/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3.1 pkgdesc="Parallel programming library" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=(ghc=7.0.3-2 sh 'haskell-deepseq=1.1.0.2-2.1') options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) diff --git a/extra/haskell-parsec/PKGBUILD b/extra/haskell-parsec/PKGBUILD index 0810df75b..fe0fca0ab 100644 --- a/extra/haskell-parsec/PKGBUILD +++ b/extra/haskell-parsec/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2.1 pkgdesc="Monadic parser combinators" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=(ghc=7.0.3-2 sh 'haskell-mtl=2.0.1.0-3.1') options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/extra/haskell-platform/PKGBUILD b/extra/haskell-platform/PKGBUILD index 2534d95c2..02dbe7c29 100644 --- a/extra/haskell-platform/PKGBUILD +++ b/extra/haskell-platform/PKGBUILD @@ -5,7 +5,7 @@ pkgrel=4 pkgdesc="The Haskell Platform" url="http://hackage.haskell.org/platform/" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.0.3-2' 'haskell-glut=2.1.2.1-7.1' 'haskell-http=4000.1.1-3.1' diff --git a/extra/haskell-quickcheck/PKGBUILD b/extra/haskell-quickcheck/PKGBUILD index ab05c75f7..0a338c9b5 100644 --- a/extra/haskell-quickcheck/PKGBUILD +++ b/extra/haskell-quickcheck/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3.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.0.3-2 haskell-mtl=2.0.1.0-3.1 sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) diff --git a/extra/haskell-regex-base/PKGBUILD b/extra/haskell-regex-base/PKGBUILD index 57721d39b..dc920b63a 100644 --- a/extra/haskell-regex-base/PKGBUILD +++ b/extra/haskell-regex-base/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=4.1 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.0.3-2 sh 'haskell-mtl=2.0.1.0-3.1') options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) diff --git a/extra/haskell-regex-compat/PKGBUILD b/extra/haskell-regex-compat/PKGBUILD index 507a96618..40812c431 100644 --- a/extra/haskell-regex-compat/PKGBUILD +++ b/extra/haskell-regex-compat/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=4.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.0.3-2 sh 'haskell-regex-base=0.93.2-4.1' 'haskell-regex-posix=0.94.4-2.1') options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/extra/haskell-regex-posix/PKGBUILD b/extra/haskell-regex-posix/PKGBUILD index 3b00616eb..230d09237 100644 --- a/extra/haskell-regex-posix/PKGBUILD +++ b/extra/haskell-regex-posix/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2.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.0.3-2 sh 'haskell-regex-base=0.93.2-4.1') options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/extra/haskell-stm/PKGBUILD b/extra/haskell-stm/PKGBUILD index 9a9c9a962..352bd33c5 100644 --- a/extra/haskell-stm/PKGBUILD +++ b/extra/haskell-stm/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2.1 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.0.3-2 sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) diff --git a/extra/haskell-syb/PKGBUILD b/extra/haskell-syb/PKGBUILD index 64faf05ed..bcb5512f2 100644 --- a/extra/haskell-syb/PKGBUILD +++ b/extra/haskell-syb/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2.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.0.3-2' sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/extra/haskell-text/PKGBUILD b/extra/haskell-text/PKGBUILD index 7dbc1ce17..a246e2abf 100644 --- a/extra/haskell-text/PKGBUILD +++ b/extra/haskell-text/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2.1 pkgdesc="An efficient packed Unicode text type." url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ghc=7.0.3-2' sh 'haskell-deepseq=1.1.0.2-2.1') options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/extra/haskell-transformers/PKGBUILD b/extra/haskell-transformers/PKGBUILD index 446b2ffca..8ae36ebf1 100644 --- a/extra/haskell-transformers/PKGBUILD +++ b/extra/haskell-transformers/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3.1 pkgdesc="Concrete functor and monad transformers" url="http://hackage.haskell.org/package/${_hkgname}" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=(ghc=7.0.3-2 sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) diff --git a/extra/haskell-xhtml/PKGBUILD b/extra/haskell-xhtml/PKGBUILD index 4a34206ad..eb11375cb 100644 --- a/extra/haskell-xhtml/PKGBUILD +++ b/extra/haskell-xhtml/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=7.1 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.0.3-2 sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/$pkgver/${_hkgname}-$pkgver.tar.gz) diff --git a/extra/haskell-zlib/PKGBUILD b/extra/haskell-zlib/PKGBUILD index 22a9eb932..03a459007 100644 --- a/extra/haskell-zlib/PKGBUILD +++ b/extra/haskell-zlib/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2.1 pkgdesc="Compression and decompression in the gzip and zlib formats" url="http://hackage.haskell.org/package/zlib" license=('custom:BSD3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=(ghc=7.0.3-2 'zlib' sh) options=('strip') source=(http://hackage.haskell.org/packages/archive/${_hkgname}/${pkgver}/${_hkgname}-${pkgver}.tar.gz) diff --git a/extra/hd2u/PKGBUILD b/extra/hd2u/PKGBUILD index be78c1ea0..6146876e9 100644 --- a/extra/hd2u/PKGBUILD +++ b/extra/hd2u/PKGBUILD @@ -6,7 +6,7 @@ pkgname=hd2u pkgver=1.0.3 pkgrel=3 pkgdesc="Dos2Unix text file converter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://hany.sk/~hany/software/hd2u/" depends=('popt') diff --git a/extra/hddtemp/PKGBUILD b/extra/hddtemp/PKGBUILD index f43fb8f50..32b3c6b03 100644 --- a/extra/hddtemp/PKGBUILD +++ b/extra/hddtemp/PKGBUILD @@ -9,7 +9,7 @@ _origver=0.3-beta15 _patchver=46 pkgrel=1 pkgdesc="Gives you the temperature of your hard drive by reading S.M.A.R.T. information" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.guzu.net/linux/hddtemp.php" license=('GPL') depends=('glibc') diff --git a/extra/hdf5/PKGBUILD b/extra/hdf5/PKGBUILD index b727cf225..e4804547e 100644 --- a/extra/hdf5/PKGBUILD +++ b/extra/hdf5/PKGBUILD @@ -7,7 +7,7 @@ pkgname=hdf5 pkgver=1.8.7 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="General purpose library and file format for storing scientific data" url="http://www.hdfgroup.org/HDF5/" license=('custom') diff --git a/extra/help2man/PKGBUILD b/extra/help2man/PKGBUILD index 525dd9a65..18157c3f9 100644 --- a/extra/help2man/PKGBUILD +++ b/extra/help2man/PKGBUILD @@ -6,7 +6,7 @@ pkgname=help2man pkgver=1.40.4 pkgrel=1 pkgdesc="Conversion tool to create man files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/help2man/" license=('GPL') depends=('perl-locale-gettext') diff --git a/extra/hercules/PKGBUILD b/extra/hercules/PKGBUILD index e78a2bee3..1dd88290c 100644 --- a/extra/hercules/PKGBUILD +++ b/extra/hercules/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="A software implementation of the mainframe System/370 and ESA/390 architectures" url="http://www.hercules-390.org/" source=(http://www.hercules-390.org/$pkgname-$pkgver.tar.gz) -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') options=(!libtool) depends=('bzip2' 'libgcrypt' 'zlib') diff --git a/extra/hexedit/PKGBUILD b/extra/hexedit/PKGBUILD index bc2a5bfd0..f9fda6944 100644 --- a/extra/hexedit/PKGBUILD +++ b/extra/hexedit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=hexedit pkgver=1.2.12 pkgrel=4 pkgdesc="Hex Editor for Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://merd.net/pixel/hexedit.html" license=('GPL') depends=('ncurses') diff --git a/extra/hplip/PKGBUILD b/extra/hplip/PKGBUILD index 52815df01..26916756b 100644 --- a/extra/hplip/PKGBUILD +++ b/extra/hplip/PKGBUILD @@ -6,7 +6,7 @@ pkgname=hplip pkgver=3.11.10 pkgrel=1 pkgdesc="Drivers for HP DeskJet, OfficeJet, Photosmart, Business Inkjet and some LaserJet" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hplipopensource.com" license=('GPL') depends=('python2' 'ghostscript>=8.64-6' 'foomatic-db' 'foomatic-db-engine' 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/hspell/PKGBUILD b/extra/hspell/PKGBUILD index 81b12ed44..43326029e 100644 --- a/extra/hspell/PKGBUILD +++ b/extra/hspell/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=hspell pkgname=('hspell' 'hunspell-he') pkgver=1.1 pkgrel=1 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://www.ivrix.org.il/projects/spell-checker/" makedepends=('glibc' 'zlib' 'perl' 'hunspell' 'gawk') diff --git a/extra/htdig/PKGBUILD b/extra/htdig/PKGBUILD index 38418ee68..f40457224 100644 --- a/extra/htdig/PKGBUILD +++ b/extra/htdig/PKGBUILD @@ -7,7 +7,7 @@ pkgver=3.2.0b6 pkgrel=7 pkgdesc="Scripts and HTML code needed for using ht://Dig as a web search engine" url="http://www.htdig.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('openssl') options=('!libtool' 'emptydirs') diff --git a/extra/htop/PKGBUILD b/extra/htop/PKGBUILD index 11ec58bf5..0771238a8 100644 --- a/extra/htop/PKGBUILD +++ b/extra/htop/PKGBUILD @@ -7,7 +7,7 @@ pkgname=htop pkgver=0.9 pkgrel=3 pkgdesc="Interactive process viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://htop.sourceforge.net/" license=('GPL') depends=('ncurses') diff --git a/extra/hugin/PKGBUILD b/extra/hugin/PKGBUILD index 311733ad9..9c5c23fd4 100644 --- a/extra/hugin/PKGBUILD +++ b/extra/hugin/PKGBUILD @@ -7,7 +7,7 @@ pkgname=hugin pkgver=2011.2.0 pkgrel=1 pkgdesc="A frontend to the panorama-tools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hugin.sourceforge.net/" license=('GPL') depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'autopano-sift-c' diff --git a/extra/hunspell/PKGBUILD b/extra/hunspell/PKGBUILD index fefa04db4..7996411ee 100644 --- a/extra/hunspell/PKGBUILD +++ b/extra/hunspell/PKGBUILD @@ -6,7 +6,7 @@ pkgname=hunspell pkgver=1.3.2 pkgrel=1 pkgdesc="Spell checker and morphological analyzer library and program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hunspell.sourceforge.net/" license=('GPL' 'LGPL' 'MPL') depends=('gcc-libs' 'readline') diff --git a/extra/hwloc/PKGBUILD b/extra/hwloc/PKGBUILD index 25445be95..4c3d7611d 100644 --- a/extra/hwloc/PKGBUILD +++ b/extra/hwloc/PKGBUILD @@ -7,7 +7,7 @@ pkgname=hwloc pkgver=1.2.2 pkgrel=1 pkgdesc="Portable Hardware Locality is a portable abstraction of hierarchical architectures" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.open-mpi.org/projects/hwloc/" license=('BSD') depends=('sh') diff --git a/extra/hydrogen/PKGBUILD b/extra/hydrogen/PKGBUILD index b78606f9c..b56f92c4c 100644 --- a/extra/hydrogen/PKGBUILD +++ b/extra/hydrogen/PKGBUILD @@ -8,7 +8,7 @@ pkgname=hydrogen pkgver=0.9.5 pkgrel=1 pkgdesc="Advanced Drum Machine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.hydrogen-music.org/" depends=('libarchive' 'liblrdf' 'qt' 'jack') diff --git a/extra/hylafax/PKGBUILD b/extra/hylafax/PKGBUILD index ed87911d6..f3dc2e868 100644 --- a/extra/hylafax/PKGBUILD +++ b/extra/hylafax/PKGBUILD @@ -4,7 +4,7 @@ pkgname=hylafax pkgver=6.0.5 pkgrel=2 pkgdesc="Fax Server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') install='hylafax.install' license=('custom') depends=('libtiff' 'pam' 'ghostscript') diff --git a/extra/hyphen/PKGBUILD b/extra/hyphen/PKGBUILD index feee6e8ff..54d5cfd56 100644 --- a/extra/hyphen/PKGBUILD +++ b/extra/hyphen/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=hyphen pkgname=('hyphen' 'hyphen-en') pkgver=2.8.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hunspell.sf.net" license=('GPL' 'LGPL' 'MPL') groups=() @@ -58,4 +58,4 @@ package_hyphen-en() { ln -sv /usr/share/hyphen/$(basename $file) . done popd -}
\ No newline at end of file +} diff --git a/extra/i8kutils/PKGBUILD b/extra/i8kutils/PKGBUILD index a1c7a6d7f..4d80f1568 100644 --- a/extra/i8kutils/PKGBUILD +++ b/extra/i8kutils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=i8kutils pkgver=1.33 pkgrel=2 pkgdesc="Dell Inspiron/Latitude kernel driver and utilities" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://people.debian.org/~dz/i8k/" license=('GPL2') depends=('glibc') diff --git a/extra/icedtea-web/PKGBUILD b/extra/icedtea-web/PKGBUILD index e1777c791..cf49683cb 100644 --- a/extra/icedtea-web/PKGBUILD +++ b/extra/icedtea-web/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=icedtea-web pkgname=('icedtea-web' 'icedtea-web-doc') pkgver=1.1.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://icedtea.classpath.org/wiki/IcedTea-Web" license=('GPL2') makedepends=('openjdk6' 'zip' 'xulrunner') diff --git a/extra/icewm/PKGBUILD b/extra/icewm/PKGBUILD index 7c7951c04..7058d8b7a 100644 --- a/extra/icewm/PKGBUILD +++ b/extra/icewm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=icewm pkgver=1.3.7 pkgrel=1 pkgdesc="A Window Manager designed for speed, usability, and consistency" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.icewm.org/" license=('LGPL') depends=('libxrandr' 'libxft' 'libsm' 'libxinerama' 'gdk-pixbuf2') diff --git a/extra/icu/PKGBUILD b/extra/icu/PKGBUILD index 9c62275f0..6689b196a 100644 --- a/extra/icu/PKGBUILD +++ b/extra/icu/PKGBUILD @@ -6,7 +6,7 @@ pkgname=icu pkgver=4.8.1.1 pkgrel=1 pkgdesc="International Components for Unicode library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.icu-project.org/" license=('custom:"icu"') depends=('gcc-libs' 'sh') diff --git a/extra/id3/PKGBUILD b/extra/id3/PKGBUILD index 6ef72b356..12929c8ce 100644 --- a/extra/id3/PKGBUILD +++ b/extra/id3/PKGBUILD @@ -6,7 +6,7 @@ pkgname=id3 pkgver=0.78 pkgrel=3 pkgdesc="Utility to edit id3v1 and id3v2 tags" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freshmeat.net/projects/id3" license=('BSD') depends=('gcc-libs') diff --git a/extra/id3lib/PKGBUILD b/extra/id3lib/PKGBUILD index 483d3300f..332f24875 100644 --- a/extra/id3lib/PKGBUILD +++ b/extra/id3lib/PKGBUILD @@ -6,7 +6,7 @@ pkgname=id3lib pkgver=3.8.3 pkgrel=11 pkgdesc="An open-source, cross-platform software development library for reading, writing, and manipulating ID3v1 and ID3v2 tags" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://id3lib.sourceforge.net/" depends=('zlib' 'gcc-libs') diff --git a/extra/id3v2/PKGBUILD b/extra/id3v2/PKGBUILD index ab90dcfba..ad7900dc6 100644 --- a/extra/id3v2/PKGBUILD +++ b/extra/id3v2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=id3v2 pkgver=0.1.12 pkgrel=1 pkgdesc="Utility to edit id3v2 tags" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://id3v2.sourceforge.net/" license=('LGPL') depends=('gcc-libs' 'glibc' 'id3lib' 'zlib') diff --git a/extra/ifplugd/PKGBUILD b/extra/ifplugd/PKGBUILD index e3162ac9a..b49d417eb 100644 --- a/extra/ifplugd/PKGBUILD +++ b/extra/ifplugd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ifplugd pkgver=0.28 pkgrel=7 pkgdesc="A daemon which brings up/down network interfaces upon cable insertion/removal." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://0pointer.de/lennart/projects/ifplugd" license=('GPL2') depends=('libdaemon' 'bash') diff --git a/extra/ilmbase/PKGBUILD b/extra/ilmbase/PKGBUILD index fd95d6f4f..6730537bc 100644 --- a/extra/ilmbase/PKGBUILD +++ b/extra/ilmbase/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.0.2 pkgrel=1 depends=('gcc-libs') pkgdesc="Base libraries from ILM for OpenEXR" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('custom') options=('!libtool') source=(http://savannah.nongnu.org/download/openexr/$pkgname-$pkgver.tar.gz diff --git a/extra/imagemagick/PKGBUILD b/extra/imagemagick/PKGBUILD index 6687c5add..f5de91c3c 100644 --- a/extra/imagemagick/PKGBUILD +++ b/extra/imagemagick/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=imagemagick pkgname=('imagemagick' 'imagemagick-doc') pkgver=6.7.3.1 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.imagemagick.org/" license=('custom') depends=('libltdl' 'lcms2' 'libxt' 'bzip2' 'xz' 'fontconfig' 'libxext' 'libjpeg-turbo') diff --git a/extra/imake/PKGBUILD b/extra/imake/PKGBUILD index 9a879d865..a0196e69f 100644 --- a/extra/imake/PKGBUILD +++ b/extra/imake/PKGBUILD @@ -5,7 +5,7 @@ pkgname=imake pkgver=1.0.3 pkgrel=2 pkgdesc="X.Org imake program and related utilities" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=(glibc) diff --git a/extra/imap/PKGBUILD b/extra/imap/PKGBUILD index 7e001061d..ec068d19b 100644 --- a/extra/imap/PKGBUILD +++ b/extra/imap/PKGBUILD @@ -4,7 +4,7 @@ pkgname=imap pkgver=2007f pkgrel=1 pkgdesc="An IMAP/POP server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('APACHE') url="http://www.washington.edu/imap" depends=('openssl' 'pam') @@ -28,7 +28,7 @@ build() { cd $srcdir/$pkgname-$pkgver # NOTE: if you wish to enforce SSL, use SSLTYPE=unix.nopwd - if [ "$CARCH" == "x86_64" ]; then + if [ "$CARCH" == "x86_64" -o "$CARCH" == "mips64el" ]; then yes "y" | make lnp SPECIALAUTHENTICATORS=ssl SSLTYPE=unix EXTRACFLAGS="${CFLAGS} -fPIC" || return 1 else yes "y" | make lnp SPECIALAUTHENTICATORS=ssl SSLTYPE=unix || return 1 fi diff --git a/extra/imlib/PKGBUILD b/extra/imlib/PKGBUILD index dd64f75a4..83746ce4f 100644 --- a/extra/imlib/PKGBUILD +++ b/extra/imlib/PKGBUILD @@ -6,7 +6,7 @@ pkgname=imlib pkgver=1.9.15 pkgrel=10 pkgdesc="General image handling library for X11 and Gtk" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freshmeat.net/projects/imlib/" license=('GPL') depends=('gtk' 'giflib' 'libpng>=1.4.0' 'libtiff>=3.9.2-2' 'libjpeg>=8') diff --git a/extra/imlib2/PKGBUILD b/extra/imlib2/PKGBUILD index 030f74f2d..a67585373 100644 --- a/extra/imlib2/PKGBUILD +++ b/extra/imlib2/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.4.5 pkgrel=1 pkgdesc="Library that does image file loading and saving as well as rendering, manipulation, arbitrary polygon support" url="http://sourceforge.net/projects/enlightenment/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('BSD') depends=('libtiff' 'giflib' 'bzip2' 'freetype2' 'libxext' 'libpng' 'libid3tag' 'libjpeg-turbo') options=('!libtool') diff --git a/extra/indent/PKGBUILD b/extra/indent/PKGBUILD index 8ac2de017..5360329ce 100644 --- a/extra/indent/PKGBUILD +++ b/extra/indent/PKGBUILD @@ -7,7 +7,7 @@ pkgname=indent pkgver=2.2.11 pkgrel=1 pkgdesc="A tool to change the appearance of a C program by inserting or deleting whitespace" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://indent.isidore-it.eu/beautify.html" depends=('glibc') makedepends=('texi2html') diff --git a/extra/inkscape/PKGBUILD b/extra/inkscape/PKGBUILD index 19bb5fbef..78479b8ab 100644 --- a/extra/inkscape/PKGBUILD +++ b/extra/inkscape/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.48.2 pkgrel=3 pkgdesc='Vector graphics editor using the SVG file format' url='http://inkscape.sourceforge.net/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL') makedepends=('boost' 'pkg-config' 'intltool') depends=('gc' 'gtkmm' 'poppler-glib' 'pyxml' 'libxslt' 'gsl' 'popt' 'python2' @@ -25,6 +25,11 @@ sha1sums=('422a4bacd4dc42adafa203244bc9816783cba4d3') install=install build() { + # Workaround madd.d making a SIGILL on a NaN. + [ "$CARCH" == "mips64el" ] && { + CFLAGS=${CFLAGS/-march=loongson2f/-march=mips3 -mtune=loongson2f} + CXXFLAGS=${CXXFLAGS/-march=loongson2f/-march=mips3 -mtune=loongson2f} + } cd "${srcdir}/${pkgname}-${pkgver}" sed -i 's|/usr/bin/python\>|/usr/bin/python2|g' cxxtest/*.py diff --git a/extra/iperf/PKGBUILD b/extra/iperf/PKGBUILD index e07fa4562..d69c713c1 100644 --- a/extra/iperf/PKGBUILD +++ b/extra/iperf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=iperf pkgver=2.0.5 pkgrel=2 pkgdesc="A tool to measure maximum TCP bandwidth" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://iperf.sourceforge.net" depends=('gcc-libs') diff --git a/extra/iptraf-ng/PKGBUILD b/extra/iptraf-ng/PKGBUILD index 0af3de2e1..b47082e86 100644 --- a/extra/iptraf-ng/PKGBUILD +++ b/extra/iptraf-ng/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.0.2 pkgrel=2 pkgdesc="A console-based network monitoring utility (a fork of original iptraf)" url="https://fedorahosted.org/iptraf-ng/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('ncurses') license=('GPL2') replaces=('iptraf') diff --git a/extra/irqbalance/PKGBUILD b/extra/irqbalance/PKGBUILD index e969c5729..953d1533b 100644 --- a/extra/irqbalance/PKGBUILD +++ b/extra/irqbalance/PKGBUILD @@ -5,7 +5,7 @@ pkgname=irqbalance pkgver=0.56 pkgrel=3 pkgdesc="IRQ balancing daemon for SMP systems" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.irqbalance.org/" license=('GPL') depends=(glib2) diff --git a/extra/irssi/PKGBUILD b/extra/irssi/PKGBUILD index bba878633..74702e9ad 100644 --- a/extra/irssi/PKGBUILD +++ b/extra/irssi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=irssi pkgver=0.8.15 pkgrel=5 pkgdesc="Modular text mode IRC client with Perl scripting" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://irssi.org/" license=('GPL') depends=('glib2' 'openssl' 'perl') 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/ispell/PKGBUILD b/extra/ispell/PKGBUILD index c634a1962..4cd911cbe 100644 --- a/extra/ispell/PKGBUILD +++ b/extra/ispell/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ispell pkgver=3.3.02 pkgrel=4 pkgdesc="An interactive spell-checking program for Unix" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ficus-www.cs.ucla.edu/geoff/ispell.html" license=('BSD') depends=('ncurses') diff --git a/extra/ivtv-utils/PKGBUILD b/extra/ivtv-utils/PKGBUILD index 57d810d9d..ae13de3e3 100644 --- a/extra/ivtv-utils/PKGBUILD +++ b/extra/ivtv-utils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ivtv-utils pkgver=1.4.1 pkgrel=3 pkgdesc="Userspace utilities for Hauppauge PVR cards" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://ivtvdriver.org" source=(http://dl.ivtvdriver.org/ivtv/stable/${pkgname}-${pkgver}.tar.gz diff --git a/extra/jack/PKGBUILD b/extra/jack/PKGBUILD index 77cad996c..99b225264 100644 --- a/extra/jack/PKGBUILD +++ b/extra/jack/PKGBUILD @@ -8,12 +8,16 @@ _longname=jack-audio-connection-kit pkgver=0.121.3 pkgrel=1 pkgdesc="A low-latency audio server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL') depends=('libsamplerate' 'readline') makedepends=('doxygen' 'libffado' 'celt') optdepends=('libffado: FireWire support' 'celt: NetJACK driver') +[ "$CARCH" = "mips64el" ] && { +makedepends=('doxygen' 'celt') +optdepends=('celt: NetJACK driver') +} url="http://jackaudio.org/" options=('!libtool') provides=("$_longname=$pkgver") diff --git a/extra/jade/PKGBUILD b/extra/jade/PKGBUILD index e86498343..d4935a934 100644 --- a/extra/jade/PKGBUILD +++ b/extra/jade/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=6 _debpatch=47 pkgdesc="James Clark's DSSSL Engine" url='http://www.jclark.com/jade/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') depends=('gcc-libs') replaces=('openjade') diff --git a/extra/jasper/PKGBUILD b/extra/jasper/PKGBUILD index 542f1a91e..ee6a11d7d 100644 --- a/extra/jasper/PKGBUILD +++ b/extra/jasper/PKGBUILD @@ -7,7 +7,7 @@ pkgname=jasper pkgver=1.900.1 pkgrel=6 pkgdesc="A software-based implementation of the codec specified in the emerging JPEG-2000 Part-1 standard" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ece.uvic.ca/~mdadams/jasper/" license=('custom:JasPer2.0') depends=('libjpeg' 'freeglut' 'libxi' 'libxmu' 'mesa') diff --git a/extra/java-access-bridge/PKGBUILD b/extra/java-access-bridge/PKGBUILD index 6c705fef2..1899c87de 100644 --- a/extra/java-access-bridge/PKGBUILD +++ b/extra/java-access-bridge/PKGBUILD @@ -5,7 +5,7 @@ pkgname=java-access-bridge pkgver=1.26.2 pkgrel=2 pkgdesc="Java bindings for the GNOME accessibility framework" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://www.gnome.org" depends=('java-runtime' 'gtk2' 'at-spi' 'libbonobo') diff --git a/extra/java-commons-daemon/PKGBUILD b/extra/java-commons-daemon/PKGBUILD index 0627323e8..9d25c78d1 100644 --- a/extra/java-commons-daemon/PKGBUILD +++ b/extra/java-commons-daemon/PKGBUILD @@ -3,7 +3,7 @@ pkgname=('java-commons-daemon' 'java-jsvc') pkgbase=java-commons-daemon pkgver=1.0.7 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://commons.apache.org/daemon/" license=('APACHE') _libname=commons-daemon diff --git a/extra/jhead/PKGBUILD b/extra/jhead/PKGBUILD index bc442c8a8..ab14e0ba2 100644 --- a/extra/jhead/PKGBUILD +++ b/extra/jhead/PKGBUILD @@ -6,9 +6,9 @@ pkgname=jhead pkgver=2.90 pkgrel=1 pkgdesc="EXIF JPEG info parser and thumbnail remover" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.sentex.net/~mwandel/jhead/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') depends=('glibc') optdepends=('libjpeg: to up-right images according to rotation tag') diff --git a/extra/js/PKGBUILD b/extra/js/PKGBUILD index 71d3ac492..2f054c7bb 100644 --- a/extra/js/PKGBUILD +++ b/extra/js/PKGBUILD @@ -4,7 +4,7 @@ pkgname=js pkgver=1.8.5 pkgrel=3 pkgdesc="JavaScript interpreter and libraries" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="https://developer.mozilla.org/En/SpiderMonkey/1.8.5" license=('GPL2') depends=('nspr' 'gcc-libs') diff --git a/extra/json-c/PKGBUILD b/extra/json-c/PKGBUILD index 2f689ba64..8eadb0dce 100644 --- a/extra/json-c/PKGBUILD +++ b/extra/json-c/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="A JSON implementation in C" url="http://oss.metaparadigm.com/json-c/" license=("MIT") -arch=('i686' 'x86_64') +arch=(mips64el) depends=('glibc') source=(http://oss.metaparadigm.com/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('3a13d264528dcbaf3931b0cede24abae') diff --git a/extra/json-glib/PKGBUILD b/extra/json-glib/PKGBUILD index fc7a0e9a8..92672f290 100644 --- a/extra/json-glib/PKGBUILD +++ b/extra/json-glib/PKGBUILD @@ -5,7 +5,7 @@ pkgname=json-glib pkgver=0.14.2 pkgrel=1 pkgdesc="JSON library built on GLib" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/JsonGlib" license=('GPL') depends=('glib2') diff --git a/extra/k3b/PKGBUILD b/extra/k3b/PKGBUILD index 1b94ed8cd..a8836e6e5 100644 --- a/extra/k3b/PKGBUILD +++ b/extra/k3b/PKGBUILD @@ -12,7 +12,7 @@ depends=('kdebase-runtime' 'kdemultimedia-kioslave' 'libsamplerate' 'libmad' makedepends=('cmake' 'pkgconfig' 'automoc4' ) pkgdesc="Feature-rich and easy to handle CD burning application" url="http://k3b.sourceforge.net/" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') license=('GPL') install="${pkgname}.install" optdepends=('dvd+rw-tools: for dvd burning support' diff --git a/extra/k9copy/PKGBUILD b/extra/k9copy/PKGBUILD index dfc334918..fccaa81b2 100644 --- a/extra/k9copy/PKGBUILD +++ b/extra/k9copy/PKGBUILD @@ -6,7 +6,7 @@ pkgname=k9copy pkgver=2.3.7 pkgrel=1 pkgdesc="A small utility which allows the copy of DVD under Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://k9copy.sourceforge.net" license=('GPL') depends=('kdebase-runtime' 'libmpeg2' 'xine-lib' 'dvd+rw-tools' 'dvdauthor') diff --git a/extra/kaffeine/PKGBUILD b/extra/kaffeine/PKGBUILD index 84a710827..5fc44e597 100644 --- a/extra/kaffeine/PKGBUILD +++ b/extra/kaffeine/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.2.2 pkgrel=1 pkgdesc='KDE media player' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kaffeine.kde.org" depends=('kdelibs' 'kdebase-runtime' 'xine-lib') makedepends=('pkgconfig' 'cmake' 'automoc4') diff --git a/extra/kdeaccessibility/PKGBUILD b/extra/kdeaccessibility/PKGBUILD index 1825e02dd..48a2d6911 100644 --- a/extra/kdeaccessibility/PKGBUILD +++ b/extra/kdeaccessibility/PKGBUILD @@ -10,7 +10,7 @@ pkgname=('kdeaccessibility-jovie' 'kdeaccessibility-kmouth') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://accessibility.kde.org' license=('GPL' 'FDL') groups=('kde' 'kdeaccessibility') diff --git a/extra/kdeadmin/PKGBUILD b/extra/kdeadmin/PKGBUILD index 0299a0f71..29d56822b 100644 --- a/extra/kdeadmin/PKGBUILD +++ b/extra/kdeadmin/PKGBUILD @@ -9,7 +9,7 @@ pkgname=('kdeadmin-kcron' 'kdeadmin-system-config-printer-kde') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeadmin') diff --git a/extra/kdeartwork/PKGBUILD b/extra/kdeartwork/PKGBUILD index 2bc68659c..e9f8a56af 100644 --- a/extra/kdeartwork/PKGBUILD +++ b/extra/kdeartwork/PKGBUILD @@ -15,7 +15,7 @@ pkgname=('kdeartwork-aurorae' 'kdeartwork-weatherwallpapers') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeartwork') diff --git a/extra/kdebase-konsole/PKGBUILD b/extra/kdebase-konsole/PKGBUILD index dd9747488..6cc4d02a4 100644 --- a/extra/kdebase-konsole/PKGBUILD +++ b/extra/kdebase-konsole/PKGBUILD @@ -4,7 +4,7 @@ pkgname=kdebase-konsole pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://kde.org/applications/system/konsole/' pkgdesc="Terminal" license=('GPL' 'LGPL' 'FDL') diff --git a/extra/kdebase-runtime/PKGBUILD b/extra/kdebase-runtime/PKGBUILD index 9229e0feb..444df1228 100644 --- a/extra/kdebase-runtime/PKGBUILD +++ b/extra/kdebase-runtime/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kdebase-runtime pkgver=4.7.3 pkgrel=1 pkgdesc="KDE Base Runtime Environment" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL') depends=('kdelibs' 'ntrack' 'smbclient' 'libssh' 'libcanberra' 'oxygen-icons' diff --git a/extra/kdebase-workspace/PKGBUILD b/extra/kdebase-workspace/PKGBUILD index 9b4f01a00..57f02f9bd 100644 --- a/extra/kdebase-workspace/PKGBUILD +++ b/extra/kdebase-workspace/PKGBUILD @@ -7,7 +7,7 @@ _pkgname=kde-workspace pkgver=4.7.3 pkgrel=3 pkgdesc="KDE Base Workspace" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde') diff --git a/extra/kdebase/PKGBUILD b/extra/kdebase/PKGBUILD index f2d7e1d1c..a14566963 100644 --- a/extra/kdebase/PKGBUILD +++ b/extra/kdebase/PKGBUILD @@ -14,7 +14,7 @@ pkgname=('kdebase-dolphin' 'kdebase-plasma') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdebase') diff --git a/extra/kdebindings-kimono/PKGBUILD b/extra/kdebindings-kimono/PKGBUILD index cf715cad6..99ab380c8 100644 --- a/extra/kdebindings-kimono/PKGBUILD +++ b/extra/kdebindings-kimono/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.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/kdebindings-korundum/PKGBUILD b/extra/kdebindings-korundum/PKGBUILD index eb47d0c3e..3262e30d0 100644 --- a/extra/kdebindings-korundum/PKGBUILD +++ b/extra/kdebindings-korundum/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="KDE bindings for ruby" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') depends=('kdebindings-qtruby' 'kdebindings-smokekde') diff --git a/extra/kdebindings-kross/PKGBUILD b/extra/kdebindings-kross/PKGBUILD index efec3a3de..7686e051c 100644 --- a/extra/kdebindings-kross/PKGBUILD +++ b/extra/kdebindings-kross/PKGBUILD @@ -8,7 +8,7 @@ pkgname=('kdebindings-kross-python' pkgver=4.7.3 pkgrel=1 url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') makedepends=('kdelibs' 'cmake' 'automoc4' 'python2' 'openjdk6') diff --git a/extra/kdebindings-perlkde/PKGBUILD b/extra/kdebindings-perlkde/PKGBUILD index a5c0dc4ee..74f5a4dca 100644 --- a/extra/kdebindings-perlkde/PKGBUILD +++ b/extra/kdebindings-perlkde/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Perl 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-perlqt' 'kdebindings-smokekde') diff --git a/extra/kdebindings-perlqt/PKGBUILD b/extra/kdebindings-perlqt/PKGBUILD index 2b83667eb..016bd8d5b 100644 --- a/extra/kdebindings-perlqt/PKGBUILD +++ b/extra/kdebindings-perlqt/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Perl bindings for the Qt libraries" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') depends=('kdebindings-smokeqt') diff --git a/extra/kdebindings-python/PKGBUILD b/extra/kdebindings-python/PKGBUILD index d368050aa..5c8a7ebb8 100644 --- a/extra/kdebindings-python/PKGBUILD +++ b/extra/kdebindings-python/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="KDE bindings for Python" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') depends=('kdepim-runtime' 'python2-pyqt' 'qscintilla' 'boost-libs') diff --git a/extra/kdebindings-qtruby/PKGBUILD b/extra/kdebindings-qtruby/PKGBUILD index 36a18928a..147af2513 100644 --- a/extra/kdebindings-qtruby/PKGBUILD +++ b/extra/kdebindings-qtruby/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Qt bindings for ruby" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') depends=('kdebindings-smokeqt' 'ruby') diff --git a/extra/kdebindings-qyoto/PKGBUILD b/extra/kdebindings-qyoto/PKGBUILD index be62acaca..2c6a7439f 100644 --- a/extra/kdebindings-qyoto/PKGBUILD +++ b/extra/kdebindings-qyoto/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc=".NET/Mono bindings for the Qt libraries" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') depends=('kdebindings-smokeqt' 'mono') diff --git a/extra/kdebindings-smokegen/PKGBUILD b/extra/kdebindings-smokegen/PKGBUILD index 42726122b..22a7bd81c 100644 --- a/extra/kdebindings-smokegen/PKGBUILD +++ b/extra/kdebindings-smokegen/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="A general purpose C++ parser with a plugin infrastructure" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/kdebindings-smokekde/PKGBUILD b/extra/kdebindings-smokekde/PKGBUILD index d706a6408..7c532e38b 100644 --- a/extra/kdebindings-smokekde/PKGBUILD +++ b/extra/kdebindings-smokekde/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Language independent library for KDE bindings" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') depends=('kdebindings-smokeqt') diff --git a/extra/kdebindings-smokeqt/PKGBUILD b/extra/kdebindings-smokeqt/PKGBUILD index 6d90df871..14a8e541e 100644 --- a/extra/kdebindings-smokeqt/PKGBUILD +++ b/extra/kdebindings-smokeqt/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Language independent library for Qt bindings" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kdebindings') depends=('kdebase-runtime' 'qimageblitz' 'qscintilla' 'kdebindings-smokegen') diff --git a/extra/kdeedu-blinken/PKGBUILD b/extra/kdeedu-blinken/PKGBUILD index 67ecaf3e0..91e7a18be 100644 --- a/extra/kdeedu-blinken/PKGBUILD +++ b/extra/kdeedu-blinken/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Memory Enhancement Game" url="http://kde.org/applications/education/blinken/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') diff --git a/extra/kdeedu-cantor/PKGBUILD b/extra/kdeedu-cantor/PKGBUILD index cdd3e586b..f97ac94c2 100644 --- a/extra/kdeedu-cantor/PKGBUILD +++ b/extra/kdeedu-cantor/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="KDE Frontend to Mathematical Software" url="http://kde.org/applications/education/cantor/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'libspectre') diff --git a/extra/kdeedu-kalgebra/PKGBUILD b/extra/kdeedu-kalgebra/PKGBUILD index 7d574b806..f0d4411b4 100644 --- a/extra/kdeedu-kalgebra/PKGBUILD +++ b/extra/kdeedu-kalgebra/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Graph Calculator" url="http://kde.org/applications/education/kalgebra/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'libkdeedu') diff --git a/extra/kdeedu-kalzium/PKGBUILD b/extra/kdeedu-kalzium/PKGBUILD index a0420db8a..ddf686d8c 100644 --- a/extra/kdeedu-kalzium/PKGBUILD +++ b/extra/kdeedu-kalzium/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Periodic Table of Elements" url="http://kde.org/applications/education/kalzium/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdelibs' 'avogadro' 'ocaml') diff --git a/extra/kdeedu-kanagram/PKGBUILD b/extra/kdeedu-kanagram/PKGBUILD index 2da61d928..bf4942ea7 100644 --- a/extra/kdeedu-kanagram/PKGBUILD +++ b/extra/kdeedu-kanagram/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Letter Order Game" url="http://kde.org/applications/education/kanagram/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'libkdeedu') diff --git a/extra/kdeedu-kbruch/PKGBUILD b/extra/kdeedu-kbruch/PKGBUILD index 0d1445506..365128388 100644 --- a/extra/kdeedu-kbruch/PKGBUILD +++ b/extra/kdeedu-kbruch/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Exercise Fractions" url="http://kde.org/applications/education/kbruch/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') diff --git a/extra/kdeedu-kgeography/PKGBUILD b/extra/kdeedu-kgeography/PKGBUILD index 7176d96cc..5a839bb6b 100644 --- a/extra/kdeedu-kgeography/PKGBUILD +++ b/extra/kdeedu-kgeography/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Geography Trainer" url="http://kde.org/applications/education/kgeography/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') diff --git a/extra/kdeedu-khangman/PKGBUILD b/extra/kdeedu-khangman/PKGBUILD index 20ec8a77e..17b1eea92 100644 --- a/extra/kdeedu-khangman/PKGBUILD +++ b/extra/kdeedu-khangman/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Hangman Game" url="http://kde.org/applications/education/khangman/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'libkdeedu') diff --git a/extra/kdeedu-kig/PKGBUILD b/extra/kdeedu-kig/PKGBUILD index 3caba94f6..250fcc24b 100644 --- a/extra/kdeedu-kig/PKGBUILD +++ b/extra/kdeedu-kig/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Interactive Geometry" url="http://kde.org/applications/education/kig/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') diff --git a/extra/kdeedu-kiten/PKGBUILD b/extra/kdeedu-kiten/PKGBUILD index 19ceb744e..4891170f0 100644 --- a/extra/kdeedu-kiten/PKGBUILD +++ b/extra/kdeedu-kiten/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Japanese Reference/Study Tool" url="http://kde.org/applications/education/kiten/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') diff --git a/extra/kdeedu-klettres/PKGBUILD b/extra/kdeedu-klettres/PKGBUILD index 999a32b87..edb96cc11 100644 --- a/extra/kdeedu-klettres/PKGBUILD +++ b/extra/kdeedu-klettres/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Learn The Alphabet" url="http://kde.org/applications/education/klettres/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') diff --git a/extra/kdeedu-kmplot/PKGBUILD b/extra/kdeedu-kmplot/PKGBUILD index 5c08affbb..543470bfc 100644 --- a/extra/kdeedu-kmplot/PKGBUILD +++ b/extra/kdeedu-kmplot/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Mathematical Function Plotter" url="http://kde.org/applications/education/kmplot/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') diff --git a/extra/kdeedu-kstars/PKGBUILD b/extra/kdeedu-kstars/PKGBUILD index 0b5a0cdbf..775af4f8b 100644 --- a/extra/kdeedu-kstars/PKGBUILD +++ b/extra/kdeedu-kstars/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Desktop Planetarium" url="http://kde.org/applications/education/kstars/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'eigen' 'cfitsio' 'libindi') diff --git a/extra/kdeedu-ktouch/PKGBUILD b/extra/kdeedu-ktouch/PKGBUILD index a8e3c16ab..b66c3555b 100644 --- a/extra/kdeedu-ktouch/PKGBUILD +++ b/extra/kdeedu-ktouch/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Touch Typing Tutor" url="http://kde.org/applications/education/ktouch/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') diff --git a/extra/kdeedu-kturtle/PKGBUILD b/extra/kdeedu-kturtle/PKGBUILD index 427524590..a5bb66c24 100644 --- a/extra/kdeedu-kturtle/PKGBUILD +++ b/extra/kdeedu-kturtle/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Educational Programming Environment" url="http://kde.org/applications/education/kturtle/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') diff --git a/extra/kdeedu-kwordquiz/PKGBUILD b/extra/kdeedu-kwordquiz/PKGBUILD index 703de3f35..0290a54c2 100644 --- a/extra/kdeedu-kwordquiz/PKGBUILD +++ b/extra/kdeedu-kwordquiz/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Flash Card Trainer" url="http://kde.org/applications/education/kwordquiz/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'libkdeedu') diff --git a/extra/kdeedu-marble/PKGBUILD b/extra/kdeedu-marble/PKGBUILD index 8d00d0a10..a1ac2edb7 100644 --- a/extra/kdeedu-marble/PKGBUILD +++ b/extra/kdeedu-marble/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Desktop Globe" url="http://kde.org/applications/education/marble/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime') diff --git a/extra/kdeedu-parley/PKGBUILD b/extra/kdeedu-parley/PKGBUILD index a4c875b67..4e4e85026 100644 --- a/extra/kdeedu-parley/PKGBUILD +++ b/extra/kdeedu-parley/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Vocabulary Trainer" url="http://kde.org/applications/education/parley/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'libkdeedu') diff --git a/extra/kdeedu-rocs/PKGBUILD b/extra/kdeedu-rocs/PKGBUILD index 001fef7d2..4006d6eac 100644 --- a/extra/kdeedu-rocs/PKGBUILD +++ b/extra/kdeedu-rocs/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Rocs Graph Theory" url="http://kde.org/applications/education/rocs/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'boost-libs') diff --git a/extra/kdeedu-step/PKGBUILD b/extra/kdeedu-step/PKGBUILD index d445363d5..8af05974a 100644 --- a/extra/kdeedu-step/PKGBUILD +++ b/extra/kdeedu-step/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Interactive Physical Simulator" url="http://kde.org/applications/education/step/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeedu') depends=('kdebase-runtime' 'libqalculate' 'gsl' 'eigen') diff --git a/extra/kdegames/PKGBUILD b/extra/kdegames/PKGBUILD index e8d511a66..4721fae86 100644 --- a/extra/kdegames/PKGBUILD +++ b/extra/kdegames/PKGBUILD @@ -45,7 +45,7 @@ pkgname=('kdegames-bomber' 'kdegames-palapeli') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegames') diff --git a/extra/kdegraphics-gwenview/PKGBUILD b/extra/kdegraphics-gwenview/PKGBUILD index 9d3608d98..97b500140 100644 --- a/extra/kdegraphics-gwenview/PKGBUILD +++ b/extra/kdegraphics-gwenview/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="A fast and easy to use image viewer for KDE" url="http://kde.org/applications/graphics/gwenview/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegraphics') depends=('kdebase-lib' 'libkipi') diff --git a/extra/kdegraphics-kamera/PKGBUILD b/extra/kdegraphics-kamera/PKGBUILD index 1ed2c32a2..183d6dd0c 100644 --- a/extra/kdegraphics-kamera/PKGBUILD +++ b/extra/kdegraphics-kamera/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Configure Kamera" url="http://kde.org/applications/graphics/kamera/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegraphics') depends=('kdebase-runtime' 'gphoto2') diff --git a/extra/kdegraphics-kcolorchooser/PKGBUILD b/extra/kdegraphics-kcolorchooser/PKGBUILD index 518dcb92d..c734d406b 100644 --- a/extra/kdegraphics-kcolorchooser/PKGBUILD +++ b/extra/kdegraphics-kcolorchooser/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Color Chooser" url="http://kde.org/applications/graphics/kcolorchooser/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegraphics') depends=('kdebase-runtime') diff --git a/extra/kdegraphics-kgamma/PKGBUILD b/extra/kdegraphics-kgamma/PKGBUILD index e50ca539d..c3eb024e3 100644 --- a/extra/kdegraphics-kgamma/PKGBUILD +++ b/extra/kdegraphics-kgamma/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="A monitor calibration tool" url="http://kde.org/applications/graphics/kgamma/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegraphics') # note on libxxf86vm: diff --git a/extra/kdegraphics-kolourpaint/PKGBUILD b/extra/kdegraphics-kolourpaint/PKGBUILD index c4c0541ad..6fb85c217 100644 --- a/extra/kdegraphics-kolourpaint/PKGBUILD +++ b/extra/kdegraphics-kolourpaint/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Paint Program" url="http://kde.org/applications/graphics/kolourpaint/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegraphics') depends=('kdebase-runtime' 'qimageblitz') diff --git a/extra/kdegraphics-kruler/PKGBUILD b/extra/kdegraphics-kruler/PKGBUILD index 4be1d2bd6..32a58e460 100644 --- a/extra/kdegraphics-kruler/PKGBUILD +++ b/extra/kdegraphics-kruler/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Screen Ruler" url="http://kde.org/applications/graphics/kruler/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegraphics') depends=('kdebase-runtime') diff --git a/extra/kdegraphics-ksaneplugin/PKGBUILD b/extra/kdegraphics-ksaneplugin/PKGBUILD index 7703a880c..73f41b412 100644 --- a/extra/kdegraphics-ksaneplugin/PKGBUILD +++ b/extra/kdegraphics-ksaneplugin/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="A scan plugin that implements the scanning" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('libksane') makedepends=('cmake' 'automoc4') diff --git a/extra/kdegraphics-ksnapshot/PKGBUILD b/extra/kdegraphics-ksnapshot/PKGBUILD index 7557a3e90..842085d19 100644 --- a/extra/kdegraphics-ksnapshot/PKGBUILD +++ b/extra/kdegraphics-ksnapshot/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Screen Capture Program" url="http://kde.org/applications/graphics/ksnapshot/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegraphics') depends=('kdelibs' 'libkipi') diff --git a/extra/kdegraphics-mobipocket/PKGBUILD b/extra/kdegraphics-mobipocket/PKGBUILD index 392980cd3..de770154a 100644 --- a/extra/kdegraphics-mobipocket/PKGBUILD +++ b/extra/kdegraphics-mobipocket/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="A collection of plugins to handle mobipocket files" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdelibs') makedepends=('cmake' 'automoc4') diff --git a/extra/kdegraphics-okular/PKGBUILD b/extra/kdegraphics-okular/PKGBUILD index c255fa71b..67280fc9f 100644 --- a/extra/kdegraphics-okular/PKGBUILD +++ b/extra/kdegraphics-okular/PKGBUILD @@ -5,7 +5,7 @@ pkgname=kdegraphics-okular pkgver=4.7.3 pkgrel=1 pkgdesc='Document Viewer' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kde.org/applications/graphics/okular/" license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdegraphics') diff --git a/extra/kdegraphics-strigi-analyzer/PKGBUILD b/extra/kdegraphics-strigi-analyzer/PKGBUILD index 93bec47c1..aef829149 100644 --- a/extra/kdegraphics-strigi-analyzer/PKGBUILD +++ b/extra/kdegraphics-strigi-analyzer/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Strigi analyzers for various graphics file formats" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdelibs') makedepends=('cmake' 'automoc4') diff --git a/extra/kdegraphics-svgpart/PKGBUILD b/extra/kdegraphics-svgpart/PKGBUILD index b3fabfef4..a0ef75125 100644 --- a/extra/kdegraphics-svgpart/PKGBUILD +++ b/extra/kdegraphics-svgpart/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="A KPart for viewving SVGs" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdelibs') makedepends=('cmake' 'automoc4') diff --git a/extra/kdegraphics-thumbnailers/PKGBUILD b/extra/kdegraphics-thumbnailers/PKGBUILD index 4eba9a24a..a18545c7b 100644 --- a/extra/kdegraphics-thumbnailers/PKGBUILD +++ b/extra/kdegraphics-thumbnailers/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Thumbnailers for various graphics file formats" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('libkexiv2' 'libkdcraw') makedepends=('cmake' 'automoc4') diff --git a/extra/kdelibs/PKGBUILD b/extra/kdelibs/PKGBUILD index 40a5793c7..7fdf2f8a4 100644 --- a/extra/kdelibs/PKGBUILD +++ b/extra/kdelibs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kdelibs pkgver=4.7.3 pkgrel=1 pkgdesc="KDE Core Libraries" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') depends=('strigi' 'attica' 'libxss' 'xz' 'openssl' 'soprano' 'krb5' @@ -19,18 +19,15 @@ makedepends=('pkgconfig' 'cmake' 'automoc4' 'intltool' 'avahi' 'libgl' replaces=('kdelibs-experimental') install='kdelibs.install' source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2" - 'kde-applications-menu.patch' 'archlinux-menu.patch') + 'kde-applications-menu.patch') sha1sums=('4f1bbd1b4d558f3541057747db9bf7e9dcececb3' - '86ee8c8660f19de8141ac99cd6943964d97a1ed7' - '63a850ab4196b9d06934f2b4a13acd9f7739bc67') + '86ee8c8660f19de8141ac99cd6943964d97a1ed7') build() { cd "${srcdir}"/${pkgname}-${pkgver} # avoid file conflict with gnome-menus patch -p1 -i "${srcdir}"/kde-applications-menu.patch - # add Archlinux menu entry - patch -p1 -i "${srcdir}"/archlinux-menu.patch cd "${srcdir}" mkdir build @@ -38,7 +35,7 @@ build() { cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_SKIP_RPATH=ON \ - -DKDE_DISTRIBUTION_TEXT='Arch Linux' \ + -DKDE_DISTRIBUTION_TEXT='Parabola GNU/LinuxLibre' \ -DCMAKE_INSTALL_PREFIX=/usr \ -DSYSCONF_INSTALL_DIR=/etc \ -DHTML_INSTALL_DIR=/usr/share/doc/kde/html \ diff --git a/extra/kdelibs/archlinux-menu.patch b/extra/kdelibs/archlinux-menu.patch deleted file mode 100644 index 546784fa2..000000000 --- a/extra/kdelibs/archlinux-menu.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- kdelibs-4.3.98/kded/applications.menu 2010-01-31 19:28:11.000000000 +0000 -+++ kdelibs-4.3.98/kded/applications.menu 2010-01-31 22:25:53.556043077 +0000 -@@ -16,11 +16,19 @@ - </DefaultLayout> - <Layout> - <Merge type="menus"/> -+ <Menuname>Arch Linux</Menuname> - <Menuname>Applications</Menuname> - <Merge type="files"/> - </Layout> - - <Menu> -+ <Name>Arch Linux</Name> -+ <Directory>Archlinux.directory</Directory> -+ <Include> -+ <Category>Archlinux</Category> -+ </Include> -+ </Menu> -+ <Menu> - <Name>Applications</Name> - <Directory>kde-unknown.directory</Directory> - <OnlyUnallocated/> diff --git a/extra/kdelibs3/PKGBUILD b/extra/kdelibs3/PKGBUILD index a33b8ed25..e9494adac 100644 --- a/extra/kdelibs3/PKGBUILD +++ b/extra/kdelibs3/PKGBUILD @@ -7,7 +7,7 @@ pkgname=kdelibs3 pkgver=3.5.10 pkgrel=11 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/kdemultimedia/PKGBUILD b/extra/kdemultimedia/PKGBUILD index 76b4c5c98..cd59d8d24 100644 --- a/extra/kdemultimedia/PKGBUILD +++ b/extra/kdemultimedia/PKGBUILD @@ -12,7 +12,7 @@ pkgname=('kdemultimedia-dragonplayer' 'kdemultimedia-mplayerthumbs') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdemultimedia') diff --git a/extra/kdenetwork/PKGBUILD b/extra/kdenetwork/PKGBUILD index 7afb27545..0a99ea940 100644 --- a/extra/kdenetwork/PKGBUILD +++ b/extra/kdenetwork/PKGBUILD @@ -12,7 +12,7 @@ pkgname=('kdenetwork-filesharing' 'kdenetwork-krfb') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdenetwork') diff --git a/extra/kdepim-runtime/PKGBUILD b/extra/kdepim-runtime/PKGBUILD index 82f672339..27ff41080 100644 --- a/extra/kdepim-runtime/PKGBUILD +++ b/extra/kdepim-runtime/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kdepim-runtime pkgver=4.7.3 pkgrel=1 pkgdesc='KDE PIM Runtime Environment' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') depends=('kdepimlibs' 'kdebase-runtime') diff --git a/extra/kdepim/PKGBUILD b/extra/kdepim/PKGBUILD index 4e25b0ec7..be4e55bb2 100644 --- a/extra/kdepim/PKGBUILD +++ b/extra/kdepim/PKGBUILD @@ -22,7 +22,7 @@ pkgname=('kdepim-akonadiconsole' 'kdepim-wizards') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://pim.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdepim') diff --git a/extra/kdepimlibs/PKGBUILD b/extra/kdepimlibs/PKGBUILD index db01bf246..fc01cff36 100644 --- a/extra/kdepimlibs/PKGBUILD +++ b/extra/kdepimlibs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kdepimlibs pkgver=4.7.3 pkgrel=1 pkgdesc="KDE PIM Libraries" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL') depends=('kdelibs' 'gpgme' 'akonadi' 'libical' 'prison') @@ -19,6 +19,7 @@ build() { cd ${srcdir} mkdir build cd build + CXX="g++" \ cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_SKIP_RPATH=ON \ diff --git a/extra/kdeplasma-addons/PKGBUILD b/extra/kdeplasma-addons/PKGBUILD index 7104b5515..bad1591cf 100644 --- a/extra/kdeplasma-addons/PKGBUILD +++ b/extra/kdeplasma-addons/PKGBUILD @@ -74,7 +74,7 @@ pkgname=('kdeplasma-addons-applets-bball' 'kdeplasma-addons-wallpapers-weather') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL') groups=('kde' 'kdeplasma-addons') diff --git a/extra/kdeplasma-applets-networkmanagement/PKGBUILD b/extra/kdeplasma-applets-networkmanagement/PKGBUILD index f6b7670b4..dccc6f3c6 100644 --- a/extra/kdeplasma-applets-networkmanagement/PKGBUILD +++ b/extra/kdeplasma-applets-networkmanagement/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.9.0rc2 _pkgver=0.8.95 pkgrel=1 pkgdesc="KDE control panel and widget network connections" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde.org/" license=('GPL') depends=('kdebase-workspace' 'networkmanager') diff --git a/extra/kdesdk-kate/PKGBUILD b/extra/kdesdk-kate/PKGBUILD index 95367bebc..ab43ade39 100644 --- a/extra/kdesdk-kate/PKGBUILD +++ b/extra/kdesdk-kate/PKGBUILD @@ -6,7 +6,7 @@ pkgname=('kdebase-kwrite' 'kdesdk-kate') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') makedepends=('kdelibs ''cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/kate-${pkgver}.tar.bz2" diff --git a/extra/kdesdk/PKGBUILD b/extra/kdesdk/PKGBUILD index 0d5e9947a..773086d6f 100644 --- a/extra/kdesdk/PKGBUILD +++ b/extra/kdesdk/PKGBUILD @@ -26,7 +26,7 @@ pkgname=('kdesdk-cervisia' 'kdesdk-umbrello') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdesdk') diff --git a/extra/kdetoys/PKGBUILD b/extra/kdetoys/PKGBUILD index 68c477f42..6b6c0441b 100644 --- a/extra/kdetoys/PKGBUILD +++ b/extra/kdetoys/PKGBUILD @@ -8,7 +8,7 @@ pkgname=('kdetoys-amor' 'kdetoys-ktux') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdetoys') diff --git a/extra/kdeutils/PKGBUILD b/extra/kdeutils/PKGBUILD index 7aca6d6a9..f875791fc 100644 --- a/extra/kdeutils/PKGBUILD +++ b/extra/kdeutils/PKGBUILD @@ -18,7 +18,7 @@ pkgname=('kdeutils-ark' 'kdeutils-sweeper') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeutils') diff --git a/extra/kdevelop-pg-qt/PKGBUILD b/extra/kdevelop-pg-qt/PKGBUILD index 1a46a89f5..94e797734 100644 --- a/extra/kdevelop-pg-qt/PKGBUILD +++ b/extra/kdevelop-pg-qt/PKGBUILD @@ -5,7 +5,7 @@ pkgname=kdevelop-pg-qt pkgver=0.9.5 pkgrel=1 pkgdesc="KDevelop Parser Generator, a LL(1) parser generator used by KDevelop language plugins" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kdevelop.org/" license=('GPL') depends=('kdelibs') diff --git a/extra/kdevelop-php/PKGBUILD b/extra/kdevelop-php/PKGBUILD index bdf4aab89..7e5ea3478 100644 --- a/extra/kdevelop-php/PKGBUILD +++ b/extra/kdevelop-php/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.2.3 _pkgver=4.2.3 pkgrel=1 pkgdesc="PHP language and documentation plugin for KDevelop/Quanta" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kdevelop.org/" license=('GPL') depends=('kdevplatform' 'kdevelop-pg-qt') diff --git a/extra/kdevelop/PKGBUILD b/extra/kdevelop/PKGBUILD index 3b0055d2e..3f336f03d 100644 --- a/extra/kdevelop/PKGBUILD +++ b/extra/kdevelop/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kdevelop pkgver=4.2.3 pkgrel=2 pkgdesc="A C/C++ development environment for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kdevelop.org/" license=('GPL') depends=('kdebase-workspace' 'kdevplatform' 'kdesdk-okteta' 'kdebase-kwrite') diff --git a/extra/kdevplatform/PKGBUILD b/extra/kdevplatform/PKGBUILD index b77ab5dd6..e01c3d51e 100644 --- a/extra/kdevplatform/PKGBUILD +++ b/extra/kdevplatform/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.2.3 _pkgver=4.2.3 pkgrel=1 pkgdesc="A C/C++ development platform for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kdevelop.org/" license=('GPL') depends=('kdelibs' 'boost-libs' 'subversion' 'qjson') diff --git a/extra/kdewebdev/PKGBUILD b/extra/kdewebdev/PKGBUILD index 5b4d8d43e..ac5d5745e 100644 --- a/extra/kdewebdev/PKGBUILD +++ b/extra/kdewebdev/PKGBUILD @@ -8,7 +8,7 @@ pkgname=('kdewebdev-kfilereplace' 'kdewebdev-kommander') pkgver=4.7.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdewebdev') diff --git a/extra/kdiff3/PKGBUILD b/extra/kdiff3/PKGBUILD index 456888917..feb20a0f2 100644 --- a/extra/kdiff3/PKGBUILD +++ b/extra/kdiff3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=kdiff3 pkgver=0.9.96 pkgrel=1 pkgdesc="A KDE file comparator/merge tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kdiff3.sourceforge.net/" license=('GPL') depends=('kdebase-runtime') diff --git a/extra/kexec-tools/PKGBUILD b/extra/kexec-tools/PKGBUILD index e8e5ccdb1..b2121f984 100644 --- a/extra/kexec-tools/PKGBUILD +++ b/extra/kexec-tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kexec-tools pkgver=2.0.2 pkgrel=4 pkgdesc="Load another kernel from the currently executing Linux kernel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kernel.org/pub/linux/utils/kernel/kexec/" source=("http://kernel.org/pub/linux/utils/kernel/kexec/kexec-tools-${pkgver}.tar.bz2" 'kexec-tools-2.0.0-purgatory-makefile.patch' diff --git a/extra/kile/PKGBUILD b/extra/kile/PKGBUILD index fb6b5756c..7be9788fd 100644 --- a/extra/kile/PKGBUILD +++ b/extra/kile/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kile pkgver=2.1 pkgrel=2 pkgdesc="A user friendly TeX/LaTeX frontend for KDE" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') license=('GPL2') url="http://kile.sourceforge.net/" depends=('kdebase-runtime' 'texlive-core' 'kdebase-kwrite') diff --git a/extra/kino/PKGBUILD b/extra/kino/PKGBUILD index 2a9681e31..432c6b015 100644 --- a/extra/kino/PKGBUILD +++ b/extra/kino/PKGBUILD @@ -6,7 +6,7 @@ pkgname=kino pkgver=1.3.4 pkgrel=4 pkgdesc="A non-linear DV editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kinodv.org/" license=('GPL') depends=('libavc1394' 'libiec61883' 'libdv' 'libglade' 'libxv' 'libsamplerate' 'libsm') diff --git a/extra/kismet/PKGBUILD b/extra/kismet/PKGBUILD index 015044fe8..a2450f3ac 100644 --- a/extra/kismet/PKGBUILD +++ b/extra/kismet/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2011_03_R2 _realver="${pkgver//_/-}" pkgrel=2 pkgdesc="802.11 layer2 wireless network detector, sniffer, and intrusion detection system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kismetwireless.net/" license=('GPL') depends=('libcap' 'libnl' 'pcre' 'ncurses' 'libpcap>=1.0.0' 'bluez' 'openssl') # already in core: ('linux-api-headers' 'glibc' 'libusb' 'libusb-compat') diff --git a/extra/kobodeluxe/PKGBUILD b/extra/kobodeluxe/PKGBUILD index 228930797..8a52ce946 100644 --- a/extra/kobodeluxe/PKGBUILD +++ b/extra/kobodeluxe/PKGBUILD @@ -5,7 +5,7 @@ pkgname=kobodeluxe pkgver=0.5.1 pkgrel=3 pkgdesc="An enhanced version of Akira Higuchi's game XKobo, an addictive space shoot'em up" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.olofson.net/kobodl/" license=('GPL' 'LGPL') depends=('libjpeg' 'libpng' 'sdl_image' 'hicolor-icon-theme' 'gtk-update-icon-cache') diff --git a/extra/koffice/PKGBUILD b/extra/koffice/PKGBUILD index 2425f5077..56a5e6907 100644 --- a/extra/koffice/PKGBUILD +++ b/extra/koffice/PKGBUILD @@ -38,12 +38,16 @@ pkgname=( ) pkgver=2.3.3 pkgrel=9 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://koffice.kde.org' license=('GPL' 'LGPL' 'FDL') makedepends=('pkg-config' 'cmake' 'automoc4' 'boost' 'eigen' 'gsl' 'lcms' 'glew' 'qimageblitz' 'kdepimlibs' 'pstoedit' 'poppler-qt' 'libwpd' 'libwpg' 'opengtl' 'libkdcraw' 'oxygen-icons') +[ "$CARCH" = "mips64el" ] && \ +makedepends=('pkg-config' 'cmake' 'automoc4' 'boost' 'eigen' 'gsl' 'lcms' + 'glew' 'qimageblitz' 'kdepimlibs' 'pstoedit' 'poppler-qt' 'libwpd' + 'libwpg' 'libkdcraw' 'oxygen-icons') groups=('koffice') source=("http://download.kde.org/stable/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}.tar.bz2" 'kde4-koffice-libwpg02.patch' 'gcc46.patch') @@ -221,6 +225,10 @@ package_koffice-krita(){ depends=('glew' 'qimageblitz' 'oxygen-icons' 'koffice-templates' \ 'koffice-plugins' 'poppler-qt' 'opengtl') optdepends=('koffice-filters: import/export filters' 'libkdcraw: support for raw images') +[ "$CARCH" = "mips64el" ] && \ + depends=('glew' 'qimageblitz' 'oxygen-icons' 'koffice-templates' \ + 'koffice-plugins' 'poppler-qt') + optdepends=('koffice-filters: import/export filters') install=krita.install cd "${srcdir}/build/krita" make DESTDIR="${pkgdir}" install diff --git a/extra/konversation/PKGBUILD b/extra/konversation/PKGBUILD index e118d6562..da5825e84 100644 --- a/extra/konversation/PKGBUILD +++ b/extra/konversation/PKGBUILD @@ -7,7 +7,7 @@ pkgname=konversation pkgver=1.3.1 pkgrel=2 pkgdesc="A user friendly IRC client for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://konversation.kde.org" depends=('kdebase-runtime' 'kdepimlibs') makedepends=('automoc4' 'cmake' 'pkgconfig' 'docbook-xml') diff --git a/extra/kradio/PKGBUILD b/extra/kradio/PKGBUILD index 6f776a1fc..05f8f1873 100644 --- a/extra/kradio/PKGBUILD +++ b/extra/kradio/PKGBUILD @@ -4,7 +4,7 @@ pkgname=kradio pkgver=4.0.2 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') pkgdesc="KRadio is a comfortable KDE radio application" url="http://kradio.sourceforge.net/" diff --git a/extra/ksensors/PKGBUILD b/extra/ksensors/PKGBUILD index 6db8e7e85..43c278c66 100644 --- a/extra/ksensors/PKGBUILD +++ b/extra/ksensors/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ksensors pkgver=0.7.3 pkgrel=5 pkgdesc="ksensors is nice lm_sensors frontend for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ksensors.sourceforge.net/" license=("GPL") depends=("lm_sensors>=3.0.0" 'kdelibs3') diff --git a/extra/kshutdown/PKGBUILD b/extra/kshutdown/PKGBUILD index f9d9a6322..99e58f307 100644 --- a/extra/kshutdown/PKGBUILD +++ b/extra/kshutdown/PKGBUILD @@ -5,7 +5,7 @@ pkgname=kshutdown pkgver=2.0 pkgrel=1 pkgdesc="Shutdown Utility for KDE" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://kshutdown.sourceforge.net/" license=('GPL') depends=('kdebase-workspace') diff --git a/extra/ktorrent/PKGBUILD b/extra/ktorrent/PKGBUILD index 1bd4fffee..086bbd42f 100644 --- a/extra/ktorrent/PKGBUILD +++ b/extra/ktorrent/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ktorrent pkgver=4.1.2 pkgrel=1 pkgdesc="A powerful BitTorrent client for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ktorrent.org" license=('GPL2') depends=('libktorrent' 'kdebase-workspace' 'taglib') diff --git a/extra/kwebkitpart/PKGBUILD b/extra/kwebkitpart/PKGBUILD index f07fa6c0e..cc44ba19b 100644 --- a/extra/kwebkitpart/PKGBUILD +++ b/extra/kwebkitpart/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.2.0 pkgrel=1 pkgdesc="A WebKit browser component for KDE" url="http://opendesktop.org/content/show.php?content=127960" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') diff --git a/extra/lablgtk/PKGBUILD b/extra/lablgtk/PKGBUILD index 1da638913..64a24ebb6 100644 --- a/extra/lablgtk/PKGBUILD +++ b/extra/lablgtk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lablgtk pkgver=1.2.7 pkgrel=8 pkgdesc=" An Objective Caml interface to gtk+" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/lablgtk.html" license=('LGPL') depends=('gtk') diff --git a/extra/lablgtk2/PKGBUILD b/extra/lablgtk2/PKGBUILD index baf833da8..20a6b9985 100644 --- a/extra/lablgtk2/PKGBUILD +++ b/extra/lablgtk2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lablgtk2 pkgver=2.14.2 pkgrel=4 pkgdesc=" An Objective Caml interface to gtk2" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://lablgtk.forge.ocamlcore.org/" depends=('gtk2' 'gtkspell' 'libgnomecanvas' 'librsvg' 'libgnomeui' 'gtksourceview2') diff --git a/extra/ladspa/PKGBUILD b/extra/ladspa/PKGBUILD index 3f0fb5aad..e7009dfdf 100644 --- a/extra/ladspa/PKGBUILD +++ b/extra/ladspa/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ladspa pkgver=1.13 pkgrel=3 pkgdesc="Linux Audio Developer's Simple Plugin API (LADSPA)" -arch=('i686' 'x86_64') +arch=("i686" "x86_64" 'mips64el') license=('LGPL') url="http://www.ladspa.org/" depends=('gcc-libs') diff --git a/extra/lapack/PKGBUILD b/extra/lapack/PKGBUILD index ecc002737..9a7dec0c7 100644 --- a/extra/lapack/PKGBUILD +++ b/extra/lapack/PKGBUILD @@ -11,7 +11,7 @@ url="http://www.netlib.org/lapack" pkgdesc="Linear Algebra PACKage" makedepends=('gcc-fortran') depends=("blas=${pkgver}") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=("custom") source=(http://www.netlib.org/${pkgname}/${pkgname}-${pkgver}.tgz lapack-3.1.1-make.inc.patch diff --git a/extra/latex2rtf/PKGBUILD b/extra/latex2rtf/PKGBUILD index a9796f0b5..e80c4c714 100644 --- a/extra/latex2rtf/PKGBUILD +++ b/extra/latex2rtf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=latex2rtf pkgver=2.1.0 pkgrel=1 pkgdesc="LaTeX to RTF converter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://latex2rtf.sourceforge.net/" license=('GPL') depends=('glibc' 'imagemagick' 'ghostscript') diff --git a/extra/lbreakout2/PKGBUILD b/extra/lbreakout2/PKGBUILD index 2744d3bd1..28cd87041 100644 --- a/extra/lbreakout2/PKGBUILD +++ b/extra/lbreakout2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lbreakout2 pkgver=2.6.3 pkgrel=1 pkgdesc="A breakout game with nice effects, graphics, and sounds" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lgames.sourceforge.net" license=('GPL') depends=('sdl_mixer' 'libpng') diff --git a/extra/lcab/PKGBUILD b/extra/lcab/PKGBUILD index bebea4c52..56136c565 100644 --- a/extra/lcab/PKGBUILD +++ b/extra/lcab/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lcab pkgver=1.0b12 pkgrel=2 pkgdesc="A program to make Microsoft cabinet files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://freshmeat.net/projects/lcab/" depends=('glibc') diff --git a/extra/lcms/PKGBUILD b/extra/lcms/PKGBUILD index effc73c13..a3907bc85 100644 --- a/extra/lcms/PKGBUILD +++ b/extra/lcms/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lcms pkgver=1.19 pkgrel=1 pkgdesc="Lightweight color management development library/engine" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') depends=('libtiff>=3.9.4') url="http://www.littlecms.com" diff --git a/extra/lcms2/PKGBUILD b/extra/lcms2/PKGBUILD index 7cdcf8bfa..c818e5e30 100644 --- a/extra/lcms2/PKGBUILD +++ b/extra/lcms2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lcms2 pkgver=2.2 pkgrel=1 pkgdesc="Small-footprint color management engine, version 2" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('MIT') depends=('libtiff>=3.9.4') url="http://www.littlecms.com" diff --git a/extra/leafpad/PKGBUILD b/extra/leafpad/PKGBUILD index 179133ff4..67317dd6a 100644 --- a/extra/leafpad/PKGBUILD +++ b/extra/leafpad/PKGBUILD @@ -6,7 +6,7 @@ pkgname=leafpad pkgver=0.8.18.1 pkgrel=2 pkgdesc="A notepad clone for GTK+ 2.0" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://tarot.freeshell.org/leafpad/" license=('GPL') depends=('gtk2' 'desktop-file-utils') diff --git a/extra/lensfun/PKGBUILD b/extra/lensfun/PKGBUILD index b1ec2b92b..8435e0a45 100644 --- a/extra/lensfun/PKGBUILD +++ b/extra/lensfun/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lensfun pkgver=0.2.5 pkgrel=2 pkgdesc="Database of photographic lenses and a library that allows advanced access to the database" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://lensfun.berlios.de/" license=('LGPL3') depends=('glibc' 'glib2') diff --git a/extra/lesstif/PKGBUILD b/extra/lesstif/PKGBUILD index 8d14fbd97..5b2380e0c 100644 --- a/extra/lesstif/PKGBUILD +++ b/extra/lesstif/PKGBUILD @@ -8,7 +8,7 @@ pkgname=lesstif pkgver=0.95.2 pkgrel=3 pkgdesc="LGPL'd re-implementation of Motif" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lesstif.org/" license=('LGPL' 'MIT') depends=('freetype2' 'libxt' 'libxp') diff --git a/extra/lftp/PKGBUILD b/extra/lftp/PKGBUILD index 1a568d541..3c71a1460 100644 --- a/extra/lftp/PKGBUILD +++ b/extra/lftp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lftp pkgver=4.3.3 pkgrel=1 pkgdesc="Sophisticated command line based FTP client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') depends=('gcc-libs' 'readline>=6.2' "gnutls" "expat>=2.0.1-4" 'sh') optdepends=('perl: needed for convert-netscape-cookies and verify-file') diff --git a/extra/libao/PKGBUILD b/extra/libao/PKGBUILD index 8107c96b2..265e64f2b 100644 --- a/extra/libao/PKGBUILD +++ b/extra/libao/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.1.0 pkgrel=1 pkgdesc="A cross-platform audio output library and plugins" url="http://www.xiph.org/ao" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('glibc' 'alsa-lib') makedepends=('libpulse') diff --git a/extra/libart-lgpl/PKGBUILD b/extra/libart-lgpl/PKGBUILD index c7cdbfeac..614af1640 100644 --- a/extra/libart-lgpl/PKGBUILD +++ b/extra/libart-lgpl/PKGBUILD @@ -5,7 +5,7 @@ pkgver=2.3.21 pkgrel=1 pkgdesc="A library for high-performance 2D graphics" url="http://www.levien.com/libart/" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('glibc') source=(http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${pkgver}.tar.bz2) diff --git a/extra/libass/PKGBUILD b/extra/libass/PKGBUILD index a8bc64db7..278a75386 100644 --- a/extra/libass/PKGBUILD +++ b/extra/libass/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libass pkgver=0.10.0 pkgrel=1 pkgdesc="A portable library for SSA/ASS subtitles rendering" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/libass/" license=('BSD') depends=('enca' 'fontconfig' 'libpng' 'fribidi') diff --git a/extra/libassuan/PKGBUILD b/extra/libassuan/PKGBUILD index 29aa66536..4c330721d 100644 --- a/extra/libassuan/PKGBUILD +++ b/extra/libassuan/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libassuan pkgver=2.0.2 pkgrel=1 pkgdesc="A IPC library used by some GnuPG related software" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnupg.org/related_software/libassuan" depends=('libgpg-error') diff --git a/extra/libasyncns/PKGBUILD b/extra/libasyncns/PKGBUILD index 06ac6eaac..93c625931 100644 --- a/extra/libasyncns/PKGBUILD +++ b/extra/libasyncns/PKGBUILD @@ -9,7 +9,7 @@ pkgname=libasyncns pkgver=0.8 pkgrel=3 pkgdesc="A C library for Linux/Unix for executing name service queries asynchronously" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://0pointer.de/lennart/projects/libasyncns" license=('LGPL') options=('!libtool') diff --git a/extra/libatasmart/PKGBUILD b/extra/libatasmart/PKGBUILD index 7a1ec6b47..927756c88 100644 --- a/extra/libatasmart/PKGBUILD +++ b/extra/libatasmart/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libatasmart pkgver=0.18 pkgrel=1 pkgdesc="ATA S.M.A.R.T. Reading and Parsing Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('udev>=174') url="http://0pointer.de/blog/projects/being-smart.html" diff --git a/extra/libavc1394/PKGBUILD b/extra/libavc1394/PKGBUILD index 98a6836f5..af377fd49 100644 --- a/extra/libavc1394/PKGBUILD +++ b/extra/libavc1394/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libavc1394 pkgver=0.5.4 pkgrel=1 pkgdesc="A library to control A/V devices using the 1394ta AV/C commands." -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://sourceforge.net/projects/libavc1394/" license=('LGPL') depends=('libraw1394') diff --git a/extra/libbluedevil/PKGBUILD b/extra/libbluedevil/PKGBUILD index 760cd2510..86bd35dc1 100644 --- a/extra/libbluedevil/PKGBUILD +++ b/extra/libbluedevil/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libbluedevil pkgver=1.9.1 pkgrel=1 pkgdesc='A Qt wrapper for bluez used in the new KDE bluetooth stack' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://projects.kde.org/projects/playground/libs/libbluedevil" license=('GPL') depends=('qt' 'bluez') diff --git a/extra/libbonobo/PKGBUILD b/extra/libbonobo/PKGBUILD index abfb2a186..a80eb9217 100644 --- a/extra/libbonobo/PKGBUILD +++ b/extra/libbonobo/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libbonobo pkgver=2.32.1 pkgrel=1 pkgdesc="A set of language and system independant CORBA interfaces for creating reusable components" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'LGPL') depends=('orbit2' 'libxml2' 'glib2') makedepends=('intltool' 'pkgconfig' 'flex') diff --git a/extra/libbonoboui/PKGBUILD b/extra/libbonoboui/PKGBUILD index ef75ec844..2dc72c61e 100644 --- a/extra/libbonoboui/PKGBUILD +++ b/extra/libbonoboui/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libbonoboui pkgver=2.24.5 pkgrel=1 pkgdesc="User Interface library for Bonobo" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL') depends=('libgnomecanvas' 'libgnome') makedepends=('intltool' 'pkgconfig') diff --git a/extra/libburn/PKGBUILD b/extra/libburn/PKGBUILD index e8fbd4cba..e6a4c6174 100644 --- a/extra/libburn/PKGBUILD +++ b/extra/libburn/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libburn pkgver=1.1.6 #.pl01 pkgrel=1 pkgdesc="Library for reading, mastering and writing optical discs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libburnia.pykix.org/" license=('GPL') depends=('glibc') diff --git a/extra/libcaca/PKGBUILD b/extra/libcaca/PKGBUILD index 65485d162..8252e22ee 100644 --- a/extra/libcaca/PKGBUILD +++ b/extra/libcaca/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libcaca pkgver=0.99.beta17 pkgrel=1 pkgdesc="Color AsCii Art library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://libcaca.zoy.org/" depends=('imlib2' 'ncurses>=5.7') diff --git a/extra/libcanberra/PKGBUILD b/extra/libcanberra/PKGBUILD index 92f2b3084..44c66a08e 100644 --- a/extra/libcanberra/PKGBUILD +++ b/extra/libcanberra/PKGBUILD @@ -6,7 +6,7 @@ pkgname=(libcanberra libcanberra-pulse libcanberra-gstreamer) pkgver=0.28 pkgrel=2 pkgdesc="A small and lightweight implementation of the XDG Sound Theme Specification" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('libvorbis' 'libtool' 'alsa-lib' 'tdb') makedepends=('gtk-doc' 'libpulse' 'gstreamer0.10' 'gtk2' 'gtk3') diff --git a/extra/libcap-ng/PKGBUILD b/extra/libcap-ng/PKGBUILD index 1e3544bfd..aee0abad5 100644 --- a/extra/libcap-ng/PKGBUILD +++ b/extra/libcap-ng/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libcap-ng pkgver=0.6.6 pkgrel=1 pkgdesc="A library intended to make programming with POSIX capabilities much easier than the traditional libcap" -arch=('i686' 'x86_64') +arch=(mips64el) url="http://people.redhat.com/sgrubb/libcap-ng/" license=('GPL2' 'LGPL2.1') depends=('glibc') diff --git a/extra/libcdaudio/PKGBUILD b/extra/libcdaudio/PKGBUILD index 64159d23e..2a03b2494 100644 --- a/extra/libcdaudio/PKGBUILD +++ b/extra/libcdaudio/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libcdaudio pkgver=0.99.12 pkgrel=5 pkgdesc="Library for controlling Audio CDs and interacting with CDDB" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libcdaudio.sourceforge.net/" license=('GPL') depends=('glibc') diff --git a/extra/libcddb/PKGBUILD b/extra/libcddb/PKGBUILD index 51b3b7d02..f368ad6c8 100644 --- a/extra/libcddb/PKGBUILD +++ b/extra/libcddb/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libcddb pkgver=1.3.2 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="Library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server (e.g. http://freedb.org)." url="http://sourceforge.net/projects/libcddb/" license=('LGPL') diff --git a/extra/libcdio/PKGBUILD b/extra/libcdio/PKGBUILD index 4c309a65e..40ef4c2f9 100644 --- a/extra/libcdio/PKGBUILD +++ b/extra/libcdio/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libcdio pkgver=0.82 pkgrel=1 pkgdesc="GNU Compact Disc Input and Control Library" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') license=('GPL3') url="http://www.gnu.org/software/libcdio/" depends=('gcc-libs>=4.4.2' 'libcddb' 'ncurses') diff --git a/extra/libchamplain/PKGBUILD b/extra/libchamplain/PKGBUILD index a505d4e56..5a9304dd1 100644 --- a/extra/libchamplain/PKGBUILD +++ b/extra/libchamplain/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Gtk3 widget for displaying rasterized maps" url="http://projects.gnome.org/libchamplain/" license=('LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!libtool') depends=('clutter-gtk' 'libsoup-gnome' 'cairo' 'sqlite3') makedepends=('gobject-introspection' 'gtk-doc' 'vala') diff --git a/extra/libchewing/PKGBUILD b/extra/libchewing/PKGBUILD index d1ee325e4..7c289746d 100644 --- a/extra/libchewing/PKGBUILD +++ b/extra/libchewing/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libchewing pkgver=0.3.3 pkgrel=1 pkgdesc='Intelligent Zhuyin input method library for traditional Chinese' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://chewing.csie.net/' license=('GPL') options=('!libtool') diff --git a/extra/libcroco/PKGBUILD b/extra/libcroco/PKGBUILD index fef3e85b3..051d67b70 100644 --- a/extra/libcroco/PKGBUILD +++ b/extra/libcroco/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libcroco pkgver=0.6.2 pkgrel=2 pkgdesc="GNOME CSS2 parsing and manipulation toolkit" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') depends=('glib2' 'libxml2') makedepends=('intltool' 'pkgconfig') license=('LGPL') diff --git a/extra/libcue/PKGBUILD b/extra/libcue/PKGBUILD index 95e1c4d21..ba69e0e57 100644 --- a/extra/libcue/PKGBUILD +++ b/extra/libcue/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libcue pkgver=1.4.0 pkgrel=2 pkgdesc='Parses so-called cue sheets and handles the parsed data' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://sourceforge.net/projects/libcue/' license=('GPL2') depends=('glibc') diff --git a/extra/libdaemon/PKGBUILD b/extra/libdaemon/PKGBUILD index c6bbc1c9c..092a06c90 100644 --- a/extra/libdaemon/PKGBUILD +++ b/extra/libdaemon/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc="A lightweight C library which eases the writing of UNIX daemons" url="http://0pointer.de/lennart/projects/libdaemon/" license=('LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glibc') source=(http://0pointer.de/lennart/projects/libdaemon/$pkgname-$pkgver.tar.gz) options=('!libtool') diff --git a/extra/libdatrie/PKGBUILD b/extra/libdatrie/PKGBUILD index 68ac77c7f..1a5ec986b 100644 --- a/extra/libdatrie/PKGBUILD +++ b/extra/libdatrie/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="Implementation of double-array structure for representing trie, as proposed by Junichi Aoe." url="http://linux.thai.net/~thep/datrie/datrie.html" license=('LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glibc') options=('!libtool' '!emptydirs') source=(http://linux.thai.net/pub/thailinux/software/libthai/${pkgname}-${pkgver}.tar.gz) diff --git a/extra/libdbusmenu-qt/PKGBUILD b/extra/libdbusmenu-qt/PKGBUILD index 8fe07455b..ae10da267 100644 --- a/extra/libdbusmenu-qt/PKGBUILD +++ b/extra/libdbusmenu-qt/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libdbusmenu-qt pkgver=0.9.0 pkgrel=1 pkgdesc="A library that provides a Qt implementation of the DBusMenu spec" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://launchpad.net/libdbusmenu-qt" license=('GPL') depends=('qt') diff --git a/extra/libdc1394/PKGBUILD b/extra/libdc1394/PKGBUILD index aaba1b8d3..674c62bc5 100644 --- a/extra/libdc1394/PKGBUILD +++ b/extra/libdc1394/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libdc1394 pkgver=2.1.3 pkgrel=2 pkgdesc="High level programming interface to control IEEE 1394 based cameras" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://sourceforge.net/projects/libdc1394/" depends=('libraw1394>=2.0.7' 'libusb') diff --git a/extra/libdc1394/fix-videodev.h.patch b/extra/libdc1394/fix-videodev.h.patch new file mode 100644 index 000000000..560337978 --- /dev/null +++ b/extra/libdc1394/fix-videodev.h.patch @@ -0,0 +1,53 @@ +From 2ee7e7f98dd6225b40d5cd570c240504be7bc86a Mon Sep 17 00:00:00 2001 +From: David Moore <david.moore@gmail.com> +Date: Sun, 27 Mar 2011 22:48:15 -0700 +Subject: [PATCH] Conditionally compile dc1394_vloopback only when linux/videodev.h exists + +--- + libdc1394/ChangeLog | 3 +++ + libdc1394/configure.in | 3 +++ + libdc1394/examples/Makefile.am | 2 ++ + 3 files changed, 8 insertions(+), 0 deletions(-) + +diff --git a/libdc1394/ChangeLog b/libdc1394/ChangeLog +index e1355de..536ccae 100644 +--- a/libdc1394/ChangeLog ++++ b/libdc1394/ChangeLog +@@ -1,3 +1,6 @@ ++2011-03-27 David Moore <david.moore@gmail.com> ++ * Conditionally compile dc1394_vloopback only when linux/video.h exists ++ + 2011-01-02 David Moore <david.moore@gmail.com> + * dc1394/conversions.h: Fix typo in DC1394_STEREO_METHOD_MIN + * Update NEWS, README, AUTHORS and version for release 2.1.3. +diff --git a/libdc1394/configure.in b/libdc1394/configure.in +index 69babab..bdddc9b 100644 +--- a/libdc1394/configure.in ++++ b/libdc1394/configure.in +@@ -75,6 +75,9 @@ AM_CONDITIONAL(HAVE_WINDOWS, test x$have_windows = xtrue) + AM_CONDITIONAL(HAVE_LIBRAW1394, test x$libraw1394 = xtrue) + AM_CONDITIONAL(HAVE_LIBUSB, test "x$LIBUSB_LIBS" != "x") + ++AC_CHECK_HEADER([linux/videodev.h], [have_videodev=true]) ++AM_CONDITIONAL(HAVE_VIDEODEV, test x$have_videodev = xtrue) ++ + AC_ARG_ENABLE([examples], [AS_HELP_STRING([--disable-examples], [don't build example programs])], [build_examples=$enableval], [build_examples=true]) + + AM_CONDITIONAL(MAKE_EXAMPLES, test x$build_examples = xtrue) +diff --git a/libdc1394/examples/Makefile.am b/libdc1394/examples/Makefile.am +index fcebf18..035612e 100644 +--- a/libdc1394/examples/Makefile.am ++++ b/libdc1394/examples/Makefile.am +@@ -8,7 +8,9 @@ A = grab_gray_image grab_partial_image grab_color_image \ + B = dc1394_reset_bus + + if HAVE_LINUX ++if HAVE_VIDEODEV + B += dc1394_vloopback ++endif + if HAVE_XV + A += dc1394_multiview + endif +-- +1.7.0.1 + diff --git a/extra/libdca/PKGBUILD b/extra/libdca/PKGBUILD index bc42228f3..d642da853 100644 --- a/extra/libdca/PKGBUILD +++ b/extra/libdca/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libdca pkgver=0.0.5 pkgrel=3 pkgdesc="Free library for decoding DTS Coherent Acoustics streams" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.videolan.org/developers/libdca.html" depends=('sh') diff --git a/extra/libdiscid/PKGBUILD b/extra/libdiscid/PKGBUILD index f1eccb6a8..82c606ebd 100644 --- a/extra/libdiscid/PKGBUILD +++ b/extra/libdiscid/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libdiscid pkgver=0.2.2 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') pkgdesc="A Library for creating MusicBrainz DiscIDs" url="http://musicbrainz.org/doc/libdiscid" diff --git a/extra/libdmapsharing/PKGBUILD b/extra/libdmapsharing/PKGBUILD index fb532e990..6f3f3eb53 100644 --- a/extra/libdmapsharing/PKGBUILD +++ b/extra/libdmapsharing/PKGBUILD @@ -4,7 +4,7 @@ pkgname=libdmapsharing pkgver=2.9.12 pkgrel=1 pkgdesc="A library that implements the DMAP family of protocols" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.flyn.org/projects/libdmapsharing/index.html" license=('LGPL2.1') depends=('libsoup' 'avahi' 'gstreamer0.10-base' 'gdk-pixbuf2') diff --git a/extra/libdmtx/PKGBUILD b/extra/libdmtx/PKGBUILD index 30f02eb3c..a8a128035 100644 --- a/extra/libdmtx/PKGBUILD +++ b/extra/libdmtx/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.7.4 pkgrel=1 pkgdesc="A software for reading and writing Data Matrix 2D barcodes" url="http://www.libdmtx.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') depends=('glibc' 'imagemagick') source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2") diff --git a/extra/libdmx/PKGBUILD b/extra/libdmx/PKGBUILD index 3397db220..bb52faac4 100644 --- a/extra/libdmx/PKGBUILD +++ b/extra/libdmx/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libdmx pkgver=1.1.1 pkgrel=1 pkgdesc="X11 Distributed Multihead extension library" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('dmxproto' 'libxext') diff --git a/extra/libdrm/PKGBUILD b/extra/libdrm/PKGBUILD index c33d279c9..15c62994a 100644 --- a/extra/libdrm/PKGBUILD +++ b/extra/libdrm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libdrm pkgver=2.4.27 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') diff --git a/extra/libdv/PKGBUILD b/extra/libdv/PKGBUILD index d8b127c48..1b6756520 100644 --- a/extra/libdv/PKGBUILD +++ b/extra/libdv/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libdv pkgver=1.0.0 pkgrel=3 pkgdesc="The Quasar DV codec (libdv) is a software codec for DV video" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libdv.sourceforge.net/" license=('LGPL') depends=('popt') diff --git a/extra/libdvbpsi/PKGBUILD b/extra/libdvbpsi/PKGBUILD index 280870dd8..e5c47a2ee 100644 --- a/extra/libdvbpsi/PKGBUILD +++ b/extra/libdvbpsi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libdvbpsi pkgver=0.2.1 pkgrel=1 pkgdesc="A library designed for decoding and generation of MPEG TS and DVB PSI tables" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('glibc') options=('!libtool') diff --git a/extra/libdvdcss/PKGBUILD b/extra/libdvdcss/PKGBUILD index 6317b615b..fffcd698a 100644 --- a/extra/libdvdcss/PKGBUILD +++ b/extra/libdvdcss/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.2.10 pkgrel=2 pkgdesc="A portable abstraction library for DVD decryption" url="http://www.videolan.org/libdvdcss" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('glibc') options=('!libtool') diff --git a/extra/libdvdnav/PKGBUILD b/extra/libdvdnav/PKGBUILD index a593b3a71..ab1d622b7 100644 --- a/extra/libdvdnav/PKGBUILD +++ b/extra/libdvdnav/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libdvdnav pkgver=4.1.3 pkgrel=2 pkgdesc="The library for xine-dvdnav plugin." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://www.mplayerhq.hu/MPlayer/releases/dvdnav/" depends=('libdvdread>=4.1.3') diff --git a/extra/libdvdread/PKGBUILD b/extra/libdvdread/PKGBUILD index dcdbf47d9..ccd390d61 100644 --- a/extra/libdvdread/PKGBUILD +++ b/extra/libdvdread/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libdvdread pkgver=4.1.3 pkgrel=2 pkgdesc="Provides a simple foundation for reading DVD video disks" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.mplayerhq.hu/MPlayer/releases/dvdnav/" license=('GPL') depends=('glibc') diff --git a/extra/libebml/PKGBUILD b/extra/libebml/PKGBUILD index 275dbc9c9..d0b09816d 100644 --- a/extra/libebml/PKGBUILD +++ b/extra/libebml/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libebml pkgver=1.2.2 pkgrel=1 pkgdesc="Extensible Binary Meta Language library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://dl.matroska.org/downloads/libebml/" license=('LGPL') depends=('gcc-libs') diff --git a/extra/libepc/PKGBUILD b/extra/libepc/PKGBUILD index 66ab46ea6..0dd0d0e9d 100644 --- a/extra/libepc/PKGBUILD +++ b/extra/libepc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libepc pkgver=0.4.2 pkgrel=1 pkgdesc="Easy Publish and Consume Library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://live.gnome.org/libepc" depends=('gtk3' 'avahi' 'libsoup') diff --git a/extra/libetpan/PKGBUILD b/extra/libetpan/PKGBUILD index 107264bc4..cd4a89a5d 100644 --- a/extra/libetpan/PKGBUILD +++ b/extra/libetpan/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libetpan pkgver=1.0 pkgrel=3 pkgdesc="A portable middleware for email access" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.etpan.org/" license=("custom:etpan") depends=('db>=5.2.28' 'libsasl>=2.1.23' 'curl>=7.21.' 'expat>=2.0.1-1') diff --git a/extra/libexif/PKGBUILD b/extra/libexif/PKGBUILD index 9755ed6a5..580c70626 100644 --- a/extra/libexif/PKGBUILD +++ b/extra/libexif/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libexif pkgver=0.6.20 pkgrel=1 pkgdesc="A library to parse an EXIF file and read the data from those tags" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://sourceforge.net/projects/libexif" depends=('glibc') diff --git a/extra/libffado/PKGBUILD b/extra/libffado/PKGBUILD index e97c9273f..5db7a3de8 100644 --- a/extra/libffado/PKGBUILD +++ b/extra/libffado/PKGBUILD @@ -7,14 +7,17 @@ pkgname=libffado pkgver=2.0.1 pkgrel=3 pkgdesc="Driver for FireWire audio devices" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ffado.org/" license=('GPL') depends=('libiec61883' 'libavc1394' 'libsigc++' 'libxml++' 'alsa-lib' 'dbus') +[ "$CARCH" = "mips64el" ] || { makedepends=('scons' 'python2-qt') optdepends=('python2-qt: mixer applet') -provides=('ffado') +} +[ "$CARCH" = "mips64el" ] && \ +makedepends=('scons') source=(http://www.ffado.org/files/$pkgname-$pkgver.tar.gz) md5sums=('786f31facd417e6207e429f50af0e15e') @@ -26,6 +29,8 @@ build() { if [ "$CARCH" = "x86_64" ]; then sed -i "s/-m64/-m64 $CFLAGS/g" SConstruct + elif [ "$CARCH" = "mips64el" ]; then + sed -i "s/-mn32/-mn32 $CFLAGS/g" SConstruct else sed -i "s/-m32/-m32 $CFLAGS/g" SConstruct fi diff --git a/extra/libfontenc/PKGBUILD b/extra/libfontenc/PKGBUILD index 1d7ca277f..3b3393ab0 100644 --- a/extra/libfontenc/PKGBUILD +++ b/extra/libfontenc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libfontenc pkgver=1.1.0 pkgrel=1 pkgdesc="X11 font encoding library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('zlib') diff --git a/extra/libfs/PKGBUILD b/extra/libfs/PKGBUILD index ee278cfd7..8802d6d1c 100644 --- a/extra/libfs/PKGBUILD +++ b/extra/libfs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libfs pkgver=1.0.3 pkgrel=1 pkgdesc="X11 Font Services Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('glibc' 'xproto' 'fontsproto') diff --git a/extra/libftdi/PKGBUILD b/extra/libftdi/PKGBUILD index b43d6ab53..d4a8f3cba 100644 --- a/extra/libftdi/PKGBUILD +++ b/extra/libftdi/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libftdi pkgver=0.19 pkgrel=1 pkgdesc="A library to talk to FTDI chips" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.intra2net.com/en/developer/libftdi/download.php" license=('GPL2' 'LGPL2.1') depends=('libusb-compat' 'gcc-libs') diff --git a/extra/libgadu/PKGBUILD b/extra/libgadu/PKGBUILD index eb86b103d..ffc2c48ed 100644 --- a/extra/libgadu/PKGBUILD +++ b/extra/libgadu/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libgadu pkgver=1.11.0 pkgrel=1 pkgdesc="This library implements the client side of the Gadu-Gadu protocol" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://toxygen.net/libgadu/" license=('GPL') depends=('openssl') diff --git a/extra/libgda/PKGBUILD b/extra/libgda/PKGBUILD index 13f6e9c3c..53b0aed9f 100644 --- a/extra/libgda/PKGBUILD +++ b/extra/libgda/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libgda pkgver=5.0.0 pkgrel=1 pkgdesc="Data abstraction layer with mysql, pgsql, xml, sqlite providers" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('gtksourceview3' 'libxslt' 'json-glib' 'db' 'ncurses' 'libsoup' 'libmysqlclient' 'postgresql-libs' 'python2' 'libgnome-keyring' diff --git a/extra/libgdata/PKGBUILD b/extra/libgdata/PKGBUILD index 4512150d0..57febb731 100644 --- a/extra/libgdata/PKGBUILD +++ b/extra/libgdata/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgdata pkgver=0.10.1 pkgrel=1 pkgdesc="GLib-based library for accessing online service APIs using the GData protocol" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libsoup-gnome' 'liboauth') makedepends=('pkgconfig' 'intltool' 'gobject-introspection') diff --git a/extra/libgdiplus/PKGBUILD b/extra/libgdiplus/PKGBUILD index f8d253881..1b1eb5640 100644 --- a/extra/libgdiplus/PKGBUILD +++ b/extra/libgdiplus/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgdiplus pkgver=2.10 pkgrel=1 pkgdesc="An Open Source Implementation of the GDI+ API" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('MPL' 'LGPL') url="http://www.mono-project.com" depends=('libtiff>=3.9.2-2' 'cairo>=1.8.10' 'giflib' 'glib2>=2.24.0' 'libexif') diff --git a/extra/libgee/PKGBUILD b/extra/libgee/PKGBUILD index 20b9a1b11..f20543a4d 100644 --- a/extra/libgee/PKGBUILD +++ b/extra/libgee/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="GObject collection library" url="http://live.gnome.org/Libgee" license=('LGPL2.1') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glib2') makedepends=('gobject-introspection') options=('!libtool') diff --git a/extra/libggz/PKGBUILD b/extra/libggz/PKGBUILD index 22b350783..f3b7a4b3d 100644 --- a/extra/libggz/PKGBUILD +++ b/extra/libggz/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libggz pkgver=0.0.14.1 pkgrel=2 pkgdesc="GGZ base library, used by the GGZ Gaming Zone server (ggzd), the ggzcore library and other components" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ggzgamingzone.org/" license=('LGPL') depends=('libgcrypt') diff --git a/extra/libgksu/PKGBUILD b/extra/libgksu/PKGBUILD index b4414d58a..ae8b08de8 100644 --- a/extra/libgksu/PKGBUILD +++ b/extra/libgksu/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgksu pkgver=2.0.12 pkgrel=3 pkgdesc="gksu authorization library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.nongnu.org/gksu/index.html" license=(GPL) depends=('libgnome-keyring>=2.30.1' 'libgtop>=2.28.1' 'startup-notification>=0.10' 'gconf>=2.28.1') diff --git a/extra/libglade/PKGBUILD b/extra/libglade/PKGBUILD index b5a6d14f4..e1c71bf59 100644 --- a/extra/libglade/PKGBUILD +++ b/extra/libglade/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libglade pkgver=2.6.4 pkgrel=2 pkgdesc="Allows you to load glade interface files in a program at runtime" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('gtk2>=2.16.0' 'libxml2>=2.7.3') makedepends=('python2' 'pkgconfig') diff --git a/extra/libglademm/PKGBUILD b/extra/libglademm/PKGBUILD index 2b5e5ffcf..11b55abe6 100644 --- a/extra/libglademm/PKGBUILD +++ b/extra/libglademm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libglademm pkgver=2.6.7 pkgrel=2 pkgdesc="A C++ wrapper for libglade." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gtkmm.sourceforge.net/" license=('LGPL') depends=('libglade>=2.6.3' 'gtkmm>=2.14.1') diff --git a/extra/libgme/PKGBUILD b/extra/libgme/PKGBUILD index 87cf33388..2e874487d 100644 --- a/extra/libgme/PKGBUILD +++ b/extra/libgme/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Video game music file emulation/playback library" url="http://game-music-emu.googlecode.com/" license=('LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gcc-libs') makedepends=('cmake') source=(ftp://ftp.archlinux.org/other/game-music-emu/game-music-emu-${pkgver}.tar.xz) diff --git a/extra/libgnome-keyring/PKGBUILD b/extra/libgnome-keyring/PKGBUILD index e1aa7f7d4..208d460dd 100644 --- a/extra/libgnome-keyring/PKGBUILD +++ b/extra/libgnome-keyring/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgnome-keyring pkgver=3.2.0 pkgrel=1 pkgdesc="GNOME keyring client library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'LGPL') depends=('dbus-core' 'libgcrypt' 'glib2') makedepends=('intltool' 'pkgconfig') diff --git a/extra/libgnome-media-profiles/PKGBUILD b/extra/libgnome-media-profiles/PKGBUILD index 93472debf..ee4b19be5 100644 --- a/extra/libgnome-media-profiles/PKGBUILD +++ b/extra/libgnome-media-profiles/PKGBUILD @@ -4,7 +4,7 @@ pkgname=libgnome-media-profiles pkgver=3.0.0 pkgrel=2 pkgdesc="" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.gnome.org" license=('GPL2') depends=('gconf' 'gtk3' 'gstreamer0.10-base-plugins') diff --git a/extra/libgnome/PKGBUILD b/extra/libgnome/PKGBUILD index 9c7318fe2..a654b2790 100644 --- a/extra/libgnome/PKGBUILD +++ b/extra/libgnome/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=libgnome pkgname=('libgnome' 'libgnome-data') pkgver=2.32.1 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') makedepends=('intltool' 'gnome-vfs>=2.24.4' 'libbonobo>=2.32.1' 'gconf>=2.32.3' 'gvfs>=1.8.1' 'libcanberra>=0.28') options=('!libtool' '!emptydirs') diff --git a/extra/libgnomecanvas/PKGBUILD b/extra/libgnomecanvas/PKGBUILD index 6bc8b6893..5863266cd 100644 --- a/extra/libgnomecanvas/PKGBUILD +++ b/extra/libgnomecanvas/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgnomecanvas pkgver=2.30.3 pkgrel=1 pkgdesc="The GNOME Canvas library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('libglade>=2.6.4' 'libart-lgpl>=2.3.21') makedepends=('pkgconfig' 'intltool') diff --git a/extra/libgnomecanvasmm/PKGBUILD b/extra/libgnomecanvasmm/PKGBUILD index 4cde2b6fa..abc32dd66 100644 --- a/extra/libgnomecanvasmm/PKGBUILD +++ b/extra/libgnomecanvasmm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libgnomecanvasmm pkgver=2.26.0 pkgrel=2 pkgdesc="A C++ wrapper for libgnomecanvas." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('gtkmm' 'libgnomecanvas') makedepends=('pkgconfig') diff --git a/extra/libgnomecups/PKGBUILD b/extra/libgnomecups/PKGBUILD index 267520f5b..b7aeb2302 100644 --- a/extra/libgnomecups/PKGBUILD +++ b/extra/libgnomecups/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libgnomecups pkgver=0.2.3 pkgrel=9 pkgdesc="GNOME cups library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL' 'GPL') url="http://www.gnome.org" depends=('libcups' 'glib2' 'krb5' 'gnutls') diff --git a/extra/libgnomekbd/PKGBUILD b/extra/libgnomekbd/PKGBUILD index 2b142f59a..c23d9a555 100644 --- a/extra/libgnomekbd/PKGBUILD +++ b/extra/libgnomekbd/PKGBUILD @@ -6,7 +6,7 @@ pkgver=3.2.0 pkgrel=1 pkgdesc="Gnome keyboard library" url="http://gswitchit.sourceforge.net" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('libxklavier' 'gtk3' 'dconf') makedepends=('intltool' 'gobject-introspection') diff --git a/extra/libgnomemm/PKGBUILD b/extra/libgnomemm/PKGBUILD index 7696a5f30..7603b20cd 100644 --- a/extra/libgnomemm/PKGBUILD +++ b/extra/libgnomemm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libgnomemm pkgver=2.30.0 pkgrel=1 pkgdesc="C++ bindings for libgnome." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('libgnome>=2.28.0' 'gtkmm>=2.20.0') makedepends=('pkgconfig') diff --git a/extra/libgnomeprint/PKGBUILD b/extra/libgnomeprint/PKGBUILD index 7c5aaaaae..21134e3f4 100644 --- a/extra/libgnomeprint/PKGBUILD +++ b/extra/libgnomeprint/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgnomeprint pkgver=2.18.8 pkgrel=3 pkgdesc="Printing routines for GNOME" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL' 'GPL') depends=('pango' 'libart-lgpl' 'libxml2' 'libgnomecups' 'krb5' 'gnutls' 'libgcrypt' 'bzip2') makedepends=('intltool' 'pkgconfig') diff --git a/extra/libgnomeprintui/PKGBUILD b/extra/libgnomeprintui/PKGBUILD index 0a8186213..2890f2574 100644 --- a/extra/libgnomeprintui/PKGBUILD +++ b/extra/libgnomeprintui/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgnomeprintui pkgver=2.18.6 pkgrel=1 pkgdesc="User Interface library for printing with GNOME" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'LGPL') depends=('libgnomeprint>=2.18.8' 'libgnomecanvas>=2.30.2' 'gnome-icon-theme>=2.31.0') makedepends=('intltool' 'pkgconfig') diff --git a/extra/libgnomeui/PKGBUILD b/extra/libgnomeui/PKGBUILD index 7538c8acc..2f88aa992 100644 --- a/extra/libgnomeui/PKGBUILD +++ b/extra/libgnomeui/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgnomeui pkgver=2.24.4 pkgrel=1 pkgdesc="User Interface library for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('libbonoboui>=2.24.3' 'libgnome-keyring>=2.31.92' 'libsm') makedepends=('intltool' 'pkgconfig') diff --git a/extra/libgnomeuimm/PKGBUILD b/extra/libgnomeuimm/PKGBUILD index 4cb62baf0..4c4b8c8d5 100644 --- a/extra/libgnomeuimm/PKGBUILD +++ b/extra/libgnomeuimm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libgnomeuimm pkgver=2.28.0 pkgrel=2 pkgdesc="A C++ wrapper for libgnomeui" -arch=('i686' 'x86_64') +arch=(i686 x86_64 'mips64el') url="http://gtkmm.sourceforge.net/" license=('GPL') depends=('libgnomeui>=2.24.4' 'libgnomecanvasmm>=2.26.0' 'libgnomemm>=2.30.0' 'libglademm>=2.6.7' 'gconfmm>=2.28.2' 'gnome-vfsmm>=2.26.0') diff --git a/extra/libgphoto2/PKGBUILD b/extra/libgphoto2/PKGBUILD index 23e7d74b9..cfbc417d7 100644 --- a/extra/libgphoto2/PKGBUILD +++ b/extra/libgphoto2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libgphoto2 pkgver=2.4.10.1 pkgrel=2 pkgdesc="The core library of gphoto2, designed to allow access to digital camera by external programs." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.gphoto.org" license=(LGPL) depends=('libexif>=0.6.19' 'libjpeg>=8' 'gd' 'libtool>=2.4' 'libusb-compat') diff --git a/extra/libgpod/PKGBUILD b/extra/libgpod/PKGBUILD index 18e28d3e2..e9bbd1e75 100644 --- a/extra/libgpod/PKGBUILD +++ b/extra/libgpod/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libgpod pkgver=0.8.2 pkgrel=2 pkgdesc="A shared library to access the contents of an iPod" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('gdk-pixbuf2' 'mutagen' 'sg3_utils' 'libimobiledevice') makedepends=('intltool' 'swig' 'docbook-xsl' 'pygobject2-devel' 'gtk-sharp-2') diff --git a/extra/libgsf/PKGBUILD b/extra/libgsf/PKGBUILD index 87810e3cf..d5343da70 100644 --- a/extra/libgsf/PKGBUILD +++ b/extra/libgsf/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=libgsf pkgname=('libgsf' 'libgsf-gnome') pkgver=1.14.21 pkgrel=1 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.gnome.org/" license=('GPL' 'LGPL') makedepends=('libxml2' 'glib2' 'bzip2' 'intltool' 'pkgconfig' diff --git a/extra/libgtkhtml/PKGBUILD b/extra/libgtkhtml/PKGBUILD index ff795d406..6725257f8 100644 --- a/extra/libgtkhtml/PKGBUILD +++ b/extra/libgtkhtml/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgtkhtml pkgver=2.11.1 pkgrel=3 pkgdesc="An HTML library for GTK" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('gtk2>=2.22.1' 'libxml2>=2.7.8') makedepends=('perlxml') diff --git a/extra/libgtop/PKGBUILD b/extra/libgtop/PKGBUILD index e0da8a86e..abca78872 100644 --- a/extra/libgtop/PKGBUILD +++ b/extra/libgtop/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgtop pkgver=2.28.4 pkgrel=1 pkgdesc="A library that read information about processes and the running system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('glib2' 'libxau' 'texinfo') makedepends=('intltool' 'gobject-introspection') diff --git a/extra/libguess/PKGBUILD b/extra/libguess/PKGBUILD index ff26ce9a1..917b5fe70 100644 --- a/extra/libguess/PKGBUILD +++ b/extra/libguess/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libguess pkgver=1.0 pkgrel=3 pkgdesc='High-speed character set detection library' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://atheme.org/project/libguess' license=('BSD') depends=('libmowgli') diff --git a/extra/libgweather/PKGBUILD b/extra/libgweather/PKGBUILD index d4b3b4e3b..e98bc6ae5 100644 --- a/extra/libgweather/PKGBUILD +++ b/extra/libgweather/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libgweather pkgver=3.2.1 pkgrel=1 pkgdesc="Provides access to weather information from the net" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('gconf' 'libsoup-gnome' 'gnome-icon-theme') makedepends=('pkgconfig' 'intltool' 'gtk-doc' 'gobject-introspection' 'gnome-common') diff --git a/extra/libhangul/PKGBUILD b/extra/libhangul/PKGBUILD index b5dd98216..a3a99a4cd 100644 --- a/extra/libhangul/PKGBUILD +++ b/extra/libhangul/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.1.0 pkgrel=1 _filecode=6000 pkgdesc='Input method library for Korean' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://kldp.net/projects/hangul/' license=('LGPL') options=('!libtool') diff --git a/extra/libical/PKGBUILD b/extra/libical/PKGBUILD index 3f77290ea..56c6f19b2 100644 --- a/extra/libical/PKGBUILD +++ b/extra/libical/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libical pkgver=0.46 pkgrel=1 pkgdesc="An open source reference implementation of the icalendar data type and serialization format" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://sourceforge.net/projects/freeassociation/' license=('LGPL' 'MPL') depends=('glibc') diff --git a/extra/libice/PKGBUILD b/extra/libice/PKGBUILD index a350cfaf7..09c274fb3 100644 --- a/extra/libice/PKGBUILD +++ b/extra/libice/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libice pkgver=1.0.7 pkgrel=1 pkgdesc="X11 Inter-Client Exchange library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" depends=('glibc' 'xproto>=7.0.18') makedepends=('pkgconfig' 'xtrans>=1.2.5') diff --git a/extra/libid3tag/PKGBUILD b/extra/libid3tag/PKGBUILD index 759e99240..589902094 100644 --- a/extra/libid3tag/PKGBUILD +++ b/extra/libid3tag/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libid3tag pkgver=0.15.1b pkgrel=6 pkgdesc="library for id3 tagging" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.underbit.com/products/mad/" license=('GPL') depends=('zlib') diff --git a/extra/libidl2/PKGBUILD b/extra/libidl2/PKGBUILD index 87bb7c218..a2f678871 100644 --- a/extra/libidl2/PKGBUILD +++ b/extra/libidl2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libidl2 pkgver=0.8.14 pkgrel=1 pkgdesc="A front-end for CORBA 2.2 IDL and Netscape's XPIDL" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('glib2>=2.24.0' 'texinfo') makedepends=('pkgconfig') diff --git a/extra/libidn/PKGBUILD b/extra/libidn/PKGBUILD index 8428590f6..67d89a5e1 100644 --- a/extra/libidn/PKGBUILD +++ b/extra/libidn/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.22 pkgrel=1 pkgdesc="Implementation of the Stringprep, Punycode and IDNA specifications" url="http://www.gnu.org/software/libidn/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3' 'LGPL') depends=('glibc' 'texinfo') makedepends=('pkgconfig') diff --git a/extra/libiec61883/PKGBUILD b/extra/libiec61883/PKGBUILD index 468cd762f..d3ca8d1ce 100644 --- a/extra/libiec61883/PKGBUILD +++ b/extra/libiec61883/PKGBUILD @@ -8,7 +8,7 @@ pkgname=libiec61883 pkgver=1.2.0 pkgrel=2 pkgdesc="A higher level API for streaming DV, MPEG-2 and audio over Linux IEEE 1394" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kernel.org/pub/linux/libs/ieee1394/" license=('LGPL') depends=('libraw1394') diff --git a/extra/libieee1284/PKGBUILD b/extra/libieee1284/PKGBUILD index 98f7d7107..58c0d95a0 100644 --- a/extra/libieee1284/PKGBUILD +++ b/extra/libieee1284/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libieee1284 pkgver=0.2.11 pkgrel=3 pkgdesc="A library to query devices connected in parallel port." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://cyberelk.net/tim/libieee1284" depends=('python2') @@ -16,7 +16,7 @@ md5sums=('b8fff9f3d121531bc17430e3f4ea6ed0') build() { cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr --mandir=/usr/share/man + ./configure --prefix=/usr --mandir=/usr/share/man PYTHON=/usr/bin/python2 make } diff --git a/extra/libifp/PKGBUILD b/extra/libifp/PKGBUILD index 248d449c5..fc3667670 100644 --- a/extra/libifp/PKGBUILD +++ b/extra/libifp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libifp pkgver=1.0.0.2 pkgrel=3 pkgdesc="General-purpose library-driver for iRiver's iFP portable audio players" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://ifp-driver.sourceforge.net/libifp/" depends=('libusb-compat') diff --git a/extra/libimobiledevice/PKGBUILD b/extra/libimobiledevice/PKGBUILD index 1a9d5ea59..49dded344 100644 --- a/extra/libimobiledevice/PKGBUILD +++ b/extra/libimobiledevice/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.1.1 pkgrel=2 pkgdesc="Is a software library that talks the protocols to support iPhone and iPod Touch devices on Linux" url="http://libimobiledevice.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2' 'LGPL2.1') depends=('glib2' 'gnutls' 'libgcrypt' 'libplist' 'usbmuxd') makedepends=('swig' 'python2') diff --git a/extra/libindi/PKGBUILD b/extra/libindi/PKGBUILD index 0de4645b0..5f39e3bdf 100644 --- a/extra/libindi/PKGBUILD +++ b/extra/libindi/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="A distributed control protocol designed to operate astronomical instrumentation" url="http://www.indilib.org/index.php?title=Main_Page" license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libnova' 'cfitsio' 'boost-libs') makedepends=('pkgconfig' 'cmake' 'boost') provides=('indilib') diff --git a/extra/libiodbc/PKGBUILD b/extra/libiodbc/PKGBUILD index a9a47dec7..4266b08f4 100644 --- a/extra/libiodbc/PKGBUILD +++ b/extra/libiodbc/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libiodbc pkgver=3.52.7 pkgrel=4 pkgdesc='Independent Open DataBase Connectivity for Linux' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.iodbc.org/dataspace/iodbc/wiki/iODBC/" license=('LGPL') depends=('glibc' 'sh') diff --git a/extra/libirman/PKGBUILD b/extra/libirman/PKGBUILD index 3305a78eb..db0de83f1 100644 --- a/extra/libirman/PKGBUILD +++ b/extra/libirman/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libirman pkgver=0.4.5 pkgrel=2 pkgdesc="Irman driver lcd library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lirc.org" license=('LGPL') options=(!libtool) diff --git a/extra/libisoburn/PKGBUILD b/extra/libisoburn/PKGBUILD index a48ca5a20..f8b45bf55 100644 --- a/extra/libisoburn/PKGBUILD +++ b/extra/libisoburn/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.1.6 pkgrel=1 pkgdesc="frontend for libraries libburn and libisofs" url="http://libburnia.pykix.org/wiki/Libisoburn" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') depends=('libburn' 'libisofs' 'readline') options=('!libtool') diff --git a/extra/libisofs/PKGBUILD b/extra/libisofs/PKGBUILD index c3cfed509..09ccc5a16 100644 --- a/extra/libisofs/PKGBUILD +++ b/extra/libisofs/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libisofs pkgver=1.1.6 pkgrel=1 pkgdesc="Library to pack up hard disk files and directories into a ISO 9660 disk image" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libburnia.pykix.org/" license=('GPL') depends=('acl' 'zlib') diff --git a/extra/libjpeg-turbo/PKGBUILD b/extra/libjpeg-turbo/PKGBUILD index 96e9e69b5..330136d46 100644 --- a/extra/libjpeg-turbo/PKGBUILD +++ b/extra/libjpeg-turbo/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libjpeg-turbo pkgver=1.1.1 pkgrel=3 pkgdesc="libjpeg derivative with accelerated baseline JPEG compression and decompression" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libjpeg-turbo.virtualgl.org/" license=('GPL' 'custom') depends=('glibc') diff --git a/extra/libkdcraw/PKGBUILD b/extra/libkdcraw/PKGBUILD index b451d47a1..e3d6354c0 100644 --- a/extra/libkdcraw/PKGBUILD +++ b/extra/libkdcraw/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="A C++ interface used to decode RAW picture" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdelibs' 'lcms') makedepends=('cmake' 'automoc4') diff --git a/extra/libkdeedu/PKGBUILD b/extra/libkdeedu/PKGBUILD index ded6d0807..95b05321a 100644 --- a/extra/libkdeedu/PKGBUILD +++ b/extra/libkdeedu/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="Libraries used by KDE Education applications" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdelibs') makedepends=('cmake' 'automoc4') diff --git a/extra/libkexiv2/PKGBUILD b/extra/libkexiv2/PKGBUILD index 9c540ae1f..6e8787d8d 100644 --- a/extra/libkexiv2/PKGBUILD +++ b/extra/libkexiv2/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="A library to manipulate pictures metadata" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdelibs') makedepends=('cmake' 'automoc4') diff --git a/extra/libkipi/PKGBUILD b/extra/libkipi/PKGBUILD index 036ac3941..1ccf20cea 100644 --- a/extra/libkipi/PKGBUILD +++ b/extra/libkipi/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="An interface to use kipi-plugins from a KDE application" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdelibs') makedepends=('cmake' 'automoc4') diff --git a/extra/libksane/PKGBUILD b/extra/libksane/PKGBUILD index 818f04c6a..09bef8527 100644 --- a/extra/libksane/PKGBUILD +++ b/extra/libksane/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.7.3 pkgrel=1 pkgdesc="An image scanning library" url="http://kde.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL' 'FDL') depends=('kdelibs' 'sane') makedepends=('cmake' 'automoc4') diff --git a/extra/libksba/PKGBUILD b/extra/libksba/PKGBUILD index 51f23e123..f6ef17583 100644 --- a/extra/libksba/PKGBUILD +++ b/extra/libksba/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libksba pkgver=1.2.0 pkgrel=1 pkgdesc="A CMS and X.509 access library" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL') url="ftp://ftp.gnupg.org/gcrypt/alpha/libksba" depends=('bash' 'libgpg-error' 'glibc') diff --git a/extra/libktorrent/PKGBUILD b/extra/libktorrent/PKGBUILD index b8aecf570..82008c65f 100644 --- a/extra/libktorrent/PKGBUILD +++ b/extra/libktorrent/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libktorrent pkgver=1.1.2 pkgrel=1 pkgdesc="A BitTorrent protocol implementation" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ktorrent.org" license=('GPL2') depends=('kdelibs') diff --git a/extra/liblastfm/PKGBUILD b/extra/liblastfm/PKGBUILD index 13e5dd98e..a67e1cdfe 100644 --- a/extra/liblastfm/PKGBUILD +++ b/extra/liblastfm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=liblastfm pkgver=0.3.3 pkgrel=2 pkgdesc="A collection of libraries to help you integrate Last.fm services into your rich desktop software" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://github.com/mxcl/liblastfm/" license=('GPL') depends=('libsamplerate' 'fftw' 'qt') diff --git a/extra/liblo/PKGBUILD b/extra/liblo/PKGBUILD index eae1ff944..4963a4649 100644 --- a/extra/liblo/PKGBUILD +++ b/extra/liblo/PKGBUILD @@ -6,7 +6,7 @@ pkgname=liblo pkgver=0.26 pkgrel=1 pkgdesc="Lightweight OSC implementation: an implementation of the Open Sound Control protocol for POSIX systems" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://plugin.org.uk/liblo/" license=('GPL') depends=('glibc') diff --git a/extra/liblouis/PKGBUILD b/extra/liblouis/PKGBUILD index d7a753f32..c39052981 100644 --- a/extra/liblouis/PKGBUILD +++ b/extra/liblouis/PKGBUILD @@ -5,7 +5,7 @@ pkgname=liblouis pkgver=2.3.0 pkgrel=1 pkgdesc="Open-source braille translator and back-translator" -arch=(i686 x86_64) +arch=(mips64el) url="http://code.google.com/p/liblouis/" license=('GPL3') depends=(glibc) diff --git a/extra/liblqr/PKGBUILD b/extra/liblqr/PKGBUILD index 67f9170d6..445511d75 100644 --- a/extra/liblqr/PKGBUILD +++ b/extra/liblqr/PKGBUILD @@ -5,7 +5,7 @@ pkgname=liblqr pkgver=0.4.1 pkgrel=2 pkgdesc="A seam-carving C/C++ library called Liquid Rescale" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://liblqr.wikidot.com/" license=('GPL') depends=('glib2') diff --git a/extra/liblrdf/PKGBUILD b/extra/liblrdf/PKGBUILD index 49a0fe584..f740dbff7 100644 --- a/extra/liblrdf/PKGBUILD +++ b/extra/liblrdf/PKGBUILD @@ -5,7 +5,7 @@ pkgname=liblrdf pkgver=0.4.0 pkgrel=9 pkgdesc="A library for the manipulation of RDF file in LADSPA plugins" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/lrdf" #"http://sourceforge.net/projects/lrdf" depends=('raptor' 'ladspa') makedepends=('pkgconfig') diff --git a/extra/libmad/PKGBUILD b/extra/libmad/PKGBUILD index 842fbe930..14f32b061 100644 --- a/extra/libmad/PKGBUILD +++ b/extra/libmad/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libmad pkgver=0.15.1b pkgrel=5 pkgdesc="A high-quality MPEG audio decoder" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.underbit.com/products/mad/" license=('GPL') depends=('glibc') @@ -29,7 +29,7 @@ build() { patch -p1 -i "${srcdir}/optimize.diff" CFLAGS="$CFLAGS -ftree-vectorize -ftree-vectorizer-verbose=1" autoconf - ./configure --prefix=/usr + ./configure --prefix=/usr --enable-fpm=default make } diff --git a/extra/libmatroska/PKGBUILD b/extra/libmatroska/PKGBUILD index 1504138cc..8db79470b 100644 --- a/extra/libmatroska/PKGBUILD +++ b/extra/libmatroska/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libmatroska pkgver=1.3.0 pkgrel=1 pkgdesc="Matroska library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://dl.matroska.org/downloads/libmatroska/" license=('LGPL') depends=('libebml') diff --git a/extra/libmcrypt/PKGBUILD b/extra/libmcrypt/PKGBUILD index aae45867e..2f1b20aa7 100644 --- a/extra/libmcrypt/PKGBUILD +++ b/extra/libmcrypt/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.5.8 pkgrel=3 pkgdesc="A library which provides a uniform interface to several symmetric encryption algorithms" url="http://mcrypt.sourceforge.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('glibc') options=('!libtool' '!emptydirs') diff --git a/extra/libmcs/PKGBUILD b/extra/libmcs/PKGBUILD index 51c2b7fd3..84224ad53 100644 --- a/extra/libmcs/PKGBUILD +++ b/extra/libmcs/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libmcs pkgver=0.7.2 pkgrel=2 pkgdesc='Library which abstracts the storage of configuration settings' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.atheme.org/project/mcs' license=('BSD') depends=('libmowgli') diff --git a/extra/libmikmod/PKGBUILD b/extra/libmikmod/PKGBUILD index a84418dbb..dd1dd5d3b 100644 --- a/extra/libmikmod/PKGBUILD +++ b/extra/libmikmod/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3 pkgdesc="A portable sound library" license=('GPL' 'LGPL') url="http://sourceforge.net/projects/mikmod/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glibc') options=('!libtool') install=$pkgname.install diff --git a/extra/libmms/PKGBUILD b/extra/libmms/PKGBUILD index fd9ab3ea8..322a4fdd5 100644 --- a/extra/libmms/PKGBUILD +++ b/extra/libmms/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libmms pkgver=0.6.2 pkgrel=1 pkgdesc="MMS stream protocol library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://sourceforge.net/projects/libmms/" license=(LGPL) depends=('glib2') diff --git a/extra/libmng/PKGBUILD b/extra/libmng/PKGBUILD index 913603045..8e022137d 100644 --- a/extra/libmng/PKGBUILD +++ b/extra/libmng/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libmng pkgver=1.0.10 pkgrel=4 pkgdesc="A collection of routines used to create and manipulate MNG format graphics files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.libmng.com/" license=('custom') depends=('zlib' 'libjpeg') diff --git a/extra/libmodplug/PKGBUILD b/extra/libmodplug/PKGBUILD index ca27edda1..874946404 100644 --- a/extra/libmodplug/PKGBUILD +++ b/extra/libmodplug/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libmodplug pkgver=0.8.8.3 pkgrel=1 pkgdesc="A MOD playing library" -arch=('i686' 'x86_64') +arch=(i686 x86_64 'mips64el') url="http://modplug-xmms.sourceforge.net/" license=('custom') depends=('gcc-libs') diff --git a/extra/libmowgli/PKGBUILD b/extra/libmowgli/PKGBUILD index c9b11d1c0..d3f4a0512 100644 --- a/extra/libmowgli/PKGBUILD +++ b/extra/libmowgli/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libmowgli pkgver=0.9.95 pkgrel=1 pkgdesc='Performance and usability-oriented extensions to C' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.atheme.org/project/mowgli' license=('custom') depends=('glibc') diff --git a/extra/libmp3splt/PKGBUILD b/extra/libmp3splt/PKGBUILD index f374e413d..af01492ea 100644 --- a/extra/libmp3splt/PKGBUILD +++ b/extra/libmp3splt/PKGBUILD @@ -4,7 +4,7 @@ pkgname=libmp3splt pkgver=0.7 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="Library for splitting mp3 and ogg files without decoding" license=('GPL') url="http://mp3splt.sourceforge.net" diff --git a/extra/libmp4v2/PKGBUILD b/extra/libmp4v2/PKGBUILD index 79601b0be..997a491f5 100644 --- a/extra/libmp4v2/PKGBUILD +++ b/extra/libmp4v2/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libmp4v2 pkgver=1.9.1 pkgrel=2 pkgdesc="MPEG-4 library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('MPL') url="http://code.google.com/p/mp4v2/" depends=('gcc-libs') diff --git a/extra/libmpcdec/PKGBUILD b/extra/libmpcdec/PKGBUILD index a8f30dbd7..de27d8451 100644 --- a/extra/libmpcdec/PKGBUILD +++ b/extra/libmpcdec/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libmpcdec pkgver=1.2.6 pkgrel=3 pkgdesc="Musepack decoding library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://musepack.net/" license=('custom') depends=('glibc') diff --git a/extra/libmpd/PKGBUILD b/extra/libmpd/PKGBUILD index a268177c5..3ec83e29a 100644 --- a/extra/libmpd/PKGBUILD +++ b/extra/libmpd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libmpd pkgver=11.8.17 pkgrel=1 pkgdesc="Signal based wrapper around libmpdclient" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gmpc.wikia.com/wiki/Gnome_Music_Player_Client" license=('GPL') depends=('glib2') diff --git a/extra/libmpdclient/PKGBUILD b/extra/libmpdclient/PKGBUILD index 277358431..fb6dc9072 100644 --- a/extra/libmpdclient/PKGBUILD +++ b/extra/libmpdclient/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc='Asynchronous API library for interfacing MPD in the C, C++ & Objective C languages' url='http://mpd.wikia.com/wiki/ClientLib:libmpdclient' license=('custom:BSD') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!libtool') source=("http://downloads.sourceforge.net/project/musicpd/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz") sha1sums=('39bdcf5399fb98e34b8b6110057b64f4d1945333') diff --git a/extra/libmpeg2/PKGBUILD b/extra/libmpeg2/PKGBUILD index 25960822d..192d24571 100644 --- a/extra/libmpeg2/PKGBUILD +++ b/extra/libmpeg2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libmpeg2 pkgver=0.5.1 pkgrel=3 pkgdesc="Library for decoding MPEG-1 and MPEG-2 video streams." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libmpeg2.sourceforge.net/" depends=('glibc') makedepends=('sdl' 'libxv') diff --git a/extra/libmsn/PKGBUILD b/extra/libmsn/PKGBUILD index c62c80a19..21eace859 100644 --- a/extra/libmsn/PKGBUILD +++ b/extra/libmsn/PKGBUILD @@ -7,7 +7,7 @@ pkgver=4.1 pkgrel=2 pkgdesc="A reusable, open-source, fully documented library for connecting to Microsoft's MSN" url="http://sourceforge.net/projects/libmsn/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') depends=('openssl') makedepends=('cmake') diff --git a/extra/libmspack/PKGBUILD b/extra/libmspack/PKGBUILD index faa38a667..c4391f5d0 100644 --- a/extra/libmspack/PKGBUILD +++ b/extra/libmspack/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libmspack pkgver=0.3alpha pkgrel=1 pkgdesc="A library for Microsoft compression formats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cabextract.org.uk/libmspack/" license=('GPL') depends=('glibc') diff --git a/extra/libmtp/PKGBUILD b/extra/libmtp/PKGBUILD index 9632630d0..78018661f 100644 --- a/extra/libmtp/PKGBUILD +++ b/extra/libmtp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libmtp pkgver=1.1.0 pkgrel=1 pkgdesc="library implementation of the Media Transfer Protocol" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://libmtp.sourceforge.net" license=('LGPL') depends=('libusb-compat') diff --git a/extra/libmusicbrainz3/PKGBUILD b/extra/libmusicbrainz3/PKGBUILD index a89a5939a..1ac244274 100644 --- a/extra/libmusicbrainz3/PKGBUILD +++ b/extra/libmusicbrainz3/PKGBUILD @@ -6,7 +6,7 @@ pkgver=3.0.3 pkgrel=1 pkgdesc="Library That Provides Access to the MusicBrainz Server " url="http://musicbrainz.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL2.1') depends=('neon' 'libdiscid') makedepends=('cmake') diff --git a/extra/libmygpo-qt/PKGBUILD b/extra/libmygpo-qt/PKGBUILD index eb6325f6e..d9d149aff 100644 --- a/extra/libmygpo-qt/PKGBUILD +++ b/extra/libmygpo-qt/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libmygpo-qt pkgver=1.0.4 pkgrel=1 pkgdesc="A C++/Qt client library for gpodder.net" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wiki.gpodder.org/wiki/Libmygpo-qt" license=('LGPL2.1') depends=('qjson') diff --git a/extra/libmythes/PKGBUILD b/extra/libmythes/PKGBUILD index 77ed47352..b64e27dd8 100644 --- a/extra/libmythes/PKGBUILD +++ b/extra/libmythes/PKGBUILD @@ -5,11 +5,12 @@ pkgname=libmythes pkgver=1.2.1 pkgrel=1 pkgdesc="a simple thesaurus" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hunspell.sourceforge.net/ " license=('custom') depends=('glibc' 'perl') -options=('force' '!libtool') +makedepends=('hunspell') +options=('!libtool') provides=('mythes') source=(http://downloads.sourceforge.net/hunspell/${pkgname/lib/}-${pkgver}.tar.gz) md5sums=('54b310488dda6929cf31ae859928c945') diff --git a/extra/libnet/PKGBUILD b/extra/libnet/PKGBUILD index 812ae9a4a..3bf7490a8 100644 --- a/extra/libnet/PKGBUILD +++ b/extra/libnet/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libnet pkgver=1.1.5 pkgrel=1 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/extra/libnice/PKGBUILD b/extra/libnice/PKGBUILD index 37d43bf7b..b0abc4d66 100644 --- a/extra/libnice/PKGBUILD +++ b/extra/libnice/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libnice pkgver=0.1.1 pkgrel=1 pkgdesc="An implementation of the IETF's draft ICE (for p2p UDP data streams)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://nice.freedesktop.org" license=('LGPL') depends=('gstreamer0.10') diff --git a/extra/libnotify/PKGBUILD b/extra/libnotify/PKGBUILD index d82b64caf..cde614593 100644 --- a/extra/libnotify/PKGBUILD +++ b/extra/libnotify/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libnotify pkgver=0.7.4 pkgrel=1 pkgdesc="Desktop notification library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://library.gnome.org/devel/notification-spec/" license=('LGPL') depends=('gdk-pixbuf2') diff --git a/extra/libnova/PKGBUILD b/extra/libnova/PKGBUILD index 5074d4037..7824a8b06 100644 --- a/extra/libnova/PKGBUILD +++ b/extra/libnova/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="libnova is a general purpose, double precision, celestial mechanics, astrometry and astrodynamics library." url="http://libnova.sourceforge.net/" license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('glibc') makedepends=('pkgconfig') source=(http://downloads.sourceforge.net/sourceforge/libnova/$pkgname-$pkgver.tar.gz) diff --git a/extra/liboauth/PKGBUILD b/extra/liboauth/PKGBUILD index 1af7a2b70..a316de674 100644 --- a/extra/liboauth/PKGBUILD +++ b/extra/liboauth/PKGBUILD @@ -7,7 +7,7 @@ pkgname=liboauth pkgver=0.9.4 pkgrel=2 pkgdesc='C library implementing OAuth Core RFC 5849' -arch=('i686' 'x86_64') +arch=(mips64el) url='http://liboauth.sourceforge.net' license=('MIT') depends=('curl') diff --git a/extra/libofa/PKGBUILD b/extra/libofa/PKGBUILD index 97905a1ea..b41468114 100644 --- a/extra/libofa/PKGBUILD +++ b/extra/libofa/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libofa pkgver=0.9.3 pkgrel=3 pkgdesc="An open-source audio fingerprint by MusicIP" -arch=('i686' 'x86_64') +arch=(i686 x86_64 'mips64el') url="http://code.google.com/p/musicip-libofa/" license=('GPL2' 'custom') depends=('expat' 'curl' 'fftw' 'gcc-libs') diff --git a/extra/libofx/PKGBUILD b/extra/libofx/PKGBUILD index c2b414cf8..2d8983d95 100644 --- a/extra/libofx/PKGBUILD +++ b/extra/libofx/PKGBUILD @@ -6,7 +6,7 @@ pkgname=('libofx' 'libofx-doc') pkgver=0.9.4 pkgrel=1 pkgdesc="API for the OFX banking standard" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libofx.sourceforge.net" license=('GPL') depends=('opensp' 'curl' 'libxml++') diff --git a/extra/libogg/PKGBUILD b/extra/libogg/PKGBUILD index 35bfbfffc..13274421d 100644 --- a/extra/libogg/PKGBUILD +++ b/extra/libogg/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libogg pkgver=1.3.0 pkgrel=1 pkgdesc="Ogg bitstream and framing library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xiph.org/ogg/" license=('BSD') depends=('glibc') diff --git a/extra/liboil/PKGBUILD b/extra/liboil/PKGBUILD index e206abb99..d227719e6 100644 --- a/extra/liboil/PKGBUILD +++ b/extra/liboil/PKGBUILD @@ -5,7 +5,7 @@ pkgname=liboil pkgver=0.3.17 pkgrel=1 pkgdesc="Library of simple functions that are optimized for various CPUs." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://liboil.freedesktop.org/" depends=('glibc') diff --git a/extra/liborigin2/PKGBUILD b/extra/liborigin2/PKGBUILD index 61dd30f38..b107ffa9a 100644 --- a/extra/liborigin2/PKGBUILD +++ b/extra/liborigin2/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=liborigin2 pkgname=('liborigin2' 'liborigin2-docs') pkgver=20100913 pkgrel=5 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://soft.proindependent.com/liborigin2/" license=('GPL3') makedepends=('doxygen' 'qt' 'boost') diff --git a/extra/libotf/PKGBUILD b/extra/libotf/PKGBUILD index 85f758c52..64b708065 100644 --- a/extra/libotf/PKGBUILD +++ b/extra/libotf/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.9.12 pkgrel=1 pkgdesc='OpenType Font library' url='http://www.m17n.org/libotf/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('libxaw' 'freetype2') options=('!libtool') diff --git a/extra/libotr/PKGBUILD b/extra/libotr/PKGBUILD index 77e86cba1..853b2751e 100644 --- a/extra/libotr/PKGBUILD +++ b/extra/libotr/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libotr pkgver=3.2.0 pkgrel=2 pkgdesc='Off-the-Record Messaging Library and Toolkit' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.cypherpunks.ca/otr/' license=('GPL' 'LGPL') depends=('libgcrypt') diff --git a/extra/libots/PKGBUILD b/extra/libots/PKGBUILD index cd749e574..1caa0736a 100644 --- a/extra/libots/PKGBUILD +++ b/extra/libots/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libots pkgver=0.5.0 pkgrel=2 pkgdesc="Open Text Summarizer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libots.sourceforge.net/" license=('GPL') depends=('libxml2' 'glib2') diff --git a/extra/libpano13/PKGBUILD b/extra/libpano13/PKGBUILD index 472c52610..9d938f483 100644 --- a/extra/libpano13/PKGBUILD +++ b/extra/libpano13/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libpano13 pkgver=2.9.18 pkgrel=1 pkgdesc="Basic library to calculate panoramical pictures - core functions of the panotools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://panotools.sourceforge.net/" license=('GPL2') depends=('libpng' 'libtiff') diff --git a/extra/libpciaccess/PKGBUILD b/extra/libpciaccess/PKGBUILD index 8302ea92a..0ec358dd2 100644 --- a/extra/libpciaccess/PKGBUILD +++ b/extra/libpciaccess/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libpciaccess pkgver=0.12.1 pkgrel=1 pkgdesc="X11 PCI access library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('glibc') diff --git a/extra/libpeas/PKGBUILD b/extra/libpeas/PKGBUILD index 0b03fc544..5b5b2be1e 100644 --- a/extra/libpeas/PKGBUILD +++ b/extra/libpeas/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libpeas pkgver=1.2.0 pkgrel=1 pkgdesc="A GObject-based plugins engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gtk.org/" license=('GPL2') depends=('gtk3' 'hicolor-icon-theme' 'gobject-introspection') diff --git a/extra/libplist/PKGBUILD b/extra/libplist/PKGBUILD index 0121e951c..fbf81c3a7 100644 --- a/extra/libplist/PKGBUILD +++ b/extra/libplist/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.4 pkgrel=1 pkgdesc="A library to handle Apple Property List format whereas it's binary or XML" url="http://libimobiledevice.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2' 'LGPL2.1') depends=('glib2' 'libxml2' 'python2') makedepends=('cmake' 'swig') diff --git a/extra/libpng/PKGBUILD b/extra/libpng/PKGBUILD index 531e9397e..45de74b8c 100644 --- a/extra/libpng/PKGBUILD +++ b/extra/libpng/PKGBUILD @@ -9,7 +9,7 @@ pkgver=1.4.8 _apngver=1.4.7 pkgrel=1 pkgdesc="A collection of routines used to create PNG format graphics files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.libpng.org/pub/png/libpng.html" license=('custom') depends=('zlib' 'sh') diff --git a/extra/libproxy/PKGBUILD b/extra/libproxy/PKGBUILD index 5b1367bd5..c82563fbc 100644 --- a/extra/libproxy/PKGBUILD +++ b/extra/libproxy/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libproxy pkgver=0.4.7 pkgrel=1 pkgdesc="A library that provides automatic proxy configuration management" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('gcc-libs') optdepends=('kdelibs: KDE configuration module' @@ -28,7 +28,8 @@ build() { -DCMAKE_SKIP_RPATH=ON \ -DPERL_VENDORINSTALL=yes \ -DCMAKE_BUILD_TYPE=Release \ - -DWITH_WEBKIT=OFF \ + -WITH_WEBKIT=OFF \ + -WITH_MOZJS=OFF \ -DCMAKE_CXX_FLAGS="${CXXFLAGS}" \ -DCMAKE_C_FLAGS="${CFLAGS}" make diff --git a/extra/libpst/PKGBUILD b/extra/libpst/PKGBUILD index 9241e1ad8..10ccfe074 100644 --- a/extra/libpst/PKGBUILD +++ b/extra/libpst/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=libpst pkgname=('libpst' 'libpst-docs') pkgver=0.6.53 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.five-ten-sg.com/libpst/" license=('GPL') makedepends=('python2' 'boost') diff --git a/extra/libqalculate/PKGBUILD b/extra/libqalculate/PKGBUILD index b9ffa1c21..d34fc9d6c 100644 --- a/extra/libqalculate/PKGBUILD +++ b/extra/libqalculate/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libqalculate pkgver=0.9.7 pkgrel=2 pkgdesc="Multi-purpose desktop calculator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qalculate.sourceforge.net/" license=('GPL') depends=('libxml2' 'cln' 'glib2' 'ncurses' 'readline') diff --git a/extra/libqzeitgeist/PKGBUILD b/extra/libqzeitgeist/PKGBUILD index a2690d93f..c2aca401d 100644 --- a/extra/libqzeitgeist/PKGBUILD +++ b/extra/libqzeitgeist/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.8.0 pkgrel=1 pkgdesc="A Qt interface to the Zeitgeist event tracking system" url="https://projects.kde.org/projects/kdesupport/libqzeitgeist" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('qt') makedepends=('cmake' 'automoc4' 'python2' 'zeitgeist') diff --git a/extra/libraw1394/PKGBUILD b/extra/libraw1394/PKGBUILD index 786d0fc96..3f61231e3 100644 --- a/extra/libraw1394/PKGBUILD +++ b/extra/libraw1394/PKGBUILD @@ -5,13 +5,13 @@ pkgname=libraw1394 pkgver=2.0.7 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL2.1') pkgdesc="Provides an API to the Linux IEEE1394 (FireWire) driver" depends=('glibc') makedepends=('pkgconfig') url="https://ieee1394.wiki.kernel.org/index.php/Main_Page" -options=(!libtool force) +options=(!libtool) source=(ftp://ftp.kernel.org/pub/linux/libs/ieee1394/${pkgname}-${pkgver}.tar.bz2) build() { diff --git a/extra/libreoffice/PKGBUILD b/extra/libreoffice/PKGBUILD index 15b67b82a..e99ef7ae1 100644 --- a/extra/libreoffice/PKGBUILD +++ b/extra/libreoffice/PKGBUILD @@ -10,48 +10,48 @@ pkgname=('libreoffice-common' 'libreoffice-impress' 'libreoffice-kde4' 'libreoffice-math' - 'libreoffice-sdk' - 'libreoffice-sdk-doc' 'libreoffice-writer' 'libreoffice-en-US' #'libreoffice-extension-barcode' # - 'libreoffice-extension-diagram' - 'libreoffice-extension-google-docs' 'libreoffice-extension-hunart' #'libreoffice-extension-lightproof' # no source integration #'libreoffice-extension-mysql-connector' # missing libmysqlcppconn-dev configure: error: mysql_driver.h not found. install MySQL C++ Connectivity - 'libreoffice-extension-nlpsolver' 'libreoffice-extension-ct2n' 'libreoffice-extension-numbertext' 'libreoffice-extension-oooblogger' 'libreoffice-extension-pdfimport' - 'libreoffice-extension-presenter-screen' 'libreoffice-extension-presentation-minimizer' - 'libreoffice-extension-report-builder' - 'libreoffice-extension-scripting-beanshell' - 'libreoffice-extension-scripting-javascript' 'libreoffice-extension-scripting-python' - 'libreoffice-extension-typo' - 'libreoffice-extension-validator' - 'libreoffice-extension-watch-window' + 'libreoffice-extension-typo') +[ "${CARCH}" != "mips64el" ] && pkgname+=('libreoffice-sdk' \ + 'libreoffice-sdk-doc' \ + 'libreoffice-extension-diagram' \ + 'libreoffice-extension-google-docs' \ + 'libreoffice-extension-nlpsolver' \ + 'libreoffice-extension-presenter-screen' \ + 'libreoffice-extension-report-builder' \ + 'libreoffice-extension-scripting-beanshell' \ + 'libreoffice-extension-scripting-javascript' \ + 'libreoffice-extension-validator' \ + 'libreoffice-extension-watch-window' \ 'libreoffice-extension-wiki-publisher') _LOver=3.4.3.2 pkgver=3.4.3 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') #_LO_tree="3.4" _OFFICEUPD="340" license=('LGPL3') url="http://www.libreoffice.org/" makedepends=( # makedepends - 'sane' 'perl-archive-zip' 'zip' 'unzip' 'xulrunner' 'unixodbc' 'hsqldb-java' #'boost' - we use internal one for now that has some gcc4.6 fixes. - 'apache-ant' 'gperf' 'poppler>=0.18.0' 'kdelibs' 'gconf' 'cppunit' #'libmysqlclient' - 'beanshell' 'vigra' 'libldap' 'lucene' 'libmythes' 'junit' 'libwpg' 'imagemagick' - 'mesa' 'gstreamer0.10-base' 'java-environment' + 'sane' 'perl-archive-zip' 'zip' 'p7zip-libre' 'xulrunner' 'unixodbc' #'boost' - we use internal one for now that has some gcc4.6 fixes. + 'gperf' 'poppler>=0.18.0' 'kdelibs' 'gconf' 'cppunit' #'libmysqlclient' + 'vigra' 'libldap' 'libmythes' 'libwpg' 'imagemagick' + 'gstreamer0.10-base' #'saxon' - currently broken # the depends from libreoffice main pkg "curl>=7.20.0" "hunspell>=1.2.8" "python2>=2.7" 'libwpd>=0.9.2' 'libwps' 'libxaw' "neon>=0.28.6" - 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib' "icu>=4.6" 'libxslt' + 'pango' 'nspr' 'libjpeg' 'libxrandr' 'dbus-glib' "icu>=4.6" 'libxslt' 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'libtextcat' #'libgraphite' 'hicolor-icon-theme' 'desktop-file-utils' 'shared-mime-info' 'gtk2' 'orbit2' # keep gtk2 for install script 'ttf-dejavu') # to satisfy regression tests @@ -59,6 +59,8 @@ makedepends=( # makedepends # http://download.documentfoundation.org/mirrors/all.html # http://wiki.documentfoundation.org/Mirrors +[ "${CARCH}" != "mips64el" ] && makedepends+=('hsqldb-java' 'apache-ant' 'beanshell' 'junit' 'mesa' 'java-environment' 'libgl' 'lucene') + _mirror="http://download.documentfoundation.org/libreoffice/src/${pkgver}" #_mirror="http://dev-builds.libreoffice.org/pre-releases/src" _additional_source_url="http://hg.services.openoffice.org/binaries" @@ -111,7 +113,8 @@ source=(${_mirror}/${pkgbase}-{artwork,base,bootstrap,calc,components,extensions poppler-check.diff::http://cgit.freedesktop.org/libreoffice/bootstrap/patch/?id=72a5f87cb3f0a367f1cd6a5cc15101acc83396fe pdfimport.diff::http://cgit.freedesktop.org/libreoffice/extensions/patch/?id=53e66aea4c1b3617363fd138a7903190d964da6b poppler-buildfix.diff::http://cgit.freedesktop.org/libreoffice/extensions/patch/?id=9540db43f3f1b11d3407a45aefda235d7e78f76b - build-without-glib-poppler-bindings.diff::http://cgit.freedesktop.org/libreoffice/extensions/patch/?id=a9cc06fa45d4cd9547f40a9869c64c912b821b42) + build-without-glib-poppler-bindings.diff::http://cgit.freedesktop.org/libreoffice/extensions/patch/?id=a9cc06fa45d4cd9547f40a9869c64c912b821b42 + fix-nobody-temp-dir.patch) noextract=(185d60944ea767075d27247c3162b3bc-unowinreg.dll b4cae0700aa1c2aef7eb7f345365e6f1-translate-toolkit-1.8.1.tar.bz2 0ff7d225d087793c8c2c680d77aac3e7-mdds_0.5.3.tar.bz2 @@ -218,14 +221,20 @@ md5sums=('7c2e73f1197d169519f86efe422e5df9' '64497be966802e62ffe3282d3facf7b7' '89ff871e77e10357a976fe9d1ab3a65a' 'c4cb0d7f2602396a3f4cac55b8a4e308' - 'b8f1fb7f3902d22aeaa2575c6b08a62c') + 'b8f1fb7f3902d22aeaa2575c6b08a62c' + '3b7187740fb824c19be04f22531c52de') build() { + if [ "${CARCH}" != "mips64el" ] ; then unset J2REDIR; unset J2SDKDIR; unset JAVA_HOME; unset CLASSPATH; unset EXTRAOPTS [ -z "${JAVA_HOME}" ] && . /etc/profile.d/openjdk6.sh || . /etc/profile.d/jdk7-openjdk.sh [ -z "${MOZ_PLUGIN_PATH}" ] && . /etc/profile.d/mozilla-common.sh [ -z "${ANT_HOME}" ] && . /etc/profile.d/apache-ant.sh + extraconf="--enable-opengl --enable-ext-scripting-beanshell --with-system-lucene --with-ant-home=\"/usr/share/java/apache-ant\" --with-lucene-core-jar=/usr/share/java/lucene-core.jar --with-lucene-analyzers-jar=/usr/share/java/lucene-analyzers.jar --with-java-target-version=1.5 --enable-odk --enable-ext-diagram --enable-ext-google-docs --enable-ext-nlpsolver --enable-ext-report-builder --enable-ext-scripting-javascript --enable-ext-validator --enable-ext-watch-window --enable-ext-wiki-publisher" + else + extraconf="--disable-opengl --without-java --without-system-lucene --without-system-hsqldb --without-system-beanshell --without-system-jfreereport --without-system-saxon --without-system-mesa-headers --without-junit" + fi # move all LibO sources into one build directory mkdir ${srcdir}/build && cd ${srcdir}/build @@ -254,7 +263,10 @@ build() { patch -Np1 -i ${srcdir}/pdfimport.diff patch -Np1 -i ${srcdir}/poppler-buildfix.diff patch -Np1 -i ${srcdir}/build-without-glib-poppler-bindings.diff - + patch -Np1 -i ${srcdir}/fix-nobody-temp-dir.patch + # Checks if --hash-style is accepted, not if --hash-style=both is accepted. + [ "${CARCH}" = "mips64el" ] && sed -i 's/--hash-style=both/--hash-style=sysv/' ${srcdir}/build/solenv/gbuild/platform/unxgcc.mk + # unset C(XX)FLAGS # http://www.openoffice.org/issues/show_bug.cgi?id=103205 # unset CFLAGS @@ -286,7 +298,7 @@ build() { # non-SMP test build # export MAKEFLAGS="-j1" - ./configure --with-build-version="${_LOver} ArchLinux build-${pkgrel}" --with-vendor="ArchLinux" \ + ./configure --with-build-version="${_LOver} Parabola GNU/Linux-libre build-${pkgrel}" --with-vendor="Parabola GNU/Linux-libre" \ --with-unix-wrapper="libreoffice" \ --enable-split-app-modules \ --with-max-jobs=${MAKEFLAGS/-j/} --with-num-cpus=${MAKEFLAGS/-j/} \ @@ -306,31 +318,19 @@ build() { --enable-kde4\ --enable-ldap \ --enable-lockdown\ - --enable-opengl \ - --enable-odk\ - --enable-opengl\ --enable-ext-barcode \ - --enable-ext-diagram \ - --enable-ext-google-docs \ --enable-ext-hunart \ --disable-ext-lightproof \ --disable-ext-mysql-connector \ --with-system-mysql \ - --enable-ext-nlpsolver \ --enable-ext-ct2n \ --enable-ext-numbertext \ --enable-ext-oooblogger \ --enable-ext-pdfimport \ --enable-ext-presenter-console \ --enable-ext-presenter-minimizer \ - --enable-ext-report-builder \ - --enable-ext-scripting-beanshell \ - --enable-ext-scripting-javascript \ --enable-ext-scripting-python \ --enable-ext-typo \ - --enable-ext-validator \ - --enable-ext-watch-window \ - --enable-ext-wiki-publisher \ --without-fonts\ --without-afms\ --without-ppds\ @@ -349,7 +349,6 @@ build() { --with-system-libtextcat \ --with-external-libtextcat-data \ --with-openldap\ - --with-ant-home="/usr/share/java/apache-ant"\ --without-system-boost\ --with-system-cairo\ --with-system-libs\ @@ -358,10 +357,7 @@ build() { --with-system-xrender-headers\ --with-system-headers\ --with-alloc=system\ - --with-system-lucene\ - --with-lucene-core-jar=/usr/share/java/lucene-core.jar\ - --with-lucene-analyzers-jar=/usr/share/java/lucene-analyzers.jar\ - --with-java-target-version=1.5 \ + $extraconf \ $EXTRAOPTS || return 1 #--enable-split-opt-features Split file lists for some optional features, .e.g. pyuno, testtool @@ -392,29 +388,30 @@ package_libreoffice-common() { pkgdesc="common files for LibreOffice - a productivity suite that is compatible with other major office suites" install=${pkgbase}.install depends=('libreoffice-langpack' "curl>=7.20.0" "hunspell>=1.2.8" "python2>=2.7" 'libxaw' "neon>=0.28.6" - 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'libxslt' "icu>=4.6" + 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libxslt' "icu>=4.6" 'redland' 'hyphen' 'gcc-libs' 'sh' 'libtextcat' #'libgraphite' 'hicolor-icon-theme' 'desktop-file-utils' 'shared-mime-info' 'gtk2' 'orbit2') # keep gtk2 for install script #'java-runtime' #'saxon' + [ "${CARCH}" != "mips64el" ] && depends+=('libgl') optdepends=('libreoffice-langpack: additional language support' - 'java-runtime: adds java support' 'libcups: adds printing support' 'gconf: adds additional gnome support' 'nss: adds support for signed files/macros' 'pstoedit: translates PostScript and PDF graphics into other vector formats' 'poppler: for shipped pdfimport extension' 'libmythes: for use in thesaurus' - 'hsqldb-java: default database format for OpenOffice.org' - 'beanshell: interactive java -- good for prototyping /macros' 'vigra: C++ computer vision library, usable in Basebmp' 'libmspack: library for Microsoft compression formats for use in FontOOo' 'libwpg: library for importing and converting Corel WordPerfect(tm) Graphics images' 'libldap: to get profiles via ldap' - 'lucene: full-text search engine library for Java needed in the help section' 'sane: for scanner access' 'unixodbc: adds ODBC database support' 'gstreamer0.10-base: + some gstr-plugins to support multimedia content, e.g. in impress') + [ "${CARCH}" != "mips64el" ] && optdepends+=('java-runtime: adds java support' \ + 'hsqldb-java: default database format for OpenOffice.org' \ + 'beanshell: interactive java -- good for prototyping /macros' \ + 'lucene: full-text search engine library for Java needed in the help section') backup=(etc/libreoffice/sofficerc etc/libreoffice/bootstraprc etc/libreoffice/psprint.conf) @@ -547,7 +544,7 @@ package_libreoffice-gnome() { package_libreoffice-impress() { pkgdesc="Presentation Application for LibreOffice." depends=('libreoffice-common') - optdepends=('mesa: for the OGLTrans extension') + [ "${CARCH}" != "mips64el" ] && optdepends=('mesa: for the OGLTrans extension') backup=() groups=('libreoffice') replaces=('libreoffice') @@ -629,7 +626,7 @@ package_libreoffice-sdk() { mv ${srcdir}/fakeinstall${file} ${pkgdir}$file done - # fix ArchLinux LibreOffice installation paths + # fix installation paths sed -i -e "s,@OO_SDK_NAME@,libreoffice-sdk," \ -e "s,@OO_SDK_HOME@,/usr/lib/libreoffice/basis3.4/sdk," \ -e "s,@OFFICE_HOME@,/usr/lib/libreoffice," \ diff --git a/extra/libreoffice/fix-nobody-temp-dir.patch b/extra/libreoffice/fix-nobody-temp-dir.patch new file mode 100644 index 000000000..a36465c05 --- /dev/null +++ b/extra/libreoffice/fix-nobody-temp-dir.patch @@ -0,0 +1,11 @@ +--- bridges/source/cpp_uno/shared/vtablefactory.cxx.orig 2011-11-05 19:38:58.812005183 +0100 ++++ bridges/source/cpp_uno/shared/vtablefactory.cxx 2011-11-05 19:40:01.654548478 +0100 +@@ -263,7 +263,7 @@ + + for (int i = strDirectory.getLength() == 0 ? 1 : 0; i < 2; ++i) + { +- if (!strDirectory.getLength()) ++ if (strDirectory.getLength() < 2) + strDirectory = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/tmp" )); + + strDirectory += rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/.execoooXXXXXX" )); diff --git a/extra/librsvg/PKGBUILD b/extra/librsvg/PKGBUILD index 75ca002cd..dee391f52 100644 --- a/extra/librsvg/PKGBUILD +++ b/extra/librsvg/PKGBUILD @@ -5,7 +5,7 @@ pkgname=librsvg pkgver=2.34.1 pkgrel=2 pkgdesc="SAX-based renderer for SVG files into a GdkPixbuf" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('gdk-pixbuf2' 'pango' 'libcroco') makedepends=('intltool' 'gtk2') diff --git a/extra/libsamplerate/PKGBUILD b/extra/libsamplerate/PKGBUILD index d157dc5e1..d7e6f0cd9 100644 --- a/extra/libsamplerate/PKGBUILD +++ b/extra/libsamplerate/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libsamplerate pkgver=0.1.8 pkgrel=1 pkgdesc="Secret Rabbit Code - aka Sample Rate Converter for audio" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.mega-nerd.com/SRC/index.html" license=('GPL') depends=('libsndfile') diff --git a/extra/libsexy/PKGBUILD b/extra/libsexy/PKGBUILD index 86536f8b3..c507f0713 100644 --- a/extra/libsexy/PKGBUILD +++ b/extra/libsexy/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libsexy pkgver=0.1.11 pkgrel=3 pkgdesc="Doing naughty things to good widgets." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://chipx86.com/wiki/Libsexy" depends=('gtk2' 'libxml2') diff --git a/extra/libshout/PKGBUILD b/extra/libshout/PKGBUILD index 84d11dbad..decc80456 100644 --- a/extra/libshout/PKGBUILD +++ b/extra/libshout/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.2.2 pkgrel=4 epoch=1 pkgdesc="Library for accessing a shoutcast/icecast server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libvorbis' 'libtheora' 'speex') url="http://www.icecast.org/" options=('!libtool' '!emptydirs') diff --git a/extra/libsidplay/PKGBUILD b/extra/libsidplay/PKGBUILD index 4d1dfa791..5aa4368dc 100644 --- a/extra/libsidplay/PKGBUILD +++ b/extra/libsidplay/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libsidplay pkgver=1.36.59 pkgrel=4 pkgdesc="A library for playing SID music files." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://critical.ch/distfiles/" license=('GPL') depends=('gcc-libs') diff --git a/extra/libsigc++/PKGBUILD b/extra/libsigc++/PKGBUILD index 444460e89..52a249faa 100644 --- a/extra/libsigc++/PKGBUILD +++ b/extra/libsigc++/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=libsigc++ pkgname=('libsigc++' 'libsigc++-docs') pkgver=2.2.10 pkgrel=1 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://libsigc.sourceforge.net/" source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgbase}/2.2/${pkgbase}-${pkgver}.tar.bz2) diff --git a/extra/libsigsegv/PKGBUILD b/extra/libsigsegv/PKGBUILD index 43a8267d0..030de8269 100644 --- a/extra/libsigsegv/PKGBUILD +++ b/extra/libsigsegv/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libsigsegv pkgver=2.6 pkgrel=2 -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') pkgdesc="Page fault detection library" url="http://libsigsegv.sourceforge.net/" license=('GPL2') diff --git a/extra/libsm/PKGBUILD b/extra/libsm/PKGBUILD index 0abf5d86c..a68ea74a1 100644 --- a/extra/libsm/PKGBUILD +++ b/extra/libsm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libsm pkgver=1.2.0 pkgrel=1 pkgdesc="X11 Session Management library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('libice' 'util-linux-ng') diff --git a/extra/libsmbios/PKGBUILD b/extra/libsmbios/PKGBUILD index 9945172d7..231a7efc8 100644 --- a/extra/libsmbios/PKGBUILD +++ b/extra/libsmbios/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libsmbios pkgver=2.2.26 pkgrel=2 pkgdesc="A library for providing access to as much BIOS information as possible" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://linux.dell.com/libsmbios/main/index.html" license=('GPL' 'custom') depends=('gcc-libs') diff --git a/extra/libsndfile/PKGBUILD b/extra/libsndfile/PKGBUILD index b2c8cd0bb..3c8303ed8 100644 --- a/extra/libsndfile/PKGBUILD +++ b/extra/libsndfile/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libsndfile pkgver=1.0.25 pkgrel=1 pkgdesc="A C library for reading and writing files containing sampled sound" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.mega-nerd.com/libsndfile" license=('LGPL') depends=('alsa-lib' 'flac' 'libvorbis') diff --git a/extra/libsocialweb/PKGBUILD b/extra/libsocialweb/PKGBUILD index d83ab37c2..4d85c1103 100644 --- a/extra/libsocialweb/PKGBUILD +++ b/extra/libsocialweb/PKGBUILD @@ -4,7 +4,7 @@ pkgname=libsocialweb pkgver=0.25.19 pkgrel=2 pkgdesc="A personal social data server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gtk.org/" license=('GPL2') depends=('glib2' 'gconf' 'libsoup-gnome' 'rest' 'dbus-glib' 'libgnome-keyring' diff --git a/extra/libsoup/PKGBUILD b/extra/libsoup/PKGBUILD index 745f90c09..353bc6673 100644 --- a/extra/libsoup/PKGBUILD +++ b/extra/libsoup/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=libsoup pkgname=('libsoup' 'libsoup-gnome') pkgver=2.36.1 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') makedepends=('glib2' 'libxml2' 'sqlite3' 'libgnome-keyring' 'intltool' 'gobject-introspection' 'glib-networking') url="http://www.gnome.org" diff --git a/extra/libspectre/PKGBUILD b/extra/libspectre/PKGBUILD index bbef6cfbc..beac5f96b 100644 --- a/extra/libspectre/PKGBUILD +++ b/extra/libspectre/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libspectre pkgver=0.2.6 pkgrel=2 pkgdesc="Small library for rendering Postscript documents" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://libspectre.freedesktop.org/wiki/" depends=('ghostscript>=9.00') diff --git a/extra/libssh/PKGBUILD b/extra/libssh/PKGBUILD index a2dc1bfcd..4da9183cd 100644 --- a/extra/libssh/PKGBUILD +++ b/extra/libssh/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc="Library for accessing ssh client services through C libraries" url="http://www.libssh.org/" license=('LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('openssl') makedepends=('cmake' 'doxygen') source=("https://red.libssh.org/attachments/download/27/${pkgname}-${pkgver}.tar.gz") diff --git a/extra/libstdc++5/PKGBUILD b/extra/libstdc++5/PKGBUILD index 3de174843..461240c0e 100644 --- a/extra/libstdc++5/PKGBUILD +++ b/extra/libstdc++5/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libstdc++5 pkgver=3.3.6 pkgrel=4 pkgdesc="GNU Standard C++ library version 3" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gcc.gnu.org" license=('GPL' 'LGPL') depends=('gcc-libs') diff --git a/extra/libstroke/PKGBUILD b/extra/libstroke/PKGBUILD index 08f0a1dac..c81b0a90f 100644 --- a/extra/libstroke/PKGBUILD +++ b/extra/libstroke/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libstroke pkgver=0.5.1 pkgrel=5 pkgdesc="A stroke (mouse gesture) translation library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://etla.net/libstroke/" license=('GPL2') depends=('glibc') diff --git a/extra/libtasn1/PKGBUILD b/extra/libtasn1/PKGBUILD index 2836a8ceb..339395e69 100644 --- a/extra/libtasn1/PKGBUILD +++ b/extra/libtasn1/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libtasn1 pkgver=2.9 pkgrel=1 pkgdesc="The ASN.1 library used in GNUTLS" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL3' 'LGPL') url="http://www.gnu.org/software/libtasn1/" depends=('glibc' 'texinfo') diff --git a/extra/libtextcat/PKGBUILD b/extra/libtextcat/PKGBUILD index dfccfb8db..85e0e4459 100644 --- a/extra/libtextcat/PKGBUILD +++ b/extra/libtextcat/PKGBUILD @@ -8,7 +8,7 @@ pkgname=libtextcat pkgver=2.2 pkgrel=8 pkgdesc="Library that implements N-gram-based text categorization" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://software.wise-guys.nl/libtextcat/" license=('BSD') depends=('glibc') diff --git a/extra/libthai/PKGBUILD b/extra/libthai/PKGBUILD index 818b8611e..4de54376a 100644 --- a/extra/libthai/PKGBUILD +++ b/extra/libthai/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.1.15 pkgrel=1 pkgdesc="Thai language support routines" url="http://linux.thai.net/projects/libthai" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('libdatrie>=0.2.3') makedepends=('pkgconfig') diff --git a/extra/libtheora/PKGBUILD b/extra/libtheora/PKGBUILD index 89cdaecb7..d40c8a8d0 100644 --- a/extra/libtheora/PKGBUILD +++ b/extra/libtheora/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libtheora pkgver=1.1.1 pkgrel=2 pkgdesc="An open video codec developed by the Xiph.org" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xiph.org" license=('BSD') depends=('libogg') @@ -18,7 +18,7 @@ sha1sums=('8dcaa8e61cd86eb1244467c0b64b9ddac04ae262') build() { cd "${srcdir}/libtheora-${pkgver}" - ./configure --prefix=/usr --enable-shared --disable-static + ./configure --prefix=/usr --enable-shared --disable-static --build=$CHOST --target=$CHOST --host=$CHOST make } diff --git a/extra/libtiff/PKGBUILD b/extra/libtiff/PKGBUILD index 1624b2a52..a7c221246 100644 --- a/extra/libtiff/PKGBUILD +++ b/extra/libtiff/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libtiff pkgver=3.9.5 pkgrel=1 pkgdesc="Library for manipulation of TIFF images" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.remotesensing.org/libtiff/" license=('custom') depends=('libjpeg' 'zlib') diff --git a/extra/libtorrent-rasterbar/PKGBUILD b/extra/libtorrent-rasterbar/PKGBUILD index 122798148..fe7c8f49d 100644 --- a/extra/libtorrent-rasterbar/PKGBUILD +++ b/extra/libtorrent-rasterbar/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.15.8 pkgrel=1 pkgdesc="A C++ library that aims to be a good alternative to all the other bittorrent implementations around" url="http://www.rasterbar.com/products/libtorrent/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') depends=('boost-libs' 'python2') makedepends=('boost') diff --git a/extra/libunique/PKGBUILD b/extra/libunique/PKGBUILD index 8bd45f129..a03262a99 100644 --- a/extra/libunique/PKGBUILD +++ b/extra/libunique/PKGBUILD @@ -4,7 +4,7 @@ pkgname=libunique pkgver=1.1.6 pkgrel=4 pkgdesc="Library for writing single instance applications" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('gtk2') makedepends=('gtk-doc' 'gobject-introspection') diff --git a/extra/libunique3/PKGBUILD b/extra/libunique3/PKGBUILD index cb9155eeb..f6a5549e4 100644 --- a/extra/libunique3/PKGBUILD +++ b/extra/libunique3/PKGBUILD @@ -4,7 +4,7 @@ pkgname=libunique3 pkgver=3.0.2 pkgrel=1 pkgdesc="Library for writing single instance applications for GTK3" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('gtk3') makedepends=('gtk-doc' 'gobject-introspection') diff --git a/extra/libupnp/PKGBUILD b/extra/libupnp/PKGBUILD index 20c1c66c9..0239b1942 100644 --- a/extra/libupnp/PKGBUILD +++ b/extra/libupnp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libupnp pkgver=1.6.13 pkgrel=1 pkgdesc="Portable Open Source UPnP Development Kit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pupnp.sourceforge.net/" license=('BSD') depends=('glibc') 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 7500270bc..67ee93f18 100644 --- a/extra/libvdpau/PKGBUILD +++ b/extra/libvdpau/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libvdpau pkgver=0.4.1 pkgrel=1 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/libvisual-plugins/PKGBUILD b/extra/libvisual-plugins/PKGBUILD index 604b8788e..01c7c74d6 100644 --- a/extra/libvisual-plugins/PKGBUILD +++ b/extra/libvisual-plugins/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libvisual-plugins pkgver=0.4.0 pkgrel=4 pkgdesc="plugins for libvisual" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') license=('GPL') url="http://www.localhost.nl/~synap/libvisual/" depends=('libvisual' 'gtk2' 'mesa' 'alsa-lib' 'jack') diff --git a/extra/libvisual/PKGBUILD b/extra/libvisual/PKGBUILD index 11b566762..4a5f8a0b0 100644 --- a/extra/libvisual/PKGBUILD +++ b/extra/libvisual/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libvisual pkgver=0.4.0 pkgrel=3 pkgdesc="Abstraction library that comes between applications and audio visualisation plugins" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://sourceforge.net/projects/libvisual/" license=('LGPL') depends=('glibc') diff --git a/extra/libvncserver/PKGBUILD b/extra/libvncserver/PKGBUILD index 11f2ff735..1c62d5b3a 100644 --- a/extra/libvncserver/PKGBUILD +++ b/extra/libvncserver/PKGBUILD @@ -7,7 +7,7 @@ pkgname=libvncserver pkgver=0.9.8.1 pkgrel=1 pkgdesc="A cross-platform C libraries that allow you to easily implement VNC server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libvncserver.sourceforge.net/" license=('GPL') depends=('libjpeg' 'gnutls' 'libgcrypt') diff --git a/extra/libvorbis/PKGBUILD b/extra/libvorbis/PKGBUILD index b144a90b1..2c7b35a34 100644 --- a/extra/libvorbis/PKGBUILD +++ b/extra/libvorbis/PKGBUILD @@ -5,9 +5,9 @@ pkgname=libvorbis pkgver=1.3.2 -pkgrel=1 +pkgrel=2 pkgdesc="Vorbis codec library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://www.xiph.org/ogg/vorbis/" depends=('libogg') @@ -18,7 +18,11 @@ md5sums=('c870b9bd5858a0ecb5275c14486d9554') build() { cd ${srcdir}/${pkgname}-${pkgver} #-march=i686 optimizes too much, strip it out - CFLAGS=${CFLAGS/-march=$CARCH} ./configure --prefix=/usr --disable-static + if [ "$CARCH" = "mips64el" ]; then + CFLAGS=${CFLAGS/loongson2f/mips3} ./configure --prefix=/usr --disable-static + else + CFLAGS=${CFLAGS/-march=$CARCH} ./configure --prefix=/usr --disable-static + fi make } diff --git a/extra/libvpx/PKGBUILD b/extra/libvpx/PKGBUILD index 5bab60077..fe6c58d41 100644 --- a/extra/libvpx/PKGBUILD +++ b/extra/libvpx/PKGBUILD @@ -5,23 +5,31 @@ pkgver=0.9.7.p1 realver=0.9.7-p1 pkgrel=1 pkgdesc="The VP8 Codec SDK" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.webmproject.org/" license=('BSD') depends=('glibc') makedepends=('yasm') -source=(http://webm.googlecode.com/files/${pkgname}-v${realver}.tar.bz2) -sha1sums=('dacfefaf3363f781de43858f09cdd0b0d469e6fc') +source=(http://webm.googlecode.com/files/${pkgname}-v${realver}.tar.bz2 + mips64el.patch) +sha1sums=('dacfefaf3363f781de43858f09cdd0b0d469e6fc' + '4fd775826a4d737102f831c451235a58947f2cde') build() { cd "${srcdir}/${pkgname}-v${realver}" + + if [ "$CARCH" = "mips64el" ]; then + extra="--target=mips64el-linux-gcc" + patch -Np1 -i ${srcdir}/mips64el.patch + fi + ./configure --prefix=/usr --enable-vp8 \ --enable-runtime-cpu-detect \ --enable-shared \ --enable-postproc \ --enable-pic \ --disable-install-docs \ - --disable-install-srcs + --disable-install-srcs $extra make } diff --git a/extra/libwebkit/PKGBUILD b/extra/libwebkit/PKGBUILD index 9cbac31f9..40985ac43 100644 --- a/extra/libwebkit/PKGBUILD +++ b/extra/libwebkit/PKGBUILD @@ -6,20 +6,33 @@ pkgname=(libwebkit libwebkit3) pkgver=1.6.1 pkgrel=1 pkgdesc="An opensource web content engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://webkitgtk.org/" license=('custom') depends=('libxt' 'libxslt' 'sqlite3' 'icu' 'gstreamer0.10-base' 'libsoup' 'enchant') +checkdepends=('hspell') makedepends=('gperf' 'gtk-doc' 'gobject-introspection' 'python2' 'gtk2' 'gtk3') options=('!libtool' '!emptydirs') install=libwebkit.install -source=(http://webkitgtk.org/webkit-${pkgver}.tar.gz) -md5sums=('c11743694b1b71dad287b2e7a9e73b05') +source=(http://webkitgtk.org/webkit-${pkgver}.tar.gz + fix-mips-n32.patch) +md5sums=('c11743694b1b71dad287b2e7a9e73b05' + '1e1971b0214f6705ceb4f816c4b52af9') build() { cd "${srcdir}/webkit-${pkgver}" mkdir build-gtk{2,3} + # WebKit knows only O32, not aligning memory on N32, also wants to + # use nonavailable JIT for all MIPS. + patch -Np1 -i "${srcdir}/fix-mips-n32.patch" + + # ld needs more virtual memory than is available on MIPS n32, these + # options should reduce it. + if [ "${CARCH}" == "mips64el" ] ; then + export LDFLAGS="${LDFLAGS} -Wl,--reduce-memory-overhead -Wl,--no-keep-memory" + fi + ( cd build-gtk2 && _build --with-gtk=2.0 ) ( cd build-gtk3 && _build --with-gtk=3.0 ) } @@ -33,6 +46,12 @@ _build() { make all stamp-po } +check() { + cd "${srcdir}/webkit-${pkgver}" + make -C build-gtk2 check + make -C build-gtk3 check +} + package_libwebkit() { pkgdesc+=" (for GTK2)" depends+=(gtk2) diff --git a/extra/libwebkit/fix-mips-n32.patch b/extra/libwebkit/fix-mips-n32.patch new file mode 100644 index 000000000..0acc0daf6 --- /dev/null +++ b/extra/libwebkit/fix-mips-n32.patch @@ -0,0 +1,25 @@ +--- webkit-1.4.1.orig/Source/JavaScriptCore/wtf/Platform.h 2011-06-30 12:14:01.572119909 +0200 ++++ webkit-1.4.1/Source/JavaScriptCore/wtf/Platform.h 2011-06-30 12:17:00.352382262 +0200 +@@ -139,8 +139,9 @@ + + /* CPU(MIPS) - MIPS 32-bit */ + /* Note: Only O32 ABI is tested, so we enable it for O32 ABI for now. */ ++/* N32 is also tested, without JIT. */ + #if (defined(mips) || defined(__mips__) || defined(MIPS) || defined(_MIPS_)) \ +- && defined(_ABIO32) ++ && (defined(_ABIO32) || defined(_ABIN32)) + #define WTF_CPU_MIPS 1 + #if defined(__MIPSEB__) + #define WTF_CPU_BIG_ENDIAN 1 +@@ -1009,9 +1010,9 @@ + #define ENABLE_JIT 0 + #endif + +-/* The JIT is enabled by default on all x86, x64-64, ARM & MIPS platforms. */ ++/* The JIT is enabled by default on all x86, x64-64, ARM & MIPS O32 platforms. */ + #if !defined(ENABLE_JIT) \ +- && (CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(MIPS)) \ ++ && (CPU(X86) || CPU(X86_64) || CPU(ARM) || (CPU(MIPS) && defined(_ABIO32))) \ + && (OS(DARWIN) || !COMPILER(GCC) || GCC_VERSION_AT_LEAST(4, 1, 0)) \ + && !OS(WINCE) + #define ENABLE_JIT 1 diff --git a/extra/libwmf/PKGBUILD b/extra/libwmf/PKGBUILD index 12061510c..6558d3b48 100644 --- a/extra/libwmf/PKGBUILD +++ b/extra/libwmf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libwmf pkgver=0.2.8.4 pkgrel=8 pkgdesc="A library for reading vector images in Microsoft's native Windows Metafile Format (WMF)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wvware.sourceforge.net/libwmf.html" license=("LGPL") depends=('libpng' 'libx11' 'freetype2' 'libjpeg' 'gsfonts' 'expat') diff --git a/extra/libwnck/PKGBUILD b/extra/libwnck/PKGBUILD index e11df4304..48b4212dc 100644 --- a/extra/libwnck/PKGBUILD +++ b/extra/libwnck/PKGBUILD @@ -4,7 +4,7 @@ pkgname=libwnck pkgver=2.30.7 pkgrel=1 pkgdesc="Window Navigator Construction Kit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('gtk2' 'startup-notification' 'libxres') makedepends=('libxt' 'intltool' 'gobject-introspection') diff --git a/extra/libwnck3/PKGBUILD b/extra/libwnck3/PKGBUILD index ff006192b..e9e202629 100644 --- a/extra/libwnck3/PKGBUILD +++ b/extra/libwnck3/PKGBUILD @@ -6,7 +6,7 @@ _pkgbasename=libwnck pkgver=3.2.1 pkgrel=1 pkgdesc="Window Navigator Construction Kit (GTK+3)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('gtk3' 'startup-notification' 'libxres') makedepends=('intltool' 'gobject-introspection') diff --git a/extra/libwpd/PKGBUILD b/extra/libwpd/PKGBUILD index b9032299c..30b22c16e 100644 --- a/extra/libwpd/PKGBUILD +++ b/extra/libwpd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libwpd pkgver=0.9.2 pkgrel=1 pkgdesc="Library for importing WordPerfect (tm) documents" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libwpd.sourceforge.net/" license=('LGPL') depends=('gcc-libs') diff --git a/extra/libwpg/PKGBUILD b/extra/libwpg/PKGBUILD index 5dfa3efca..45cb589d9 100644 --- a/extra/libwpg/PKGBUILD +++ b/extra/libwpg/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libwpg pkgver=0.2.0 pkgrel=1 pkgdesc="Library for importing and converting Corel WordPerfect(tm) Graphics images." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libwpg.sourceforge.net/" license=('LGPL') depends=('libwpd>=0.9.0' 'perl') diff --git a/extra/libwps/PKGBUILD b/extra/libwps/PKGBUILD index 650e94400..d99ebd4cc 100644 --- a/extra/libwps/PKGBUILD +++ b/extra/libwps/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libwps pkgver=0.2.2 pkgrel=1 pkgdesc="a Microsoft Works file word processor format import filter library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://libwps.sourceforge.net/" license=('LGPL') depends=('libwpd>=0.9.2') diff --git a/extra/libx11/PKGBUILD b/extra/libx11/PKGBUILD index da81d3904..f3194756d 100644 --- a/extra/libx11/PKGBUILD +++ b/extra/libx11/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libx11 pkgver=1.4.4 pkgrel=1 pkgdesc="X11 client-side library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" depends=('libxcb' 'xproto' 'kbproto') makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto') diff --git a/extra/libxau/PKGBUILD b/extra/libxau/PKGBUILD index f5301af1a..d0af40eb0 100644 --- a/extra/libxau/PKGBUILD +++ b/extra/libxau/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libxau pkgver=1.0.6 pkgrel=1 pkgdesc="X11 authorisation library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" depends=('glibc' 'xproto>=7.0.18') makedepends=('pkgconfig') diff --git a/extra/libxaw/PKGBUILD b/extra/libxaw/PKGBUILD index d4f65c437..c62004a74 100644 --- a/extra/libxaw/PKGBUILD +++ b/extra/libxaw/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxaw pkgver=1.0.9 pkgrel=1 pkgdesc="X11 Athena Widget library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('libxmu' 'libxpm') diff --git a/extra/libxcb/PKGBUILD b/extra/libxcb/PKGBUILD index 31a5183f5..9696ea620 100644 --- a/extra/libxcb/PKGBUILD +++ b/extra/libxcb/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libxcb pkgver=1.7 pkgrel=2 pkgdesc="X11 client-side library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xcb.freedesktop.org/" depends=('xcb-proto>=1.6' 'libxdmcp' 'libxau') makedepends=('pkgconfig' 'libxslt' 'python2') diff --git a/extra/libxcomposite/PKGBUILD b/extra/libxcomposite/PKGBUILD index 854af09b6..860c1e4f4 100644 --- a/extra/libxcomposite/PKGBUILD +++ b/extra/libxcomposite/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxcomposite pkgver=0.4.3 pkgrel=1 pkgdesc="X11 Composite extension library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxfixes' 'compositeproto') diff --git a/extra/libxcursor/PKGBUILD b/extra/libxcursor/PKGBUILD index 619024f09..aca6b0796 100644 --- a/extra/libxcursor/PKGBUILD +++ b/extra/libxcursor/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxcursor pkgver=1.1.12 pkgrel=1 pkgdesc="X cursor management library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxfixes' 'libxrender') diff --git a/extra/libxdamage/PKGBUILD b/extra/libxdamage/PKGBUILD index 231b4ce2d..f54fb1363 100644 --- a/extra/libxdamage/PKGBUILD +++ b/extra/libxdamage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxdamage pkgver=1.1.3 pkgrel=1 pkgdesc="X11 damaged region extension library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxfixes>=4.0.4' 'damageproto>=1.2.0') diff --git a/extra/libxdmcp/PKGBUILD b/extra/libxdmcp/PKGBUILD index b247b9028..85b694ad7 100644 --- a/extra/libxdmcp/PKGBUILD +++ b/extra/libxdmcp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxdmcp pkgver=1.1.0 pkgrel=1 pkgdesc="X11 Display Manager Control Protocol library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('xproto' 'glibc') diff --git a/extra/libxevie/PKGBUILD b/extra/libxevie/PKGBUILD index ac39bc680..69c6a9fe1 100644 --- a/extra/libxevie/PKGBUILD +++ b/extra/libxevie/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxevie pkgver=1.0.3 pkgrel=1 pkgdesc="X11 EvIE extension library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxext') diff --git a/extra/libxext/PKGBUILD b/extra/libxext/PKGBUILD index af85db2de..5d7bdd2f0 100644 --- a/extra/libxext/PKGBUILD +++ b/extra/libxext/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxext pkgver=1.3.0 pkgrel=1 pkgdesc="X11 miscellaneous extensions library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'xextproto') diff --git a/extra/libxfce4menu/PKGBUILD b/extra/libxfce4menu/PKGBUILD index b4dbbc21e..07f3076f4 100644 --- a/extra/libxfce4menu/PKGBUILD +++ b/extra/libxfce4menu/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxfce4menu pkgver=4.6.2 pkgrel=1 pkgdesc="a freedesktop.org compliant menu implementation for Xfce" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.xfce.org/" depends=("libxfce4util>=4.6.2") diff --git a/extra/libxfce4ui/PKGBUILD b/extra/libxfce4ui/PKGBUILD index 5a528e5e2..2e7e8d593 100644 --- a/extra/libxfce4ui/PKGBUILD +++ b/extra/libxfce4ui/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libxfce4ui pkgver=4.8.0 pkgrel=3 pkgdesc="share commonly used Xfce widgets among the Xfce applications" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.xfce.org/" depends=('libxfce4util>=4.8.0' 'gtk2' "xfconf>=4.8.0" 'libsm' 'startup-notification') diff --git a/extra/libxfce4util/PKGBUILD b/extra/libxfce4util/PKGBUILD index ccfd512e8..22d9892b3 100644 --- a/extra/libxfce4util/PKGBUILD +++ b/extra/libxfce4util/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libxfce4util pkgver=4.8.2 pkgrel=1 pkgdesc="Basic utility non-GUI functions for Xfce" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.xfce.org/" depends=('glib2') diff --git a/extra/libxfcegui4/PKGBUILD b/extra/libxfcegui4/PKGBUILD index b89360ae7..5c7e594d0 100644 --- a/extra/libxfcegui4/PKGBUILD +++ b/extra/libxfcegui4/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libxfcegui4 pkgver=4.8.1 pkgrel=3 pkgdesc="Various gtk widgets for Xfce" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://www.xfce.org/" depends=('startup-notification' "xfconf>=4.8.0" "libglade" 'libsm' 'hicolor-icon-theme') diff --git a/extra/libxfixes/PKGBUILD b/extra/libxfixes/PKGBUILD index d4e8ee97e..95c88ce88 100644 --- a/extra/libxfixes/PKGBUILD +++ b/extra/libxfixes/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxfixes pkgver=5.0 pkgrel=1 pkgdesc="X11 miscellaneous 'fixes' extension library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'fixesproto>=5.0') diff --git a/extra/libxfont/PKGBUILD b/extra/libxfont/PKGBUILD index 9d62d6835..2040b2742 100644 --- a/extra/libxfont/PKGBUILD +++ b/extra/libxfont/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxfont pkgver=1.4.4 pkgrel=1 pkgdesc="X11 font rasterisation library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('freetype2' 'libfontenc' 'xproto' 'fontsproto') diff --git a/extra/libxft/PKGBUILD b/extra/libxft/PKGBUILD index edcbf82e5..1ec28e76e 100644 --- a/extra/libxft/PKGBUILD +++ b/extra/libxft/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxft pkgver=2.2.0 pkgrel=1 pkgdesc="FreeType-based font drawing library for X" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('fontconfig' 'libxrender') diff --git a/extra/libxi/PKGBUILD b/extra/libxi/PKGBUILD index 26c64dbc0..8c5197122 100644 --- a/extra/libxi/PKGBUILD +++ b/extra/libxi/PKGBUILD @@ -5,17 +5,20 @@ pkgname=libxi pkgver=1.4.3 pkgrel=1 pkgdesc="X11 Input extension library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xorg.freedesktop.org" depends=('libxext' 'inputproto') makedepends=('pkgconfig' 'xorg-util-macros') options=(!libtool) license=('custom') -source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2) -sha1sums=('c66cfdee74e8d169a7992b5f257395e653ca761b') +source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2 + XExtInt-align-classes-n32.diff) +sha1sums=('c66cfdee74e8d169a7992b5f257395e653ca761b' + '30931831efa9a7f8a888f41bb9284fa32f2e2392') build() { cd "${srcdir}/libXi-${pkgver}" + patch -Nup0 < "${srcdir}/XExtInt-align-classes-n32.diff" ./configure --prefix=/usr --sysconfdir=/etc --disable-static make } diff --git a/extra/libxi/XExtInt-align-classes-n32.diff b/extra/libxi/XExtInt-align-classes-n32.diff new file mode 100644 index 000000000..dc5cc4db3 --- /dev/null +++ b/extra/libxi/XExtInt-align-classes-n32.diff @@ -0,0 +1,31 @@ +--- src/XExtInt.c.orig 2011-06-14 20:46:50.254164713 +0200 ++++ src/XExtInt.c 2011-06-14 22:08:38.173047738 +0200 +@@ -1419,6 +1419,13 @@ + for (i = 0; i < nclasses; i++) + { + int l = 0; ++#ifdef _ABIN32 ++ /* On MIPS n32 doubles must be 8 byte aligned, but longs take ++ 4 bytes, so next_block could make this structure ++ unaligned. */ ++ if(len % 8 != 0) ++ len += 8 - len % 8; ++#endif + any_wire = (xXIAnyInfo*)ptr_wire; + switch(any_wire->type) + { +@@ -1467,6 +1474,14 @@ + + for (i = 0; i < nclasses; i++) + { ++#ifdef _ABIN32 ++ /* On MIPS n32 doubles must be 8 byte aligned, but longs take ++ 4 bytes, so next_block could make this structure ++ unaligned. */ ++ if(((size_t) ptr_lib) % 8 != 0) ++ ptr_lib += 8 - ((size_t) ptr_lib) % 8; ++#endif ++ + any_lib = (XIAnyClassInfo*)ptr_lib; + any_wire = (xXIAnyInfo*)ptr_wire; + diff --git a/extra/libxinerama/PKGBUILD b/extra/libxinerama/PKGBUILD index 87801ba8c..53aba3ae1 100644 --- a/extra/libxinerama/PKGBUILD +++ b/extra/libxinerama/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxinerama pkgver=1.1.1 pkgrel=1 pkgdesc="X11 Xinerama extension library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxext' 'xineramaproto') diff --git a/extra/libxkbfile/PKGBUILD b/extra/libxkbfile/PKGBUILD index 90e05db37..32c0d5adf 100644 --- a/extra/libxkbfile/PKGBUILD +++ b/extra/libxkbfile/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxkbfile pkgver=1.0.7 pkgrel=1 pkgdesc="X11 keyboard file manipulation library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('libx11') diff --git a/extra/libxkbui/PKGBUILD b/extra/libxkbui/PKGBUILD index 78e39fe67..5b6d40daf 100644 --- a/extra/libxkbui/PKGBUILD +++ b/extra/libxkbui/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxkbui pkgver=1.0.2 pkgrel=3 pkgdesc="X11 keyboard UI presentation library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxt' 'libxkbfile') diff --git a/extra/libxklavier/PKGBUILD b/extra/libxklavier/PKGBUILD index 3539d795c..1779f53c5 100644 --- a/extra/libxklavier/PKGBUILD +++ b/extra/libxklavier/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libxklavier pkgver=5.1 pkgrel=1 pkgdesc="High-level API for X Keyboard Extension" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('glib2' 'libxkbfile' 'libxml2' 'xkeyboard-config' 'libxi' 'iso-codes') makedepends=('pkgconfig') diff --git a/extra/libxmi/PKGBUILD b/extra/libxmi/PKGBUILD index b7034d62a..e8cedeacf 100644 --- a/extra/libxmi/PKGBUILD +++ b/extra/libxmi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libxmi pkgver=1.2 pkgrel=5 pkgdesc="A library for rasterizing 2-D vector graphics" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/libxmi/libxmi.html" license=('GPL') depends=('glibc') diff --git a/extra/libxml++/PKGBUILD b/extra/libxml++/PKGBUILD index 198544cbb..6d4dc8db8 100644 --- a/extra/libxml++/PKGBUILD +++ b/extra/libxml++/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=libxml++ pkgname=('libxml++' 'libxml++-docs') pkgver=2.34.2 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://libxmlplusplus.sourceforge.net/" makedepends=('pkgconfig' 'glibmm-docs' 'libxml2' 'glibmm') diff --git a/extra/libxml2/PKGBUILD b/extra/libxml2/PKGBUILD index c5da2c5d2..0e3ab9d1f 100644 --- a/extra/libxml2/PKGBUILD +++ b/extra/libxml2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libxml2 pkgver=2.7.8 pkgrel=1 pkgdesc="XML parsing library, version 2" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') depends=('zlib>=1.2.4' 'readline>=6.1' 'ncurses>=5.7') makedepends=('python2') diff --git a/extra/libxmu/PKGBUILD b/extra/libxmu/PKGBUILD index 172af84ab..24374eb55 100644 --- a/extra/libxmu/PKGBUILD +++ b/extra/libxmu/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxmu pkgver=1.1.0 pkgrel=1 pkgdesc="X11 miscellaneous micro-utility library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xorg.freedesktop.org/" depends=('libxext' 'libxt') makedepends=('xorg-util-macros') diff --git a/extra/libxp/PKGBUILD b/extra/libxp/PKGBUILD index fc3117259..1b6cfa728 100644 --- a/extra/libxp/PKGBUILD +++ b/extra/libxp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxp pkgver=1.0.1 pkgrel=2 pkgdesc="X11 X Print Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('libxext' 'printproto') diff --git a/extra/libxpm/PKGBUILD b/extra/libxpm/PKGBUILD index 676fd9e31..b0dfd032d 100644 --- a/extra/libxpm/PKGBUILD +++ b/extra/libxpm/PKGBUILD @@ -4,7 +4,7 @@ pkgname=libxpm pkgver=3.5.9 pkgrel=1 pkgdesc="X11 pixmap library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('libxt' 'libxext') diff --git a/extra/libxrandr/PKGBUILD b/extra/libxrandr/PKGBUILD index e148eb6cd..8efc601e4 100644 --- a/extra/libxrandr/PKGBUILD +++ b/extra/libxrandr/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxrandr pkgver=1.3.2 pkgrel=1 pkgdesc="X11 RandR extension library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('libxext' 'libxrender' 'randrproto') diff --git a/extra/libxrender/PKGBUILD b/extra/libxrender/PKGBUILD index bed1b410e..1ff10819b 100644 --- a/extra/libxrender/PKGBUILD +++ b/extra/libxrender/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxrender pkgver=0.9.6 pkgrel=1 pkgdesc="X Rendering Extension client library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11>=1.3.4' 'renderproto') diff --git a/extra/libxres/PKGBUILD b/extra/libxres/PKGBUILD index 8414f6745..2f3cdc8f8 100644 --- a/extra/libxres/PKGBUILD +++ b/extra/libxres/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxres pkgver=1.0.5 pkgrel=1 pkgdesc="X11 Resource extension library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org" license=('custom') depends=('libxext') diff --git a/extra/libxslt/PKGBUILD b/extra/libxslt/PKGBUILD index c956c0f08..54953a283 100644 --- a/extra/libxslt/PKGBUILD +++ b/extra/libxslt/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libxslt pkgver=1.1.26 pkgrel=2 pkgdesc="XML stylesheet transformation library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xmlsoft.org/XSLT/" license=('custom') depends=('libxml2>=2.7.7' 'libgcrypt>=1.4.6') diff --git a/extra/libxss/PKGBUILD b/extra/libxss/PKGBUILD index a6fbca454..c48afc968 100644 --- a/extra/libxss/PKGBUILD +++ b/extra/libxss/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxss pkgver=1.2.1 pkgrel=1 pkgdesc="X11 Screen Saver extension library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('libxext' 'scrnsaverproto') diff --git a/extra/libxt/PKGBUILD b/extra/libxt/PKGBUILD index 989e384c3..5676be5c2 100644 --- a/extra/libxt/PKGBUILD +++ b/extra/libxt/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxt pkgver=1.1.1 pkgrel=1 pkgdesc="X11 toolkit intrinsics library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libsm' 'libx11') diff --git a/extra/libxtst/PKGBUILD b/extra/libxtst/PKGBUILD index bcdf92d29..adbb507e7 100644 --- a/extra/libxtst/PKGBUILD +++ b/extra/libxtst/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxtst pkgver=1.2.0 pkgrel=1 pkgdesc="X11 Testing -- Resource extension library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxext' 'libxi' 'recordproto' 'inputproto') diff --git a/extra/libxv/PKGBUILD b/extra/libxv/PKGBUILD index a06c89882..17446b190 100644 --- a/extra/libxv/PKGBUILD +++ b/extra/libxv/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxv pkgver=1.0.6 pkgrel=1 pkgdesc="X11 Video extension library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('libxext' 'videoproto') diff --git a/extra/libxvmc/PKGBUILD b/extra/libxvmc/PKGBUILD index 3efb46c39..626ff5a95 100644 --- a/extra/libxvmc/PKGBUILD +++ b/extra/libxvmc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxvmc pkgver=1.0.6 pkgrel=1 pkgdesc="X11 Video Motion Compensation extension library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxv>=1.0.5') diff --git a/extra/libxxf86dga/PKGBUILD b/extra/libxxf86dga/PKGBUILD index c66ee69e5..09c80014b 100644 --- a/extra/libxxf86dga/PKGBUILD +++ b/extra/libxxf86dga/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libxxf86dga pkgver=1.1.2 pkgrel=1 pkgdesc="X11 Direct Graphics Access extension library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxext' 'xf86dgaproto') diff --git a/extra/libxxf86vm/PKGBUILD b/extra/libxxf86vm/PKGBUILD index 12a6f3069..fb98a7fed 100644 --- a/extra/libxxf86vm/PKGBUILD +++ b/extra/libxxf86vm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=libxxf86vm pkgver=1.1.1 pkgrel=1 pkgdesc="X11 XFree86 video mode extension library" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('libxext' 'xf86vidmodeproto') diff --git a/extra/libytnef/PKGBUILD b/extra/libytnef/PKGBUILD index 5516bb5ee..e8e6d0839 100644 --- a/extra/libytnef/PKGBUILD +++ b/extra/libytnef/PKGBUILD @@ -8,13 +8,16 @@ pkgrel=3 pkgdesc="Yerase's TNEF Stream Reader library (decode winmail.dat)" url="http://freshmeat.net/projects/ytnef/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!libtool') depends=('glibc') source=("http://downloads.sourceforge.net/ytnef/${pkgname}-${pkgver}.tar.gz") md5sums=('6c44b955f33cf714c75a7bbe895cc352') build() { + # Install updated config.guess and config.sub + cp "$srcdir/config.guess" "$srcdir/config.sub" "$srcdir/${pkgname}-${pkgver}" + cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --disable-static make diff --git a/extra/libytnef/config.guess b/extra/libytnef/config.guess new file mode 100755 index 000000000..f7dd69ecc --- /dev/null +++ b/extra/libytnef/config.guess @@ -0,0 +1,1516 @@ +#! /bin/sh +# Attempt to guess a canonical system name. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +# 2011 Free Software Foundation, Inc. + +timestamp='2011-08-20' + +# This file is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Originally written by Per Bothner. Please send patches (context +# diff format) to <config-patches@gnu.org> and include a ChangeLog +# entry. +# +# This script attempts to guess a canonical system name similar to +# config.sub. If it succeeds, it prints the system name on stdout, and +# exits with 0. Otherwise, it exits with 1. +# +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to <config-patches@gnu.org>." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free +Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; + for c in cc gcc c89 c99 ; do + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ; set_cc_for_build= ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +# Note: order is significant - the case branches are not exclusive. + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + case "${UNAME_MACHINE_ARCH}" in + armeb) machine=armeb-unknown ;; + arm*) machine=arm-unknown ;; + sh3el) machine=shl-unknown ;; + sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; + *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + esac + # The Operating System including object format, if it has switched + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ELF__ + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + exit ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit ;; + *:SolidBSD:*:*) + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; + macppc:MirBSD:*:*) + echo powerpc-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit ;; + alpha:OSF1:*:*) + case $UNAME_RELEASE in + *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + # Reset EXIT trap before exiting to avoid spurious non-zero exit code. + exitcode=$? + trap '' 0 + exit $exitcode ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit ;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos + exit ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-morphos + exit ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit ;; + arm:riscos:*:*|arm:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit ;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit ;; + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7; exit ;; + esac ;; + s390x:SunOS:*:*) + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux${UNAME_RELEASE} + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval $set_cc_for_build + SUN_ARCH="i386" + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH="x86_64" + fi + fi + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + exit ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} + exit ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos${UNAME_RELEASE} + ;; + sun4) + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac + exit ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} + exit ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} + exit ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} + exit ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} + exit ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} + exit ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c +#ifdef __cplusplus +#include <stdio.h> /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && + { echo "$SYSTEM_NAME"; exit; } + echo mips-mips-riscos${UNAME_RELEASE} + exit ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] + then + echo m88k-dg-dgux${UNAME_RELEASE} + else + echo m88k-dg-dguxbcs${UNAME_RELEASE} + fi + else + echo i586-dg-dgux${UNAME_RELEASE} + fi + exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + exit ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + exit ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include <sys/systemcfg.h> + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit ;; + *:AIX:*:[4567]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} + exit ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 + exit ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + exit ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + + #define _HPUX_SOURCE + #include <stdlib.h> + #include <unistd.h> + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + eval $set_cc_for_build + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + grep -q __LP64__ + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} + exit ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} + exit ;; + 3050*:HI-UX:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include <unistd.h> + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + echo unknown-hitachi-hiuxwe2 + exit ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd + exit ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf + exit ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi + exit ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:FreeBSD:*:*) + UNAME_PROCESSOR=`/usr/bin/uname -p` + case ${UNAME_PROCESSOR} in + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) + echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; + *:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; + *:Interix*:*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + authenticamd | genuineintel | EM64T) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks + exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + *:GNU:*:*) + # the GNU system + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + exit ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + exit ;; + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; + arm*:Linux:*:*) + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabihf + fi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + cris:Linux:*:*) + echo cris-axis-linux-gnu + exit ;; + crisv32:Linux:*:*) + echo crisv32-axis-linux-gnu + exit ;; + frv:Linux:*:*) + echo frv-unknown-linux-gnu + exit ;; + i*86:Linux:*:*) + LIBC=gnu + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit ;; + ia64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m68*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + mips:Linux:*:* | mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=${UNAME_MACHINE}el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=${UNAME_MACHINE} + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + ;; + or32:Linux:*:*) + echo or32-unknown-linux-gnu + exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-gnu + exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; + esac + exit ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu + exit ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo ${UNAME_MACHINE}-ibm-linux + exit ;; + sh64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + tile*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-gnu + exit ;; + x86_64:Linux:*:*) + echo x86_64-unknown-linux-gnu + exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit ;; + i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + exit ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` + echo ${UNAME_MACHINE}-pc-isc$UNAME_REL + elif /bin/uname -X 2>/dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp + exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi + exit ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} + exit ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} + exit ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} + exit ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) + echo powerpc-unknown-lynxos${UNAME_RELEASE} + exit ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} + exit ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo ${UNAME_MACHINE}-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says <Richard.M.Bartel@ccMail.Census.GOV> + echo i586-unisys-sysv4 + exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes <hewes@openmarket.com>. + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} + exit ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} + exit ;; + SX-6:SUPER-UX:*:*) + echo sx6-nec-superux${UNAME_RELEASE} + exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Darwin:*:*) + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + case $UNAME_PROCESSOR in + i386) + eval $set_cc_for_build + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + UNAME_PROCESSOR="x86_64" + fi + fi ;; + unknown) UNAME_PROCESSOR=powerpc ;; + esac + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + exit ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = "x86"; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + exit ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; + NEO-?:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk${UNAME_RELEASE} + exit ;; + NSE-?:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk${UNAME_RELEASE} + exit ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit ;; + DS/*:UNIX_System_V:*:*) + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + exit ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) + echo mips-sei-seiux${UNAME_RELEASE} + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit ;; + i*86:skyos:*:*) + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + exit ;; + i*86:rdos:*:*) + echo ${UNAME_MACHINE}-pc-rdos + exit ;; + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; +esac + +#echo '(No uname command or uname output not recognized.)' 1>&2 +#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 + +eval $set_cc_for_build +cat >$dummy.c <<EOF +#ifdef _SEQUENT_ +# include <sys/types.h> +# include <sys/utsname.h> +#endif +main () +{ +#if defined (sony) +#if defined (MIPSEB) + /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, + I don't know.... */ + printf ("mips-sony-bsd\n"); exit (0); +#else +#include <sys/param.h> + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); +#endif +#endif + +#if defined (__arm) && defined (__acorn) && defined (__unix) + printf ("arm-acorn-riscix\n"); exit (0); +#endif + +#if defined (hp300) && !defined (hpux) + printf ("m68k-hp-bsd\n"); exit (0); +#endif + +#if defined (NeXT) +#if !defined (__ARCHITECTURE__) +#define __ARCHITECTURE__ "m68k" +#endif + int version; + version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; + if (version < 4) + printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); + else + printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); + exit (0); +#endif + +#if defined (MULTIMAX) || defined (n16) +#if defined (UMAXV) + printf ("ns32k-encore-sysv\n"); exit (0); +#else +#if defined (CMU) + printf ("ns32k-encore-mach\n"); exit (0); +#else + printf ("ns32k-encore-bsd\n"); exit (0); +#endif +#endif +#endif + +#if defined (__386BSD__) + printf ("i386-pc-bsd\n"); exit (0); +#endif + +#if defined (sequent) +#if defined (i386) + printf ("i386-sequent-dynix\n"); exit (0); +#endif +#if defined (ns32000) + printf ("ns32k-sequent-dynix\n"); exit (0); +#endif +#endif + +#if defined (_SEQUENT_) + struct utsname un; + + uname(&un); + + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); + +#endif + +#if defined (vax) +# if !defined (ultrix) +# include <sys/param.h> +# if defined (BSD) +# if BSD == 43 + printf ("vax-dec-bsd4.3\n"); exit (0); +# else +# if BSD == 199006 + printf ("vax-dec-bsd4.3reno\n"); exit (0); +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# endif +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# else + printf ("vax-dec-ultrix\n"); exit (0); +# endif +#endif + +#if defined (alliant) && defined (i860) + printf ("i860-alliant-bsd\n"); exit (0); +#endif + + exit (1); +} +EOF + +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + +# Apollos put the system type in the environment. + +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } + +# Convex versions that predate uname can use getsysinfo(1) + +if [ -x /usr/convex/getsysinfo ] +then + case `getsysinfo -f cpu_type` in + c1*) + echo c1-convex-bsd + exit ;; + c2*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + c34*) + echo c34-convex-bsd + exit ;; + c38*) + echo c38-convex-bsd + exit ;; + c4*) + echo c4-convex-bsd + exit ;; + esac +fi + +cat >&2 <<EOF +$0: unable to guess system type + +This script, last modified $timestamp, has failed to recognize +the operating system you are using. It is advised that you +download the most up to date version of the config scripts from + + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD +and + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + +If the version you run ($0) is already up to date, please +send the following data and any information you think might be +pertinent to <config-patches@gnu.org> in order to provide the needed +information to handle your system. + +config.guess timestamp = $timestamp + +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = ${UNAME_MACHINE} +UNAME_RELEASE = ${UNAME_RELEASE} +UNAME_SYSTEM = ${UNAME_SYSTEM} +UNAME_VERSION = ${UNAME_VERSION} +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/extra/libytnef/config.sub b/extra/libytnef/config.sub new file mode 100755 index 000000000..0d2cddec7 --- /dev/null +++ b/extra/libytnef/config.sub @@ -0,0 +1,1766 @@ +#! /bin/sh +# Configuration validation subroutine script. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +# 2011 Free Software Foundation, Inc. + +timestamp='2011-09-09' + +# This file is (in principle) common to ALL GNU software. +# The presence of a machine in this file suggests that SOME GNU software +# can handle that machine. It does not imply ALL GNU software can. +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Please send patches to <config-patches@gnu.org>. Submit a context +# diff and a properly formatted GNU ChangeLog entry. +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS + +Canonicalize a configuration name. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to <config-patches@gnu.org>." + +version="\ +GNU config.sub ($timestamp) + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free +Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo $1 + exit ;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ + linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] + then os=`echo $1 | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis | -knuth | -cray | -microblaze) + os= + basic_machine=$1 + ;; + -bluegene*) + os=-cnk + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + ;; + -windowsnt*) + os=`echo $os | sed -e 's/windowsnt/winnt/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ + | be32 | be64 \ + | bfin \ + | c4x | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | fido | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | hexagon \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ + | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | mcore | mep | metag \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64octeon | mips64octeonel \ + | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | moxie \ + | mt \ + | msp430 \ + | nds32 | nds32le | nds32be \ + | nios | nios2 \ + | ns16k | ns32k \ + | open8 \ + | or32 \ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pyramid \ + | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu \ + | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | ubicom32 \ + | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | we32k \ + | x86 | xc16x | xstormy16 | xtensa \ + | z8k | z80) + basic_machine=$basic_machine-unknown + ;; + c54x) + basic_machine=tic54x-unknown + ;; + c55x) + basic_machine=tic55x-unknown + ;; + c6x) + basic_machine=tic6x-unknown + ;; + m6811 | m68hc11 | m6812 | m68hc12 | picochip) + # Motorola 68HC11/12. + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + ;; + ms1) + basic_machine=mt-unknown + ;; + + strongarm | thumb | xscale) + basic_machine=arm-unknown + ;; + + xscaleeb) + basic_machine=armeb-unknown + ;; + + xscaleel) + basic_machine=armel-unknown + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ + | be32-* | be64-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | hexagon-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ + | le32-* | le64-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64octeon-* | mips64octeonel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | mt-* \ + | msp430-* \ + | nds32-* | nds32le-* | nds32be-* \ + | nios-* | nios2-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ + | open8-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pyramid-* \ + | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ + | tahoe-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tile*-* \ + | tron-* \ + | ubicom32-* \ + | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ + | vax-* \ + | we32k-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-* | z80-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-unknown + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + abacus) + basic_machine=abacus-unknown + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aros) + basic_machine=i386-pc + os=-aros + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; + c54x-*) + basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c55x-*) + basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c6x-*) + basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16 | cr16-*) + basic_machine=cr16-unknown + os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2* | dpx2*-bull) + basic_machine=m68k-bull + os=-sysv3 + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppa-next) + os=-nextstep3 + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; +# I'm not sure what "Sysv32" means. Should this be sysv3.2? + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + i386-vsta | vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + m88k-omron*) + basic_machine=m88k-omron + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + microblaze) + basic_machine=microblaze-xilinx + ;; + mingw32) + basic_machine=i386-pc + os=-mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + nacl) + basic_machine=le32-unknown + os=-nacl + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next ) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + neo-tandem) + basic_machine=neo-tandem + ;; + nse-tandem) + basic_machine=nse-tandem + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + openrisc | openrisc-*) + basic_machine=or32-unknown + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; + pentium4) + basic_machine=i786-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc | ppcbe) basic_machine=powerpc-unknown + ;; + ppc-* | ppcbe-*) + basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little | ppc64-le | powerpc64-little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rdos) + basic_machine=i386-pc + os=-rdos + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; + sequent) + basic_machine=i386-sequent + ;; + sh) + basic_machine=sh-hitachi + os=-hms + ;; + sh5el) + basic_machine=sh5le-unknown + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + strongarm-* | thumb-*) + basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tile*) + basic_machine=$basic_machine-unknown + os=-linux-gnu + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + xscale-* | xscalee[bl]-*) + basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim + ;; + z80-*-coff) + basic_machine=z80-unknown + os=-sim + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + mmix) + basic_machine=mmix-knuth + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp10) + # there are many clones, so DEC is not a safe bet + basic_machine=pdp10-unknown + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) + basic_machine=sparc-sun + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases + # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -svr4*) + os=-sysv4 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # First accept the basic system types. + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* | -aros* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* | -cegcc* \ + | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -linux-gnu* | -linux-android* \ + | -linux-newlib* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo $os | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -os400*) + os=-os400 + ;; + -wince*) + os=-wince + ;; + -osfrose*) + os=-osfrose + ;; + -osf*) + os=-osf + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -syllable*) + os=-syllable + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2 ) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -tpf*) + os=-tpf + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -es1800*) + os=-ose + ;; + -xenix) + os=-xenix + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -zvmoe) + os=-zvmoe + ;; + -dicos*) + os=-dicos + ;; + -nacl*) + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + c4x-* | tic4x-*) + os=-coff + ;; + tic54x-*) + os=-coff + ;; + tic55x-*) + os=-coff + ;; + tic6x-*) + os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + # This also exists in the configure program, but was not the + # default. + # os=-sunos4 + ;; + m68*-cisco) + os=-aout + ;; + mep-*) + os=-elf + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + *-be) + os=-beos + ;; + *-haiku) + os=-haiku + ;; + *-ibm) + os=-aix + ;; + *-knuth) + os=-mmixware + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next ) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-next) + os=-nextstep3 + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -cnk*|-aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; +esac + +echo $basic_machine$os +exit + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/extra/libzip/PKGBUILD b/extra/libzip/PKGBUILD index d50b952db..5c485cce0 100644 --- a/extra/libzip/PKGBUILD +++ b/extra/libzip/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc="A C library for reading, creating, and modifying zip archives" url="http://www.nih.at/libzip/index.html" license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('zlib') options=('!libtool') source=("http://www.nih.at/${pkgname}/${pkgname}-${pkgver}.tar.gz" diff --git a/extra/libzvt/PKGBUILD b/extra/libzvt/PKGBUILD index 4c7c92cd0..02cac3521 100644 --- a/extra/libzvt/PKGBUILD +++ b/extra/libzvt/PKGBUILD @@ -6,7 +6,7 @@ pkgname=libzvt pkgver=2.0.1 pkgrel=6 pkgdesc="Zed's virtual terminal library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'LGPL') url="http://ftp.gnome.org/pub/GNOME/sources/libzvt" depends=('gtk2>=2.18.6' 'libart-lgpl>=2.3.20') diff --git a/extra/licq/PKGBUILD b/extra/licq/PKGBUILD index 3eaf2461f..3b2767f66 100644 --- a/extra/licq/PKGBUILD +++ b/extra/licq/PKGBUILD @@ -5,7 +5,7 @@ pkgname=licq pkgver=1.5.1 pkgrel=1 pkgdesc="Advanced graphical ICQ clone and more for Unix" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.licq.org" license=('GPL') depends=('libxss' 'qt' 'openssl') diff --git a/extra/lighttpd/PKGBUILD b/extra/lighttpd/PKGBUILD index d6bc1f95d..4fb32dcbc 100644 --- a/extra/lighttpd/PKGBUILD +++ b/extra/lighttpd/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.4.29 pkgrel=2 pkgdesc='a secure, fast, compliant and very flexible web-server' license=('custom') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lighttpd.net/" depends=('pcre' 'bzip2' 'libldap' 'util-linux') makedepends=('fcgi' 'libmysqlclient' 'lua' 'libxml2' 'e2fsprogs' 'sqlite3' 'gdbm' 'pkgconfig') diff --git a/extra/link-grammar/PKGBUILD b/extra/link-grammar/PKGBUILD index ccbbffaf3..6db503de5 100644 --- a/extra/link-grammar/PKGBUILD +++ b/extra/link-grammar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=link-grammar pkgver=4.7.4 pkgrel=1 pkgdesc="A Grammar Checking library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.abisource.com/downloads/link-grammar/" license=('BSD') depends=('glibc') diff --git a/extra/linux_logo/PKGBUILD b/extra/linux_logo/PKGBUILD index 30fab1149..7093d16f2 100644 --- a/extra/linux_logo/PKGBUILD +++ b/extra/linux_logo/PKGBUILD @@ -5,7 +5,7 @@ pkgname=linux_logo pkgver=5.11 pkgrel=1 pkgdesc="Text-based logo and system information program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.deater.net/weave/vmwprod/linux_logo" license=('GPL') depends=('glibc') diff --git a/extra/liquidwar/PKGBUILD b/extra/liquidwar/PKGBUILD index e25f0ea94..1b7022396 100644 --- a/extra/liquidwar/PKGBUILD +++ b/extra/liquidwar/PKGBUILD @@ -5,7 +5,7 @@ pkgname=liquidwar pkgver=5.6.4 pkgrel=6 pkgdesc="A unique multiplayer wargame" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ufoot.org/liquidwar/" license=('GPL') depends=('allegro4') diff --git a/extra/lirc/PKGBUILD b/extra/lirc/PKGBUILD index c5525ea12..0a10e033f 100644 --- a/extra/lirc/PKGBUILD +++ b/extra/lirc/PKGBUILD @@ -6,11 +6,11 @@ pkgname=('lirc' 'lirc-utils') pkgver=0.9.0 pkgrel=6 epoch=1 -_kernver=3.0-ARCH -arch=('i686' 'x86_64') +_kernver=3.0-LIBRE +arch=('i686' 'x86_64' 'mips64el') url="http://www.lirc.org/" license=('GPL') -makedepends=('help2man' 'linux-headers>=3.0' 'linux-headers<3.1' 'alsa-lib' 'libx11' 'libftdi' 'libirman' 'python') +makedepends=('help2man' 'linux-libre-headers>=3.0' 'linux-libre-headers<3.1' 'alsa-lib' 'libx11' 'libftdi' 'libirman' 'python') options=('!makeflags' '!strip') source=(http://prdownloads.sourceforge.net/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2 lirc_wpc8769l.patch @@ -60,7 +60,7 @@ build() { package_lirc() { pkgdesc="Linux Infrared Remote Control kernel modules for stock arch kernel" - depends=('lirc-utils' 'linux>=3.0' 'linux<3.1') + depends=('lirc-utils' 'linux-libre>=3.0' 'linux-libre<3.1') replaces=('lirc+pctv') install=lirc.install diff --git a/extra/live-media/PKGBUILD b/extra/live-media/PKGBUILD index 47754d09a..0a4b9a343 100644 --- a/extra/live-media/PKGBUILD +++ b/extra/live-media/PKGBUILD @@ -6,7 +6,7 @@ pkgname=live-media pkgver=2011.10.27 pkgrel=1 pkgdesc="A set of C++ libraries for multimedia streaming" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://live555.com/liveMedia" depends=('gcc-libs') @@ -17,8 +17,8 @@ build() { cd ${srcdir}/live sed \ - -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC -DSOCKLEN_T/g' \ - -e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \ + -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. '"${CFLAGS}"' -fPIC -DSOCKLEN_T/g' \ + -e 's/\(LIBRARY_LINK =\).*/\1 $(LD) '"${LDFLAGS}"' -o/g' \ -e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \ -i config.linux ./genMakefiles linux diff --git a/extra/llvm/PKGBUILD b/extra/llvm/PKGBUILD index 0909289d1..90356df24 100644 --- a/extra/llvm/PKGBUILD +++ b/extra/llvm/PKGBUILD @@ -13,7 +13,7 @@ pkgname=('llvm' 'llvm-ocaml' 'clang' 'clang-analyzer') pkgver=2.9 _gcc_ver=4.6.2 pkgrel=7 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://llvm.org/" license=('custom:University of Illinois/NCSA Open Source License') makedepends=('gcc-libs' 'libffi' 'python2' 'ocaml' "gcc=$_gcc_ver") diff --git a/extra/lm_sensors/PKGBUILD b/extra/lm_sensors/PKGBUILD index 9d6c1ff6e..d2ea6d729 100644 --- a/extra/lm_sensors/PKGBUILD +++ b/extra/lm_sensors/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lm_sensors pkgver=3.3.1 pkgrel=2 pkgdesc="Collection of user space tools for general SMBus access and hardware monitoring" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lm-sensors.org/" license=('GPL' 'LGPL') depends=('perl' 'sysfsutils') diff --git a/extra/loudmouth/PKGBUILD b/extra/loudmouth/PKGBUILD index d1686df56..17cbb2b01 100644 --- a/extra/loudmouth/PKGBUILD +++ b/extra/loudmouth/PKGBUILD @@ -7,7 +7,7 @@ pkgname=loudmouth pkgver=1.4.3 pkgrel=3 pkgdesc="A lightweight Jabber client library written in C/Glib" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://groups.google.com/group/loudmouth-dev" depends=('glib2' 'gnutls' 'libidn') diff --git a/extra/lpsolve/PKGBUILD b/extra/lpsolve/PKGBUILD index d956a516f..3d70f3bf0 100644 --- a/extra/lpsolve/PKGBUILD +++ b/extra/lpsolve/PKGBUILD @@ -7,7 +7,7 @@ pkgver=5.5.2.0 _mainver=5.5 pkgrel=1 pkgdesc="a Mixed Integer Linear Programming (MILP) solver" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lpsolve.sourceforge.net/" license=('GPL') depends=('glibc') diff --git a/extra/lsdvd/PKGBUILD b/extra/lsdvd/PKGBUILD index fbda54607..96dcb9eb1 100644 --- a/extra/lsdvd/PKGBUILD +++ b/extra/lsdvd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lsdvd pkgver=0.16 pkgrel=5 pkgdesc="A C application for reading the contents of a DVD and printing the contents to your terminal" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/lsdvd/" depends=('libdvdread') license=('GPL2') diff --git a/extra/lsof/PKGBUILD b/extra/lsof/PKGBUILD index a8687fff1..347125050 100644 --- a/extra/lsof/PKGBUILD +++ b/extra/lsof/PKGBUILD @@ -8,7 +8,7 @@ pkgname=lsof pkgver=4.85 pkgrel=1 pkgdesc="Lists open files for running Unix processes" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://people.freebsd.org/~abe/" license=('custom') depends=('glibc') diff --git a/extra/ltrace/PKGBUILD b/extra/ltrace/PKGBUILD index 9861acb93..98b2c33fe 100644 --- a/extra/ltrace/PKGBUILD +++ b/extra/ltrace/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ltrace pkgver=0.5.3 pkgrel=2 pkgdesc="A debugging program which runs a specified command until it exits" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://packages.debian.org/sid/ltrace" license=('GPL') depends=('glibc' 'elfutils') diff --git a/extra/lua/PKGBUILD b/extra/lua/PKGBUILD index 871d8f655..7bad05215 100644 --- a/extra/lua/PKGBUILD +++ b/extra/lua/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lua pkgver=5.1.4 pkgrel=8 pkgdesc="A powerful light-weight programming language designed for extending applications." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lua.org/" depends=('readline') license=('MIT') diff --git a/extra/lv2core/PKGBUILD b/extra/lv2core/PKGBUILD index 21cef7c66..b26c314b1 100644 --- a/extra/lv2core/PKGBUILD +++ b/extra/lv2core/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="LV2: 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') provides=('lv2') changelog=$pkgname.changelog diff --git a/extra/lxsplit/PKGBUILD b/extra/lxsplit/PKGBUILD index 86d8a1a11..85de80fd7 100644 --- a/extra/lxsplit/PKGBUILD +++ b/extra/lxsplit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=lxsplit pkgver=0.2.4 pkgrel=2 pkgdesc="Command-line file splitter/joiner compatible with any HJSplit version" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lxsplit.sourceforge.net/" license=('GPL') depends=('glibc') diff --git a/extra/lynx/PKGBUILD b/extra/lynx/PKGBUILD index 344bdfa54..0b24738ae 100644 --- a/extra/lynx/PKGBUILD +++ b/extra/lynx/PKGBUILD @@ -9,7 +9,7 @@ _pkgver=2-8-7 pkgrel=4 pkgdesc="A text browser for the World Wide Web" url="http://lynx.isc.org/" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('ncurses' 'openssl') backup=('etc/lynx.cfg') diff --git a/extra/lyx/PKGBUILD b/extra/lyx/PKGBUILD index 156688814..e3c91ccb8 100644 --- a/extra/lyx/PKGBUILD +++ b/extra/lyx/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lyx pkgver=2.0.1 pkgrel=2 pkgdesc="An advanced open-source document processor." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lyx.org" depends=('qt' 'texlive-core' 'python2' 'perl' 'imagemagick' 'enchant' 'boost-libs' 'libmythes') makedepends=('boost') diff --git a/extra/lzo/PKGBUILD b/extra/lzo/PKGBUILD index f93973dba..ec49ec493 100644 --- a/extra/lzo/PKGBUILD +++ b/extra/lzo/PKGBUILD @@ -8,7 +8,7 @@ pkgname=lzo pkgver=1.08 pkgrel=6 pkgdesc='A portable lossless data compression library written in ANSI C' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url='http://www.oberhumer.com/opensource/lzo' depends=('glibc') diff --git a/extra/lzop/PKGBUILD b/extra/lzop/PKGBUILD index 240422d27..6ee369002 100644 --- a/extra/lzop/PKGBUILD +++ b/extra/lzop/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lzop pkgver=1.03 pkgrel=1 pkgdesc="File compressor using lzo lib" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.lzop.org/" depends=('lzo2') diff --git a/extra/m17n-lib/PKGBUILD b/extra/m17n-lib/PKGBUILD index 79f265f48..0afbbe4e3 100644 --- a/extra/m17n-lib/PKGBUILD +++ b/extra/m17n-lib/PKGBUILD @@ -6,7 +6,7 @@ pkgname=m17n-lib pkgver=1.6.3 pkgrel=1 pkgdesc='Multilingual text processing library (runtimes)' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.m17n.org/m17n-lib/' license=('GPL') depends=('libxft' 'm17n-db' 'fribidi' 'libxml2' 'gd' 'libotf') diff --git a/extra/mahjong/PKGBUILD b/extra/mahjong/PKGBUILD index 1b719f79d..82050d483 100644 --- a/extra/mahjong/PKGBUILD +++ b/extra/mahjong/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mahjong pkgver=1.11 pkgrel=1 pkgdesc="The classical game of Mah Jong (not the solitare version) with network support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.stevens-bradfield.com/MahJong/" license=('GPL' 'custom') depends=('gtk2') diff --git a/extra/mail-notification/PKGBUILD b/extra/mail-notification/PKGBUILD index edb5a8d03..2ee30ffae 100644 --- a/extra/mail-notification/PKGBUILD +++ b/extra/mail-notification/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mail-notification pkgver=5.4 pkgrel=9 pkgdesc="Tray icon application that informs you if you have new mail" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nongnu.org/mailnotify/" license=('GPL3' 'FDL') depends=('gmime' 'libnotify>=0.7.1' 'gnome-keyring' 'hicolor-icon-theme' 'notification-daemon' 'libgnome') diff --git a/extra/mailman/PKGBUILD b/extra/mailman/PKGBUILD index 7306c6363..24a513b52 100644 --- a/extra/mailman/PKGBUILD +++ b/extra/mailman/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mailman pkgver=2.1.14 pkgrel=1 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/extra/manedit/PKGBUILD b/extra/manedit/PKGBUILD index 8c6715319..194b4d474 100644 --- a/extra/manedit/PKGBUILD +++ b/extra/manedit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=manedit pkgver=1.2.1 pkgrel=3 pkgdesc="An editor specifically tailored for UNIX manual pages" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.battlefieldlinux.com/wolfpack/ManEdit/" depends=('gcc-libs' 'bzip2' 'zlib' 'gtk') diff --git a/extra/mash/PKGBUILD b/extra/mash/PKGBUILD index 57dc50d44..b14b6b5af 100644 --- a/extra/mash/PKGBUILD +++ b/extra/mash/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mash pkgver=0.1.0 pkgrel=2 pkgdesc="A small library for using 3D models within a Clutter scene" -arch=('i686' 'x86_64') +arch=(mips64el) url="http://clutter-project.org/" options=('!libtool') license=('LGPL') diff --git a/extra/maxima/PKGBUILD b/extra/maxima/PKGBUILD index 6277b3d20..e2001bd5a 100644 --- a/extra/maxima/PKGBUILD +++ b/extra/maxima/PKGBUILD @@ -6,10 +6,14 @@ pkgname=maxima pkgver=5.24.0 pkgrel=7 pkgdesc="Maxima - a sophisticated computer algebra system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://maxima.sourceforge.net" -depends=('sbcl=1.0.52' 'texinfo' 'sh') +if [ "${CARCH}" == "mips64el" ] ; then + depends=('clisp' 'texinfo' 'sh') +else + depends=('sbcl=1.0.52' 'texinfo' 'sh') +fi makedepends=('python2') optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via /usr/bin/rmaxima' 'tk: graphical xmaxima interface') # needs rebuild when bash changes version @@ -25,9 +29,14 @@ build() { # set correct python executable to create docs sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh - + + if [ "${CARCH}" == "mips64el" ] ; then + lisp="--enable-clisp --with-default-lisp=clisp" + else + lisp="--enable-sbcl --with-default-lisp=sbcl" + fi ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \ - --libexecdir=/usr/lib --enable-sbcl --with-default-lisp=sbcl + --libexecdir=/usr/lib $lisp make } diff --git a/extra/mcpp/PKGBUILD b/extra/mcpp/PKGBUILD index 04a0e6223..1e05b23cb 100644 --- a/extra/mcpp/PKGBUILD +++ b/extra/mcpp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mcpp pkgver=2.7.2 pkgrel=3 pkgdesc="Matsui's CPP implementation precisely conformed to standards" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://mcpp.sourceforge.net" depends=('glibc') diff --git a/extra/mcrypt/PKGBUILD b/extra/mcrypt/PKGBUILD index a3040ad3a..72b2bcc3d 100644 --- a/extra/mcrypt/PKGBUILD +++ b/extra/mcrypt/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.6.8 pkgrel=2 pkgdesc="A program for encrypting files or streams" url="http://mcrypt.sourceforge.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('mhash' 'libmcrypt' 'zlib') source=("http://downloads.sourceforge.net/$pkgname/${pkgname}-${pkgver}.tar.gz") diff --git a/extra/mediastreamer/PKGBUILD b/extra/mediastreamer/PKGBUILD index 1a97bc8aa..13f0cf3ff 100644 --- a/extra/mediastreamer/PKGBUILD +++ b/extra/mediastreamer/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mediastreamer pkgver=2.7.3 pkgrel=3 pkgdesc="A library written in C that allows you to create and run audio and video streams" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.linphone.org" license=('GPL') depends=('ortp' 'speex' 'v4l-utils' 'ffmpeg') diff --git a/extra/memcached/PKGBUILD b/extra/memcached/PKGBUILD index 3087b7bde..800c619b9 100644 --- a/extra/memcached/PKGBUILD +++ b/extra/memcached/PKGBUILD @@ -6,7 +6,7 @@ pkgname=memcached pkgver=1.4.7 pkgrel=1 pkgdesc="A distributed memory object caching system" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://memcached.org/" license=('GPL') depends=('libevent') diff --git a/extra/mercurial/PKGBUILD b/extra/mercurial/PKGBUILD index 826b6ff9e..4e6e9240d 100644 --- a/extra/mercurial/PKGBUILD +++ b/extra/mercurial/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mercurial pkgver=2.0 pkgrel=1 pkgdesc="A scalable distributed SCM tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mercurial.selenic.com/" license=('GPL') depends=('python2') diff --git a/extra/mesa/PKGBUILD b/extra/mesa/PKGBUILD index a13c53003..f6c2ad38d 100644 --- a/extra/mesa/PKGBUILD +++ b/extra/mesa/PKGBUILD @@ -4,6 +4,7 @@ pkgbase=mesa pkgname=('mesa' 'libgl' 'libglapi' 'libgles' 'libegl' 'ati-dri' 'intel-dri' 'unichrome-dri' 'mach64-dri' 'mga-dri' 'r128-dri' 'savage-dri' 'sis-dri' 'tdfx-dri' 'nouveau-dri') # 'llvm-dri') +[[ "$CARCH" = "mips64el" ]] && pkgname=('mesa' 'libglapi' 'libgl' 'libgles') # prepare 7.12/8.0 #pkgname=('mesa' 'libgl' 'libglapi' 'libgles' 'libegl' 'ati-dri' 'intel-dri' 'nouveau-dri') # 'llvm-dri') @@ -18,9 +19,10 @@ if [ "${_git}" = "true" ]; then pkgver=7.11 fi pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=('glproto>=1.4.14' 'libdrm>=2.4.26' 'libxxf86vm>=1.1.1' 'libxdamage>=1.1.3' 'expat>=2.0.1' 'libx11>=1.4.3' 'libxt>=1.1.1' - 'gcc-libs>=4.6.1' 'dri2proto>=2.6' 'python2' 'libxml2' 'imake' 'llvm' 'udev') + 'gcc-libs>=4.6.1' 'python2' 'libxml2' 'imake' 'udev') +[ "$CARCH" = "mips64el" ] || makedepends+=('dri2proto=2.6' 'llvm') url="http://mesa3d.sourceforge.net" license=('custom') source=(LICENSE) @@ -33,12 +35,28 @@ if [ "${_git}" = "true" ]; then source=(${source[@]} "MesaLib-git${_gitdate}.zip"::"http://cgit.freedesktop.org/mesa/mesa/snapshot/mesa-4464ee1a9aa3745109cee23531e3fb2323234d07.tar.bz2" ) fi -md5sums=('5c65a0fe315dd347e09b1f2826a1df5a' - '774eb6f30b31fa08c04e16e00ca070e1') +[ "$CARCH" = "mips64el" ] && \ + source+=(mesa-7.5-mips-wmb.patch mesa-loongson.patch) build() { cd ${srcdir}/?esa-* + +if [ "$CARCH" = "mips64el" ]; then + # WMB for MIPS patch from Fedora and Gentoo + patch -Np1 -i $srcdir/mesa-7.5-mips-wmb.patch + patch -Np1 -i $srcdir/mesa-loongson.patch + + ./configure --prefix=/usr \ + --enable-glx-tls \ + --with-driver=xlib \ + --enable-xcb \ + --disable-glut \ + --enable-gles1 \ + --enable-gles2 \ + --enable-egl \ + --disable-gallium-egl +else if [ "${_git}" = "true" ]; then autoreconf -vfi ./autogen.sh --prefix=/usr \ @@ -75,6 +93,7 @@ if [ "${_git}" = "true" ]; then --enable-texture-float \ --enable-shared-dricore fi +fi make } @@ -82,12 +101,15 @@ fi package_libgl() { depends=('libdrm>=2.4.26' 'libxxf86vm>=1.1.1' 'libxdamage>=1.1.3' 'expat>=2.0.1' 'libglapi' 'gcc-libs') pkgdesc="Mesa 3-D graphics library and DRI software rasterizer" + [[ "$CARCH" = "mips64el" ]] && pkgdesc="Mesa 3-D graphics library (Xlib)" cd ${srcdir}/?esa-* install -m755 -d "${pkgdir}/usr/lib" install -m755 -d "${pkgdir}/usr/lib/xorg/modules/extensions" bin/minstall lib/libGL.so* "${pkgdir}/usr/lib/" + + if [ "$CARCH" != "mips64el" ]; then bin/minstall lib/libdricore.so* "${pkgdir}/usr/lib/" bin/minstall lib/libglsl.so* "${pkgdir}/usr/lib/" @@ -97,6 +119,8 @@ package_libgl() { ln -s swrastg_dri.so "${pkgdir}/usr/lib/xorg/modules/dri/swrast_dri.so" ln -s libglx.xorg "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so" + fi + install -m755 -d "${pkgdir}/usr/share/licenses/libgl" install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/libgl/" } @@ -162,7 +186,8 @@ package_libegl() { } package_mesa() { - depends=('libgl' 'libx11>=1.4.3' 'libxt>=1.1.1' 'gcc-libs>=4.6' 'dri2proto>=2.6' 'glproto>=1.4.14') #dri2proto + glproto needed for gl.pc + depends=('libgl' 'libx11>=1.4.3' 'libxt>=1.1.1' 'gcc-libs>=4.6') +[ "$CARCH" = "mips64el" ] || depends+=('dri2proto>=2.6' 'glproto>=1.4.14') #dri2proto + glproto needed for gl.pc optdepends=('opengl-man-pages: for the OpenGL API man pages') pkgdesc="Mesa 3-D graphics libraries and include files" diff --git a/extra/mesa/mesa-7.5-mips-wmb.patch b/extra/mesa/mesa-7.5-mips-wmb.patch new file mode 100644 index 000000000..06c3d1835 --- /dev/null +++ b/extra/mesa/mesa-7.5-mips-wmb.patch @@ -0,0 +1,11 @@ +--- mesa-20090921/src/mesa/drivers/dri/sis/sis_context.h.orig 2010-03-31 23:31:37.252554011 +0800 ++++ mesa-20090921/src/mesa/drivers/dri/sis/sis_context.h 2010-03-31 23:32:06.616553941 +0800 +@@ -404,6 +404,8 @@ + #define MMIO_WMB() __asm __volatile("" : : : "memory") + #elif defined(__ia64__) + #define MMIO_WMB() __asm __volatile("mf" : : : "memory") ++#elif defined(__mips__) ++#define MMIO_WMB() __asm __volatile("" : : : "memory") + #else + #error platform needs WMB + #endif diff --git a/extra/mesa/mesa-loongson.patch b/extra/mesa/mesa-loongson.patch new file mode 100644 index 000000000..fa82abe49 --- /dev/null +++ b/extra/mesa/mesa-loongson.patch @@ -0,0 +1,11 @@ +--- Mesa-6.5.2/include/GL/internal/sarea.h.orig 2007-03-01 05:27:22.000000000 +0800 ++++ Mesa-6.5.2/include/GL/internal/sarea.h 2007-03-01 05:27:49.000000000 +0800 +@@ -44,6 +44,8 @@ + /* SAREA area needs to be at least a page */ + #if defined(__alpha__) + #define SAREA_MAX 0x2000 ++#elif defined(__mips__) ++#define SAREA_MAX 0x4000 + #elif defined(__ia64__) + #define SAREA_MAX 0x10000 /* 64kB */ + #else diff --git a/extra/metacity/PKGBUILD b/extra/metacity/PKGBUILD index 3d028d55b..12e0c3b39 100644 --- a/extra/metacity/PKGBUILD +++ b/extra/metacity/PKGBUILD @@ -5,7 +5,7 @@ pkgname=metacity pkgver=2.34.1 pkgrel=1 pkgdesc="A window manager for GNOME" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('startup-notification' 'gconf' 'zenity' 'libcanberra' 'libgtop' 'libwnck' 'libsm') makedepends=('intltool' 'pkgconfig' 'gnome-doc-utils') diff --git a/extra/metalog/PKGBUILD b/extra/metalog/PKGBUILD index 1f9339602..ec87ecba0 100644 --- a/extra/metalog/PKGBUILD +++ b/extra/metalog/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=2 pkgdesc="Metalog is a modern replacement for syslogd and klogd" url="http://metalog.sourceforge.net" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('pcre') provides=('logger') backup=('etc/metalog.conf' 'etc/conf.d/metalog') diff --git a/extra/mhash/PKGBUILD b/extra/mhash/PKGBUILD index 3c2f7b732..1fac0fedc 100644 --- a/extra/mhash/PKGBUILD +++ b/extra/mhash/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mhash pkgver=0.9.9.9 pkgrel=2 pkgdesc="A thread-safe hash library which provides a uniform interface to hash algorithms (MD5, SHA1, HAVAL, etc)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mhash.sourceforge.net/" license=('LGPL') depends=('glibc') diff --git a/extra/midori/PKGBUILD b/extra/midori/PKGBUILD index 85094853c..75be8d734 100644 --- a/extra/midori/PKGBUILD +++ b/extra/midori/PKGBUILD @@ -7,7 +7,7 @@ pkgname=midori pkgver=0.4.1 pkgrel=1 pkgdesc="A lightweight web browser based on Gtk WebKit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.twotoasts.de/index.php?/pages/midori_summary.html" license=('LGPL2.1') install=midori.install @@ -24,7 +24,7 @@ build() { export PYTHON=/usr/bin/python2 sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" wscript waf - ./configure --prefix=/usr --jobs=${MAKEFLAGS/-j/} \ + ./configure --prefix=/usr \ --enable-addons \ --disable-hildon \ --enable-unique \ diff --git a/extra/minicom/PKGBUILD b/extra/minicom/PKGBUILD index b1db3651b..f6fffb742 100644 --- a/extra/minicom/PKGBUILD +++ b/extra/minicom/PKGBUILD @@ -7,7 +7,7 @@ pkgname=minicom pkgver=2.5 pkgrel=1 pkgdesc="A serial communication program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('bash' 'ncurses') backup=('etc/minirc.dfl') diff --git a/extra/mirage/PKGBUILD b/extra/mirage/PKGBUILD index c63d6eddc..633b00d3c 100644 --- a/extra/mirage/PKGBUILD +++ b/extra/mirage/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="A simple GTK+ Image Viewer" url="http://mirageiv.berlios.de" license=("GPL") depends=('pygtk' 'desktop-file-utils') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=(http://download.berlios.de/mirageiv/${pkgname}-${pkgver}.tar.gz) install=$pkgname.install md5sums=('dace5cf01e5e53317ba8be0f8a74f4bf') diff --git a/extra/miro/PKGBUILD b/extra/miro/PKGBUILD index 8d518a86f..2b252e890 100644 --- a/extra/miro/PKGBUILD +++ b/extra/miro/PKGBUILD @@ -5,7 +5,7 @@ pkgname=miro pkgver=4.0.3 pkgrel=1 pkgdesc="The free and open source internet TV platform" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.getmiro.com" license=('GPL2') depends=('dbus-python' 'pyrex' 'pygtk' 'gstreamer0.10' 'python2-gconf' diff --git a/extra/mjpegtools/PKGBUILD b/extra/mjpegtools/PKGBUILD index 9daf1a2fc..2a2b212ef 100644 --- a/extra/mjpegtools/PKGBUILD +++ b/extra/mjpegtools/PKGBUILD @@ -3,10 +3,10 @@ # Mantainer: Roberto Carvajal <roberto@archlinux.org> pkgname=mjpegtools -pkgver=1.9.0 -pkgrel=4 +pkgver=2.0.0 +pkgrel=1 pkgdesc="Set of tools that can do recording of videos and playback, simple cut-and-paste editing and the MPEG compression of audio and video" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://mjpeg.sourceforge.net/" depends=('libjpeg>=8' 'libpng>=1.4.0' 'sdl' 'gcc-libs' 'libdv') @@ -14,21 +14,12 @@ makedepends=('gtk2>=2.18.6') optdepends=('gtk2: glav GUI') options=('!makeflags' '!libtool') install=mjpegtools.install -source=(http://downloads.sourceforge.net/sourceforge/mjpeg/${pkgname}-${pkgver}.tar.gz - mjpegtools-1.9.0-glibc-2.10.patch - png2yuv-fix-memleak.patch - mjpegtools-1.9.0-jpeg-7.patch) -md5sums=('309a6fcf0900a010d6a9c1e91afc2f5c' 'b8ae66237d83be533db8eea166fd3357'\ - '39e1def8fb0f7c58a217b22dc251a86a' 'ccc7562a3933877d3362da7cf4695ea0') -sha1sums=('1701233354c7ea86b5b7808c4dd5d03a71118e48' '3029f0e835e693b144298ed9f8143c9566be26f3'\ - '8af5c3747756353bef56d03bafbdd086ff15c02c' '2bdb1b3b8591cede11d4a133a758e8ead35db4dd') +source=(http://downloads.sourceforge.net/sourceforge/mjpeg/${pkgname}-${pkgver}.tar.gz) +md5sums=('903e1e3b967eebcc5fe5626d7517dc46') build() { cd "${srcdir}/${pkgname}-${pkgver}" sed -i -e '/ARCHFLAGS=/s:=.*:=:' configure - patch -Np1 -i "$srcdir/mjpegtools-1.9.0-glibc-2.10.patch" - patch -Np1 -i "${srcdir}/png2yuv-fix-memleak.patch" - patch -Np0 -i "${srcdir}/mjpegtools-1.9.0-jpeg-7.patch" ./configure --prefix=/usr --enable-largefile make } diff --git a/extra/mkvtoolnix/PKGBUILD b/extra/mkvtoolnix/PKGBUILD index d43b4a2fd..1d1ff869f 100644 --- a/extra/mkvtoolnix/PKGBUILD +++ b/extra/mkvtoolnix/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=mkvtoolnix pkgname=('mkvtoolnix-cli' 'mkvtoolnix-gtk') pkgver=5.0.1 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.bunkus.org/videotools/mkvtoolnix/index.html" makedepends=('libmatroska' 'flac' 'libvorbis' 'file' 'wxgtk'\ diff --git a/extra/moc/PKGBUILD b/extra/moc/PKGBUILD index d782e1b0f..dbb54a577 100644 --- a/extra/moc/PKGBUILD +++ b/extra/moc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=moc pkgver=20110528 pkgrel=3 pkgdesc="An ncurses console audio player with support for the mp3, ogg, and wave formats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://moc.daper.net/" license=('GPL') depends=('libmad' 'libid3tag' 'jack' 'curl' 'libsamplerate' 'libtool' 'file') diff --git a/extra/mod_dnssd/PKGBUILD b/extra/mod_dnssd/PKGBUILD index 52a6e65e5..02c0b82a6 100644 --- a/extra/mod_dnssd/PKGBUILD +++ b/extra/mod_dnssd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mod_dnssd pkgver=0.6 pkgrel=4 pkgdesc="Zeroconf module for Apache2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://0pointer.de/lennart/projects/mod_dnssd" license=('APACHE') depends=('avahi' 'apache') diff --git a/extra/mod_fcgid/PKGBUILD b/extra/mod_fcgid/PKGBUILD index 30eca4e61..b50af4b07 100644 --- a/extra/mod_fcgid/PKGBUILD +++ b/extra/mod_fcgid/PKGBUILD @@ -5,7 +5,7 @@ pkgver=2.3.6 pkgrel=1 pkgdesc="A FastCGI module for Apache HTTP Server." license=('APACHE') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://httpd.apache.org/mod_fcgid/" depends=('apache') source=(http://apache.cs.utah.edu/httpd/mod_fcgid/mod_fcgid-$pkgver.tar.gz) diff --git a/extra/mod_mono/PKGBUILD b/extra/mod_mono/PKGBUILD index 21e944d19..d839902fe 100644 --- a/extra/mod_mono/PKGBUILD +++ b/extra/mod_mono/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mod_mono pkgver=2.10 pkgrel=1 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/mod_perl/PKGBUILD b/extra/mod_perl/PKGBUILD index 0d257544b..703071b1c 100644 --- a/extra/mod_perl/PKGBUILD +++ b/extra/mod_perl/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc="Apache module that embeds the Perl interpreter within the server" url="http://search.cpan.org/dist/${pkgname}/" depends=('perl' 'apache' 'db' 'apr-util' 'perl-linux-pid') license=('APACHE') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=(!emptydirs) source=(http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/${pkgname}-${pkgver}.tar.gz nolfs.patch) diff --git a/extra/mod_wsgi/PKGBUILD b/extra/mod_wsgi/PKGBUILD index 293fcc9d5..3579695e7 100644 --- a/extra/mod_wsgi/PKGBUILD +++ b/extra/mod_wsgi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mod_wsgi pkgver=3.3 pkgrel=2 pkgdesc="Python WSGI adapter module for Apache" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.modwsgi.org/" license=('APACHE') depends=('apache' 'python2') diff --git a/extra/modemmanager/PKGBUILD b/extra/modemmanager/PKGBUILD index 8ac3539e5..bf6bc7c58 100644 --- a/extra/modemmanager/PKGBUILD +++ b/extra/modemmanager/PKGBUILD @@ -5,7 +5,7 @@ _realname=ModemManager pkgver=0.5 pkgrel=1 pkgdesc="Mobile broadband modem management service" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cgit.freedesktop.org/ModemManager/ModemManager/" license=('GPL2') depends=('dbus-glib' 'udev' 'ppp') diff --git a/extra/monica/PKGBUILD b/extra/monica/PKGBUILD index b3783fd57..0615205f3 100644 --- a/extra/monica/PKGBUILD +++ b/extra/monica/PKGBUILD @@ -6,7 +6,7 @@ pkgname=monica pkgver=3.7 pkgrel=2 pkgdesc="A monitor calibration tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.pcbypaul.com/software/monica.html" license=('BSD') depends=('fltk' 'xorg-xgamma') diff --git a/extra/mono-addins/PKGBUILD b/extra/mono-addins/PKGBUILD index 75de85ba0..01044c51a 100644 --- a/extra/mono-addins/PKGBUILD +++ b/extra/mono-addins/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mono-addins pkgver=0.6.2 pkgrel=1 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 0ffd93c05..f7d780783 100644 --- a/extra/mono-basic/PKGBUILD +++ b/extra/mono-basic/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mono-basic pkgver=2.10 pkgrel=1 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 b9ba3b347..6c5e31f4b 100644 --- a/extra/mono-debugger/PKGBUILD +++ b/extra/mono-debugger/PKGBUILD @@ -4,7 +4,7 @@ pkgname=mono-debugger pkgver=2.10 pkgrel=1 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 fef384dfd..d3d6ec685 100644 --- a/extra/mono-tools/PKGBUILD +++ b/extra/mono-tools/PKGBUILD @@ -13,7 +13,7 @@ pkgname=mono-tools pkgver=2.10 pkgrel=1 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=('mono>=2.10.1' 'desktop-file-utils' 'gnome-desktop-sharp>=2.26.0' 'gluezilla') diff --git a/extra/mono-zeroconf/PKGBUILD b/extra/mono-zeroconf/PKGBUILD index 6b0728b3f..3bd43a6ee 100644 --- a/extra/mono-zeroconf/PKGBUILD +++ b/extra/mono-zeroconf/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=2 pkgdesc="A cross platform Zero Configuration Networking library for Mono and .NET." url="http://www.mono-project.com/Mono.Zeroconf" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('mono>=2.6' 'avahi') options=('!makeflags') source=(http://download.banshee-project.org/mono-zeroconf/${pkgname}-${pkgver}.tar.bz2) diff --git a/extra/mono/PKGBUILD b/extra/mono/PKGBUILD index 7bcbef6c2..8bddd8565 100644 --- a/extra/mono/PKGBUILD +++ b/extra/mono/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mono pkgver=2.10.6 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 c52a94f0a..fc31188ae 100644 --- a/extra/monodevelop-debugger-gdb/PKGBUILD +++ b/extra/monodevelop-debugger-gdb/PKGBUILD @@ -4,7 +4,7 @@ pkgname=monodevelop-debugger-gdb pkgver=2.8.2 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.2' 'gdb') diff --git a/extra/monodevelop-debugger-mdb/PKGBUILD b/extra/monodevelop-debugger-mdb/PKGBUILD index 43a7140c9..23e4c6fa2 100644 --- a/extra/monodevelop-debugger-mdb/PKGBUILD +++ b/extra/monodevelop-debugger-mdb/PKGBUILD @@ -5,7 +5,7 @@ pkgname=monodevelop-debugger-mdb pkgver=2.4 pkgrel=1 pkgdesc="Mono Debugger support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://monodevelop.com" license=('GPL') depends=('monodevelop' 'mono-debugger>=2.6.3') diff --git a/extra/monodevelop/PKGBUILD b/extra/monodevelop/PKGBUILD index 742c7fcd5..7de84d024 100644 --- a/extra/monodevelop/PKGBUILD +++ b/extra/monodevelop/PKGBUILD @@ -6,7 +6,7 @@ pkgname=monodevelop pkgver=2.8.2 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.org" license=('GPL') depends=('mono>=2.10.5' 'mono-addins>=0.6.2' 'gnome-sharp' 'gecko-sharp-2.0>=0.10') diff --git a/extra/most/PKGBUILD b/extra/most/PKGBUILD index 0cea27712..52a4e8806 100644 --- a/extra/most/PKGBUILD +++ b/extra/most/PKGBUILD @@ -6,7 +6,7 @@ pkgname=most pkgver=5.0.0a pkgrel=3 pkgdesc="A terminal pager similar to 'more' and 'less'" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('slang') license=('GPL') url="ftp://space.mit.edu/pub/davis/most/" diff --git a/extra/mousetweaks/PKGBUILD b/extra/mousetweaks/PKGBUILD index 707fb70fa..0a65e8f60 100644 --- a/extra/mousetweaks/PKGBUILD +++ b/extra/mousetweaks/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mousetweaks pkgver=3.2.1 pkgrel=1 pkgdesc="Mouse accessibility enhancements for the GNOME desktop" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL3' 'FDL') depends=('libxtst' 'gtk3' 'gsettings-desktop-schemas') makedepends=('gnome-doc-utils' 'intltool') diff --git a/extra/mp3splt/PKGBUILD b/extra/mp3splt/PKGBUILD index 3d03d5b62..1c86b70cb 100644 --- a/extra/mp3splt/PKGBUILD +++ b/extra/mp3splt/PKGBUILD @@ -4,7 +4,7 @@ pkgname=mp3splt pkgver=2.4 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="Comandline tool for splitting mp3 and ogg files without decoding" license=('GPL') url="http://mp3splt.sourceforge.net" diff --git a/extra/mp3wrap/PKGBUILD b/extra/mp3wrap/PKGBUILD index bb42cbb1c..64811aeda 100644 --- a/extra/mp3wrap/PKGBUILD +++ b/extra/mp3wrap/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mp3wrap pkgver=0.5 pkgrel=3 pkgdesc="Tool for wrapping mp3 files. A free independent alternative to AlbumWrap" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mp3wrap.sourceforge.net" license=('LGPL') depends=('glibc') diff --git a/extra/mpc/PKGBUILD b/extra/mpc/PKGBUILD index 65575e75a..788ddcc88 100644 --- a/extra/mpc/PKGBUILD +++ b/extra/mpc/PKGBUILD @@ -8,7 +8,7 @@ pkgname=mpc pkgver=0.21 pkgrel=1 pkgdesc="Minimalist command line interface to MPD" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mpd.wikia.com/wiki/Client:Mpc" license=('GPL2') depends=('libmpdclient') diff --git a/extra/mpck/PKGBUILD b/extra/mpck/PKGBUILD index 65a6a2799..7348256f4 100644 --- a/extra/mpck/PKGBUILD +++ b/extra/mpck/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.19 pkgrel=1 license=('GPL') pkgdesc="Reads MP3 files and tries to determine if they are correct" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://checkmate.gissen.nl/" depends=('glibc') source=(http://checkmate.gissen.nl/checkmate-${pkgver}.tar.gz) diff --git a/extra/mpd/PKGBUILD b/extra/mpd/PKGBUILD index a2aced8ca..68a57c53e 100644 --- a/extra/mpd/PKGBUILD +++ b/extra/mpd/PKGBUILD @@ -8,7 +8,7 @@ pkgname=mpd pkgver=0.16.5 pkgrel=1 pkgdesc="Music daemon that plays MP3, FLAC, and Ogg Vorbis files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://mpd.wikia.com/wiki/Server" depends=('libao' 'ffmpeg' 'libmodplug' 'audiofile' 'libshout' 'libmad' 'curl' 'faad2' diff --git a/extra/mpg123/PKGBUILD b/extra/mpg123/PKGBUILD index d44567b2f..16e770b4d 100644 --- a/extra/mpg123/PKGBUILD +++ b/extra/mpg123/PKGBUILD @@ -5,7 +5,7 @@ pkgname=mpg123 pkgver=1.13.4 pkgrel=1 pkgdesc="A console based real time MPEG Audio Player for Layer 1, 2 and 3" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/mpg123" license=('GPL2' 'LGPL2.1') depends=('libtool' 'alsa-lib') diff --git a/extra/mrtg/PKGBUILD b/extra/mrtg/PKGBUILD index 8df4acbdc..17bd8a4f0 100644 --- a/extra/mrtg/PKGBUILD +++ b/extra/mrtg/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mrtg pkgver=2.17.2 pkgrel=1 pkgdesc="Multi Router Traffic Grapher." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://oss.oetiker.ch/mrtg/" license=('GPL') depends=('gd' 'perl') diff --git a/extra/msmtp/PKGBUILD b/extra/msmtp/PKGBUILD index 3aad52a3b..d2fecdefd 100644 --- a/extra/msmtp/PKGBUILD +++ b/extra/msmtp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=msmtp pkgver=1.4.25 pkgrel=1 pkgdesc="A mini smtp client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') url="http://msmtp.sourceforge.net" depends=('gnutls' 'libidn') diff --git a/extra/mt-st/PKGBUILD b/extra/mt-st/PKGBUILD index a0963606f..e68bac3eb 100644 --- a/extra/mt-st/PKGBUILD +++ b/extra/mt-st/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mt-st pkgver=1.1 pkgrel=3 pkgdesc="Linux SCSI tape driver aware magnetic tape control" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="ftp://ftp.ibiblio.org/pub/linux/system/backup/" license=('GPL2') depends=('glibc') diff --git a/extra/mtools/PKGBUILD b/extra/mtools/PKGBUILD index 482676066..1e9924ca9 100644 --- a/extra/mtools/PKGBUILD +++ b/extra/mtools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mtools pkgver=4.0.17 pkgrel=1 pkgdesc="A collection of utilities to access MS-DOS disks" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/mtools/" license=('GPL') depends=('sh') diff --git a/extra/mtr/PKGBUILD b/extra/mtr/PKGBUILD index 8383b1efb..373444048 100644 --- a/extra/mtr/PKGBUILD +++ b/extra/mtr/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=mtr pkgname=(mtr mtr-gtk) pkgver=0.81 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') makedepends=('ncurses' 'gtk2') source=(ftp://ftp.bitwizard.nl/mtr/${pkgbase}-${pkgver}.tar.gz) diff --git a/extra/mtx/PKGBUILD b/extra/mtx/PKGBUILD index 4b014ac72..491cc9686 100644 --- a/extra/mtx/PKGBUILD +++ b/extra/mtx/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mtx pkgver=1.3.12 pkgrel=2 pkgdesc="Send robot commands to tape changer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mtx.opensource-sw.net/" license=('GPL2') depends=('glibc') diff --git a/extra/muine/PKGBUILD b/extra/muine/PKGBUILD index b6cca9fe7..fbccb76d7 100644 --- a/extra/muine/PKGBUILD +++ b/extra/muine/PKGBUILD @@ -6,7 +6,7 @@ pkgname=muine pkgver=0.8.11 pkgrel=1 pkgdesc="A music player written in C#" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://www.muine-player.org/" depends=('gconf>=2.28.0' 'gtk2>=2.18.3' 'gnome-icon-theme>=2.28.0' 'gstreamer0.10>=0.10.25' 'mono>=2.4.2.3' 'gnome-sharp>=2.24.1' 'taglib-sharp>=2.0.3.2' 'ndesk-dbus>=0.6.0' 'ndesk-dbus-glib>=0.4.1' 'gstreamer0.10-base-plugins>=0.10.25' 'gstreamer0.10-good-plugins>=0.10.16') diff --git a/extra/multitail/PKGBUILD b/extra/multitail/PKGBUILD index aa356da64..e73c1a9ce 100644 --- a/extra/multitail/PKGBUILD +++ b/extra/multitail/PKGBUILD @@ -6,7 +6,7 @@ pkgname=multitail pkgver=5.2.8 pkgrel=1 pkgdesc="Lets you view one or multiple files like the original tail program" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://www.vanheusden.com/multitail" depends=('ncurses') diff --git a/extra/muparser/PKGBUILD b/extra/muparser/PKGBUILD index 0746f6631..373a65616 100644 --- a/extra/muparser/PKGBUILD +++ b/extra/muparser/PKGBUILD @@ -6,7 +6,7 @@ pkgname=muparser pkgver=1.34 pkgrel=1 pkgdesc="a fast math parser library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://muparser.sourceforge.net/" depends=('glibc' 'gcc-libs') license=('custom') diff --git a/extra/musicbrainz/PKGBUILD b/extra/musicbrainz/PKGBUILD index 398cf0f1a..c9ea377ae 100644 --- a/extra/musicbrainz/PKGBUILD +++ b/extra/musicbrainz/PKGBUILD @@ -9,7 +9,7 @@ pkgname=musicbrainz pkgver=2.1.5 pkgrel=4 pkgdesc="The second generation incarnation of the CD Index" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.musicbrainz.org/index.html" license=('LGPL') depends=('expat>=2.0') diff --git a/extra/mutt/PKGBUILD b/extra/mutt/PKGBUILD index 9a940857c..22b28868c 100644 --- a/extra/mutt/PKGBUILD +++ b/extra/mutt/PKGBUILD @@ -9,7 +9,7 @@ pkgdesc='Small but very powerful text-based mail client' url='http://www.mutt.org/' license=('GPL') backup=('etc/Muttrc') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gpgme' 'ncurses' 'openssl' 'libsasl' 'gdbm' 'libidn' 'mime-types' 'krb5') source=("ftp://ftp.mutt.org/mutt/devel/${pkgname}-${pkgver}.tar.gz") sha1sums=('a8475f2618ce5d5d33bff85c0affdf21ab1d76b9') diff --git a/extra/mutter/PKGBUILD b/extra/mutter/PKGBUILD index 8a1abf566..2cb667f70 100644 --- a/extra/mutter/PKGBUILD +++ b/extra/mutter/PKGBUILD @@ -7,7 +7,7 @@ pkgname=mutter pkgver=3.2.1 pkgrel=1 pkgdesc="A window manager for GNOME" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('startup-notification' 'gconf' 'zenity' 'libcanberra' 'clutter' 'gobject-introspection') makedepends=('intltool' 'gnome-doc-utils') diff --git a/extra/mx/PKGBUILD b/extra/mx/PKGBUILD index 076e102d3..9b6a803a0 100644 --- a/extra/mx/PKGBUILD +++ b/extra/mx/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mx pkgver=1.4.1 pkgrel=1 pkgdesc="A widget toolkit using Clutter" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.clutter-project.org" license=('LGPL') depends=('clutter' 'libxrandr' 'dbus-glib' 'gtk2' 'startup-notification') diff --git a/extra/mysql-python/PKGBUILD b/extra/mysql-python/PKGBUILD index 7d80d1028..cce458d42 100644 --- a/extra/mysql-python/PKGBUILD +++ b/extra/mysql-python/PKGBUILD @@ -6,7 +6,7 @@ pkgname=mysql-python pkgver=1.2.3 pkgrel=2 pkgdesc="MySQL support for Python" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://mysql-python.sourceforge.net/" license=('GPL2') depends=('python2' 'libmysqlclient') diff --git a/extra/mysql/PKGBUILD b/extra/mysql/PKGBUILD index ccfa666e2..af721f337 100644 --- a/extra/mysql/PKGBUILD +++ b/extra/mysql/PKGBUILD @@ -7,7 +7,7 @@ pkgbase=mysql pkgname=('libmysqlclient' 'mysql-clients' 'mysql') pkgver=5.5.17 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.mysql.com/" makedepends=('cmake' 'openssl' 'zlib') diff --git a/extra/naim/PKGBUILD b/extra/naim/PKGBUILD index d09e33ed7..0c20326bf 100644 --- a/extra/naim/PKGBUILD +++ b/extra/naim/PKGBUILD @@ -5,7 +5,7 @@ pkgname=naim pkgver=0.11.8.3.2 pkgrel=2 pkgdesc="An ncurses AOL Instant Messenger and IRC client." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://naim.n.ml.org" depends=('ncurses') diff --git a/extra/nasm/PKGBUILD b/extra/nasm/PKGBUILD index 9085d5e61..68be83af0 100644 --- a/extra/nasm/PKGBUILD +++ b/extra/nasm/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=nasm pkgname=('nasm' 'nasm-doc') pkgver=2.09.10 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nasm.us" license=('BSD') makedepends=('ghostscript') diff --git a/extra/nautilus-open-terminal/PKGBUILD b/extra/nautilus-open-terminal/PKGBUILD index d75eb7848..400d4b3a6 100644 --- a/extra/nautilus-open-terminal/PKGBUILD +++ b/extra/nautilus-open-terminal/PKGBUILD @@ -6,7 +6,7 @@ pkgname=nautilus-open-terminal pkgver=0.19 pkgrel=2 pkgdesc="A nautilus plugin for opening terminals in arbitrary local paths" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ftp.gnome.org/pub/GNOME/sources/nautilus-open-terminal" license=('GPL') depends=('nautilus' 'gconf') diff --git a/extra/nautilus-sendto/PKGBUILD b/extra/nautilus-sendto/PKGBUILD index 059c58eda..f55150cab 100644 --- a/extra/nautilus-sendto/PKGBUILD +++ b/extra/nautilus-sendto/PKGBUILD @@ -7,7 +7,7 @@ pkgname=nautilus-sendto pkgver=3.0.1 pkgrel=2 pkgdesc="Nautilus context menu for sending files." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://download.gnome.org/sources/nautilus-sendto/" license=('GPL') groups=('gnome-extra') diff --git a/extra/nautilus/PKGBUILD b/extra/nautilus/PKGBUILD index d8a2f7351..f66533aaa 100644 --- a/extra/nautilus/PKGBUILD +++ b/extra/nautilus/PKGBUILD @@ -5,7 +5,7 @@ pkgname=nautilus pkgver=3.2.1 pkgrel=1 pkgdesc="GNOME file manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libexif' 'gnome-desktop' 'exempi' 'gvfs' 'desktop-file-utils' 'gnome-icon-theme' 'dconf' 'libtracker-sparql' 'libnotify') makedepends=('intltool' 'gobject-introspection') diff --git a/extra/ncftp/PKGBUILD b/extra/ncftp/PKGBUILD index 921f49e52..856996539 100644 --- a/extra/ncftp/PKGBUILD +++ b/extra/ncftp/PKGBUILD @@ -9,7 +9,7 @@ pkgver=3.2.5 pkgrel=1 pkgdesc="A set of free application programs implementing FTP" url="http://www.ncftp.com/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') depends=('ncurses') source=("ftp://ftp.ncftp.com/ncftp/$pkgname-$pkgver-src.tar.bz2") diff --git a/extra/ncmpc/PKGBUILD b/extra/ncmpc/PKGBUILD index 901e9f73f..c4b433f55 100644 --- a/extra/ncmpc/PKGBUILD +++ b/extra/ncmpc/PKGBUILD @@ -8,7 +8,7 @@ pkgname=ncmpc pkgver=0.19 pkgrel=1 pkgdesc="A ncurses (command line) interface for MPD" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://mpd.wikia.com/wiki/Client:Ncmpc" license=('GPL') depends=('ncurses' 'glib2' 'libmpdclient') diff --git a/extra/nedit/PKGBUILD b/extra/nedit/PKGBUILD index 250d5e2bd..dbf451fa8 100644 --- a/extra/nedit/PKGBUILD +++ b/extra/nedit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=nedit pkgver=5.5 pkgrel=6 pkgdesc="A Unix text editor for programmers and general users" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nedit.org/" license=('GPL') depends=('lesstif' 'libxpm') diff --git a/extra/neon/PKGBUILD b/extra/neon/PKGBUILD index 3732a7196..bd8df5b44 100644 --- a/extra/neon/PKGBUILD +++ b/extra/neon/PKGBUILD @@ -7,7 +7,7 @@ pkgname=neon pkgver=0.29.6 pkgrel=2 pkgdesc="HTTP and WebDAV client library with a C interface" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL') depends=('krb5' 'expat' 'ca-certificates') url="http://www.webdav.org/neon/" diff --git a/extra/net-snmp/PKGBUILD b/extra/net-snmp/PKGBUILD index 910d86329..983f6e411 100644 --- a/extra/net-snmp/PKGBUILD +++ b/extra/net-snmp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=net-snmp pkgver=5.7.1 pkgrel=1 pkgdesc="A suite of applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.net-snmp.org/" license=('BSD') depends=('openssl' 'libnl' 'pciutils') diff --git a/extra/netcdf/PKGBUILD b/extra/netcdf/PKGBUILD index 326e3483e..55439cfa9 100644 --- a/extra/netcdf/PKGBUILD +++ b/extra/netcdf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=netcdf pkgver=4.1.3 pkgrel=1 pkgdesc="network Common Data Form interface for array-oriented data access and corresponding library" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://www.unidata.ucar.edu/downloads/netcdf/index.jsp" depends=('gcc-libs' 'hdf5' 'gcc-fortran' 'curl') options=('!libtool' '!makeflags') diff --git a/extra/netkit-bsd-finger/PKGBUILD b/extra/netkit-bsd-finger/PKGBUILD index ea1987985..7434c2e7b 100644 --- a/extra/netkit-bsd-finger/PKGBUILD +++ b/extra/netkit-bsd-finger/PKGBUILD @@ -4,7 +4,7 @@ pkgname=netkit-bsd-finger pkgver=0.17 pkgrel=5 pkgdesc="bsd-finger ported to Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit" license=('BSD') depends=('glibc' 'xinetd') diff --git a/extra/netpbm/PKGBUILD b/extra/netpbm/PKGBUILD index 6b92f5ef5..a0bedf98e 100644 --- a/extra/netpbm/PKGBUILD +++ b/extra/netpbm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=netpbm pkgver=10.47.24 pkgrel=1 pkgdesc="A toolkit for manipulation of graphic images" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom' 'BSD' 'GPL' 'LGPL') url="http://netpbm.sourceforge.net/" depends=('perl' 'libjpeg' 'libpng' 'libtiff' 'libxml2') diff --git a/extra/nettle/PKGBUILD b/extra/nettle/PKGBUILD index 2509d8bb0..d970890c2 100644 --- a/extra/nettle/PKGBUILD +++ b/extra/nettle/PKGBUILD @@ -6,7 +6,7 @@ pkgname=nettle pkgver=2.4 pkgrel=1 pkgdesc="A low-level cryptographic library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lysator.liu.se/~nisse/nettle/" license=('GPL2') install=$pkgname.install diff --git a/extra/network-manager-applet/PKGBUILD b/extra/network-manager-applet/PKGBUILD index 358af059c..987765ab6 100644 --- a/extra/network-manager-applet/PKGBUILD +++ b/extra/network-manager-applet/PKGBUILD @@ -9,7 +9,7 @@ pkgname=network-manager-applet pkgver=0.9.1.95 pkgrel=2 pkgdesc="GNOME frontends to NetWorkmanager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnome.org/projects/NetworkManager/" depends=('networkmanager' 'libgnome-keyring' 'polkit-gnome' 'gtk3' 'libnotify' 'gnome-icon-theme' 'mobile-broadband-provider-info' 'gconf' 'iso-codes') diff --git a/extra/networkmanager-openconnect/PKGBUILD b/extra/networkmanager-openconnect/PKGBUILD index 1ab5f76a9..91b1bbe1f 100644 --- a/extra/networkmanager-openconnect/PKGBUILD +++ b/extra/networkmanager-openconnect/PKGBUILD @@ -5,7 +5,7 @@ pkgname=networkmanager-openconnect pkgver=0.9.1.95 pkgrel=1 pkgdesc="NetworkManager VPN integration for openconnect" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnome.org/projects/NetworkManager/" depends=("networkmanager>=${pkgver}" 'openconnect' 'gconf') diff --git a/extra/networkmanager-openvpn/PKGBUILD b/extra/networkmanager-openvpn/PKGBUILD index f19622319..7fcd54bed 100644 --- a/extra/networkmanager-openvpn/PKGBUILD +++ b/extra/networkmanager-openvpn/PKGBUILD @@ -5,7 +5,7 @@ pkgname=networkmanager-openvpn pkgver=0.9.1.95 pkgrel=1 pkgdesc="NetworkManager VPN plugin for OpenVPN" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnome.org/projects/NetworkManager/" depends=("networkmanager>=${pkgver}" 'openvpn' 'gtk3' 'libgnome-keyring') diff --git a/extra/networkmanager-pptp/PKGBUILD b/extra/networkmanager-pptp/PKGBUILD index 15eec8c67..3e3d6bfff 100644 --- a/extra/networkmanager-pptp/PKGBUILD +++ b/extra/networkmanager-pptp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=networkmanager-pptp pkgver=0.9.1.95 pkgrel=1 pkgdesc="NetworkManager VPN plugin for pptp " -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnome.org/projects/NetworkManager/" depends=("networkmanager>=${pkgver}" 'pptpclient' 'gtk3' 'libgnome-keyring') diff --git a/extra/networkmanager-vpnc/PKGBUILD b/extra/networkmanager-vpnc/PKGBUILD index 903e74947..25ccfdab5 100644 --- a/extra/networkmanager-vpnc/PKGBUILD +++ b/extra/networkmanager-vpnc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=networkmanager-vpnc pkgver=0.9.1.95 pkgrel=1 pkgdesc="NetworkManager VPN plugin for vpnc" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnome.org/projects/NetworkManager/" depends=("networkmanager>=${pkgver}" 'vpnc' 'hicolor-icon-theme' 'gtk3' 'libgnome-keyring') diff --git a/extra/networkmanager/PKGBUILD b/extra/networkmanager/PKGBUILD index eaeb11572..595d0f4c9 100644 --- a/extra/networkmanager/PKGBUILD +++ b/extra/networkmanager/PKGBUILD @@ -9,7 +9,7 @@ pkgname=networkmanager pkgver=0.9.1.95 pkgrel=1 pkgdesc="Network Management daemon" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnome.org/projects/NetworkManager/" depends=('dbus-glib' 'iproute2' 'libnl' 'nss' 'polkit' 'udev' 'wireless_tools' 'wpa_supplicant' 'ppp' 'dhcpcd') diff --git a/extra/neverball/PKGBUILD b/extra/neverball/PKGBUILD index cd9c5a79b..839a9a9d1 100644 --- a/extra/neverball/PKGBUILD +++ b/extra/neverball/PKGBUILD @@ -5,7 +5,7 @@ pkgname=neverball pkgver=1.5.4 pkgrel=3 pkgdesc="3D game similar to Super Monkey Ball or Marble Madness" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://neverball.org/" license=('GPL') depends=('sdl_ttf' 'libgl' 'libpng' 'libjpeg' 'libvorbis' 'physfs') diff --git a/extra/nicotine/PKGBUILD b/extra/nicotine/PKGBUILD index 0be93063f..2c6f54a83 100644 --- a/extra/nicotine/PKGBUILD +++ b/extra/nicotine/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.2.16 pkgrel=2 pkgdesc="Soulseek music-sharing client, written in python" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('pygtk>=2.14.1' 'mutagen' 'python-geoip>=1.2.4') conflicts=(nicotine-plus) replaces=(nicotine-plus) diff --git a/extra/nitrogen/PKGBUILD b/extra/nitrogen/PKGBUILD index 3a3ddac95..5b6df2daa 100644 --- a/extra/nitrogen/PKGBUILD +++ b/extra/nitrogen/PKGBUILD @@ -7,7 +7,7 @@ pkgname=nitrogen pkgver=1.5.2 pkgrel=1 pkgdesc="Background browser and setter for X windows" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://projects.l3ib.org/nitrogen/" license=('GPL') depends=('gtkmm' 'hicolor-icon-theme' 'librsvg') diff --git a/extra/nmap/PKGBUILD b/extra/nmap/PKGBUILD index b79385d88..606fe34d5 100644 --- a/extra/nmap/PKGBUILD +++ b/extra/nmap/PKGBUILD @@ -6,7 +6,7 @@ pkgname=nmap pkgver=5.51 pkgrel=1 pkgdesc="A network exploration tool and security/port scanner" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://nmap.org" license=('GPL') depends=('pcre' 'openssl' 'libpcap' 'lua') diff --git a/extra/normalize/PKGBUILD b/extra/normalize/PKGBUILD index b0d56ed4f..f2e8eb00c 100644 --- a/extra/normalize/PKGBUILD +++ b/extra/normalize/PKGBUILD @@ -6,7 +6,7 @@ pkgname=normalize pkgver=0.7.7 pkgrel=4 pkgdesc="A tool for adjusting the volume of WAV files to a standard level" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('audiofile' 'libmad' 'vorbis-tools' 'lame' 'flac' 'mpg123') source=(http://download.savannah.gnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.bz2) diff --git a/extra/notification-daemon/PKGBUILD b/extra/notification-daemon/PKGBUILD index 71f5bfab8..e382d9c4e 100644 --- a/extra/notification-daemon/PKGBUILD +++ b/extra/notification-daemon/PKGBUILD @@ -6,7 +6,7 @@ pkgname=notification-daemon pkgver=0.7.3 pkgrel=1 pkgdesc="Notification daemon for the desktop notifications framework" -arch=('i686' 'x86_64') +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://www.galago-project.org/specs/notification/" depends=('gtk3' 'libcanberra') diff --git a/extra/nouveau-drm-lts/PKGBUILD b/extra/nouveau-drm-lts/PKGBUILD index 1284563f4..691795b0c 100644 --- a/extra/nouveau-drm-lts/PKGBUILD +++ b/extra/nouveau-drm-lts/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.0.16_${_snapdate} # see master/drivers/gpu/drm/nouveau/nouveau_drv.h fo _kernver='2.6.32-lts' pkgrel=6 pkgdesc="nvidia opensource X driver" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://nouveau.freedesktop.org/" depends=("kernel26-lts>=2.6.32" "kernel26-lts<2.6.33") makedepends=("kernel26-lts-headers>=2.6.32" "kernel26-lts-headers<2.6.33") diff --git a/extra/nspr/PKGBUILD b/extra/nspr/PKGBUILD index f025b013f..2bdfb0ad0 100644 --- a/extra/nspr/PKGBUILD +++ b/extra/nspr/PKGBUILD @@ -5,7 +5,7 @@ pkgname=nspr pkgver=4.8.9 pkgrel=2 pkgdesc="Netscape Portable Runtime" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.mozilla.org/projects/nspr/" license=('MPL' 'GPL') depends=('glibc') diff --git a/extra/nss-mdns/PKGBUILD b/extra/nss-mdns/PKGBUILD index 643dac89f..fb75b698e 100644 --- a/extra/nss-mdns/PKGBUILD +++ b/extra/nss-mdns/PKGBUILD @@ -6,7 +6,7 @@ pkgname=nss-mdns pkgver=0.10 pkgrel=3 pkgdesc="glibc plugin providing host name resolution via mDNS" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://0pointer.de/lennart/projects/nss-mdns/" license=('LGPL') depends=('glibc') diff --git a/extra/nss/PKGBUILD b/extra/nss/PKGBUILD index e02510821..9fdcc0f24 100644 --- a/extra/nss/PKGBUILD +++ b/extra/nss/PKGBUILD @@ -5,7 +5,7 @@ pkgname=nss pkgver=3.12.11 pkgrel=3 pkgdesc="Mozilla Network Security Services" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.mozilla.org/projects/security/pki/nss/" license=('MPL' 'GPL') _nsprver=4.8.9 diff --git a/extra/nss_ldap/PKGBUILD b/extra/nss_ldap/PKGBUILD index 0a1f93d38..44e8df8d2 100644 --- a/extra/nss_ldap/PKGBUILD +++ b/extra/nss_ldap/PKGBUILD @@ -6,7 +6,7 @@ pkgname=nss_ldap pkgver=265 pkgrel=2 pkgdesc="The nss_ldap module provides the means for Linux and Solaris workstations to resolve the entities defined in RFC 2307 from LDAP directories." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.padl.com/OSS/nss_ldap.html" license=('LGPL') depends=('libldap>=2.4.18' 'krb5') diff --git a/extra/ntfs-3g_ntfsprogs/PKGBUILD b/extra/ntfs-3g_ntfsprogs/PKGBUILD index d9968d181..b1706dde1 100644 --- a/extra/ntfs-3g_ntfsprogs/PKGBUILD +++ b/extra/ntfs-3g_ntfsprogs/PKGBUILD @@ -7,7 +7,7 @@ pkgname=('ntfs-3g' 'ntfsprogs') pkgver=2011.4.12 pkgrel=1 url="http://www.tuxera.com" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') depends=('glibc' 'fuse') makedepends=('pkgconfig') diff --git a/extra/ntp/PKGBUILD b/extra/ntp/PKGBUILD index 69669c721..5a27990c3 100644 --- a/extra/ntp/PKGBUILD +++ b/extra/ntp/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.2.6.p3 _realver=4.2.6p3 pkgrel=3 pkgdesc="NTP (Network Time Protocol) tries to keep servers in sync" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') url="http://www.ntp.org/" depends=('openssl' 'readline' 'libcap') diff --git a/extra/ntrack/PKGBUILD b/extra/ntrack/PKGBUILD index 6140cb6dc..5211c17d2 100644 --- a/extra/ntrack/PKGBUILD +++ b/extra/ntrack/PKGBUILD @@ -6,7 +6,7 @@ pkgver=13 pkgrel=2 epoch=1 pkgdesc="A network connectivity tracking library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://launchpad.net/ntrack/" license=('LGPL') depends=('qt' 'libnl' 'gcc-libs') diff --git a/extra/nx-common/PKGBUILD b/extra/nx-common/PKGBUILD index 7ee8cac19..849dc3151 100644 --- a/extra/nx-common/PKGBUILD +++ b/extra/nx-common/PKGBUILD @@ -6,7 +6,7 @@ pkgname=nx-common pkgver=3.5.0 pkgrel=2 pkgdesc="NoMachine NX common package for client and server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://nomachine.com/" depends=('libjpeg-turbo>=1.1.1' 'libpng>=1.4.5' 'openssl>=1.0.0' 'gcc-libs' 'bash') diff --git a/extra/nxserver/PKGBUILD b/extra/nxserver/PKGBUILD index de2ce2e34..85f3dfbda 100644 --- a/extra/nxserver/PKGBUILD +++ b/extra/nxserver/PKGBUILD @@ -6,7 +6,7 @@ pkgname=nxserver pkgver=3.5.0 pkgrel=4 pkgdesc="NoMachine NX is the next-generation X compression and roundtrip suppression scheme." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://nomachine.com/" license=('GPL') depends=("nx-common" 'libxaw' 'libxrender' 'libxp' 'gcc-libs' 'libjpeg>=8' #>=$pkgver @@ -89,4 +89,4 @@ package() { # nxcompext cd ${srcdir}/nxcompext cp -a libXcompext.so* ${pkgdir}/opt/NX/lib -}
\ No newline at end of file +} diff --git a/extra/obex-data-server/PKGBUILD b/extra/obex-data-server/PKGBUILD index 41737577b..ad388ef42 100644 --- a/extra/obex-data-server/PKGBUILD +++ b/extra/obex-data-server/PKGBUILD @@ -8,7 +8,7 @@ pkgname=obex-data-server pkgver=0.4.6 pkgrel=2 pkgdesc="A D-Bus service providing high-level OBEX client and server side functionality" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wiki.muiline.com/obex-data-server" license=('GPL') depends=('dbus-glib' 'openobex' 'imagemagick') diff --git a/extra/obexd/PKGBUILD b/extra/obexd/PKGBUILD index fc7af1d72..b9a712f86 100644 --- a/extra/obexd/PKGBUILD +++ b/extra/obexd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=('obexd-client' 'obexd-server') pkgver=0.42 pkgrel=1 url="http://www.bluez.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') makedepends=('openobex' 'libical') source=("http://www.kernel.org/pub/linux/bluetooth/${pkgbase}-${pkgver}.tar.bz2") diff --git a/extra/obexftp/PKGBUILD b/extra/obexftp/PKGBUILD index e6da6fd9d..62727963f 100644 --- a/extra/obexftp/PKGBUILD +++ b/extra/obexftp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=obexftp pkgver=0.23 pkgrel=4 pkgdesc="A tool for transfer files to/from any OBEX enabled device" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://dev.zuckschwerdt.org/openobex/wiki/ObexFtp" license=('GPL') depends=('openobex' 'python2') diff --git a/extra/ocaml/PKGBUILD b/extra/ocaml/PKGBUILD index 97decbd24..a11606412 100644 --- a/extra/ocaml/PKGBUILD +++ b/extra/ocaml/PKGBUILD @@ -6,20 +6,26 @@ pkgname=('ocaml' 'ocaml-compiler-libs') pkgver=3.12.1 pkgrel=2 pkgdesc="A functional language with OO extensions" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL2' 'custom: QPL-1.0') url="http://caml.inria.fr/" depends=('gdbm') makedepends=('tk' 'ncurses>=5.6-7' 'libx11') optdepends=('ncurses: advanced ncurses features' 'tk: advanced tk features') -source=(http://caml.inria.fr/distrib/ocaml-3.12/${pkgname}-${pkgver}.tar.gz) -md5sums=('814a047085f0f901ab7d8e3a4b7a9e65') -options=('!makeflags' '!emptydirs') +source=(http://caml.inria.fr/distrib/ocaml-3.12/${pkgname}-${pkgver}.tar.gz + fix-caml_int64_float_of_bits-n32.patch) +md5sums=('814a047085f0f901ab7d8e3a4b7a9e65' + 'e2c8bc316efe40532c5b9d7f9a1d8d62') build() { cd "${srcdir}/${pkgname}-${pkgver}" + patch -Np1 -i "${srcdir}/fix-caml_int64_float_of_bits-n32.patch" ./configure -prefix /usr - make world.opt + if [ "${CARCH}" == "mips64el" ] ; then + make world + else + make world.opt + fi } package_ocaml() { diff --git a/extra/ocaml/fix-caml_int64_float_of_bits-n32.patch b/extra/ocaml/fix-caml_int64_float_of_bits-n32.patch new file mode 100644 index 000000000..98755d30b --- /dev/null +++ b/extra/ocaml/fix-caml_int64_float_of_bits-n32.patch @@ -0,0 +1,12 @@ +--- ocaml-3.12.0.orig/byterun/ints.c 2011-06-25 18:03:21.548733206 +0200 ++++ ocaml-3.12.0/byterun/ints.c 2011-06-25 22:34:17.304788306 +0200 +@@ -585,6 +585,9 @@ + return caml_copy_int64(u.i); + } + ++#ifdef _ABIN32 ++__attribute__((optimize(0))) ++#endif + CAMLprim value caml_int64_float_of_bits(value vi) + { + union { double d; int64 i; int32 h[2]; } u; diff --git a/extra/ocfs2-tools/PKGBUILD b/extra/ocfs2-tools/PKGBUILD index 9db43e1e9..3f36a9983 100644 --- a/extra/ocfs2-tools/PKGBUILD +++ b/extra/ocfs2-tools/PKGBUILD @@ -4,7 +4,7 @@ pkgname=ocfs2-tools pkgver=1.4.3 pkgrel=2 pkgdesc="Oracle Cluster File System 2 utilities" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://oss.oracle.com/projects/ocfs2-tools/" depends=('e2fsprogs' 'glib2' 'readline>=6.0.00') license=('GPL2') diff --git a/extra/ocrad/PKGBUILD b/extra/ocrad/PKGBUILD index 52fb00e05..a5bfd577f 100644 --- a/extra/ocrad/PKGBUILD +++ b/extra/ocrad/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ocrad pkgver=0.21 pkgrel=1 pkgdesc="An Optical Character Recognition program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/ocrad/ocrad.html" license=('GPL3') depends=('gcc-libs' 'texinfo') diff --git a/extra/octave/PKGBUILD b/extra/octave/PKGBUILD index 992a398a6..8f94e064b 100644 --- a/extra/octave/PKGBUILD +++ b/extra/octave/PKGBUILD @@ -7,7 +7,7 @@ pkgname=octave pkgver=3.4.3 pkgrel=1 pkgdesc="A high-level language, primarily intended for numerical computations." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.octave.org" license=('GPL') depends=('fftw' 'pcre' 'curl' 'lapack' 'libx11' 'graphicsmagick' 'glpk' 'hdf5' 'gcc-libs' 'qhull') diff --git a/extra/ode/PKGBUILD b/extra/ode/PKGBUILD index 3cf29cf07..1723113e8 100644 --- a/extra/ode/PKGBUILD +++ b/extra/ode/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ode pkgver=0.11.1 pkgrel=2 pkgdesc="An open source, high performance library for simulating rigid body dynamics" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ode.org" license=('LGPL' 'BSD') depends=('gcc-libs' 'bash') diff --git a/extra/ogle/PKGBUILD b/extra/ogle/PKGBUILD index 240daa30b..fbd7846b5 100644 --- a/extra/ogle/PKGBUILD +++ b/extra/ogle/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ogle pkgver=0.9.2 pkgrel=13 pkgdesc="A simple DVD player for Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.dtek.chalmers.se/groups/dvd/" license=('GPL') depends=('sh' 'libxml2' 'libdvdread' 'libjpeg' 'libmad' 'libxinerama' 'libxv' diff --git a/extra/ogmtools/PKGBUILD b/extra/ogmtools/PKGBUILD index 680260b06..02612b558 100644 --- a/extra/ogmtools/PKGBUILD +++ b/extra/ogmtools/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ogmtools pkgver=1.5 pkgrel=4 pkgdesc="Information, extraction or creation for OGG media streams" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.bunkus.org/videotools/ogmtools" license=('GPL') depends=('libvorbis' 'libdvdread' 'gcc-libs') diff --git a/extra/opal/PKGBUILD b/extra/opal/PKGBUILD index 4e45a5a34..2e1336805 100644 --- a/extra/opal/PKGBUILD +++ b/extra/opal/PKGBUILD @@ -5,7 +5,7 @@ pkgname=opal pkgver=3.10.2 pkgrel=2 pkgdesc="Open Phone Abstraction Library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.ekiga.org" license=('GPL') depends=('ptlib' 'libtheora' 'x264' 'speex') diff --git a/extra/openal/PKGBUILD b/extra/openal/PKGBUILD index 0a3c8f1a2..338d11712 100644 --- a/extra/openal/PKGBUILD +++ b/extra/openal/PKGBUILD @@ -7,7 +7,7 @@ pkgname=openal pkgver=1.13 pkgrel=2 pkgdesc="A cross-platform 3D audio library" -arch=(i686 x86_64) +arch=('i686' 'x86_64' 'mips64el') url="http://www.openal.org/" license=(LGPL) depends=(glibc) diff --git a/extra/openbabel/PKGBUILD b/extra/openbabel/PKGBUILD index 95e04efaa..078e83de1 100644 --- a/extra/openbabel/PKGBUILD +++ b/extra/openbabel/PKGBUILD @@ -6,7 +6,7 @@ pkgname=openbabel pkgver=2.3.1 pkgrel=1 pkgdesc="A library designed to interconvert between many file formats used in molecular modeling and computational chemistry" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://openbabel.org/wiki/Main_Page" license=('GPL') depends=('gcc-libs' 'libxml2') diff --git a/extra/opencdk/PKGBUILD b/extra/opencdk/PKGBUILD index dccaaced8..2155b4275 100644 --- a/extra/opencdk/PKGBUILD +++ b/extra/opencdk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=opencdk pkgver=0.6.6 pkgrel=2 pkgdesc="The Open Crypto Development Kit provides basic parts of the OpenPGP message format" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/gnutls/" license=('GPL') depends=('libgcrypt>=1.2.4' 'zlib') diff --git a/extra/openconnect/PKGBUILD b/extra/openconnect/PKGBUILD index 4817197ab..9be938be0 100644 --- a/extra/openconnect/PKGBUILD +++ b/extra/openconnect/PKGBUILD @@ -6,7 +6,7 @@ pkgver=3.13 pkgrel=1 epoch=1 pkgdesc="Open client for Cisco AnyConnect VPN" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.infradead.org/openconnect.html" depends=('libxml2' 'openssl' 'libproxy') diff --git a/extra/opencore-amr/PKGBUILD b/extra/opencore-amr/PKGBUILD index e4fe7b376..affd35652 100644 --- a/extra/opencore-amr/PKGBUILD +++ b/extra/opencore-amr/PKGBUILD @@ -6,7 +6,7 @@ pkgname=opencore-amr pkgver=0.1.2 pkgrel=1 pkgdesc="Open source implementation of the Adaptive Multi Rate (AMR) speech codec" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('APACHE') url="http://opencore-amr.sourceforge.net/" depends=('gcc-libs') diff --git a/extra/opencv/PKGBUILD b/extra/opencv/PKGBUILD index f2bf421bf..360db2427 100644 --- a/extra/opencv/PKGBUILD +++ b/extra/opencv/PKGBUILD @@ -8,7 +8,7 @@ _realname=OpenCV pkgver=2.3.1 pkgrel=1 pkgdesc="Open Source Computer Vision Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('BSD') url="http://opencv.willowgarage.com/" depends=('jasper' 'gstreamer0.10-base' 'openexr' diff --git a/extra/openexr/PKGBUILD b/extra/openexr/PKGBUILD index 3f4afa72e..9fe115aef 100644 --- a/extra/openexr/PKGBUILD +++ b/extra/openexr/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.7.0 pkgrel=1 pkgdesc="An high dynamic-range image file format library" url="http://www.openexr.com/" -arch=('i686' 'x86_64') +arch=(i686 x86_64 'mips64el') license=('BSD') depends=('zlib' 'ilmbase') options=('!libtool') diff --git a/extra/opengtl/PKGBUILD b/extra/opengtl/PKGBUILD index a5c7d41c6..1b4168f99 100644 --- a/extra/opengtl/PKGBUILD +++ b/extra/opengtl/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.9.15.1 pkgrel=1 pkgdesc="A set of library for using and integrating transformation algorithms (such as filter or color conversion) in graphics applications" url="http://www.opengtl.org" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('gcc-libs') makedepends=('cmake' 'llvm' 'libpng') diff --git a/extra/openjdk6/PKGBUILD b/extra/openjdk6/PKGBUILD index df1688ad1..c9e2aa45d 100644 --- a/extra/openjdk6/PKGBUILD +++ b/extra/openjdk6/PKGBUILD @@ -13,7 +13,7 @@ _openjdk_date=28_feb_2011 pkgver=${_javaver}.${_openjdk_version}_${_icedteaver} pkgrel=1 url='http://icedtea.classpath.org' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') makedepends=('gcc-libs' 'xdg-utils' 'hicolor-icon-theme' 'ca-certificates-java' 'libxtst' 'alsa-lib' 'giflib' 'libxp' 'gtk2' 'nspr' 'zlib' 'freetype2' 'libjpeg>=8' 'libx11' 'libcups' 'patch' 'xalan-java' 'libxt' 'nss' diff --git a/extra/openjpeg/PKGBUILD b/extra/openjpeg/PKGBUILD index 6d8331004..0b30d5fc8 100644 --- a/extra/openjpeg/PKGBUILD +++ b/extra/openjpeg/PKGBUILD @@ -7,7 +7,7 @@ _pkgver=v1_4 _revision=r697 pkgrel=1 pkgdesc="An open source JPEG 2000 codec" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('BSD') url="http://www.openjpeg.org" depends=('zlib') diff --git a/extra/openmpi/PKGBUILD b/extra/openmpi/PKGBUILD index a0aba50c9..c951ef6da 100644 --- a/extra/openmpi/PKGBUILD +++ b/extra/openmpi/PKGBUILD @@ -4,10 +4,12 @@ pkgname=openmpi pkgver=1.5.4 pkgrel=1 pkgdesc="High performance message passing library (MPI)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.open-mpi.org" license=('custom') depends=('gcc' 'gcc-fortran' 'openssh' 'valgrind' 'libtool' 'hwloc') +[ "$CARCH" = "mips64el" ] && \ +depends=('gcc-fortran' 'openssh' 'libtool' 'hwloc') makedepends=('inetutils') options=(!libtool) source=(http://www.open-mpi.org/software/ompi/v1.5/downloads/${pkgname}-${pkgver}.tar.bz2) @@ -16,6 +18,26 @@ sha1sums=('81f7736a83b2134ba20c2e5c380b4d267cfd9d9c') build() { cd "${srcdir}/${pkgname}-${pkgver}" +# Disable valgrind + if [ "$CARCH" = "mips64el" ]; then + ./configure --prefix=/usr \ + --sysconfdir=/etc/${pkgname} \ + --mandir=/usr/share/man \ + --enable-mpi-f90 \ + --libdir=/usr/lib/${pkgname} \ + --with-threads=posix \ + --enable-mpi-threads \ + --enable-smp-locks \ + --without-valgrind \ + --enable-memchecker \ + --enable-debug \ + --enable-pretty-print-stacktrace \ + --without-slurm \ + --with-hwloc=external \ + --with-libltdl=/usr \ + FC=/usr/bin/gfortran \ + LDFLAGS="$LDFLAGS -Wl,-z,noexecstack" + else ./configure --prefix=/usr \ --sysconfdir=/etc/${pkgname} \ --mandir=/usr/share/man \ @@ -32,6 +54,7 @@ build() { --with-libltdl=/usr \ FC=/usr/bin/gfortran \ LDFLAGS="$LDFLAGS -Wl,-z,noexecstack" + fi make } diff --git a/extra/openobex/PKGBUILD b/extra/openobex/PKGBUILD index 3c3363c0a..0ecce3008 100644 --- a/extra/openobex/PKGBUILD +++ b/extra/openobex/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.5 pkgrel=2 pkgdesc="Implementation of the OBject EXchange (OBEX) protocol" url="http://dev.zuckschwerdt.org/openobex/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL') depends=('bluez' 'libusb-compat') options=('!libtool') diff --git a/extra/openslp/PKGBUILD b/extra/openslp/PKGBUILD index 9ba1f94ab..347c5d823 100644 --- a/extra/openslp/PKGBUILD +++ b/extra/openslp/PKGBUILD @@ -4,7 +4,7 @@ pkgname=openslp pkgver=1.2.1 pkgrel=3 pkgdesc="Open-source implementation of Service Location Protocol" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.openslp.org" license=('BSD') depends=('glibc' 'bash' 'openssl') diff --git a/extra/opensp/PKGBUILD b/extra/opensp/PKGBUILD index 0559cfe6e..893d507a8 100644 --- a/extra/opensp/PKGBUILD +++ b/extra/opensp/PKGBUILD @@ -7,7 +7,7 @@ pkgname=opensp pkgver=1.5.2 pkgrel=2 pkgdesc="A library and a set of tools for validating, parsing and manipulating SGML and XML documents" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://openjade.sourceforge.net/" license=('BSD') depends=('gcc-libs') diff --git a/extra/oprofile/PKGBUILD b/extra/oprofile/PKGBUILD index 2bc5449c2..d069bf092 100644 --- a/extra/oprofile/PKGBUILD +++ b/extra/oprofile/PKGBUILD @@ -5,7 +5,7 @@ pkgname=oprofile pkgver=0.9.7 pkgrel=3 pkgdesc="A system-wide profiler for Linux systems, capable of profiling all running code at low overhead" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://oprofile.sourceforge.net" license=('GPL') depends=('popt' 'gcc-libs' 'zlib' 'sh') diff --git a/extra/orage/PKGBUILD b/extra/orage/PKGBUILD index a5914f3d1..dd599f8d4 100644 --- a/extra/orage/PKGBUILD +++ b/extra/orage/PKGBUILD @@ -6,7 +6,7 @@ pkgname=orage pkgver=4.8.2 pkgrel=1 pkgdesc="A simple calendar application with reminders for Xfce" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.xfce.org/projects/orage/" groups=('xfce4-goodies') diff --git a/extra/orbit2/PKGBUILD b/extra/orbit2/PKGBUILD index e141d91a7..5159c7d32 100644 --- a/extra/orbit2/PKGBUILD +++ b/extra/orbit2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=orbit2 pkgver=2.14.19 pkgrel=1 pkgdesc="Thin/fast CORBA ORB" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL' 'GPL') depends=('libidl2>=0.8.11') makedepends=('pkgconfig') diff --git a/extra/orc/PKGBUILD b/extra/orc/PKGBUILD index bddf53c9f..902cf3a98 100644 --- a/extra/orc/PKGBUILD +++ b/extra/orc/PKGBUILD @@ -4,7 +4,7 @@ pkgname=orc pkgver=0.4.14 pkgrel=1 pkgdesc="The Oild Runtime Compiler" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://code.entropywave.com/projects/orc/" depends=('glibc') diff --git a/extra/ortp/PKGBUILD b/extra/ortp/PKGBUILD index ca983cbd3..c36da3a25 100644 --- a/extra/ortp/PKGBUILD +++ b/extra/ortp/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ortp pkgver=0.16.5 pkgrel=1 pkgdesc="A Real-time Transport Protocol (RTP) library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.linphone.org/index.php/eng/code_review/ortp" license=('LGPL') depends=('openssl') @@ -17,7 +17,8 @@ md5sums=('94546901d14b85f97342f4ecf39489b1') build() { cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr + # Don't turn warnings into errors, it's bad. + ./configure --prefix=/usr --disable-strict make } diff --git a/extra/ossp/PKGBUILD b/extra/ossp/PKGBUILD index 2b71ca3f9..6d2401833 100644 --- a/extra/ossp/PKGBUILD +++ b/extra/ossp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ossp pkgver=1.3.2 pkgrel=11 pkgdesc="Emulate OSS device using CUSE" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://sourceforge.net/projects/osspd" license=(GPL2) depends=('fuse>=2.8.0') diff --git a/extra/oxine/PKGBUILD b/extra/oxine/PKGBUILD index e3dc227bc..e1106a77e 100644 --- a/extra/oxine/PKGBUILD +++ b/extra/oxine/PKGBUILD @@ -7,7 +7,7 @@ pkgname=oxine pkgver=0.7.1 pkgrel=4 pkgdesc="A lightweight, purely osd based xine frontend for set-top boxes and home entertainment systems" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://oxine.sourceforge.net/" license=('GPL') depends=('xine-lib' 'libexif' 'eject' 'libcdio' 'curl' 'libxtst') diff --git a/extra/oxygen-gtk/PKGBUILD b/extra/oxygen-gtk/PKGBUILD index 03f661181..061915e98 100644 --- a/extra/oxygen-gtk/PKGBUILD +++ b/extra/oxygen-gtk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=oxygen-gtk pkgver=1.1.4 pkgrel=1 pkgdesc="Port of the default KDE widget theme (Oxygen) to GTK" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://kde-look.org/content/show.php/?content=136216" license=('LGPL') depends=('gtk2') diff --git a/extra/p11-kit/PKGBUILD b/extra/p11-kit/PKGBUILD index 9b94d6247..c86beeb4a 100644 --- a/extra/p11-kit/PKGBUILD +++ b/extra/p11-kit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=p11-kit pkgver=0.6 pkgrel=2 pkgdesc="Library to work with PKCS#11 modules" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://p11-glue.freedesktop.org" license=('BSD') depends=(glibc) diff --git a/extra/pam_ldap/PKGBUILD b/extra/pam_ldap/PKGBUILD index b3418220a..8b1218e70 100644 --- a/extra/pam_ldap/PKGBUILD +++ b/extra/pam_ldap/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pam_ldap pkgver=185 pkgrel=1 pkgdesc="LDAP authentication module for the PAM framework" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.padl.com/OSS/pam_ldap.html" license=('LGPL') depends=('libldap>=2.4.22' 'pam') diff --git a/extra/pango-perl/PKGBUILD b/extra/pango-perl/PKGBUILD index ad489dec4..66abfb0c8 100644 --- a/extra/pango-perl/PKGBUILD +++ b/extra/pango-perl/PKGBUILD @@ -6,7 +6,7 @@ _realname=Pango pkgver=1.221 pkgrel=4 pkgdesc="Perl bindings for Pango" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://gtk2-perl.sourceforge.net/" makedepends=('perl-extutils-pkgconfig' 'perl-extutils-depends') diff --git a/extra/pango/PKGBUILD b/extra/pango/PKGBUILD index 5366a6574..2cd58b3e6 100644 --- a/extra/pango/PKGBUILD +++ b/extra/pango/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pango pkgver=1.29.4 pkgrel=1 pkgdesc="A library for layout and rendering of text" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('glib2' 'cairo' 'libxft' 'libthai' 'freetype2') makedepends=('gobject-introspection' 'libxt' 'gtk-doc') diff --git a/extra/pangomm/PKGBUILD b/extra/pangomm/PKGBUILD index 3699ffa68..ffa00e5d3 100644 --- a/extra/pangomm/PKGBUILD +++ b/extra/pangomm/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=pangomm pkgname=('pangomm' 'pangomm-docs') pkgver=2.28.4 pkgrel=1 -arch=('i686' 'x86_64') +arch=(i686 x86_64 'mips64el') license=('LGPL') makedepends=('pango' 'glibmm' 'glibmm-docs' 'cairomm' 'pkgconfig') source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.28/${pkgname}-${pkgver}.tar.xz) diff --git a/extra/paprefs/PKGBUILD b/extra/paprefs/PKGBUILD index c6b773a0e..e55bdd5d7 100644 --- a/extra/paprefs/PKGBUILD +++ b/extra/paprefs/PKGBUILD @@ -8,7 +8,7 @@ pkgname=paprefs pkgver=0.9.10 pkgrel=1 pkgdesc="A simple GTK-based configuration dialog for PulseAudio" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://0pointer.de/lennart/projects/paprefs" license=(GPL) depends=(gconfmm gnome-icon-theme libglademm libsigc++ pulseaudio) diff --git a/extra/parted/PKGBUILD b/extra/parted/PKGBUILD index 8c8d7f3b1..3a50e33ea 100644 --- a/extra/parted/PKGBUILD +++ b/extra/parted/PKGBUILD @@ -6,7 +6,7 @@ pkgname=parted pkgver=3.0 pkgrel=3 pkgdesc="A program for creating, destroying, resizing, checking and copying partitions" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') url="http://www.gnu.org/software/parted/parted.html" depends=('device-mapper' 'e2fsprogs') diff --git a/extra/pathological/PKGBUILD b/extra/pathological/PKGBUILD index cdc1bd856..d9fdbbff9 100644 --- a/extra/pathological/PKGBUILD +++ b/extra/pathological/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pathological pkgver=1.1.3 pkgrel=6 pkgdesc="A puzzle game with the same feel as frozen bubble" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pathological.sourceforge.net/" license=('GPL') depends=('python-pygame') diff --git a/extra/pavucontrol/PKGBUILD b/extra/pavucontrol/PKGBUILD index b2a9bf1fb..0cae59a3f 100644 --- a/extra/pavucontrol/PKGBUILD +++ b/extra/pavucontrol/PKGBUILD @@ -8,7 +8,7 @@ pkgname=pavucontrol pkgver=1.0 pkgrel=1 pkgdesc="A GTK volume control tool for PulseAudio" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://0pointer.de/lennart/projects/pavucontrol" license=(GPL) depends=(gnome-icon-theme libcanberra-pulse gtkmm3 libsigc++) diff --git a/extra/pdksh/PKGBUILD b/extra/pdksh/PKGBUILD index 388952747..6e73d7e3b 100644 --- a/extra/pdksh/PKGBUILD +++ b/extra/pdksh/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pdksh pkgver=5.2.14 pkgrel=6 pkgdesc="A public domain clone of the AT&T Korn shell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cs.mun.ca/~michael/pdksh/" license=('custom') depends=('glibc') diff --git a/extra/pdns-recursor/PKGBUILD b/extra/pdns-recursor/PKGBUILD index c344995ac..72d354b9d 100644 --- a/extra/pdns-recursor/PKGBUILD +++ b/extra/pdns-recursor/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="PowerDNS recursor" url="http://www.powerdns.com" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gcc-libs>=4.5.2' 'lua') makedepends=('boost') #options=(!makeflags) diff --git a/extra/pdns/PKGBUILD b/extra/pdns/PKGBUILD index 9506deee3..f59ea8a3a 100644 --- a/extra/pdns/PKGBUILD +++ b/extra/pdns/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pdns pkgver=2.9.22 pkgrel=7 pkgdesc="A modern, advanced and high performance authoritative-only nameserver" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.powerdns.com" license=('GPL') depends=('gcc-libs' 'zlib' 'postgresql-libs' 'libmysqlclient' 'sqlite3' 'libldap') diff --git a/extra/pekwm/PKGBUILD b/extra/pekwm/PKGBUILD index bfcdb908d..589857269 100644 --- a/extra/pekwm/PKGBUILD +++ b/extra/pekwm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pekwm pkgver=0.1.13 pkgrel=1 pkgdesc="A small, fast, functional, and flexible window manager" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://pekwm.org/" depends=('gcc-libs' 'libjpeg>=7' 'libpng' 'libxft' 'libxinerama' 'libxpm' diff --git a/extra/perl-alien-sdl/PKGBUILD b/extra/perl-alien-sdl/PKGBUILD index 25bd18eeb..196c93a9c 100644 --- a/extra/perl-alien-sdl/PKGBUILD +++ b/extra/perl-alien-sdl/PKGBUILD @@ -11,7 +11,7 @@ _realname=Alien-SDL pkgver=1.426 pkgrel=1 pkgdesc="Building, finding and using SDL binaries" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=(PerlArtistic GPL) url="http://search.cpan.org/dist/Alien-SDL/" depends=(sdl=1.2.14 perl-file-sharedir perl-capture-tiny) diff --git a/extra/perl-bit-vector/PKGBUILD b/extra/perl-bit-vector/PKGBUILD index ebdc0719d..39a4cf8fa 100644 --- a/extra/perl-bit-vector/PKGBUILD +++ b/extra/perl-bit-vector/PKGBUILD @@ -7,7 +7,7 @@ _cpanname=Bit-Vector pkgver=7.1 pkgrel=3 pkgdesc='Efficient bit vector, set of integers and "big int" math library' -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'LGPL' 'PerlArtistic') url="http://search.cpan.org/dist/${_cpanname}/" depends=('perl-carp-clan' 'perl>=5.10.0') diff --git a/extra/perl-compress-bzip2/PKGBUILD b/extra/perl-compress-bzip2/PKGBUILD index fc142e677..04eb676bf 100644 --- a/extra/perl-compress-bzip2/PKGBUILD +++ b/extra/perl-compress-bzip2/PKGBUILD @@ -5,7 +5,7 @@ _realname=Compress-Bzip2 pkgver=2.09 pkgrel=3 pkgdesc="Interface to Bzip2 compression library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=(GPL2) depends=(perl bzip2) url="http://search.cpan.org/dist/$_realname" diff --git a/extra/perl-crypt-ssleay/PKGBUILD b/extra/perl-crypt-ssleay/PKGBUILD index 37f315f89..9b055e50c 100644 --- a/extra/perl-crypt-ssleay/PKGBUILD +++ b/extra/perl-crypt-ssleay/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-crypt-ssleay pkgver=0.58 pkgrel=3 pkgdesc="OpenSSL glue that provides LWP https support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Crypt-SSLeay" license=('GPL' 'PerlArtistic') depends=('openssl') diff --git a/extra/perl-dbd-mysql/PKGBUILD b/extra/perl-dbd-mysql/PKGBUILD index 42d22d211..8c7987ea3 100644 --- a/extra/perl-dbd-mysql/PKGBUILD +++ b/extra/perl-dbd-mysql/PKGBUILD @@ -7,7 +7,7 @@ _realname=DBD-mysql pkgver=4.019 pkgrel=1 pkgdesc="Perl/CPAN DBD::mysql module for interacting with MySQL via DBD" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'PerlArtistic') url="http://search.cpan.org/dist/${_realname}/" depends=('libmysqlclient' 'perl-dbi' 'perl>=5.14.0') diff --git a/extra/perl-dbd-sqlite/PKGBUILD b/extra/perl-dbd-sqlite/PKGBUILD index 298cc2008..b09ab358f 100644 --- a/extra/perl-dbd-sqlite/PKGBUILD +++ b/extra/perl-dbd-sqlite/PKGBUILD @@ -7,7 +7,7 @@ _cpanname=DBD-SQLite pkgver=1.31 pkgrel=2 pkgdesc="Self-contained RDBMS in a DBI driver" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/${_cpanname}" license=('GPL' 'PerlArtistic') depends=('perl-dbi>=1.61' 'sqlite3') diff --git a/extra/perl-dbi/PKGBUILD b/extra/perl-dbi/PKGBUILD index 42f7a5770..71111f93a 100644 --- a/extra/perl-dbi/PKGBUILD +++ b/extra/perl-dbi/PKGBUILD @@ -7,7 +7,7 @@ _realname=DBI pkgver=1.616 pkgrel=2 pkgdesc="Database independent interface for Perl" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'PerlArtistic') url="http://search.cpan.org/dist/${_realname}/" depends=('perl>=5.12.1') diff --git a/extra/perl-digest-nilsimsa/PKGBUILD b/extra/perl-digest-nilsimsa/PKGBUILD index 40e9ae353..93d9a56da 100644 --- a/extra/perl-digest-nilsimsa/PKGBUILD +++ b/extra/perl-digest-nilsimsa/PKGBUILD @@ -7,7 +7,7 @@ _realname=Digest-Nilsimsa pkgver=0.06 pkgrel=7 pkgdesc="Perl version of Nilsimsa code." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://search.cpan.org/dist/${_realname}/" depends=('perl>=5.10.0') diff --git a/extra/perl-digest-sha1/PKGBUILD b/extra/perl-digest-sha1/PKGBUILD index eaae5e528..f6218022a 100644 --- a/extra/perl-digest-sha1/PKGBUILD +++ b/extra/perl-digest-sha1/PKGBUILD @@ -7,7 +7,7 @@ _realname=Digest-SHA1 pkgver=2.13 pkgrel=2 pkgdesc="Perl interface to the SHA-1 Algorithm" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('PerlArtistic') url="http://search.cpan.org/dist/${_realname}/" depends=('perl>=5.10.0') diff --git a/extra/perl-event/PKGBUILD b/extra/perl-event/PKGBUILD index 47d2ee055..de05e0f6d 100644 --- a/extra/perl-event/PKGBUILD +++ b/extra/perl-event/PKGBUILD @@ -8,7 +8,7 @@ _srcname=Event pkgver=1.20 pkgrel=1 pkgdesc="Framework for GUI events" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('PerlArtistic' 'GPL') url="http://search.cpan.org/dist/${_srcname}/" depends=('perl') diff --git a/extra/perl-fcgi/PKGBUILD b/extra/perl-fcgi/PKGBUILD index b58f0b333..3ef98a39c 100644 --- a/extra/perl-fcgi/PKGBUILD +++ b/extra/perl-fcgi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-fcgi pkgver=0.74 pkgrel=1 pkgdesc="Fast CGI" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/FCGI" license=('GPL' 'PerlArtistic') depends=('perl>=5.14') diff --git a/extra/perl-html-parser/PKGBUILD b/extra/perl-html-parser/PKGBUILD index 7e3b0a701..6d43f820d 100644 --- a/extra/perl-html-parser/PKGBUILD +++ b/extra/perl-html-parser/PKGBUILD @@ -8,7 +8,7 @@ _realname=HTML-Parser pkgver=3.68 pkgrel=2 pkgdesc="Perl HTML parser class" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('PerlArtistic') url="http://search.cpan.org/dist/${_realname}/" depends=('perl-html-tagset' 'perl>=5.12.1') diff --git a/extra/perl-libintl-perl/PKGBUILD b/extra/perl-libintl-perl/PKGBUILD index af266d871..e7061cdba 100644 --- a/extra/perl-libintl-perl/PKGBUILD +++ b/extra/perl-libintl-perl/PKGBUILD @@ -7,7 +7,7 @@ _realname=libintl-perl pkgver=1.20 pkgrel=3 pkgdesc="Perl Module: Localization support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://search.cpan.org/dist/${_realname}/" depends=('gettext' 'perl>=5.10.0') diff --git a/extra/perl-locale-gettext/PKGBUILD b/extra/perl-locale-gettext/PKGBUILD index 6f916e28e..7f320215a 100644 --- a/extra/perl-locale-gettext/PKGBUILD +++ b/extra/perl-locale-gettext/PKGBUILD @@ -8,7 +8,7 @@ _realname=gettext pkgver=1.05 pkgrel=7 pkgdesc="Permits access from Perl to the gettext() family of functions" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'PerlArtistic') url="http://search.cpan.org/dist/${_realname}/" depends=('gettext' 'perl>=5.10.0') diff --git a/extra/perl-net-dns/PKGBUILD b/extra/perl-net-dns/PKGBUILD index 1a4f7c0cc..b676b2524 100644 --- a/extra/perl-net-dns/PKGBUILD +++ b/extra/perl-net-dns/PKGBUILD @@ -7,7 +7,7 @@ _realname=Net-DNS pkgver=0.66 pkgrel=4 pkgdesc="Perl Module: Interface to the DNS resolver." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('PerlArtistic') url="http://search.cpan.org/dist/${_realname}/" depends=('perl-digest-hmac' 'perl-net-ip' 'perl>=5.10.0') diff --git a/extra/perl-net-ssleay/PKGBUILD b/extra/perl-net-ssleay/PKGBUILD index ebb700a16..51eb34b27 100644 --- a/extra/perl-net-ssleay/PKGBUILD +++ b/extra/perl-net-ssleay/PKGBUILD @@ -7,7 +7,7 @@ _cpanname=Net-SSLeay pkgver=1.42 pkgrel=1 pkgdesc="Perl extension for using OpenSSL" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom:BSD') url="http://search.cpan.org/dist/${_cpanname}/" depends=('perl' 'openssl') diff --git a/extra/perl-net-upnp/PKGBUILD b/extra/perl-net-upnp/PKGBUILD index e54c70917..e6187ebf1 100644 --- a/extra/perl-net-upnp/PKGBUILD +++ b/extra/perl-net-upnp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-net-upnp pkgver=1.4.2 pkgrel=3 pkgdesc="Perl Module UPnP" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/~skonno/Net-UPnP-1.4.2/" license=('BSD' 'PerlArtistic') options=('!emptydirs') diff --git a/extra/perl-netaddr-ip/PKGBUILD b/extra/perl-netaddr-ip/PKGBUILD index fa6549515..33fb57a58 100644 --- a/extra/perl-netaddr-ip/PKGBUILD +++ b/extra/perl-netaddr-ip/PKGBUILD @@ -8,7 +8,7 @@ _realname=NetAddr-IP pkgver=4.037 pkgrel=2 pkgdesc="Perl module to manage IP addresses and subnets" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('PerlArtistic' 'GPL') depends=('perl>=5.10.0') options=(!emptydirs) diff --git a/extra/perl-sdl/PKGBUILD b/extra/perl-sdl/PKGBUILD index 29483fdc1..ba580e6ee 100644 --- a/extra/perl-sdl/PKGBUILD +++ b/extra/perl-sdl/PKGBUILD @@ -7,7 +7,7 @@ pkgname=perl-sdl pkgver=2.531 pkgrel=3 pkgdesc="Simple DirectMedia Layer for Perl" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=(LGPL) url="http://sdl.perl.org" depends=(perl-alien-sdl perl-tie-simple diff --git a/extra/perl-template-toolkit/PKGBUILD b/extra/perl-template-toolkit/PKGBUILD index d955edfdd..7e1d939cf 100644 --- a/extra/perl-template-toolkit/PKGBUILD +++ b/extra/perl-template-toolkit/PKGBUILD @@ -7,7 +7,7 @@ _realname=Template-Toolkit pkgver=2.22 pkgrel=4 pkgdesc="Perl template processing system" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('PerlArtistic') url="http://search.cpan.org/dist/${_realname}/" depends=('perl-appconfig' 'perl>=5.10.0') diff --git a/extra/perl-term-readkey/PKGBUILD b/extra/perl-term-readkey/PKGBUILD index 25f9e397d..8b05c1357 100644 --- a/extra/perl-term-readkey/PKGBUILD +++ b/extra/perl-term-readkey/PKGBUILD @@ -8,7 +8,7 @@ _realname=TermReadKey pkgver=2.30.01 pkgrel=4 pkgdesc="Provides simple control over terminal driver modes" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') depends=('perl>=5.10.0' 'glibc') url="http://search.cpan.org/~stsi/${_realname}/" diff --git a/extra/perl-text-iconv/PKGBUILD b/extra/perl-text-iconv/PKGBUILD index acd6932e2..f53a5babb 100644 --- a/extra/perl-text-iconv/PKGBUILD +++ b/extra/perl-text-iconv/PKGBUILD @@ -7,7 +7,7 @@ _realname=Text-Iconv pkgver=1.7 pkgrel=6 pkgdesc="Interface to iconv codeset conversion" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/${_realname}/" license=('GPL' 'PerlArtistic') depends=('perl>=5.10.0') diff --git a/extra/perl-time-hires/PKGBUILD b/extra/perl-time-hires/PKGBUILD index c7bc5a1bd..3f80db457 100644 --- a/extra/perl-time-hires/PKGBUILD +++ b/extra/perl-time-hires/PKGBUILD @@ -6,7 +6,7 @@ pkgname=perl-time-hires pkgver=1.9724 pkgrel=1 pkgdesc="Perl module: high resolution time, sleep, and alarm" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('PerlArtistic') url="http://search.cpan.org/dist/Time-HiRes/" depends=('perl') diff --git a/extra/perl-tk/PKGBUILD b/extra/perl-tk/PKGBUILD index 2a80a320e..4fbeb965a 100644 --- a/extra/perl-tk/PKGBUILD +++ b/extra/perl-tk/PKGBUILD @@ -8,7 +8,7 @@ _cpanname=Tk pkgver=804.029 pkgrel=3 pkgdesc="A graphical user interface toolkit for Perl" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/${_cpanname}" license=('PerlArtistic' 'GPL' 'custom') depends=('libx11' 'libpng' 'libjpeg' 'tk' 'perl') diff --git a/extra/perl-unicode-string/PKGBUILD b/extra/perl-unicode-string/PKGBUILD index c8bcd6c7a..d7589af10 100644 --- a/extra/perl-unicode-string/PKGBUILD +++ b/extra/perl-unicode-string/PKGBUILD @@ -7,7 +7,7 @@ _realname=Unicode-String pkgver=2.09 pkgrel=6 pkgdesc="String of Unicode characters for perl (UCS2/UTF16)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('PerlArtistic') url="http://search.cpan.org/dist/${_realname}/" depends=('perl>=5.10.0') diff --git a/extra/perl-xml-parser/PKGBUILD b/extra/perl-xml-parser/PKGBUILD index 021aa1b05..b059f5723 100644 --- a/extra/perl-xml-parser/PKGBUILD +++ b/extra/perl-xml-parser/PKGBUILD @@ -9,7 +9,7 @@ _realname=XML-Parser pkgver=2.41 pkgrel=1 pkgdesc="Expat-based XML parser module for perl" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'PerlArtistic') url="http://search.cpan.org/dist/${_realname}/" depends=('perl' 'expat') diff --git a/extra/perl-yaml-syck/PKGBUILD b/extra/perl-yaml-syck/PKGBUILD index c2ab5a4f8..e772c2bbb 100644 --- a/extra/perl-yaml-syck/PKGBUILD +++ b/extra/perl-yaml-syck/PKGBUILD @@ -7,7 +7,7 @@ _realname=YAML-Syck pkgver=1.17 pkgrel=2 pkgdesc="Fast, lightweight YAML loader and dumper" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://search.cpan.org/dist/${_realname}/" depends=('perl>=5.10.0') diff --git a/extra/phonon-gstreamer/PKGBUILD b/extra/phonon-gstreamer/PKGBUILD index 203bfc867..18c3813c5 100644 --- a/extra/phonon-gstreamer/PKGBUILD +++ b/extra/phonon-gstreamer/PKGBUILD @@ -4,7 +4,7 @@ pkgname=phonon-gstreamer pkgver=4.5.1 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://phonon.kde.org" pkgdesc="Phonon GStreamer backend" license=('LGPL') diff --git a/extra/phonon-vlc/PKGBUILD b/extra/phonon-vlc/PKGBUILD index 990855949..941f3309b 100644 --- a/extra/phonon-vlc/PKGBUILD +++ b/extra/phonon-vlc/PKGBUILD @@ -4,7 +4,7 @@ pkgname=phonon-vlc pkgver=0.4.1 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://phonon.kde.org" pkgdesc="Phonon VLC backend" license=('LGPL') diff --git a/extra/phonon/PKGBUILD b/extra/phonon/PKGBUILD index b869cdf3b..cc259d36f 100644 --- a/extra/phonon/PKGBUILD +++ b/extra/phonon/PKGBUILD @@ -5,7 +5,7 @@ pkgname=phonon pkgver=4.5.1 pkgrel=2 epoch=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://phonon.kde.org" license=('LGPL') pkgdesc="The multimedia framework for KDE" diff --git a/extra/php-apc/PKGBUILD b/extra/php-apc/PKGBUILD index 019ef8e19..0d9027829 100644 --- a/extra/php-apc/PKGBUILD +++ b/extra/php-apc/PKGBUILD @@ -4,7 +4,7 @@ pkgname=php-apc pkgver=3.1.9 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc='A free, open, and robust framework for caching and optimizing PHP intermediate code' url='http://pecl.php.net/package/APC' depends=('php') diff --git a/extra/php-suhosin/PKGBUILD b/extra/php-suhosin/PKGBUILD index 94a5c9c25..9eccbe76d 100644 --- a/extra/php-suhosin/PKGBUILD +++ b/extra/php-suhosin/PKGBUILD @@ -4,7 +4,7 @@ pkgname=php-suhosin pkgver=0.9.32.1 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc='An advanced protection system for PHP installations' url='http://www.hardened-php.net/suhosin/' license='PHP' diff --git a/extra/php/PKGBUILD b/extra/php/PKGBUILD index bc1c8cbb1..9ea1e7331 100644 --- a/extra/php/PKGBUILD +++ b/extra/php/PKGBUILD @@ -24,7 +24,7 @@ pkgname=('php' pkgver=5.3.8 _suhosinver=5.3.7-0.9.10 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('PHP') url='http://www.php.net' makedepends=('apache' 'imap' 'postgresql-libs' 'libldap' 'postfix' diff --git a/extra/physfs/PKGBUILD b/extra/physfs/PKGBUILD index 0f1c90102..e68e4141b 100644 --- a/extra/physfs/PKGBUILD +++ b/extra/physfs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=physfs pkgver=2.0.2 pkgrel=1 pkgdesc="A library to provide abstract access to various archives" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://icculus.org/physfs/" license=('ZLIB') depends=('zlib' 'readline') diff --git a/extra/pidgin-encryption/PKGBUILD b/extra/pidgin-encryption/PKGBUILD index d48c99c56..7ed71bf5c 100644 --- a/extra/pidgin-encryption/PKGBUILD +++ b/extra/pidgin-encryption/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pidgin-encryption pkgver=3.1 pkgrel=1 pkgdesc="A Pidgin plugin providing transparent RSA encryption using NSS" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://pidgin-encrypt.sourceforge.net/" depends=('pidgin' 'nss') diff --git a/extra/pidgin/PKGBUILD b/extra/pidgin/PKGBUILD index c2c25c33a..41eef8858 100644 --- a/extra/pidgin/PKGBUILD +++ b/extra/pidgin/PKGBUILD @@ -8,7 +8,7 @@ pkgname=('pidgin' 'libpurple' 'finch') pkgver=2.10.0 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pidgin.im/" license=('GPL') makedepends=('startup-notification' 'gtkspell' 'libxss' 'nss' 'libsasl' 'libsm' diff --git a/extra/pilot-link/PKGBUILD b/extra/pilot-link/PKGBUILD index b9b8f20b4..a77ba5dbe 100644 --- a/extra/pilot-link/PKGBUILD +++ b/extra/pilot-link/PKGBUILD @@ -8,7 +8,7 @@ pkgname=pilot-link pkgver=0.12.5 pkgrel=2 pkgdesc="A suite of tools for connecting to PalmOS handheld devices" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL' 'LGPL') depends=('readline>=6.0' 'libpng>=1.4.0' 'libusb-compat' 'popt' 'bluez>=4.59') options=('!libtool') diff --git a/extra/pinentry/PKGBUILD b/extra/pinentry/PKGBUILD index 6aecd3c33..b3e7e7852 100644 --- a/extra/pinentry/PKGBUILD +++ b/extra/pinentry/PKGBUILD @@ -4,7 +4,7 @@ pkgname=pinentry pkgver=0.8.1 pkgrel=3 pkgdesc="a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnupg.org/aegypten2" depends=('ncurses' 'libcap>=2.16') diff --git a/extra/pixman/PKGBUILD b/extra/pixman/PKGBUILD index f02a11779..77f6ab156 100644 --- a/extra/pixman/PKGBUILD +++ b/extra/pixman/PKGBUILD @@ -6,16 +6,22 @@ pkgname=pixman pkgver=0.22.2 pkgrel=1 pkgdesc="Pixman library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org" license=('custom') depends=('glibc') options=('!libtool') -source=(http://xorg.freedesktop.org/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2) -sha1sums=('ad2b828ce4280472f5933d8bb5f0f4d583aed7f3') +source=(http://xorg.freedesktop.org/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2 + pixman-loongson2f.patch) +sha1sums=('ad2b828ce4280472f5933d8bb5f0f4d583aed7f3' + 'ce4d69ea341f21fdc30f6d401ee479cd3571dab3') build() { cd "${srcdir}/${pkgname}-${pkgver}" +# [ "$CARCH" = "mips64el" ] && { +# patch -Np1 -i $srcdir/pixman-loongson2f.patch +# autoreconf -i +# } ./configure --prefix=/usr --disable-static make } diff --git a/extra/pixman/pixman-loongson2f.patch b/extra/pixman/pixman-loongson2f.patch new file mode 100644 index 000000000..15e01cb6b --- /dev/null +++ b/extra/pixman/pixman-loongson2f.patch @@ -0,0 +1,2745 @@ +diff -urN pixman//configure.ac Pixman.Loongson//configure.ac +--- pixman//configure.ac 2010-12-25 18:46:00.018699000 +0800 ++++ Pixman.Loongson//configure.ac 2010-12-25 18:39:15.298778000 +0800 +@@ -264,6 +264,43 @@ + ]) + + dnl =========================================================================== ++dnl Check for Loongson SIMD ++ ++have_loongson_intrinsics=no ++AC_MSG_CHECKING(whether to use Loongson SIMD intrinsics) ++ ++AC_COMPILE_IFELSE([ ++#if defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4)) ++error "Need GCC >= 4.4 for Loongson SIMD compilation" ++#endif ++int main () { ++ /* Test with a loongson SIMD instruction. */ ++ asm volatile ( ".set arch = loongson2f \n\t" "and \$f0, \$f0, \$f0 \n\t" : : : "cc", "memory" ); ++ return 0; ++}], have_loongson_intrinsics=yes) ++ ++ ++AC_ARG_ENABLE(loongson, ++ [AC_HELP_STRING([--disable-loongson], ++ [disable Loongson fast paths])], ++ [enable_loongson=$enableval], [enable_loongson=auto]) ++ ++if test $enable_loongson = no ; then ++ have_loongson_intrinsics=disabled ++fi ++ ++if test $have_loongson_intrinsics = yes ; then ++ AC_DEFINE(USE_LS, 1, [use Loongson compiler intrinsics]) ++fi ++ ++AC_MSG_RESULT($have_loongson_intrinsics) ++if test $enable_loongson = yes && test $have_loongson_intrinsics = no ; then ++ AC_MSG_ERROR([Loongson intrinsics not detected]) ++fi ++ ++AM_CONDITIONAL(USE_LS, test $have_loongson_intrinsics = yes) ++ ++dnl =========================================================================== + dnl Check for MMX + + if test "x$MMX_CFLAGS" = "x" ; then +diff -urN pixman//pixman/Makefile.am Pixman.Loongson//pixman/Makefile.am +--- pixman//pixman/Makefile.am 2010-12-25 18:46:00.025027000 +0800 ++++ Pixman.Loongson//pixman/Makefile.am 2010-12-25 18:39:15.303599000 +0800 +@@ -55,6 +55,19 @@ + pixman-combine.h.template solaris-hwcap.mapfile pixman-x64-mmx-emulation.h + CLEANFILES = pixman-combine32.c pixman-combine64.c pixman-combine32.h pixman-combine64.h + ++# loongson code ++if USE_LS ++noinst_LTLIBRARIES += libpixman-ls.la ++libpixman_ls_la_SOURCES = \ ++ pixman-ls.c ++libpixman_ls_la_CFLAGS = $(DEP_CFLAGS) $(LS_CFLAGS) ++libpixman_ls_la_LIBADD = $(DEP_LIBS) ++libpixman_1_la_LDFLAGS += $(LS_LDFLAGS) ++libpixman_1_la_LIBADD += libpixman-ls.la ++ ++ASM_CFLAGS_ls=$(LS_CFLAGS) ++endif ++ + # mmx code + if USE_MMX + noinst_LTLIBRARIES += libpixman-mmx.la +diff -urN pixman//pixman/pixman-combine-ls.c Pixman.Loongson//pixman/pixman-combine-ls.c +--- pixman//pixman/pixman-combine-ls.c 1970-01-01 08:00:00.000000000 +0800 ++++ Pixman.Loongson//pixman/pixman-combine-ls.c 2010-12-25 18:39:15.344171000 +0800 +@@ -0,0 +1,911 @@ ++static force_inline uint32_t ++combine (const uint32_t *src, const uint32_t *mask) ++{ ++ uint32_t ssrc = *src; ++ ++ if (mask) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f22) ++ load8888r(%0,$f20) ++ expand_alpha($f22,$f22)
++ pix_multiply($f20,$f22)
++ store8888r($f8,%0) ++ :"+r"(ssrc):"r"(*mask):clobber ++ ); ++ } ++ return ssrc; ++} ++ ++static void ++ls_combine_saturate_u (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = dest + width; ++ ++ while (dest < end) ++ { ++ uint32_t s = combine (src, mask); ++ uint32_t d = *dest; ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f22) ++ load8888r(%0,$f20) ++ :"+r"(d):"r"(s):clobber ++ ); ++ ++ uint32_t sa = s >> 24; ++ uint32_t da = ~d >> 24; ++ ++ if (sa > da) ++ { ++ uint32_t dds = DIV_UN8 (da, sa) << 24; ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%0,$f24) ++ expand_alpha($f24,$f24) ++ pix_multiply($f22,$f24) ++ save_to($f22) ++ ::"r"(dds):clobber ++ ); ++ } ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ pix_add($f20,$f22) ++ store8888r($f8,%0) ++ :"=r"(*dest)::clobber ++ ); ++ ++ ++src; ++ ++dest; ++ if (mask) ++ mask++; ++ } ++} ++static void ++ls_combine_out_u (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = dest + width; ++ ++ while (dest < end) ++ { ++ if (mask) ++ { ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ expand_alpha($f22,$f22) ++ pix_multiply($f20,$f22) ++ save_to ($f20) ++ ++ load8888r(%0,$f24) ++ expand_alpha($f24,$f24) ++ negate($f24,$f24) ++ pix_multiply($f20,$f24) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++ mask++; ++ }else { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ ++ ++ load8888r(%1,$f20) ++ ++ load8888r(%0,$f24) ++ expand_alpha($f24,$f24) ++ negate($f24,$f24) ++ pix_multiply($f20,$f24) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src):clobber ++ ); ++ ++ } ++ ++dest; ++ ++src; ++ } ++} ++ ++static void ++ls_combine_out_reverse_u (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = dest + width; ++ ++ while (dest < end) ++ { ++ if (mask) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ expand_alpha($f22,$f22) ++ pix_multiply($f20,$f22) ++ save_to ($f20) ++ ++ load8888r(%0,$f24) ++ expand_alpha($f20,$f20) ++ negate($f20,$f20) ++ pix_multiply($f20,$f24) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++ mask++; ++ }else{ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ ++ load8888r(%1,$f20) ++ ++ load8888r(%0,$f24) ++ expand_alpha($f20,$f20) ++ negate($f20,$f20) ++ pix_multiply($f20,$f24) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src):clobber ++ ); ++ } ++ ++dest; ++ ++src; ++ ++ } ++} ++ ++static void ++ls_combine_out_ca (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = src + width; ++ ++ while (src < end) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ load8888r(%0,$f24) ++ expand_alpha($f24,$f26) ++ negate($f26,$f26) ++ pix_multiply($f20,$f22) ++ save_to($f20) ++ pix_multiply($f20,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++src; ++ ++dest; ++ ++mask; ++ } ++} ++ ++static void ++ls_combine_out_reverse_ca (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = src + width; ++ ++ while (src < end) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ load8888r(%0,$f24) ++ expand_alpha($f20,$f28) ++ pix_multiply($f22,$f28) ++ save_to($f22) ++ negate($f22,$f22) ++ pix_multiply($f24,$f22) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++src; ++ ++dest; ++ ++mask; ++ } ++} ++ ++ ++static void ++ls_combine_atop_u (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = dest + width; ++ ++ while (dest < end) ++ { ++ if (mask) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ expand_alpha($f22,$f22) ++ pix_multiply($f20,$f22) ++ save_to ($f20) ++ ++ load8888r(%0,$f24) ++ expand_alpha($f20,$f26) ++ expand_alpha($f24,$f28) ++ negate($f26,$f26) ++ pix_add_mul($f20,$f28,$f24,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++ mask++; ++ }else { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f20) ++ ++ load8888r(%0,$f24) ++ expand_alpha($f20,$f26) ++ expand_alpha($f24,$f28) ++ negate($f26,$f26) ++ pix_add_mul($f20,$f28,$f24,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src):clobber ++ ); ++ } ++ ++dest; ++ ++src; ++ ++ } ++} ++ ++static void ++ls_combine_atop_reverse_u (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end; ++ ++ end = dest + width; ++ ++ while (dest < end) ++ { ++ if (mask){ ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ expand_alpha($f22,$f22) ++ pix_multiply($f20,$f22) ++ save_to ($f20) ++ ++ load8888r(%0,$f24) ++ expand_alpha($f20,$f26) ++ expand_alpha($f24,$f28) ++ negate($f28,$f28) ++ pix_add_mul($f20,$f28,$f24,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ mask++; ++ }else{ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ ++ load8888r(%1,$f20) ++ ++ load8888r(%0,$f24) ++ expand_alpha($f20,$f26) ++ expand_alpha($f24,$f28) ++ negate($f28,$f28) ++ pix_add_mul($f20,$f28,$f24,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src):clobber ++ ); ++ } ++ ++dest; ++ ++src; ++ } ++} ++ ++ ++static void ++ls_combine_atop_ca (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = src + width; ++ ++ while (src < end) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ load8888r(%0,$f24) ++ expand_alpha($f24,$f26) ++ expand_alpha($f20,$f28) ++ pix_multiply($f20,$f22) ++ save_to($f20) ++ pix_multiply($f22,$f28) ++ save_to($f22) ++ negate($f22,$f22) ++ pix_add_mul($f24,$f22,$f20,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++src; ++ ++dest; ++ ++mask; ++ } ++} ++ ++static void ++ls_combine_atop_reverse_ca (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = src + width; ++ ++ while (src < end) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ load8888r(%0,$f24) ++ expand_alpha($f24,$f26) ++ expand_alpha($f20,$f28) ++ pix_multiply($f20,$f22) ++ save_to($f20) ++ pix_multiply($f22,$f28) ++ save_to($f22) ++ negate($f26,$f26) ++ pix_add_mul($f24,$f22,$f20,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++src; ++ ++dest; ++ ++mask; ++ } ++} ++ ++static void ++ls_combine_xor_u (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = dest + width; ++ ++ while (dest < end) ++ { ++ if (mask) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ expand_alpha($f22,$f22) ++ pix_multiply($f20,$f22) ++ save_to ($f20) ++ ++ ++ load8888r(%0,$f24) ++ expand_alpha($f20,$f26) ++ expand_alpha($f24,$f28) ++ negate($f26,$f26) ++ negate($f28,$f28) ++ pix_add_mul($f20,$f28,$f24,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ mask++; ++ }else{ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f20) ++ ++ load8888r(%0,$f24) ++ expand_alpha($f20,$f26) ++ expand_alpha($f24,$f28) ++ negate($f26,$f26) ++ negate($f28,$f28) ++ pix_add_mul($f20,$f28,$f24,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src):clobber ++ ); ++ } ++ ++dest; ++ ++src; ++ ++ } ++} ++ ++static void ++ls_combine_xor_ca (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = src + width; ++ ++ while (src < end) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ load8888r(%0,$f24) ++ expand_alpha($f24,$f26) ++ expand_alpha($f20,$f28) ++ pix_multiply($f20,$f22) ++ save_to($f20) ++ pix_multiply($f22,$f28) ++ save_to($f22) ++ negate($f26,$f26) ++ negate($f22,$f22) ++ pix_add_mul($f24,$f22,$f20,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++src; ++ ++dest; ++ ++mask; ++ } ++} ++ ++ ++static void ++ls_combine_in_reverse_u (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = dest + width; ++ ++ while (dest < end) ++ { ++ ++ if (mask) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ expand_alpha($f22,$f22) ++ pix_multiply($f20,$f22) ++ save_to ($f20) ++ ++ load8888r(%0,$f24) ++ expand_alpha($f20,$f26) ++ pix_multiply($f24,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ mask++; ++ } else { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f20) ++ ++ load8888r(%0,$f24) ++ expand_alpha($f20,$f26) ++ pix_multiply($f24,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src):clobber ++ ); ++ } ++ ++dest; ++ ++src; ++ } ++} ++ ++static void ++ls_combine_in_reverse_ca (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = src + width; ++ ++ while (src < end) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ load8888r(%0,$f24) ++ expand_alpha($f20,$f20) ++ pix_multiply($f22,$f20) ++ save_to($f26) ++ pix_multiply($f24,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++src; ++ ++dest; ++ ++mask; ++ } ++} ++ ++static void ++ls_combine_in_u (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = dest + width; ++ ++ while (dest < end) ++ { ++ if (mask) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ expand_alpha($f22,$f22) ++ pix_multiply($f20,$f22) ++ save_to ($f20) ++ ++ load8888r(%0,$f24) ++ expand_alpha($f24,$f24) ++ pix_multiply($f20,$f24) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ mask++; ++ } else { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f20) ++ ++ load8888r(%0,$f24) ++ expand_alpha($f24,$f24) ++ pix_multiply($f20,$f24) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src):clobber ++ ); ++ ++ } ++ ++dest; ++ ++src; ++ } ++} ++ ++static void ++ls_combine_in_ca (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = src + width; ++ ++ while (src < end) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ load8888r(%0,$f24) ++ expand_alpha($f24,$f24) ++ pix_multiply($f20,$f22) ++ save_to($f26) ++ pix_multiply($f26,$f24) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++src; ++ ++dest; ++ ++mask; ++ } ++ } ++static void ++ls_combine_src_ca (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = src + width; ++ ++ while (src < end) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ pix_multiply($f20,$f22) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++src; ++ ++mask; ++ ++dest; ++ } ++ ++} ++ ++ ++static void ++ls_combine_over_u (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = dest + width; ++ ++ while (dest < end) ++ { ++ ++ uint32_t ssrc = combine (src, mask); ++ uint32_t a = ssrc >> 24; ++ ++ if (a == 0xff) ++ { ++ *dest = ssrc; ++ } ++ else if (ssrc) ++ { ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f20) ++ ++ expand_alpha($f20,$f24) ++ load8888r(%0,$f26) ++ over($f20,$f24,$f26) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(ssrc):clobber ++ ); ++ } ++ ++ ++dest; ++ ++src; ++ if (mask) ++ ++mask; ++ } ++} ++ ++static void ++ls_combine_over_reverse_u (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = dest + width; ++ ++ while (dest < end) ++ { ++ if (mask) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ expand_alpha($f22,$f22) ++ pix_multiply($f20,$f22) ++ save_to ($f20) ++ ++ load8888r(%0,$f26) ++ expand_alpha($f26,$f28) ++ over($f26,$f28,$f20) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ mask++; ++ }else{ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f20) ++ ++ load8888r(%0,$f26) ++ expand_alpha($f26,$f28) ++ over($f26,$f28,$f20) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src):clobber ++ ); ++ ++ } ++ ++dest; ++ ++src; ++ } ++} ++ ++ ++static void ++ls_combine_over_ca (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = src + width; ++ ++ while (src < end) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%0,$f20) ++ load8888r(%1,$f22) ++ load8888r(%2,$f24) ++ expand_alpha($f22,$f26) ++ in_over($f22,$f26,$f24,$f20) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++src; ++ ++dest; ++ ++mask; ++ } ++ ++} ++ ++static void ++ls_combine_over_reverse_ca (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = src + width; ++ ++ while (src < end) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%0,$f20) ++ load8888r(%1,$f22) ++ load8888r(%2,$f24) ++ in($f22,$f24) ++ save_to($f22) ++ expand_alpha($f20,$f28) ++ over($f20,$f28,$f22) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++src; ++ ++dest; ++ ++mask; ++ } ++ ++} ++ ++static void ++ls_combine_add_u (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = dest + width; ++ ++ while (dest < end) ++ { ++ ++ if (mask) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f22) ++ load8888r(%1,$f20) ++ expand_alpha($f22,$f22) ++ pix_multiply($f20,$f22) ++ save_to ($f20) ++ ++ load8888r(%0,$f22) ++ pix_add($f20,$f22) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ mask++; ++ }else{ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f20) ++ ++ load8888r(%0,$f22) ++ pix_add($f20,$f22) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src):clobber ++ ); ++ ++ } ++ ++dest; ++ ++src; ++ } ++} ++ ++static void ++ls_combine_add_ca (pixman_implementation_t *imp, ++ pixman_op_t op, ++ uint32_t * dest, ++ const uint32_t * src, ++ const uint32_t * mask, ++ int width) ++{ ++ const uint32_t *end = src + width; ++ ++ while (src < end) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%0,$f20) ++ load8888r(%1,$f22) ++ load8888r(%2,$f24) ++ pix_multiply($f22,$f24) ++ save_to($f22) ++ pix_add($f22,$f20) ++ store8888r($f8,%0) ++ :"+r"(*dest):"r"(*src),"r"(*mask):clobber ++ ); ++ ++src; ++ ++dest; ++ ++mask; ++ } ++} +diff -urN pixman//pixman/pixman-composite-ls.c Pixman.Loongson//pixman/pixman-composite-ls.c +--- pixman//pixman/pixman-composite-ls.c 1970-01-01 08:00:00.000000000 +0800 ++++ Pixman.Loongson//pixman/pixman-composite-ls.c 2010-12-25 18:39:15.356667000 +0800 +@@ -0,0 +1,967 @@ ++static void ++ls_composite_over_x888_8_8888 (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ ++ uint32_t *src, *src_line; ++ uint32_t *dst, *dst_line; ++ uint8_t *mask, *mask_line; ++ int src_stride, mask_stride, dst_stride; ++ uint32_t m; ++ uint32_t s, d; ++ int32_t w; ++ ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint32_t, dst_stride, dst_line, 1); ++ PIXMAN_IMAGE_GET_LINE (mask_image, mask_x, mask_y, uint8_t, mask_stride, mask_line, 1); ++ PIXMAN_IMAGE_GET_LINE (src_image, src_x, src_y, uint32_t, src_stride, src_line, 1); ++ ++ while (height--) ++ { ++ src = src_line; ++ src_line += src_stride; ++ dst = dst_line; ++ dst_line += dst_stride; ++ mask = mask_line; ++ mask_line += mask_stride; ++ ++ w = width; ++ while (w--) ++ { ++ m = *mask++; ++ if (m) ++ { ++ s = *src | 0xff000000; ++ ++ if (m == 0xff) ++ { ++ *dst = s; ++ } ++ else ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%0,$f20) ++ load8888r(%1,$f22) ++ load8888r(%2,$f24) ++ expand_alpha($f22,$f26) ++ expand_alpha_rev($f24,$f28) ++ in_over($f22,$f26,$f28,$f20) ++ store8888r($f8,%0) ++ :"+r"(*dst):"r"(s),"r"(m):clobber ++ ); ++ ++// __m64 sa = expand_alpha (s); ++// __m64 vm = expand_alpha_rev (to_m64 (m)); ++// __m64 vdest = in_over (s, sa, vm, load8888 (*dst)); ++// *dst = store8888 (vdest); ++ ++ } ++ } ++ src++; ++ dst++; ++ } ++ } ++} ++ ++ ++ ++ ++ ++static void ++ls_composite_over_8888_8888 (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ uint32_t *dst_line, *dst; ++ uint32_t *src_line, *src; ++ uint32_t s; ++ int dst_stride, src_stride; ++ uint8_t a; ++ int32_t w; ++ ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint32_t, dst_stride, dst_line, 1); ++ PIXMAN_IMAGE_GET_LINE (src_image, src_x, src_y, uint32_t, src_stride, src_line, 1); ++ ++ while (height--) ++ { ++ dst = dst_line; ++ dst_line += dst_stride; ++ src = src_line; ++ src_line += src_stride; ++ w = width; ++ ++ while (w--) ++ { ++ s = *src; ++ a = s >> 24; ++ ++ if (a == 0xff) ++ { ++ *dst = s; ++ } ++ else if (s) ++ { ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f24) ++ load8888r(%0,$f20) ++ expand_alpha($f24,$f26) ++ over($f24,$f26,$f20) ++ store8888r($f8,%0) ++ :"+r"(*dst):"r"(*src):clobber ++ ); ++ } ++ dst++; ++ src++; ++ ++ } ++ } ++} ++ ++ ++static void ++ls_composite_over_8888_n_8888 (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ uint32_t *dst_line, *dst; ++ uint32_t *src_line, *src; ++ uint32_t mask; ++ __m64 vmask; ++ int dst_stride, src_stride; ++ int32_t w; ++ __m64 srca; ++ ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint32_t, dst_stride, dst_line, 1); ++ PIXMAN_IMAGE_GET_LINE (src_image, src_x, src_y, uint32_t, src_stride, src_line, 1); ++ ++ mask = _pixman_image_get_solid (mask_image, dst_image->bits.format); ++ mask = mask | mask >> 8 | mask >> 16 | mask >> 24; ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888(%1,$f24) ++ store64a($f24,%0) ++ :"=m"(vmask):"m"(mask):clobber ++ ); ++ ++ srca = ls_4x00ff; ++ ++ while (height--) ++ { ++ dst = dst_line; ++ dst_line += dst_stride; ++ src = src_line; ++ src_line += src_stride; ++ w = width; ++ ++ while (w) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f20) ++ load8888r(%0,$f22) ++ expand_alpha($f20,$f28) ++ in_over($f20,$f28,$f24,$f22) ++ store8888r($f8,%0) ++ :"+r"(*dst):"r"(*src):clobber ++ ); ++ ++ w--; ++ dst++; ++ src++; ++ } ++ } ++} ++ ++static void ++ls_composite_over_n_8888 (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ uint32_t src; ++ uint32_t *dst_line, *dst; ++ int32_t w; ++ int dst_stride; ++ __m64 vsrc, vsrca; ++ ++ src = _pixman_image_get_solid (src_image, dst_image->bits.format); ++ ++ if (src == 0) ++ return; ++ ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint32_t, dst_stride, dst_line, 1); ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f24) ++ store64($f24,%0) ++ expand_alpha($f24,$f26) ++ store64($f26,%1) ++ :"=m"(vsrc), "=m"(vsrca):"r"(src):clobber ++ ); ++ ++ while (height--) ++ { ++ dst = dst_line; ++ dst_line += dst_stride; ++ w = width; ++ ++ while (w) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%0,$f28) ++ over($f24,$f26,$f28) ++ store8888r($f8,%0) ++ :"+r"(*dst)::clobber ++ ); ++ ++ w--; ++ dst++; ++ } ++ } ++} ++ ++static void ++ls_composite_over_n_8888_8888_ca (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ uint32_t src, srca; ++ uint32_t *dst_line; ++ uint32_t *mask_line; ++ int dst_stride, mask_stride; ++ __m64 vsrc, vsrca; ++ ++ src = _pixman_image_get_solid (src_image, dst_image->bits.format); ++ ++ srca = src >> 24; ++ if (src == 0) ++ return; ++ ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint32_t, dst_stride, dst_line, 1); ++ PIXMAN_IMAGE_GET_LINE (mask_image, mask_x, mask_y, uint32_t, mask_stride, mask_line, 1); ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f24) ++ store64($f24,%0) ++ expand_alpha($f24,$f26) ++ store64($f26,%1) ++ :"=m"(vsrc), "=m"(vsrca):"r"(src):clobber ++ ); ++ ++ while (height--) ++ { ++ int twidth = width; ++ uint32_t *p = (uint32_t *)mask_line; ++ uint32_t *q = (uint32_t *)dst_line; ++ ++ while (twidth) ++ { ++ ++ if (*p) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%0,$f28) ++ load8888r(%1,$f20) ++ in_over($f24,$f26,$f20,$f28) ++ store8888r($f8,%0) ++ :"+r"(*q):"r"(*p):clobber ++ ); ++ } ++ twidth--; ++ p++; ++ q++; ++ } ++ ++ dst_line += dst_stride; ++ mask_line += mask_stride; ++ } ++} ++ ++ ++static void ++ls_composite_over_n_8_8888 (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ uint32_t src, srca; ++ uint32_t *dst_line, *dst; ++ uint8_t *mask_line, *mask; ++ int dst_stride, mask_stride; ++ int32_t w; ++ __m64 vsrc, vsrca; ++ uint64_t srcsrc; ++ ++ src = _pixman_image_get_solid (src_image, dst_image->bits.format); ++ ++ srca = src >> 24; ++ if (src == 0) ++ return; ++ ++ srcsrc = (uint64_t)src << 32 | src; ++ ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint32_t, dst_stride, dst_line, 1); ++ PIXMAN_IMAGE_GET_LINE (mask_image, mask_x, mask_y, uint8_t, mask_stride, mask_line, 1); ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f24) ++ store64a($f24,%0) ++ expand_alpha($f24,$f26) ++ store64a($f26,%1) ++ :"=m"(vsrc), "=m"(vsrca):"r"(src):clobber ++ ); ++ ++ while (height--) ++ { ++ dst = dst_line; ++ dst_line += dst_stride; ++ mask = mask_line; ++ mask_line += mask_stride; ++ w = width; ++ ++ while (w) ++ { ++ uint32_t m = *mask; ++ ++ if (m) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%0,$f20) ++ load32r(%1,$f22) ++ expand_alpha_rev($f22,$f28) ++ in_over($f24,$f26,$f28,$f20) ++ store8888r($f8,%0) ++ :"+r"(*dst):"r"(m):clobber ++ ); ++ } ++ ++ w--; ++ mask++; ++ dst++; ++ } ++ } ++ ++} ++ ++static void ++ls_composite_over_x888_n_8888 (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ uint32_t *dst_line, *dst; ++ uint32_t *src_line, *src; ++ uint32_t mask; ++ __m64 vmask; ++ int dst_stride, src_stride; ++ int32_t w; ++ __m64 srca; ++ ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint32_t, dst_stride, dst_line, 1); ++ PIXMAN_IMAGE_GET_LINE (src_image, src_x, src_y, uint32_t, src_stride, src_line, 1); ++ mask = _pixman_image_get_solid (mask_image, dst_image->bits.format); ++ ++ mask &= 0xff000000; ++ mask = mask | mask >> 8 | mask >> 16 | mask >> 24; ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f24) ++ store64a($f24,%0) ++ :"=m"(vmask):"r"(mask):clobber ++ ); ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load64a(%1,$f26) ++ store64a($f26,%0) ++ :"=m"(srca):"m"(ls_4x00ff):clobber ++ ); ++ ++ while (height--) ++ { ++ dst = dst_line; ++ dst_line += dst_stride; ++ src = src_line; ++ src_line += src_stride; ++ w = width; ++ ++ while (w) ++ { ++ uint32_t src_tmp = *src | 0xff000000; ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f20) ++ load8888r(%0,$f22) ++ in_over($f20,$f26,$f24,$f22) ++ store8888r($f8,%0) ++ :"+r"(*dst):"r"(src_tmp):clobber ++ ); ++ ++ w--; ++ dst++; ++ src++; ++ } ++ } ++} ++ ++ ++static void ++ls_composite_over_8888_0565 (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ uint16_t *dst_line, *dst; ++ uint32_t d; ++ uint32_t *src_line, *src, s; ++ uint8_t a; ++ int dst_stride, src_stride; ++ int32_t w; ++ ++ PIXMAN_IMAGE_GET_LINE (src_image, src_x, src_y, uint32_t, src_stride, src_line, 1); ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint16_t, dst_stride, dst_line, 1); ++ ++ while (height--) ++ { ++ dst = dst_line; ++ dst_line += dst_stride; ++ src = src_line; ++ src_line += src_stride; ++ w = width; ++ ++ while (w--) ++ { ++ s = *src++; ++ a = s >> 24; ++ if (s) ++ { ++ if (a == 0xff) ++ { ++ d = s; ++ } ++ else ++ { ++ d = *dst; ++ d = CONVERT_0565_TO_0888 (d); ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f24) ++ load8888r(%0,$f20) ++ expand_alpha($f24,$f26) ++ over($f24,$f26,$f20) ++ store8888r($f8,%0) ++ :"+r"(d):"r"(s):clobber ++ ); ++ ++ ++ } ++ *dst = CONVERT_8888_TO_0565 (d); ++ } ++ dst++; ++ } ++ } ++} ++ ++static void ++ls_composite_over_n_0565 (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ uint32_t src; ++ uint32_t d; ++ uint16_t *dst_line, *dst; ++ int32_t w; ++ int dst_stride; ++ __m64 vsrc, vsrca; ++ ++ src = _pixman_image_get_solid (src_image, dst_image->bits.format); ++ ++ if (src == 0) ++ return; ++ ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint16_t, dst_stride, dst_line, 1); ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f24) ++ store64a($f24,%0) ++ expand_alpha($f24,$f26) ++ store64a($f26,%1) ++ :"=m"(vsrc), "=m"(vsrca):"r"(src):clobber ++ ); ++ ++ while (height--) ++ { ++ dst = dst_line; ++ dst_line += dst_stride; ++ w = width; ++ ++ while (w) ++ { ++ ++ d = *dst; ++ d = CONVERT_0565_TO_0888 (d); ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%0,$f20) ++ ++ over($f24,$f26,$f20) ++ store8888r($f8,%0) ++ :"+r"(d)::clobber ++ ); ++ ++ *dst = CONVERT_8888_TO_0565 (d); ++ ++ w--; ++ dst++; ++ } ++ } ++} ++ ++static void ++ls_composite_over_n_8_0565 (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ uint32_t src, srca, m, d; ++ uint16_t *dst_line, *dst; ++ uint8_t *mask_line, *mask; ++ int dst_stride, mask_stride; ++ int32_t w; ++ __m64 vsrc, vsrca; ++ ++ src = _pixman_image_get_solid (src_image, dst_image->bits.format); ++ ++ srca = src >> 24; ++ if (src == 0) ++ return; ++ ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint16_t, dst_stride, dst_line, 1); ++ PIXMAN_IMAGE_GET_LINE (mask_image, mask_x, mask_y, uint8_t, mask_stride, mask_line, 1); ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f24) ++ store64a($f24,%0) ++ expand_alpha($f24,$f26) ++ store64a($f26,%1) ++ :"=m"(vsrc), "=m"(vsrca):"r"(src):clobber ++ ); ++ ++ while (height--) ++ { ++ dst = dst_line; ++ dst_line += dst_stride; ++ mask = mask_line; ++ mask_line += mask_stride; ++ w = width; ++ ++ while (w) ++ { ++ m = *mask; ++ d = *dst; ++ ++ if (m) ++ { ++ ++ d = CONVERT_0565_TO_0888 (d); ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%0,$f20) ++ load32r(%1,$f22) ++ expand_alpha_rev($f22,$f28) ++ in_over($f24,$f26,$f28,$f20) ++ store8888r($f8,%0) ++ :"+r"(d):"r"(m):clobber ++ ); ++ ++ *dst = CONVERT_8888_TO_0565 (d); ++ ++ } ++ ++ w--; ++ mask++; ++ dst++; ++ } ++ } ++} ++ ++static void ++ls_composite_over_n_8888_0565_ca (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ uint32_t src, srca, m, d; ++ uint16_t *dst_line; ++ uint32_t *mask_line; ++ int dst_stride, mask_stride; ++ __m64 vsrc, vsrca; ++ ++ src = _pixman_image_get_solid (src_image, dst_image->bits.format); ++ ++ srca = src >> 24; ++ if (src == 0) ++ return; ++ ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint16_t, dst_stride, dst_line, 1); ++ PIXMAN_IMAGE_GET_LINE (mask_image, mask_x, mask_y, uint32_t, mask_stride, mask_line, 1); ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f24) ++ store64a($f24,%0) ++ expand_alpha($f24,$f26) ++ store64a($f26,%1) ++ :"=m"(vsrc), "=m"(vsrca):"r"(src):clobber ++ ); ++ ++ while (height--) ++ { ++ int twidth = width; ++ uint32_t *p = (uint32_t *)mask_line; ++ uint16_t *q = (uint16_t *)dst_line; ++ ++ while (twidth) ++ { ++ ++ m = *(uint32_t *)p; ++ d = *q; ++ ++ if (m) ++ { ++ ++ d = CONVERT_0565_TO_0888 (d); ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%0,$f20) ++ load8888r(%1,$f22) ++ in_over($f24,$f26,$f22,$f20) ++ store8888r($f8,%0) ++ :"+r"(d):"r"(m):clobber ++ ); ++ ++ *q = CONVERT_8888_TO_0565 (d); ++ ++ } ++ ++ twidth--; ++ p++; ++ q++; ++ } ++ ++ mask_line += mask_stride; ++ dst_line += dst_stride; ++ } ++} ++static void ++ls_composite_over_pixbuf_8888 (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ uint32_t *dst_line, *dst; ++ uint32_t *src_line, *src; ++ int dst_stride, src_stride; ++ int32_t w; ++ ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint32_t, dst_stride, dst_line, 1); ++ PIXMAN_IMAGE_GET_LINE (src_image, src_x, src_y, uint32_t, src_stride, src_line, 1); ++ ++#if 0 ++ /* FIXME */ ++ assert (src_image->drawable == mask_image->drawable); ++#endif ++ ++ while (height--) ++ { ++ dst = dst_line; ++ dst_line += dst_stride; ++ src = src_line; ++ src_line += src_stride; ++ w = width; ++ ++ while (w) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f22) ++ load8888r(%0,$f20) ++ over_rev_non_pre($f22,$f20) ++ store8888r($f8,%0) ++ :"+r"(*dst):"r"(*src):clobber ++ ); ++ ++ w--; ++ dst++; ++ src++; ++ } ++ } ++} ++static void ++ls_composite_over_pixbuf_0565 (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ uint16_t *dst_line, *dst; ++ uint32_t *src_line, *src, d; ++ int dst_stride, src_stride; ++ int32_t w; ++ ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint16_t, dst_stride, dst_line, 1); ++ PIXMAN_IMAGE_GET_LINE (src_image, src_x, src_y, uint32_t, src_stride, src_line, 1); ++ ++#if 0 ++ /* FIXME */ ++ assert (src_image->drawable == mask_image->drawable); ++#endif ++ ++ while (height--) ++ { ++ dst = dst_line; ++ dst_line += dst_stride; ++ src = src_line; ++ src_line += src_stride; ++ w = width; ++ ++ while (w) ++ { ++ ++ d = *dst; ++ d = CONVERT_0565_TO_0888 (d); ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%1,$f20) ++ load8888r(%0,$f24) ++ over_rev_non_pre($f20,$f24) ++ store8888r($f8,%0) ++ :"+r"(d):"r"(*src):clobber ++ ); ++ ++ *dst = CONVERT_8888_TO_0565 (d); ++ ++ w--; ++ dst++; ++ src++; ++ } ++ } ++} ++ ++static void ++ls_composite_src_n_8_8888 (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ uint32_t src, srca; ++ uint32_t *dst_line, *dst, m; ++ uint8_t *mask_line, *mask; ++ int dst_stride, mask_stride; ++ int32_t w; ++ __m64 vsrc, vsrca; ++ uint64_t srcsrc; ++ ++ src = _pixman_image_get_solid (src_image, dst_image->bits.format); ++ ++ srca = src >> 24; ++ if (src == 0) ++ { ++ pixman_fill_ls (dst_image->bits.bits, dst_image->bits.rowstride, ++ PIXMAN_FORMAT_BPP (dst_image->bits.format), ++ dest_x, dest_y, width, height, 0); ++ return; ++ } ++ ++ srcsrc = (uint64_t)src << 32 | src; ++ ++ PIXMAN_IMAGE_GET_LINE (dst_image, dest_x, dest_y, uint32_t, dst_stride, dst_line, 1); ++ PIXMAN_IMAGE_GET_LINE (mask_image, mask_x, mask_y, uint8_t, mask_stride, mask_line, 1); ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load8888r(%2,$f24) ++ store64a($f24,%0) ++ expand_alpha($f24,$f26) ++ store64a($f26,%1) ++ :"=m"(vsrc), "=m"(vsrca):"r"(src):clobber ++ ); ++ while (height--) ++ { ++ dst = dst_line; ++ dst_line += dst_stride; ++ mask = mask_line; ++ mask_line += mask_stride; ++ w = width; ++ ++ while (w) ++ { ++ m = *mask; ++ ++ if (m) ++ { ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ load32r(%1,$f20) ++ expand_alpha_rev($f20,$f28) ++ in($f24,$f28) ++ store8888r($f8,%0) ++ :"=r"(*dst):"r"(m):clobber ++ ); ++ ++ } ++ else ++ { ++ *dst = 0; ++ } ++ ++ w--; ++ mask++; ++ dst++; ++ } ++ } ++} +diff -urN pixman//pixman/pixman-cpu.c Pixman.Loongson//pixman/pixman-cpu.c +--- pixman//pixman/pixman-cpu.c 2010-12-25 18:46:00.073234000 +0800 ++++ Pixman.Loongson//pixman/pixman-cpu.c 2010-12-25 18:39:15.360337000 +0800 +@@ -579,7 +579,9 @@ + if (pixman_have_mmx ()) + return _pixman_implementation_create_mmx (); + #endif +- ++#ifdef USE_LS ++ return _pixman_implementation_create_ls (); ++#endif + #ifdef USE_ARM_NEON + if (pixman_have_arm_neon ()) + return _pixman_implementation_create_arm_neon (); +diff -urN pixman//pixman/pixman-ls.c Pixman.Loongson//pixman/pixman-ls.c +--- pixman//pixman/pixman-ls.c 1970-01-01 08:00:00.000000000 +0800 ++++ Pixman.Loongson//pixman/pixman-ls.c 2010-12-25 18:39:15.386759000 +0800 +@@ -0,0 +1,538 @@ ++/* ++* Based on pixman-mmx.c ++* Implemented for loongson 2F only. ++* Free software based on GPL licence. ++* Copyright 2010 WG Ge. ++*/ ++ ++#ifdef HAVE_CONFIG_H ++#include <config.h> ++#endif ++#include <stdlib.h> ++#include <string.h> ++#include <math.h> ++#include <limits.h> ++#include <stdio.h> ++#include "pixman-private.h" ++#include "pixman-combine32.h" ++#include "primitive.h" ++ ++#define __m64 __attribute__ ((aligned (8))) uint64_t ++#define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v ++#define DECLARE_ALIGNED_8(t, v, ...) DECLARE_ALIGNED(8, t, v) ++ ++DECLARE_ALIGNED_8 (const uint64_t, ls_4x00ff ) = 0x00ff00ff00ff00ffULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_4x0080 ) = 0x0080008000800080ULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_565_rgb ) = 0x000001f0003f001fULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_565_unpack_multiplier ) = 0x0000008404100840ULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_565_r ) = 0x000000f800000000ULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_565_g ) = 0x0000000000fc0000ULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_565_b ) = 0x00000000000000f8ULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_mask_0 ) = 0xffffffffffff0000ULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_mask_1 ) = 0xffffffff0000ffffULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_mask_2 ) = 0xffff0000ffffffffULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_mask_3 ) = 0x0000ffffffffffffULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_full_alpha ) = 0x00ff000000000000ULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_ffff0000ffff0000 ) = 0xffff0000ffff0000ULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_0000ffff00000000 ) = 0x0000ffff00000000ULL; ++DECLARE_ALIGNED_8 (const uint64_t, ls_000000000000ffff ) = 0x000000000000ffffULL; ++ ++ ++pixman_bool_t ++pixman_fill_ls (uint32_t *bits, ++ int stride, ++ int bpp, ++ int x, ++ int y, ++ int width, ++ int height, ++ uint32_t xor) ++{ ++ uint64_t fill; ++ uint32_t byte_width; ++ uint8_t *byte_line; ++ ++ ++ ++ if (bpp != 16 && bpp != 32 && bpp != 8) ++ return FALSE; ++ ++ if (bpp == 8) ++ { ++ stride = stride * (int) sizeof (uint32_t) / 1; ++ byte_line = (uint8_t *)(((uint8_t *)bits) + stride * y + x); ++ byte_width = width; ++ stride *= 1; ++ xor = (xor & 0xff) * 0x01010101; ++ } ++ else if (bpp == 16) ++ { ++ stride = stride * (int) sizeof (uint32_t) / 2; ++ byte_line = (uint8_t *)(((uint16_t *)bits) + stride * y + x); ++ byte_width = 2 * width; ++ stride *= 2; ++ xor = (xor & 0xffff) * 0x00010001; ++ } ++ else ++ { ++ stride = stride * (int) sizeof (uint32_t) / 4; ++ byte_line = (uint8_t *)(((uint32_t *)bits) + stride * y + x); ++ byte_width = 4 * width; ++ stride *= 4; ++ } ++ ++ fill = ((uint64_t)xor << 32) | xor; ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ "ldc1 $f24, %0 \n\t" ++ ::"m"(fill):"$f24" ++ ); ++ while (height--) ++ { ++ int w; ++ uint8_t *d = byte_line; ++ ++ byte_line += stride; ++ w = byte_width; ++ ++ while (w >= 1 && ((unsigned long)d & 1)) ++ { ++ *(uint8_t *)d = (xor & 0xff); ++ w--; ++ d++; ++ } ++ ++ while (w >= 2 && ((unsigned long)d & 3)) ++ { ++ *(uint16_t *)d = xor; ++ w -= 2; ++ d += 2; ++ } ++ ++ while (w >= 4 && ((unsigned long)d & 7)) ++ { ++ *(uint32_t *)d = xor; ++ ++ w -= 4; ++ d += 4; ++ } ++ ++ while (w >= 64) ++ { ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ "dmfc1 $8, $f24 \n\t" ++ "sd $8 , (%0) \n\t" ++ "sd $8 , 8(%0) \n\t" ++ "sd $8 , 16(%0) \n\t" ++ "sd $8 , 24(%0) \n\t" ++ "sd $8 , 32(%0) \n\t" ++ "sd $8 , 40(%0) \n\t" ++ "sd $8 , 48(%0) \n\t" ++ "sd $8 , 56(%0) \n\t" ++ ::"r"(d):"$8","memory","$f24" ++ ); ++ w -= 64; ++ d += 64; ++ } ++ ++ while (w >= 4) ++ { ++ *(uint32_t *)d = xor; ++ ++ w -= 4; ++ d += 4; ++ } ++ while (w >= 2) ++ { ++ *(uint16_t *)d = xor; ++ w -= 2; ++ d += 2; ++ } ++ while (w >= 1) ++ { ++ *(uint8_t *)d = (xor & 0xff); ++ w--; ++ d++; ++ } ++ ++ } ++ return TRUE; ++} ++ ++static pixman_bool_t ++pixman_blt_ls (uint32_t *src_bits, ++ uint32_t *dst_bits, ++ int src_stride, ++ int dst_stride, ++ int src_bpp, ++ int dst_bpp, ++ int src_x, ++ int src_y, ++ int dst_x, ++ int dst_y, ++ int width, ++ int height) ++{ ++ uint8_t * src_bytes; ++ uint8_t * dst_bytes; ++ int byte_width; ++ ++ if (src_bpp != dst_bpp) ++ return FALSE; ++ ++ if (src_bpp == 16) ++ { ++ src_stride = src_stride * (int) sizeof (uint32_t) / 2; ++ dst_stride = dst_stride * (int) sizeof (uint32_t) / 2; ++ src_bytes = (uint8_t *)(((uint16_t *)src_bits) + src_stride * (src_y) + (src_x)); ++ dst_bytes = (uint8_t *)(((uint16_t *)dst_bits) + dst_stride * (dst_y) + (dst_x)); ++ byte_width = 2 * width; ++ src_stride *= 2; ++ dst_stride *= 2; ++ } ++ else if (src_bpp == 32) ++ { ++ src_stride = src_stride * (int) sizeof (uint32_t) / 4; ++ dst_stride = dst_stride * (int) sizeof (uint32_t) / 4; ++ src_bytes = (uint8_t *)(((uint32_t *)src_bits) + src_stride * (src_y) + (src_x)); ++ dst_bytes = (uint8_t *)(((uint32_t *)dst_bits) + dst_stride * (dst_y) + (dst_x)); ++ byte_width = 4 * width; ++ src_stride *= 4; ++ dst_stride *= 4; ++ } ++ else ++ { ++ return FALSE; ++ } ++ ++ while (height--) ++ { ++ int w; ++ uint8_t *s = src_bytes; ++ uint8_t *d = dst_bytes; ++ src_bytes += src_stride; ++ dst_bytes += dst_stride; ++ w = byte_width; ++ ++ while (w >= 2 && ((unsigned long)d & 3)) ++ { ++ *(uint16_t *)d = *(uint16_t *)s; ++ w -= 2; ++ s += 2; ++ d += 2; ++ } ++ ++ while (w >= 4 && ((unsigned long)d & 7)) ++ { ++ *(uint32_t *)d = *(uint32_t *)s; ++ ++ w -= 4; ++ s += 4; ++ d += 4; ++ } ++ if ((unsigned long)s & 7) ++{ ++ while (w >= 64) ++ { ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ "uld $8 , (%1) \n\t" ++ "uld $9 , 8(%1) \n\t" ++ "uld $10, 16(%1) \n\t" ++ "uld $11, 24(%1) \n\t" ++ "sd $8 , (%0) \n\t" ++ "sd $9 , 8(%0) \n\t" ++ "sd $10, 16(%0) \n\t" ++ "sd $11, 24(%0) \n\t" ++ ++ "uld $8 , 32(%1) \n\t" ++ "uld $9 , 40(%1) \n\t" ++ "uld $10, 48(%1) \n\t" ++ "uld $11, 56(%1) \n\t" ++ "sd $8 , 32(%0) \n\t" ++ "sd $9 , 40(%0) \n\t" ++ "sd $10, 48(%0) \n\t" ++ "sd $11, 56(%0) \n\t" ++ ::"r"(d),"r"(s):"$8","$9","$10","$11","memory" ++ ); ++ w -= 64; ++ s += 64; ++ d += 64; ++ } ++} ++else ++{ ++ while (w >= 64) ++ { ++ ++ __asm__ volatile ( ++ ".set arch=loongson2f \n\t" ++ "ld $8 , (%1) \n\t" ++ "ld $9 , 8(%1) \n\t" ++ "ld $10, 16(%1) \n\t" ++ "ld $11, 24(%1) \n\t" ++ "sd $8 , (%0) \n\t" ++ "sd $9 , 8(%0) \n\t" ++ "sd $10, 16(%0) \n\t" ++ "sd $11, 24(%0) \n\t" ++ ++ "ld $8 , 32(%1) \n\t" ++ "ld $9 , 40(%1) \n\t" ++ "ld $10, 48(%1) \n\t" ++ "ld $11, 56(%1) \n\t" ++ "sd $8 , 32(%0) \n\t" ++ "sd $9 , 40(%0) \n\t" ++ "sd $10, 48(%0) \n\t" ++ "sd $11, 56(%0) \n\t" ++ ::"r"(d),"r"(s):"$8","$9","$10","$11","memory" ++ ); ++ w -= 64; ++ s += 64; ++ d += 64; ++ } ++} ++ ++ while (w >= 4) ++ { ++ *(uint32_t *)d = *(uint32_t *)s; ++ ++ w -= 4; ++ s += 4; ++ d += 4; ++ } ++ if (w >= 2) ++ { ++ *(uint16_t *)d = *(uint16_t *)s; ++ w -= 2; ++ s += 2; ++ d += 2; ++ } ++ } ++ return TRUE; ++} ++ ++ ++#include "pixman-composite-ls.c" ++#include "pixman-combine-ls.c" ++ ++static pixman_bool_t ++ls_blt (pixman_implementation_t *imp, ++ uint32_t * src_bits, ++ uint32_t * dst_bits, ++ int src_stride, ++ int dst_stride, ++ int src_bpp, ++ int dst_bpp, ++ int src_x, ++ int src_y, ++ int dst_x, ++ int dst_y, ++ int width, ++ int height) ++{ ++ if (!pixman_blt_ls ( ++ src_bits, dst_bits, src_stride, dst_stride, src_bpp, dst_bpp, ++ src_x, src_y, dst_x, dst_y, width, height)) ++ { ++ return _pixman_implementation_blt ( ++ imp->delegate, ++ src_bits, dst_bits, src_stride, dst_stride, src_bpp, dst_bpp, ++ src_x, src_y, dst_x, dst_y, width, height); ++ } ++ ++ return TRUE; ++} ++ ++static pixman_bool_t ++ls_fill (pixman_implementation_t *imp, ++ uint32_t * bits, ++ int stride, ++ int bpp, ++ int x, ++ int y, ++ int width, ++ int height, ++ uint32_t xor) ++{ ++ if (!pixman_fill_ls (bits, stride, bpp, x, y, width, height, xor)) ++ { ++ return _pixman_implementation_fill ( ++ imp->delegate, bits, stride, bpp, x, y, width, height, xor); ++ } ++ ++ return TRUE; ++} ++
++static void ++ls_composite_copy_area (pixman_implementation_t *imp, ++ pixman_op_t op, ++ pixman_image_t * src_image, ++ pixman_image_t * mask_image, ++ pixman_image_t * dst_image, ++ int32_t src_x, ++ int32_t src_y, ++ int32_t mask_x, ++ int32_t mask_y, ++ int32_t dest_x, ++ int32_t dest_y, ++ int32_t width, ++ int32_t height) ++{ ++ pixman_blt_ls (src_image->bits.bits, ++ dst_image->bits.bits, ++ src_image->bits.rowstride, ++ dst_image->bits.rowstride, ++ PIXMAN_FORMAT_BPP (src_image->bits.format), ++ PIXMAN_FORMAT_BPP (dst_image->bits.format), ++ src_x, src_y, dest_x, dest_y, width, height); ++} ++ ++ ++static const pixman_fast_path_t ls_fast_paths[] = ++{ ++ ++//these are implemented so far ++#if 1 ++ PIXMAN_STD_FAST_PATH (OVER, x8r8g8b8, a8, x8r8g8b8, ls_composite_over_x888_8_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, x8r8g8b8, a8, a8r8g8b8, ls_composite_over_x888_8_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, x8b8g8r8, a8, x8b8g8r8, ls_composite_over_x888_8_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, x8b8g8r8, a8, a8b8g8r8, ls_composite_over_x888_8_8888 ), ++#endif ++ ++#if 1 ++//over_8888_0565 significant perf improvement, slight better L1, L2, 30% better RT ++ PIXMAN_STD_FAST_PATH (OVER, a8r8g8b8, null, r5g6b5, ls_composite_over_8888_0565 ), ++ PIXMAN_STD_FAST_PATH (OVER, a8b8g8r8, null, b5g6r5, ls_composite_over_8888_0565 ), ++ PIXMAN_STD_FAST_PATH (OVER, pixbuf, pixbuf, r5g6b5, ls_composite_over_pixbuf_0565 ), ++ PIXMAN_STD_FAST_PATH (OVER, rpixbuf, rpixbuf, b5g6r5, ls_composite_over_pixbuf_0565 ), ++ ++//big improvement some closing 100% ++ PIXMAN_STD_FAST_PATH_CA (OVER, solid, a8b8g8r8, b5g6r5, ls_composite_over_n_8888_0565_ca ), ++ PIXMAN_STD_FAST_PATH_CA (OVER, solid, a8r8g8b8, r5g6b5, ls_composite_over_n_8888_0565_ca ), ++ PIXMAN_STD_FAST_PATH (OVER, solid, a8, r5g6b5, ls_composite_over_n_8_0565 ), ++ PIXMAN_STD_FAST_PATH (OVER, solid, a8, b5g6r5, ls_composite_over_n_8_0565 ), ++ PIXMAN_STD_FAST_PATH (OVER, solid, null, r5g6b5, ls_composite_over_n_0565 ), ++ ++//ubalbe to bench with lowlevel bench, believe it is a gain in perf ++ PIXMAN_STD_FAST_PATH (OVER, x8r8g8b8, solid, a8r8g8b8, ls_composite_over_x888_n_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, x8r8g8b8, solid, x8r8g8b8, ls_composite_over_x888_n_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, x8b8g8r8, solid, a8b8g8r8, ls_composite_over_x888_n_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, x8b8g8r8, solid, x8b8g8r8, ls_composite_over_x888_n_8888 ), ++ ++//performance regress 30% in L1,L2, but significant improvement in RT ++ PIXMAN_STD_FAST_PATH (OVER, a8b8g8r8, null, a8b8g8r8, ls_composite_over_8888_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, a8b8g8r8, null, x8b8g8r8, ls_composite_over_8888_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, a8r8g8b8, null, a8r8g8b8, ls_composite_over_8888_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, a8r8g8b8, null, x8r8g8b8, ls_composite_over_8888_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, pixbuf, pixbuf, a8r8g8b8, ls_composite_over_pixbuf_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, pixbuf, pixbuf, x8r8g8b8, ls_composite_over_pixbuf_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, rpixbuf, rpixbuf, a8b8g8r8, ls_composite_over_pixbuf_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, rpixbuf, rpixbuf, x8b8g8r8, ls_composite_over_pixbuf_8888 ), ++ ++//same performance in L1,L2, but significant improvement in RT 30-40% ++ PIXMAN_STD_FAST_PATH (OVER, a8r8g8b8, solid, a8r8g8b8, ls_composite_over_8888_n_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, a8r8g8b8, solid, x8r8g8b8, ls_composite_over_8888_n_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, a8b8g8r8, solid, a8b8g8r8, ls_composite_over_8888_n_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, a8b8g8r8, solid, x8b8g8r8, ls_composite_over_8888_n_8888 ), ++ ++//significant perf improvement 20% ++ PIXMAN_STD_FAST_PATH (OVER, solid, a8, a8r8g8b8, ls_composite_over_n_8_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, solid, a8, x8r8g8b8, ls_composite_over_n_8_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, solid, a8, a8b8g8r8, ls_composite_over_n_8_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, solid, a8, x8b8g8r8, ls_composite_over_n_8_8888 ), ++ ++//3 times perf improvements ++ PIXMAN_STD_FAST_PATH_CA (OVER, solid, a8r8g8b8, a8r8g8b8, ls_composite_over_n_8888_8888_ca ), ++ PIXMAN_STD_FAST_PATH_CA (OVER, solid, a8r8g8b8, x8r8g8b8, ls_composite_over_n_8888_8888_ca ), ++ PIXMAN_STD_FAST_PATH_CA (OVER, solid, a8b8g8r8, a8b8g8r8, ls_composite_over_n_8888_8888_ca ), ++ PIXMAN_STD_FAST_PATH_CA (OVER, solid, a8b8g8r8, x8b8g8r8, ls_composite_over_n_8888_8888_ca ), ++ ++//significant performance boost ++ PIXMAN_STD_FAST_PATH (OVER, solid, null, a8r8g8b8, ls_composite_over_n_8888 ), ++ PIXMAN_STD_FAST_PATH (OVER, solid, null, x8r8g8b8, ls_composite_over_n_8888 ), ++//simple add, expect better perf in generic code ++// PIXMAN_STD_FAST_PATH (ADD, a8r8g8b8, null, a8r8g8b8, ls_composite_add_8888_8888 ), ++// PIXMAN_STD_FAST_PATH (ADD, a8b8g8r8, null, a8b8g8r8, ls_composite_add_8888_8888 ), ++ ++// FIXME: Copy memory are not better than geneic code ++#if 0 ++ PIXMAN_STD_FAST_PATH (SRC, a8r8g8b8, null, a8r8g8b8, ls_composite_copy_area ), ++ PIXMAN_STD_FAST_PATH (SRC, a8b8g8r8, null, a8b8g8r8, ls_composite_copy_area ), ++ PIXMAN_STD_FAST_PATH (SRC, a8r8g8b8, null, x8r8g8b8, ls_composite_copy_area ), ++ PIXMAN_STD_FAST_PATH (SRC, a8b8g8r8, null, x8b8g8r8, ls_composite_copy_area ), ++ PIXMAN_STD_FAST_PATH (SRC, x8r8g8b8, null, x8r8g8b8, ls_composite_copy_area ), ++ PIXMAN_STD_FAST_PATH (SRC, x8b8g8r8, null, x8b8g8r8, ls_composite_copy_area ), ++ PIXMAN_STD_FAST_PATH (SRC, r5g6b5, null, r5g6b5, ls_composite_copy_area ), ++ PIXMAN_STD_FAST_PATH (SRC, b5g6r5, null, b5g6r5, ls_composite_copy_area ), ++ PIXMAN_STD_FAST_PATH (OVER, x8r8g8b8, null, x8r8g8b8, ls_composite_copy_area ), ++ PIXMAN_STD_FAST_PATH (OVER, x8b8g8r8, null, x8b8g8r8, ls_composite_copy_area ), ++#endif ++ ++//significant improvement ++ PIXMAN_STD_FAST_PATH (SRC, solid, a8, a8r8g8b8, ls_composite_src_n_8_8888 ), ++ PIXMAN_STD_FAST_PATH (SRC, solid, a8, x8r8g8b8, ls_composite_src_n_8_8888 ), ++ PIXMAN_STD_FAST_PATH (SRC, solid, a8, a8b8g8r8, ls_composite_src_n_8_8888 ), ++ PIXMAN_STD_FAST_PATH (SRC, solid, a8, x8b8g8r8, ls_composite_src_n_8_8888 ), ++ ++#endif ++ ++//these are not yet implemented ++ ++#if 0 ++ ++ PIXMAN_STD_FAST_PATH (ADD, a8, null, a8, ls_composite_add_8000_8000 ), ++ PIXMAN_STD_FAST_PATH (ADD, solid, a8, a8, ls_composite_add_n_8_8 ), ++ PIXMAN_STD_FAST_PATH (IN, a8, null, a8, ls_composite_in_8_8 ), ++ PIXMAN_STD_FAST_PATH (IN, solid, a8, a8, ls_composite_in_n_8_8 ), ++#endif ++ ++ ++ { PIXMAN_OP_NONE }, ++}; ++ ++pixman_implementation_t * ++_pixman_implementation_create_ls (void) ++{ ++ pixman_implementation_t *general = _pixman_implementation_create_fast_path (); ++ pixman_implementation_t *imp = _pixman_implementation_create (general, ls_fast_paths); ++ ++//Turned on but unable to benchmark. ++#if 1 ++ imp->combine_32[PIXMAN_OP_OVER] = ls_combine_over_u; ++ imp->combine_32[PIXMAN_OP_OVER_REVERSE] = ls_combine_over_reverse_u; ++ imp->combine_32[PIXMAN_OP_IN] = ls_combine_in_u; ++ imp->combine_32[PIXMAN_OP_IN_REVERSE] = ls_combine_in_reverse_u; ++ imp->combine_32[PIXMAN_OP_OUT] = ls_combine_out_u; ++ imp->combine_32[PIXMAN_OP_OUT_REVERSE] = ls_combine_out_reverse_u; ++ imp->combine_32[PIXMAN_OP_ATOP] = ls_combine_atop_u; ++ imp->combine_32[PIXMAN_OP_ATOP_REVERSE] = ls_combine_atop_reverse_u; ++ imp->combine_32[PIXMAN_OP_XOR] = ls_combine_xor_u; ++ imp->combine_32[PIXMAN_OP_ADD] = ls_combine_add_u; ++ imp->combine_32[PIXMAN_OP_SATURATE] = ls_combine_saturate_u; ++ ++ imp->combine_32_ca[PIXMAN_OP_SRC] = ls_combine_src_ca; ++ imp->combine_32_ca[PIXMAN_OP_OVER] = ls_combine_over_ca; ++ imp->combine_32_ca[PIXMAN_OP_OVER_REVERSE] = ls_combine_over_reverse_ca; ++ imp->combine_32_ca[PIXMAN_OP_IN] = ls_combine_in_ca; ++ imp->combine_32_ca[PIXMAN_OP_IN_REVERSE] = ls_combine_in_reverse_ca; ++ imp->combine_32_ca[PIXMAN_OP_OUT] = ls_combine_out_ca; ++ imp->combine_32_ca[PIXMAN_OP_OUT_REVERSE] = ls_combine_out_reverse_ca; ++ imp->combine_32_ca[PIXMAN_OP_ATOP] = ls_combine_atop_ca; ++ imp->combine_32_ca[PIXMAN_OP_ATOP_REVERSE] = ls_combine_atop_reverse_ca; ++ imp->combine_32_ca[PIXMAN_OP_XOR] = ls_combine_xor_ca; ++ imp->combine_32_ca[PIXMAN_OP_ADD] = ls_combine_add_ca; ++#endif ++ ++//FIXME blt and fill not shown better perf than geneic code ++#if 0 ++ imp->blt = ls_blt; ++ imp->fill = ls_fill; ++#endif ++ ++ return imp; ++} ++ +diff -urN pixman//pixman/pixman-private.h Pixman.Loongson//pixman/pixman-private.h +--- pixman//pixman/pixman-private.h 2010-12-25 18:46:00.102841000 +0800 ++++ Pixman.Loongson//pixman/pixman-private.h 2010-12-25 18:39:15.401808000 +0800 +@@ -493,6 +493,11 @@ + pixman_implementation_t * + _pixman_implementation_create_fast_path (void); + ++#ifdef USE_LS ++pixman_implementation_t * ++_pixman_implementation_create_ls (void); ++#endif ++ + #ifdef USE_MMX + pixman_implementation_t * + _pixman_implementation_create_mmx (void); +diff -urN pixman//pixman/primitive.h Pixman.Loongson//pixman/primitive.h +--- pixman//pixman/primitive.h 1970-01-01 08:00:00.000000000 +0800 ++++ Pixman.Loongson//pixman/primitive.h 2010-12-25 18:39:15.457084000 +0800 +@@ -0,0 +1,214 @@ ++/*
++* MMX register usage protocal
++* return result: f8
++* tmp immediate f12
++* tmp register in primtive f14 f16 f18
++* tmp register in pixman f0,f4,f6,f10,f20,f22,
++* globals in function f24, f26, f28,f30
++* Exceptions for load and store:
++* load will specify dest FPR register
++* store will specify src FPR register
++* expand_alpha(_rev) implemented with GPR, dest FPR as the 2nd parameter
++*
++* Special alert: don't use return result $f8 as input, it might be overwritten
++*/
++
++
++/*primitive macros */
++
++#define clobber "$8","$9","$f0","$f2","$f8",\
++ "$f12","$f14","$f16","$f18","$f20",\
++ "$f22","$f24","$f26","$f28","$f30"
++
++#define DMTC1_IMM(regc1,imm) \
++ "dli $8, "#imm" \n\t" \
++ "dmtc1 $8, "#regc1" \n\t"
++
++#define MTC1_IMM(regc1,imm) \
++ "li $8, "#imm" \n\t" \
++ "dmtc1 $8, "#regc1" \n\t"
++
++
++#define save_to(reg1) "mov.d "#reg1", $f8 \n\t"
++#define zero(reg1) "xor "#reg1","#reg1","#reg1" \n\t"
++
++#define load32(sp,reg1) \
++ "ulw $8, "#sp" \n\t" \
++ "dmtc1 $8, "#reg1" \n\t"
++
++#define load32a(sp,reg1) \
++ "lw $8, "#sp" \n\t" \
++ "dmtc1 $8, "#reg1" \n\t"
++
++#define load32r(sp,reg1) \
++ "dmtc1 "#sp", "#reg1" \n\t"
++
++#define load64(sp,reg1) \
++ "uld $8, "#sp" \n\t" \
++ "dmtc1 $8, "#reg1" \n\t"
++
++#define load64a(sp,reg1) \
++ "ld $8, "#sp" \n\t" \
++ "dmtc1 $8, "#reg1" \n\t"
++
++
++#define store32(reg1,sp) \
++ "dmfc1 $8, "#reg1" \n\t" \
++ "usw $8, "#sp" \n\t"
++
++#define store32r(reg1,sp) \
++ "dmfc1 "#sp", "#reg1" \n\t"
++
++#define store32a(reg1,sp) \
++ "swc1 "#reg1", "#sp" \n\t"
++
++#define store64(reg1,sp) \
++ "dmfc1 $8, "#reg1" \n\t" \
++ "usd $8, "#sp" \n\t"
++
++#define store64a(reg1,sp) \
++ "sdc1 "#reg1", "#sp" \n\t"
++
++#define load8888(sp,reg1) \
++ load64(sp,reg1) \
++ "xor $f12, $f12, $f12 \n\t" \
++ "punpcklbh "#reg1", "#reg1", $f12 \n\t"
++
++#define load8888r(sp,reg1) \
++ load32r(sp,reg1) \
++ "xor $f12, $f12, $f12 \n\t" \
++ "punpcklbh "#reg1", "#reg1", $f12 \n\t"
++
++#define load8888a(sp,reg1) \
++ load64a(sp,reg1) \
++ "xor $f12, $f12, $f12 \n\t" \
++ "punpcklbh "#reg1", "#reg1", $f12 \n\t"
++
++#define load8888ah(sp,reg1) \
++ load64a(sp,reg1) \
++ "xor $f12, $f12, $f12 \n\t" \
++ "punpckhbh "#reg1", "#reg1", $f12 \n\t"
++
++#define store8888(reg1,sp) \
++ "xor $f12, $f12, $f12 \n\t" \
++ "packushb "#reg1", "#reg1", $f12 \n\t" \
++ store64(reg1,sp)
++
++#define store8888r(reg1,sp) \
++ "xor $f12, $f12, $f12 \n\t" \
++ "packushb "#reg1", "#reg1", $f12 \n\t" \
++ store32r(reg1,sp)
++
++#define store8888a(reg1,sp) \
++ "xor $f12, $f12, $f12 \n\t" \
++ "packushb "#reg1", "#reg1", $f12 \n\t" \
++ store64a(reg1,sp)
++
++#define pack8888(reg1,reg2) \
++ "packushb $f8, "#reg1","#reg2" \n\t"
++
++#define unpack8888(reg1,reg2) \
++ "punpcklbh $f8, "#reg1","#reg2" \n\t"
++
++
++#define negate(sreg,dreg) \
++ DMTC1_IMM($f12, 0x00ff00ff00ff00ff)\
++ "xor "#dreg", "#sreg", $f12 \n\t"
++
++#define pix_add(reg1,reg2) \
++ "paddusb $f8, "#reg1", "#reg2" \n\t"
++
++#define pix_multiply(reg1,reg2) \
++ "pmullh $f14, "#reg1", "#reg2" \n\t " \
++ DMTC1_IMM($f12, 0x0080008000800080) \
++ "paddush $f14, $f14, $f12 \n\t "\
++ MTC1_IMM($f12, 8) \
++ "psrlh $f16, $f14, $f12 \n\t" \
++ "paddush $f14, $f14, $f16 \n\t" \
++ "psrlh $f8, $f14, $f12 \n\t"
++
++#define pix_add_mul(reg1,reg2,reg3,reg4) \ ++ pix_multiply(reg1,reg2) \
++ "mov.d $f18, $f8 \n\t" \
++ pix_multiply(reg3,reg4) \
++ pix_add($f18,$f8)
++
++#define expand_alpha(sreg,dreg) \
++ "dmfc1 $8, "#sreg" \n\t" \
++ "dsrl32 $8, $8, 16 \n\t" \
++ "dsll $9, $8, 16 \n\t" \
++ "or $8, $8, $9 \n\t" \
++ "dsll32 $9, $8, 0 \n\t" \
++ "or $8, $8, $9 \n\t" \
++ "dmtc1 $8, "#dreg" \n\t"
++
++#define expand_alpha_rev(sreg,dreg)\
++ "dmfc1 $8, "#sreg" \n\t" \
++ "dsll32 $8, $8, 16 \n\t" \
++ "dsrl32 $8, $8, 16 \n\t" \
++ "dsll $9, $8, 16 \n\t" \
++ "or $8, $8, $9 \n\t" \
++ "dsll32 $9, $8, 0 \n\t" \
++ "or $8, $8, $9 \n\t" \
++ "dmtc1 $8, "#dreg" \n\t"
++
++#define expand8888(reg1,pos) expand8888_##pos(reg1)
++
++#define expand8888_0(reg1) \
++ "xor $f12, $f12, $f12 \n\t" \
++ "punpcklbh $f8, "#reg1", $f12 \n\t"
++
++#define expand8888_1(reg1) \
++ "xor $f12, $f12, $f12 \n\t" \
++ "punpckhbh $f8, "#reg1", $f12 \n\t"
++
++#define expandx888(reg1,pos) \
++ expand8888(reg1,pos) \
++ DMTC1_IMM($f12, 0x00ff000000000000) \
++ "or $f8, $f8, $f12 \n\t"
++
++#define invert_colors(reg1) \
++ DMTC1_IMM($f12, 0xffff0000ffff0000) \
++ "and $f14, "#reg1", $f12 \n\t" \
++ DMTC1_IMM($f12, 0x000000000000ffff) \
++ "and $f16, "#reg1", $f12 \n\t" \
++ DMTC1_IMM($f12, 0x0000ffff00000000) \
++ "and $f18, "#reg1", $f12 \n\t" \
++ MTC1_IMM($f12, 32) \
++ "dsll $f16, $f16, $f12 \n\t" \
++ "dsrl $f18, $f18, $f12 \n\t" \
++ "or $f14, $f14, $f16 \n\t" \
++ "or $f8, $f14, $f18 \n\t"
++
++#define over(reg1,reg2,reg3) \
++ negate(reg2,$f8) \
++ pix_multiply(reg3, $f8)\
++ pix_add(reg1, $f8)
++
++
++#define over_rev_non_pre(reg1,reg2) \
++ expand_alpha(reg1,$f0) \
++ DMTC1_IMM($f12,0x00ff000000000000) \
++ "or $f2, $f0, $f12 \n\t" \
++ invert_colors(reg1) \
++ pix_multiply($f8,$f2) \
++ save_to($f2) \
++ over($f2, $f0, reg2)
++
++#define in(reg1,reg2) pix_multiply(reg1,reg2)
++
++#define in_over_full_src_alpha(reg1,reg2,reg3) \
++ DMTC1_IMM($f12,0x00ff000000000000) \
++ "or $f0, "#reg1", $f12 \n\t" \
++ in($f0,reg2) \
++ save_to($f0) \
++ over($f0,reg2,reg3)
++
++#define in_over(reg1,reg2,reg3,reg4) \
++ in(reg1,reg3) \
++ "mov.d $f0, $f8 \n\t" \
++ pix_multiply(reg2,reg3) \
++ "mov.d $f2, $f8 \n\t" \
++ over($f0,$f2,reg4)
++
++
diff --git a/extra/plotutils/PKGBUILD b/extra/plotutils/PKGBUILD index cd8d4f347..099938aa2 100644 --- a/extra/plotutils/PKGBUILD +++ b/extra/plotutils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=plotutils pkgver=2.6 pkgrel=1 -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') pkgdesc="Set of utilities and libraries for plotting." url="http://directory.fsf.org/graphics/plotutils.html" license=("GPL") diff --git a/extra/pm-utils/PKGBUILD b/extra/pm-utils/PKGBUILD index c4ec4e892..82b7e2b79 100644 --- a/extra/pm-utils/PKGBUILD +++ b/extra/pm-utils/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pm-utils pkgver=1.4.1 pkgrel=3 pkgdesc="Utilities and scripts for suspend and hibernate power management" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pm-utils.freedesktop.org" license=('GPL') depends=('bash' 'procps' 'pm-quirks') diff --git a/extra/pmount/PKGBUILD b/extra/pmount/PKGBUILD index bbdb957e7..908d7acdd 100644 --- a/extra/pmount/PKGBUILD +++ b/extra/pmount/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pmount pkgver=0.9.23 pkgrel=2 pkgdesc="mount removable devices as normal user" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://pmount.alioth.debian.org/" backup=('etc/pmount.allow') diff --git a/extra/polkit-gnome/PKGBUILD b/extra/polkit-gnome/PKGBUILD index cbd405df2..585d1008a 100644 --- a/extra/polkit-gnome/PKGBUILD +++ b/extra/polkit-gnome/PKGBUILD @@ -6,7 +6,7 @@ pkgname=polkit-gnome pkgver=0.105 pkgrel=1 pkgdesc="PolicyKit integration for the GNOME desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.freedesktop.org/wiki/Software/PolicyKit" license=('LGPL') depends=('polkit' 'gtk3') diff --git a/extra/polkit-kde/PKGBUILD b/extra/polkit-kde/PKGBUILD index ca94695e5..f81499717 100644 --- a/extra/polkit-kde/PKGBUILD +++ b/extra/polkit-kde/PKGBUILD @@ -6,7 +6,7 @@ pkgname=polkit-kde pkgver=0.99.0 pkgrel=1 pkgdesc='Daemon providing a polkit authentication UI for KDE' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL') depends=('kdelibs') diff --git a/extra/polkit-qt/PKGBUILD b/extra/polkit-qt/PKGBUILD index b71d737d8..4701bf6e6 100644 --- a/extra/polkit-qt/PKGBUILD +++ b/extra/polkit-qt/PKGBUILD @@ -6,7 +6,7 @@ pkgname=polkit-qt pkgver=0.99.0 pkgrel=1 pkgdesc='A library that allows developers to access PolicyKit API with a nice Qt-style API' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('LGPL') depends=('polkit' 'qt') diff --git a/extra/polkit/PKGBUILD b/extra/polkit/PKGBUILD index 52b15ee9d..0fe7ea09b 100644 --- a/extra/polkit/PKGBUILD +++ b/extra/polkit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=polkit pkgver=0.102 pkgrel=1 pkgdesc="Application development toolkit for controlling system-wide privileges" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://www.freedesktop.org/wiki/Software/PolicyKit" depends=('glib2' 'pam' 'expat') diff --git a/extra/poppler/PKGBUILD b/extra/poppler/PKGBUILD index afc3662bf..e79852f0f 100644 --- a/extra/poppler/PKGBUILD +++ b/extra/poppler/PKGBUILD @@ -5,9 +5,9 @@ pkgbase=poppler pkgname=('poppler' 'poppler-glib' 'poppler-qt') pkgver=0.18.0 pkgrel=2 -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) license=('GPL') -makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'gtk2' 'qt' 'pkgconfig' 'lcms' 'gobject-introspection') +makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'gtk2' 'qt' 'pkgconfig' 'lcms' 'gobject-introspection' 'libtool') options=('!libtool' '!emptydirs') url="http://poppler.freedesktop.org/" source=(http://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.gz @@ -17,9 +17,6 @@ md5sums=('4cd3bf2a0a13fa8eaf00d31368915f77' build() { cd "${srcdir}/${pkgbase}-${pkgver}" - sed -i -e '/AC_PATH_XTRA/d' configure.ac - autoreconf - patch -Np1 -i "${srcdir}/fix_cairo.patch" ./configure --prefix=/usr --sysconfdir=/etc \ diff --git a/extra/postfix/PKGBUILD b/extra/postfix/PKGBUILD index b420652a8..6fe88d6a2 100644 --- a/extra/postfix/PKGBUILD +++ b/extra/postfix/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc='Fast, easy to administer, secure mail server' url='http://www.postfix.org/' license=('custom') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('pcre' 'libsasl' 'libmysqlclient' 'postgresql-libs' 'sqlite3' 'libldap' 'db') backup=('etc/postfix/'{access,aliases,canonical,generic,header_checks,main.cf,master.cf,relocated,transport,virtual}) source=("ftp://ftp.porcupine.org/mirrors/postfix-release/official/${pkgname}-${pkgver}.tar.gz" \ diff --git a/extra/postgresql-old-upgrade/PKGBUILD b/extra/postgresql-old-upgrade/PKGBUILD index 68e03e16d..9e62a0590 100644 --- a/extra/postgresql-old-upgrade/PKGBUILD +++ b/extra/postgresql-old-upgrade/PKGBUILD @@ -6,7 +6,7 @@ pkgver=9.0.5 _majorver=${pkgver%.*} pkgrel=1 pkgdesc="Minimal PostgreSQL build for migrating between major versions with pg_upgrade" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.postgresql.org/" license=('custom:PostgreSQL') depends=("postgresql-libs>=${_majorver}" 'libxml2' 'openssl>=1.0.0') diff --git a/extra/postgresql/PKGBUILD b/extra/postgresql/PKGBUILD index c5809af93..0f6da4c03 100644 --- a/extra/postgresql/PKGBUILD +++ b/extra/postgresql/PKGBUILD @@ -6,7 +6,7 @@ pkgname=('postgresql-libs' 'postgresql-docs' 'postgresql') pkgver=9.1.1 _majorver=${pkgver%.*} pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.postgresql.org/" license=('custom:PostgreSQL') makedepends=('libxml2' 'python2' 'perl' 'openssl>=1.0.0') diff --git a/extra/potrace/PKGBUILD b/extra/potrace/PKGBUILD index e628b9b0c..751780b31 100644 --- a/extra/potrace/PKGBUILD +++ b/extra/potrace/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.10 pkgrel=1 pkgdesc='Utility for tracing a bitmap (input: PBM,PGM,PPM,BMP; output: EPS,PS,PDF,SVG,DXF,PGM,Gimppath,XFig)' url='http://potrace.sourceforge.net/' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('zlib') options=('!libtool') diff --git a/extra/prison/PKGBUILD b/extra/prison/PKGBUILD index 793db4535..b5c38eb1e 100644 --- a/extra/prison/PKGBUILD +++ b/extra/prison/PKGBUILD @@ -5,7 +5,7 @@ pkgname=prison pkgver=1.0 pkgrel=1 pkgdesc="A barcode API to produce QRCode barcodes and DataMatrix barcodes" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde.org" license=('GPL') depends=('qt' 'libdmtx' 'qrencode') diff --git a/extra/procmail/PKGBUILD b/extra/procmail/PKGBUILD index 4fe479094..1a43183d9 100644 --- a/extra/procmail/PKGBUILD +++ b/extra/procmail/PKGBUILD @@ -5,7 +5,7 @@ pkgname=procmail pkgver=3.22 pkgrel=4 pkgdesc="Highly configurable auto mail processing." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.procmail.org" license=('GPL' 'custom:Artistic') depends=('glibc' 'sh') diff --git a/extra/proftpd/PKGBUILD b/extra/proftpd/PKGBUILD index 4199294d8..8389f3206 100644 --- a/extra/proftpd/PKGBUILD +++ b/extra/proftpd/PKGBUILD @@ -7,7 +7,7 @@ pkgname=proftpd pkgver=1.3.3f pkgrel=1 pkgdesc="A high-performance, scalable FTP server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.proftpd.org" license=('GPL') depends=('libldap' 'libmysqlclient' 'postgresql-libs') diff --git a/extra/progsreiserfs/PKGBUILD b/extra/progsreiserfs/PKGBUILD index 7d4cb1baa..443e4a6c8 100644 --- a/extra/progsreiserfs/PKGBUILD +++ b/extra/progsreiserfs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=progsreiserfs pkgver=0.3.0.5 pkgrel=7 pkgdesc="library for accessing and manipulating reiserfs partitions" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.namesys.com" license=('GPL') depends=('e2fsprogs') diff --git a/extra/psi/PKGBUILD b/extra/psi/PKGBUILD index d8769aed9..a283c95ae 100644 --- a/extra/psi/PKGBUILD +++ b/extra/psi/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=5 pkgdesc='Instant messaging application designed for the Jabber IM' url='http://psi-im.org/' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('qca-ossl' 'qca-gnupg' 'enchant' 'libxss' 'xdg-utils') install='psi.install' source=("http://downloads.sourceforge.net/psi/psi-${pkgver}.tar.bz2" diff --git a/extra/psiconv/PKGBUILD b/extra/psiconv/PKGBUILD index 10aa041e6..0c4a0ab44 100644 --- a/extra/psiconv/PKGBUILD +++ b/extra/psiconv/PKGBUILD @@ -6,7 +6,7 @@ pkgname=psiconv pkgver=0.9.8 pkgrel=8 pkgdesc="Converts Psion 5(MX) files to more commonly used file formats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://software.frodo.looijaard.name/psiconv/" license=('GPL') depends=('imagemagick') diff --git a/extra/pstoedit/PKGBUILD b/extra/pstoedit/PKGBUILD index 32396dba4..f2b8e5299 100644 --- a/extra/pstoedit/PKGBUILD +++ b/extra/pstoedit/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pstoedit pkgver=3.60 pkgrel=2 pkgdesc="Translates PostScript and PDF graphics into other vector formats" -arch=('i686' 'x86_64') +arch=("i686" "x86_64" 'mips64el') url="http://www.pstoedit.net/" license=('GPL') depends=('gcc-libs' 'plotutils' 'gd' 'imagemagick') diff --git a/extra/pth/PKGBUILD b/extra/pth/PKGBUILD index 7e2e6e5ee..b7da5145a 100644 --- a/extra/pth/PKGBUILD +++ b/extra/pth/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pth pkgver=2.0.7 pkgrel=4 pkgdesc="The GNU Portable Threads." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/pth/" license=('LGPL') depends=('glibc' 'awk') diff --git a/extra/ptlib/PKGBUILD b/extra/ptlib/PKGBUILD index c87a281b3..26fe24ab7 100644 --- a/extra/ptlib/PKGBUILD +++ b/extra/ptlib/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ptlib pkgver=2.10.2 pkgrel=1 pkgdesc="Portable Windows Library" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.ekiga.org/" license=('GPL') depends=('gcc-libs' 'openssl' 'alsa-lib' 'sdl' 'expat' 'libpulse' 'v4l-utils') diff --git a/extra/pulseaudio/PKGBUILD b/extra/pulseaudio/PKGBUILD index 6384fb1fd..724d02fd6 100644 --- a/extra/pulseaudio/PKGBUILD +++ b/extra/pulseaudio/PKGBUILD @@ -9,12 +9,13 @@ pkgname=(pulseaudio libpulse) pkgdesc="A featureful, general-purpose sound server" pkgver=1.1 pkgrel=1 -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://pulseaudio.org/" license=(GPL LGPL) makedepends=(libasyncns libcap attr libxtst libsm libsamplerate libtool rtkit speex tdb udev dbus-core xcb-util avahi bluez gconf intltool jack - lirc-utils openssl fftw orc json-c) + openssl fftw orc json-c) +[ "$CARCH" = "mips64el" ] || makedepends+=(lirc-utils) options=(!emptydirs !libtool !makeflags) source=(http://freedesktop.org/software/$pkgbase/releases/$pkgbase-$pkgver.tar.xz $pkgbase.xinit) @@ -44,9 +45,9 @@ package_pulseaudio() { 'bluez: bluetooth support' 'gconf: configuration through gconf (paprefs)' 'jack: jack support' - 'lirc-utils: infra-red support' 'openssl: RAOP support' 'python2-pyqt: Equalizer GUI (qpaeq)') +[ "$CARCH" = "mips64el" ] || optdepends+=('lirc-utils: infra-red support') backup=(etc/pulse/{daemon.conf,default.pa,system.pa}) install=pulseaudio.install cd "$srcdir/$pkgbase-$pkgver" diff --git a/extra/purple-plugin-pack/PKGBUILD b/extra/purple-plugin-pack/PKGBUILD index 6d2e61e9c..7a46571da 100644 --- a/extra/purple-plugin-pack/PKGBUILD +++ b/extra/purple-plugin-pack/PKGBUILD @@ -7,7 +7,7 @@ pkgname=purple-plugin-pack pkgver=2.6.3 pkgrel=1 pkgdesc="Plugin pack for Pidgin" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://plugins.guifications.org/trac/wiki/PluginPack" license=('GPL') depends=('pidgin') diff --git a/extra/putty/PKGBUILD b/extra/putty/PKGBUILD index c4b3adcc9..addb040dc 100644 --- a/extra/putty/PKGBUILD +++ b/extra/putty/PKGBUILD @@ -5,7 +5,7 @@ pkgname=putty pkgver=0.61 pkgrel=1 pkgdesc="A terminal integrated SSH/Telnet client" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.chiark.greenend.org.uk/~sgtatham/putty/" license=('MIT') depends=('gtk2') diff --git a/extra/pwgen/PKGBUILD b/extra/pwgen/PKGBUILD index 0f9327fe5..bc7dc14c4 100644 --- a/extra/pwgen/PKGBUILD +++ b/extra/pwgen/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pwgen pkgver=2.06 pkgrel=2 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/extra/pyalpm/PKGBUILD b/extra/pyalpm/PKGBUILD index 40488fac2..4e4a0d194 100644 --- a/extra/pyalpm/PKGBUILD +++ b/extra/pyalpm/PKGBUILD @@ -4,7 +4,7 @@ pkgname=pyalpm pkgver=0.4.3 pkgrel=1 pkgdesc="Libalpm bindings for Python 3" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://projects.archlinux.org/users/remy/pyalpm.git/" license=('GPL') depends=('python>=3.2' 'pacman<3.6') diff --git a/extra/pycrypto/PKGBUILD b/extra/pycrypto/PKGBUILD index fba0c5d51..1f15d7b14 100644 --- a/extra/pycrypto/PKGBUILD +++ b/extra/pycrypto/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pycrypto pkgver=2.3 pkgrel=1 pkgdesc="Collection of cryptographic algorithms and protocols, implemented for use from Python." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('python2') url="http://www.dlitz.net/software/pycrypto/" license=(custom) diff --git a/extra/pycups/PKGBUILD b/extra/pycups/PKGBUILD index 22f6911f0..b6113fd99 100644 --- a/extra/pycups/PKGBUILD +++ b/extra/pycups/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.9.60 pkgrel=1 pkgdesc="Python CUPS Bindings" url="http://cyberelk.net/tim/software/pycups/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libcups' 'python2') source=(http://cyberelk.net/tim/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.asc}) diff --git a/extra/pygobject/fix-pycairo-capi-declaration.patch b/extra/pygobject/fix-pycairo-capi-declaration.patch new file mode 100644 index 000000000..1f0364c7a --- /dev/null +++ b/extra/pygobject/fix-pycairo-capi-declaration.patch @@ -0,0 +1,17 @@ +--- pygobject-2.28.4.orig/gi/pygi-foreign-cairo.c 2011-04-18 17:36:47.000000000 +0200 ++++ pygobject-2.28.4/gi/pygi-foreign-cairo.c 2011-06-21 20:05:11.015628222 +0200 +@@ -26,12 +26,12 @@ + + #if PY_VERSION_HEX < 0x03000000 + #include <pycairo.h> ++static Pycairo_CAPI_t *Pycairo_CAPI; + #else + #include <pycairo/py3cairo.h> ++#define Pycairo_IMPORT import_cairo() + #endif + +-Pycairo_CAPI_t *Pycairo_CAPI; +- + #include "pygi-foreign.h" + + #include <pyglib-python-compat.h> diff --git a/extra/pygobject2/PKGBUILD b/extra/pygobject2/PKGBUILD index aef58044c..a66600d53 100644 --- a/extra/pygobject2/PKGBUILD +++ b/extra/pygobject2/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=pygobject2 pkgname=(python-gobject2 python2-gobject2 pygobject2-devel) pkgver=2.28.6 pkgrel=4 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.pygtk.org/" license=('LGPL') makedepends=('python' 'python2') diff --git a/extra/pygtk/PKGBUILD b/extra/pygtk/PKGBUILD index da57d172a..792c64878 100644 --- a/extra/pygtk/PKGBUILD +++ b/extra/pygtk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pygtk pkgver=2.24.0 pkgrel=2 pkgdesc="Python bindings for the GTK widget set" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('libglade' 'python2-cairo' 'pygobject') makedepends=('python2-numpy' 'pygobject2-devel') diff --git a/extra/pygtksourceview2/PKGBUILD b/extra/pygtksourceview2/PKGBUILD index b5e11dcdf..32955891d 100644 --- a/extra/pygtksourceview2/PKGBUILD +++ b/extra/pygtksourceview2/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pygtksourceview2 pkgver=2.10.1 pkgrel=3 pkgdesc="Python bindings for gtksourceview2" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('gtksourceview2>=2.10.0' 'pygtk>=2.17.0') makedepends=('intltool' 'pkgconfig') diff --git a/extra/pymad/PKGBUILD b/extra/pymad/PKGBUILD index 7b552f30e..768180463 100644 --- a/extra/pymad/PKGBUILD +++ b/extra/pymad/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pymad pkgver=0.6 pkgrel=3 pkgdesc="Python interface to libmad." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.spacepants.org/src/pymad/" license=('LGPL') depends=('libmad' 'python2') diff --git a/extra/pyopenssl/PKGBUILD b/extra/pyopenssl/PKGBUILD index 827aed0d8..b24f162b7 100644 --- a/extra/pyopenssl/PKGBUILD +++ b/extra/pyopenssl/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=pyopenssl pkgname=('pyopenssl' 'python2-pyopenssl') pkgver=0.13 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pypi.python.org/pypi/pyOpenSSL" license=('LGPL2.1') makedepends=('python' 'python2' 'openssl') diff --git a/extra/pyorbit/PKGBUILD b/extra/pyorbit/PKGBUILD index 930dd0dda..ab194f48b 100644 --- a/extra/pyorbit/PKGBUILD +++ b/extra/pyorbit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=pyorbit pkgver=2.24.0 pkgrel=3 pkgdesc="Python bindings for ORBit2" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') url="http://www.pygtk.org" depends=('python2' 'orbit2>=2.14.16') diff --git a/extra/pypgsql/PKGBUILD b/extra/pypgsql/PKGBUILD index ef62e81c9..f716a4ca3 100644 --- a/extra/pypgsql/PKGBUILD +++ b/extra/pypgsql/PKGBUILD @@ -4,7 +4,7 @@ pkgname=pypgsql pkgver=2.5.1 pkgrel=7 pkgdesc="A python client library for postgresql" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') url="http://pypgsql.sourceforge.net/" depends=('python-egenix-mx-base>=2.0.6-3' 'postgresql-libs>=8.4') diff --git a/extra/pyqt/PKGBUILD b/extra/pyqt/PKGBUILD index c66e95410..bce8baf82 100644 --- a/extra/pyqt/PKGBUILD +++ b/extra/pyqt/PKGBUILD @@ -8,7 +8,7 @@ pkgbase=pyqt pkgname=('pyqt' 'python2-pyqt') pkgver=4.8.6 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://riverbankcomputing.co.uk/software/pyqt/intro" license=('GPL') makedepends=('qt' 'python-sip' 'dbus-python' 'python2-sip' 'phonon' diff --git a/extra/pysmbc/PKGBUILD b/extra/pysmbc/PKGBUILD index 3864697f8..ff5c6b82e 100644 --- a/extra/pysmbc/PKGBUILD +++ b/extra/pysmbc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pysmbc pkgver=1.0.11.1 pkgrel=1 pkgdesc="Python bindings for libsmbclient" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pypi.python.org/pypi/pysmbc/" license=('GPL') depends=('python2' 'smbclient') diff --git a/extra/python-cairo/PKGBUILD b/extra/python-cairo/PKGBUILD index 458bfca4d..116763cc8 100644 --- a/extra/python-cairo/PKGBUILD +++ b/extra/python-cairo/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python-cairo pkgver=1.10.0 pkgrel=1 pkgdesc="Python bindings for the cairo graphics library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL3') depends=('python' 'cairo') makedepends=('pkg-config') diff --git a/extra/python-egenix-mx-base/PKGBUILD b/extra/python-egenix-mx-base/PKGBUILD index dcde4e180..217a550a8 100644 --- a/extra/python-egenix-mx-base/PKGBUILD +++ b/extra/python-egenix-mx-base/PKGBUILD @@ -7,7 +7,7 @@ _origname=egenix-mx-base pkgver=3.2.1 pkgrel=1 pkgdesc="A collection of Python tools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://www.egenix.com/products/python/mxBase/" depends=('python2') diff --git a/extra/python-geoip/PKGBUILD b/extra/python-geoip/PKGBUILD index 2a5fe156e..b43e0d82b 100644 --- a/extra/python-geoip/PKGBUILD +++ b/extra/python-geoip/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python-geoip pkgver=1.2.7 pkgrel=1 pkgdesc="Python bindings for the GeoIP IP-to-country resolver library." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.maxmind.com/app/python" license=('LGPL') depends=('python2' 'geoip') diff --git a/extra/python-imaging/PKGBUILD b/extra/python-imaging/PKGBUILD index a48ff7309..494b08521 100644 --- a/extra/python-imaging/PKGBUILD +++ b/extra/python-imaging/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python-imaging pkgver=1.1.7 pkgrel=3 pkgdesc="PIL. Provides image processing capabilities for python" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.pythonware.com/products/pil/index.htm" license=('custom:"pil"') depends=('python2' 'libjpeg' 'freetype2') diff --git a/extra/python-iwscan/PKGBUILD b/extra/python-iwscan/PKGBUILD index 83019f82e..6a4f0c260 100644 --- a/extra/python-iwscan/PKGBUILD +++ b/extra/python-iwscan/PKGBUILD @@ -4,7 +4,7 @@ pkgname=python-iwscan pkgver=20090609 pkgrel=2 pkgdesc="A Python interface to iwlist, using the iwlib library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://projects.otaku42.de/browser/python-iwscan" license=('LGPL') depends=('python2' 'wireless_tools') diff --git a/extra/python-lxml/PKGBUILD b/extra/python-lxml/PKGBUILD index 86b22a859..dc7ad0811 100644 --- a/extra/python-lxml/PKGBUILD +++ b/extra/python-lxml/PKGBUILD @@ -9,7 +9,7 @@ pkgname=python-lxml pkgver=2.3.1 pkgrel=1 pkgdesc="Python binding for the libxml2 and libxslt libraries" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('BSD' 'GPL' 'custom') url="http://lxml.de/" depends=('python2' 'libxslt') diff --git a/extra/python-m2crypto/PKGBUILD b/extra/python-m2crypto/PKGBUILD index 010da5c82..9af824956 100644 --- a/extra/python-m2crypto/PKGBUILD +++ b/extra/python-m2crypto/PKGBUILD @@ -7,7 +7,7 @@ pkgname=python-m2crypto pkgver=0.21.1 pkgrel=1 pkgdesc="A crypto and SSL toolkit for Python" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wiki.osafoundation.org/bin/view/Projects/MeTooCrypto" license=('BSD') depends=('python2' 'openssl') diff --git a/extra/python-markupsafe/PKGBUILD b/extra/python-markupsafe/PKGBUILD index 4fba8e363..a71fc67fb 100644 --- a/extra/python-markupsafe/PKGBUILD +++ b/extra/python-markupsafe/PKGBUILD @@ -6,7 +6,7 @@ pkgname=python-markupsafe pkgver=0.12 pkgrel=0 pkgdesc="Implements a XML/HTML/XHTML Markup safe string for Python" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pypi.python.org/pypi/MarkupSafe" license=('custom') depends=('python2') diff --git a/extra/python-notify/PKGBUILD b/extra/python-notify/PKGBUILD index efb98fd88..87f2ed93c 100644 --- a/extra/python-notify/PKGBUILD +++ b/extra/python-notify/PKGBUILD @@ -8,7 +8,7 @@ pkgname=python-notify pkgver=0.1.1 pkgrel=10 pkgdesc="Python bindings for libnotify" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.galago-project.org/" license=('GPL') depends=('pygtk>=2.22.0' 'libnotify>=0.7.1') diff --git a/extra/python-numpy/PKGBUILD b/extra/python-numpy/PKGBUILD index 81c6953e0..f981fe205 100755 --- a/extra/python-numpy/PKGBUILD +++ b/extra/python-numpy/PKGBUILD @@ -8,7 +8,7 @@ pkgname=('python2-numpy' 'python-numpy') pkgver=1.6.1 pkgrel=1 pkgdesc="Scientific tools for Python" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://numpy.scipy.org/" makedepends=('lapack' 'python' 'python2' 'python-distribute' 'python2-distribute' 'gcc-fortran' 'python-nose') diff --git a/extra/python-pycurl/PKGBUILD b/extra/python-pycurl/PKGBUILD index a60dc046a..03e45dc17 100644 --- a/extra/python-pycurl/PKGBUILD +++ b/extra/python-pycurl/PKGBUILD @@ -7,7 +7,7 @@ pkgname=python-pycurl pkgver=7.19.0 pkgrel=5 pkgdesc="A Python interface to libcurl" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://pycurl.sourceforge.net" license=('GPL') depends=('python2' 'curl') diff --git a/extra/python-pygame/PKGBUILD b/extra/python-pygame/PKGBUILD index a3447b7ce..2843920bc 100644 --- a/extra/python-pygame/PKGBUILD +++ b/extra/python-pygame/PKGBUILD @@ -8,7 +8,7 @@ pkgname=python-pygame pkgver=1.9.1 pkgrel=3 pkgdesc="Python game library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.pygame.org/" license=('LGPL') depends=('python2' 'sdl_mixer' 'libvorbis' 'sdl_ttf' 'sdl_image' 'smpeg') diff --git a/extra/python-pyspi/PKGBUILD b/extra/python-pyspi/PKGBUILD index ef5c18be6..85274a843 100644 --- a/extra/python-pyspi/PKGBUILD +++ b/extra/python-pyspi/PKGBUILD @@ -5,7 +5,7 @@ pkgname=python-pyspi pkgver=0.6.1 pkgrel=4 pkgdesc="Python AT-SPI bindings" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://people.redhat.com/zcerza/dogtail" license=('LGPL') depends=('python2' 'at-spi>=1.7.12') diff --git a/extra/python-pysqlite/PKGBUILD b/extra/python-pysqlite/PKGBUILD index d8cdd75a8..423f84915 100644 --- a/extra/python-pysqlite/PKGBUILD +++ b/extra/python-pysqlite/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2.6.3 pkgrel=1 pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational database engine" license=('custom') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/pysqlite/" depends=('python2' 'sqlite3') replaces=('pysqlite2') diff --git a/extra/python-telepathy/PKGBUILD b/extra/python-telepathy/PKGBUILD index 13fde3c16..828b9ed7f 100644 --- a/extra/python-telepathy/PKGBUILD +++ b/extra/python-telepathy/PKGBUILD @@ -5,7 +5,7 @@ pkgname=python-telepathy pkgver=0.15.19 pkgrel=1 pkgdesc="Python libraries for use in Telepathy clients and connection managers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://telepathy.freedesktop.org" license=('LGPL') depends=('dbus-python') diff --git a/extra/python-urwid/PKGBUILD b/extra/python-urwid/PKGBUILD index c15be07c8..b29fdccd6 100644 --- a/extra/python-urwid/PKGBUILD +++ b/extra/python-urwid/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.9.9.2 pkgrel=1 pkgdesc="Urwid is a curses-based user interface library." license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('python2') url="http://excess.org/urwid/" source=(http://excess.org/urwid/urwid-$pkgver.tar.gz) diff --git a/extra/python-wpactrl/PKGBUILD b/extra/python-wpactrl/PKGBUILD index 0f3f9b84c..706ad8331 100644 --- a/extra/python-wpactrl/PKGBUILD +++ b/extra/python-wpactrl/PKGBUILD @@ -4,7 +4,7 @@ pkgname=python-wpactrl pkgver=20090609 pkgrel=2 pkgdesc="A Python extension for wpa_supplicant/hostapd control interface access" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://projects.otaku42.de/wiki/PythonWpaCtrl" license=('GPL2') depends=('python2') diff --git a/extra/python/PKGBUILD b/extra/python/PKGBUILD index f90d8576f..a29eaba92 100644 --- a/extra/python/PKGBUILD +++ b/extra/python/PKGBUILD @@ -8,11 +8,13 @@ pkgver=3.2.2 pkgrel=1 _pybasever=3.2 pkgdesc="Next generation of the python high-level scripting language" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://www.python.org/" depends=('expat' 'bzip2' 'gdbm' 'openssl' 'libffi' 'zlib') makedepends=('tk' 'sqlite3' 'valgrind') +[ "$CARCH" = "mips64el" ] && \ +makedepends=('tk' 'sqlite3') optdepends=('tk: for tkinter' 'sqlite3') provides=('python3') replaces=('python3') @@ -32,6 +34,18 @@ build() { rm -r Modules/zlib rm -r Modules/_ctypes/{darwin,libffi}* + + if [ "$CARCH" = "mips64el" ]; then + ./configure --prefix=/usr \ + --enable-shared \ + --with-threads \ + --with-computed-gotos \ + --enable-ipv6 \ + --without-valgrind \ + --with-wide-unicode \ + --with-system-expat \ + --with-system-ffi + else ./configure --prefix=/usr \ --enable-shared \ --with-threads \ @@ -41,6 +55,7 @@ build() { --with-wide-unicode \ --with-system-expat \ --with-system-ffi + fi make } diff --git a/extra/python2-cairo/PKGBUILD b/extra/python2-cairo/PKGBUILD index 0f2fb1462..5629199d2 100644 --- a/extra/python2-cairo/PKGBUILD +++ b/extra/python2-cairo/PKGBUILD @@ -5,7 +5,7 @@ pkgname=python2-cairo pkgver=1.10.0 pkgrel=1 pkgdesc="Python2 bindings for the cairo graphics library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL' 'MPL') depends=('python2' 'cairo') options=('!libtool') diff --git a/extra/pywebkitgtk/PKGBUILD b/extra/pywebkitgtk/PKGBUILD index df78ea739..7aa9a5f2e 100644 --- a/extra/pywebkitgtk/PKGBUILD +++ b/extra/pywebkitgtk/PKGBUILD @@ -7,7 +7,7 @@ pkgname=pywebkitgtk pkgver=1.1.8 pkgrel=1 pkgdesc="Python bindings to the WebKit GTK+ port" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/pywebkitgtk/" license=('LGPL') depends=('libwebkit' 'pygtk') diff --git a/extra/pyxml/PKGBUILD b/extra/pyxml/PKGBUILD index eea70cc62..2474ca9c4 100644 --- a/extra/pyxml/PKGBUILD +++ b/extra/pyxml/PKGBUILD @@ -6,7 +6,7 @@ pkgname=pyxml pkgver=0.8.4 pkgrel=8 pkgdesc="Python XML parsing library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/pyxml/" license=('custom') depends=('python2') diff --git a/extra/qalculate-gtk/PKGBUILD b/extra/qalculate-gtk/PKGBUILD index 9eb48dcaf..56092e7b3 100644 --- a/extra/qalculate-gtk/PKGBUILD +++ b/extra/qalculate-gtk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=qalculate-gtk pkgver=0.9.7 pkgrel=2 pkgdesc="GNOME frontend for libqalculate" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qalculate.sourceforge.net/" license=('GPL') depends=('libqalculate' 'libgnome' 'libglade' 'cln') diff --git a/extra/qalculate-kde/PKGBUILD b/extra/qalculate-kde/PKGBUILD index 1b8a372a1..011fc36d0 100644 --- a/extra/qalculate-kde/PKGBUILD +++ b/extra/qalculate-kde/PKGBUILD @@ -5,7 +5,7 @@ pkgname=qalculate-kde pkgver=0.9.7 pkgrel=2 pkgdesc="KDE frontend for libqalculate" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qalculate.sourceforge.net/" license=('GPL') depends=('libqalculate' 'kdelibs3' 'cln') diff --git a/extra/qca-gnupg/PKGBUILD b/extra/qca-gnupg/PKGBUILD index 376cf31df..cbe885624 100644 --- a/extra/qca-gnupg/PKGBUILD +++ b/extra/qca-gnupg/PKGBUILD @@ -7,7 +7,7 @@ pkgver=2.0.0 _pkgver=2.0.0-beta3 pkgrel=2 pkgdesc="Qt Cryptographic Architecture" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://delta.affinix.com/qca/" license=('LGPL') depends=('qca') diff --git a/extra/qca-ossl/PKGBUILD b/extra/qca-ossl/PKGBUILD index 700e8a634..91fb1bbf4 100644 --- a/extra/qca-ossl/PKGBUILD +++ b/extra/qca-ossl/PKGBUILD @@ -6,7 +6,7 @@ pkgver=2.0.0 _pkgver=2.0.0-beta3 pkgrel=3 pkgdesc="Qt Cryptographic Architecture" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://delta.affinix.com/qca/" license=('LGPL') depends=('qca') diff --git a/extra/qca/PKGBUILD b/extra/qca/PKGBUILD index 41b8aeba9..2cf9184ce 100644 --- a/extra/qca/PKGBUILD +++ b/extra/qca/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qca pkgver=2.0.3 pkgrel=1 pkgdesc="Qt Cryptographic Architecture" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://delta.affinix.com/qca/" license=('LGPL') depends=('qt' 'ca-certificates') diff --git a/extra/qemu-kvm/PKGBUILD b/extra/qemu-kvm/PKGBUILD index 22d412f9b..819226d3c 100644 --- a/extra/qemu-kvm/PKGBUILD +++ b/extra/qemu-kvm/PKGBUILD @@ -4,7 +4,7 @@ pkgname=qemu-kvm pkgver=0.15.1 pkgrel=1 pkgdesc="Latest KVM QEMU is a generic and open source processor emulator which achieves a good emulation speed by using dynamic translation." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2' 'LGPL2.1') url="http://www.linux-kvm.org" depends=('libjpeg' 'libpng' 'libsasl' 'curl' 'sdl' 'alsa-lib' 'nss' 'glib2' 'gnutls>=2.4.1' 'bluez' 'vde2' 'util-linux-ng') diff --git a/extra/qemu/PKGBUILD b/extra/qemu/PKGBUILD index ba3890ab2..b949c6ee0 100644 --- a/extra/qemu/PKGBUILD +++ b/extra/qemu/PKGBUILD @@ -4,7 +4,7 @@ pkgname=qemu pkgver=0.15.1 pkgrel=1 pkgdesc="A generic and open source processor emulator which achieves a good emulation speed by using dynamic translation." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2' 'LGPL2.1') url="http://wiki.qemu.org/Index.html" makedepends=('texi2html' 'perl' 'python2') diff --git a/extra/qhull/PKGBUILD b/extra/qhull/PKGBUILD index ebd94380f..806c926ad 100644 --- a/extra/qhull/PKGBUILD +++ b/extra/qhull/PKGBUILD @@ -8,7 +8,7 @@ pkgname=qhull pkgver=2010.1 pkgrel=1 pkgdesc="A general dimension code for computing convex hulls and related structures" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.qhull.org/" license=('custom') depends=('glibc') diff --git a/extra/qimageblitz/PKGBUILD b/extra/qimageblitz/PKGBUILD index a6717e077..04ad21b8c 100644 --- a/extra/qimageblitz/PKGBUILD +++ b/extra/qimageblitz/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qimageblitz pkgver=0.0.6 pkgrel=1 pkgdesc="An interm image effect library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/qimageblitz" license=('GPL2') depends=('qt') @@ -19,6 +19,7 @@ build() { cd ${srcdir} mkdir build cd build + CXX="g++" \ cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr diff --git a/extra/qiv/PKGBUILD b/extra/qiv/PKGBUILD index fc98e1dc2..94505ed1d 100644 --- a/extra/qiv/PKGBUILD +++ b/extra/qiv/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qiv pkgver=2.2.4 pkgrel=1 pkgdesc="Quick Image Viewer (qiv) is a very small and fast GDK/Imlib image viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://spiegl.de/qiv/" license=('GPL2') depends=('file' 'gtk2' 'imlib2') diff --git a/extra/qjackctl/PKGBUILD b/extra/qjackctl/PKGBUILD index 1c28b8ae8..d44e3bd72 100644 --- a/extra/qjackctl/PKGBUILD +++ b/extra/qjackctl/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.3.8 pkgrel=1 pkgdesc="A Qt front-end for the JACK low-latency audio server" url="http://qjackctl.sourceforge.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('jack' 'qt') options=('!makeflags') diff --git a/extra/qjson/PKGBUILD b/extra/qjson/PKGBUILD index c399bb632..619962e02 100644 --- a/extra/qjson/PKGBUILD +++ b/extra/qjson/PKGBUILD @@ -5,7 +5,7 @@ pkgname=qjson pkgver=0.7.1 pkgrel=1 pkgdesc="A qt-based library that maps JSON data to QVariant objects" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://qjson.sourceforge.net" depends=('qt') diff --git a/extra/qrencode/PKGBUILD b/extra/qrencode/PKGBUILD index 54915dcd0..5a816e0b9 100644 --- a/extra/qrencode/PKGBUILD +++ b/extra/qrencode/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qrencode pkgver=3.1.1 pkgrel=2 pkgdesc="C library for encoding data in a QR Code symbol." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('libpng>=1.4.0') makedepends=(sdl) url="http://megaui.net/fukuchi/works/qrencode/index.en.html" diff --git a/extra/qscintilla/PKGBUILD b/extra/qscintilla/PKGBUILD index 466140ede..d8c966d4d 100644 --- a/extra/qscintilla/PKGBUILD +++ b/extra/qscintilla/PKGBUILD @@ -7,7 +7,7 @@ pkgname=('qscintilla' 'python-qscintilla' 'python2-qscintilla') pkgver=2.5.1 pkgrel=2 license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.riverbankcomputing.co.uk/software/qscintilla/intro" makedepends=('python2-pyqt') source=("http://riverbankcomputing.com/static/Downloads/QScintilla2/QScintilla-gpl-${pkgver}.tar.gz" diff --git a/extra/qsynth/PKGBUILD b/extra/qsynth/PKGBUILD index 56524dc94..72171d726 100644 --- a/extra/qsynth/PKGBUILD +++ b/extra/qsynth/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qsynth pkgver=0.3.6 pkgrel=1 pkgdesc="Qt GUI for FluidSynth" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qsynth.sourceforge.net/" license=('GPL') depends=('fluidsynth' 'qt') diff --git a/extra/qt-assistant-compat/PKGBUILD b/extra/qt-assistant-compat/PKGBUILD index 49fa9f0f2..e19e19418 100644 --- a/extra/qt-assistant-compat/PKGBUILD +++ b/extra/qt-assistant-compat/PKGBUILD @@ -6,7 +6,7 @@ pkgver=4.6.3 pkgrel=1 pkgdesk="compat version of Qt Assistant" url="http://qt.nokia.com/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3' 'LGPL') depends=('qt') source=('ftp://ftp.qt.nokia.com/qt/source/qt-assistant-qassistantclient-library-compat-src-4.6.3.tar.gz' diff --git a/extra/qt/PKGBUILD b/extra/qt/PKGBUILD index 0610b2920..1bb8ceb2b 100644 --- a/extra/qt/PKGBUILD +++ b/extra/qt/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=qt pkgname=('qt' 'qt-private-headers') pkgver=4.7.4 pkgrel=3 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://qt.nokia.com/' license=('GPL3' 'LGPL') makedepends=('libtiff' 'libpng' 'libmng' 'sqlite3' 'ca-certificates' 'glib2' 'dbus' @@ -32,6 +32,12 @@ build() { export PATH=${QT4DIR}/bin:${PATH} export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH} +# Disable precompiled headers for mips64el + [ "$CARCH" = "mips64el" ] && { + export CXXFLAGS="$CXXFLAGS -fpermissive" + extra="-no-pch" + } + # FS#24601 export CXXFLAGS="$CXXFLAGS -fno-strict-aliasing" @@ -81,7 +87,7 @@ build() { -gtkstyle \ -opengl \ -no-openvg \ - -glib + -glib $extra make } diff --git a/extra/qt3/PKGBUILD b/extra/qt3/PKGBUILD index c0e86f867..47ad18e13 100644 --- a/extra/qt3/PKGBUILD +++ b/extra/qt3/PKGBUILD @@ -7,7 +7,7 @@ pkgname=qt3 pkgver=3.3.8 pkgrel=20 pkgdesc="The QT3 gui toolkit" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.trolltech.com/products/qt/index.html" pkgfqn=qt-x11-free-${pkgver} diff --git a/extra/qtcurve-gtk2/PKGBUILD b/extra/qtcurve-gtk2/PKGBUILD index cd5e3cfce..93e1e3106 100644 --- a/extra/qtcurve-gtk2/PKGBUILD +++ b/extra/qtcurve-gtk2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qtcurve-gtk2 pkgver=1.8.12 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/extra/qtcurve-kde3/PKGBUILD b/extra/qtcurve-kde3/PKGBUILD index 9aeadda41..a916c64ad 100644 --- a/extra/qtcurve-kde3/PKGBUILD +++ b/extra/qtcurve-kde3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=qtcurve-kde3 pkgver=1.8.5 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/extra/qtcurve-kde4/PKGBUILD b/extra/qtcurve-kde4/PKGBUILD index cf5716603..cb31d7040 100644 --- a/extra/qtcurve-kde4/PKGBUILD +++ b/extra/qtcurve-kde4/PKGBUILD @@ -5,7 +5,7 @@ pkgname=qtcurve-kde4 pkgver=1.8.9 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/extra/qtiplot/PKGBUILD b/extra/qtiplot/PKGBUILD index 41c84d82a..1bb6ad272 100644 --- a/extra/qtiplot/PKGBUILD +++ b/extra/qtiplot/PKGBUILD @@ -6,7 +6,7 @@ pkgname=qtiplot pkgver=0.9.8.8 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://soft.proindependent.com/qtiplot.html" pkgdesc="Data analysis and scientific plotting - free clone of Origin" depends=('muparser' 'gsl' 'python2-qt' 'boost-libs' 'shared-mime-info' 'mesa' 'liborigin2' 'qt-assistant-compat' 'tamu-anova') diff --git a/extra/qtscriptgenerator/PKGBUILD b/extra/qtscriptgenerator/PKGBUILD index 7e9773a58..07fb0bff8 100644 --- a/extra/qtscriptgenerator/PKGBUILD +++ b/extra/qtscriptgenerator/PKGBUILD @@ -5,7 +5,7 @@ pkgname=qtscriptgenerator pkgver=0.1.0 pkgrel=4 pkgdesc="Script generator for qt" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://code.google.com/p/qtscriptgenerator/" license=('GPL') depends=('qt' 'phonon') diff --git a/extra/quodlibet/PKGBUILD b/extra/quodlibet/PKGBUILD index 769dbc020..96e5e179d 100644 --- a/extra/quodlibet/PKGBUILD +++ b/extra/quodlibet/PKGBUILD @@ -5,7 +5,7 @@ pkgname=quodlibet pkgver=2.3.2 pkgrel=1 pkgdesc="An audio player written in pygtk" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://code.google.com/p/quodlibet/" depends=('gstreamer0.10-python' 'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' diff --git a/extra/quota-tools/PKGBUILD b/extra/quota-tools/PKGBUILD index 79bb209a4..b7b18e573 100644 --- a/extra/quota-tools/PKGBUILD +++ b/extra/quota-tools/PKGBUILD @@ -5,7 +5,7 @@ pkgname=quota-tools pkgver=4.00_pre1 pkgrel=1 pkgdesc="Tools to manage kernel-level quotas in Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/linuxquota/" license=('GPL' 'BSD') depends=('e2fsprogs') diff --git a/extra/qwt/PKGBUILD b/extra/qwt/PKGBUILD index 4eac3c05c..3b7c111bb 100644 --- a/extra/qwt/PKGBUILD +++ b/extra/qwt/PKGBUILD @@ -5,7 +5,7 @@ pkgname=qwt pkgver=6.0.1 pkgrel=1 pkgdesc="Qt Widgets for Technical Applications" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://qwt.sourceforge.net/" depends=('qt') options=('!makeflags') diff --git a/extra/qwtplot3d/PKGBUILD b/extra/qwtplot3d/PKGBUILD index 8bd7c546b..8b1c1c067 100644 --- a/extra/qwtplot3d/PKGBUILD +++ b/extra/qwtplot3d/PKGBUILD @@ -5,7 +5,7 @@ pkgname=qwtplot3d pkgver=0.2.7 pkgrel=3 pkgdesc="Qt/OpenGL-based C++ programming library containing 3d-widgets" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') license=('custom:zlib') url="http://qwtplot3d.sourceforge.net/" depends=('qt' 'qwt' 'mesa') diff --git a/extra/r/PKGBUILD b/extra/r/PKGBUILD index 3bccb3bec..34b5af780 100644 --- a/extra/r/PKGBUILD +++ b/extra/r/PKGBUILD @@ -7,7 +7,7 @@ pkgname=r pkgver=2.13.2 pkgrel=1 pkgdesc="Language and environment for statistical computing and graphics" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url=('http://www.r-project.org/') depends=('blas' 'lapack' 'bzip2' 'libpng' 'libjpeg' 'libtiff' diff --git a/extra/racket/PKGBUILD b/extra/racket/PKGBUILD index 6115e03f3..4e5384815 100644 --- a/extra/racket/PKGBUILD +++ b/extra/racket/PKGBUILD @@ -5,7 +5,7 @@ pkgname=racket pkgver=5.1.3 pkgrel=1 pkgdesc="A programming language environment (formerly known as PLT Scheme) suitable for tasks ranging from scripting to application development" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://racket-lang.org/" license=('LGPL') depends=('gtk2' 'libffi' 'desktop-file-utils') diff --git a/extra/raptor/PKGBUILD b/extra/raptor/PKGBUILD index 2f73f333a..5953b4fe1 100644 --- a/extra/raptor/PKGBUILD +++ b/extra/raptor/PKGBUILD @@ -7,7 +7,7 @@ pkgname=raptor pkgver=2.0.4 pkgrel=1 pkgdesc="A C library that parses RDF/XML/N-Triples into RDF triples" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://librdf.org/raptor" depends=('libxml2>=2.7.8' 'curl>=7.21.7' 'zlib>=1.2.5' 'libxslt>=1.1.26') license=('LGPL') diff --git a/extra/raptor1/PKGBUILD b/extra/raptor1/PKGBUILD index c50886bde..c8cf6aa7b 100644 --- a/extra/raptor1/PKGBUILD +++ b/extra/raptor1/PKGBUILD @@ -7,7 +7,7 @@ pkgname=raptor1 pkgver=1.4.21 pkgrel=3 pkgdesc="A C library that parses RDF/XML/N-Triples into RDF triples - old V1 api for compatibility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://librdf.org/raptor" depends=('libxml2' 'curl' 'zlib' 'libxslt') license=('LGPL') diff --git a/extra/rarian/PKGBUILD b/extra/rarian/PKGBUILD index f6ddb58b0..612a21490 100644 --- a/extra/rarian/PKGBUILD +++ b/extra/rarian/PKGBUILD @@ -5,7 +5,7 @@ pkgname=rarian pkgver=0.8.1 pkgrel=2 pkgdesc="Documentation meta-data library, designed as a replacement for Scrollkeeper." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://rarian.freedesktop.org/" license=('GPL') depends=('gcc-libs') diff --git a/extra/rasqal/PKGBUILD b/extra/rasqal/PKGBUILD index d4c261db8..a9c2053e1 100644 --- a/extra/rasqal/PKGBUILD +++ b/extra/rasqal/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc="A free C library that handles Resource Description Framework (RDF) query syntaxes, query construction and query execution returning result bindings" url="http://librdf.org/rasqal" license=('GPL' 'LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('raptor>=2.0.3' 'mpfr') options=('!libtool') source=(http://download.librdf.org/source/${pkgname}-${pkgver}.tar.gz) diff --git a/extra/ratpoison/PKGBUILD b/extra/ratpoison/PKGBUILD index fcea6c2ec..2d42ee67e 100644 --- a/extra/ratpoison/PKGBUILD +++ b/extra/ratpoison/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ratpoison pkgver=1.4.5 pkgrel=4 pkgdesc="A simple keystroke-driven window manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libxinerama' 'readline' 'bash' 'perl' 'libxtst' 'libxft' 'texinfo') url="http://www.nongnu.org/ratpoison/" diff --git a/extra/razor/PKGBUILD b/extra/razor/PKGBUILD index 87905b577..86da8cea2 100644 --- a/extra/razor/PKGBUILD +++ b/extra/razor/PKGBUILD @@ -7,7 +7,7 @@ pkgname=razor pkgver=2.84 pkgrel=5 pkgdesc="A distributed, collaborative, spam detection and filtering network" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://razor.sourceforge.net" license=('PerlArtistic') depends=('perl-net-dns' 'perl-digest-sha1' 'perl-uri' 'perl-digest-nilsimsa' 'perl>=5.14.0') diff --git a/extra/rcs/PKGBUILD b/extra/rcs/PKGBUILD index 814bd760d..63d22a943 100644 --- a/extra/rcs/PKGBUILD +++ b/extra/rcs/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=1 pkgdesc='Revision Control System: manages multiple revisions of files' url='http://www.gnu.org/software/rcs/' license=('GPL3') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=("http://ftpmirror.gnu.org/${pkgname}/${pkgname}-${pkgver}.tar.gz") sha1sums=('6ba0c3ea2d170990214a26b323feaadb89bb4206') diff --git a/extra/rdesktop/PKGBUILD b/extra/rdesktop/PKGBUILD index 07f51ce8b..9356ec06c 100644 --- a/extra/rdesktop/PKGBUILD +++ b/extra/rdesktop/PKGBUILD @@ -9,7 +9,7 @@ depends=('libx11' 'openssl' 'libao' 'libsamplerate') pkgdesc="An open source client for Windows Remote Desktop Services" url="http://www.rdesktop.org/" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz" 'rdesktop-send_physical_buttons.diff' 'rdesktop-libao.patch') md5sums=('77fa93b21aa38837a85e81c00e757228' diff --git a/extra/re-alpine/PKGBUILD b/extra/re-alpine/PKGBUILD index 9293744c9..3b3d59ab3 100644 --- a/extra/re-alpine/PKGBUILD +++ b/extra/re-alpine/PKGBUILD @@ -6,7 +6,7 @@ pkgname=re-alpine pkgver=2.02 pkgrel=3 pkgdesc="The continuation of the Alpine email client from University of Washington" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/re-alpine/" license=('APACHE') depends=('libldap' 'krb5') diff --git a/extra/re2c/PKGBUILD b/extra/re2c/PKGBUILD index 8b0d5be7a..7380b1d9a 100644 --- a/extra/re2c/PKGBUILD +++ b/extra/re2c/PKGBUILD @@ -6,7 +6,7 @@ pkgname=re2c pkgver=0.13.5 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gcc-libs') pkgdesc="A tool for generating C-based recognizers from regular expressions" url="http://re2c.sourceforge.net/" diff --git a/extra/recode/PKGBUILD b/extra/recode/PKGBUILD index f95e08fde..24e6e30be 100644 --- a/extra/recode/PKGBUILD +++ b/extra/recode/PKGBUILD @@ -6,7 +6,7 @@ pkgname=recode pkgver=3.6 pkgrel=6 pkgdesc="Converts files between various character sets and usages" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://recode.progiciels-bpi.ca/index.html" license=('GPL' 'LGPL') depends=('glibc' 'texinfo') diff --git a/extra/redland/PKGBUILD b/extra/redland/PKGBUILD index 85ea14d13..3155b0967 100644 --- a/extra/redland/PKGBUILD +++ b/extra/redland/PKGBUILD @@ -9,7 +9,7 @@ pkgver=1.0.14 pkgrel=1 url="http://librdf.org/" license=("GPL") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=('rasqal>=0.9.26' 'raptor>=2.0.4' 'db>=5.2' 'postgresql-libs' 'libmysqlclient' 'unixodbc' 'sqlite3') options=('!libtool') source=(http://download.librdf.org/source/$pkgname-$pkgver.tar.gz diff --git a/extra/rest/PKGBUILD b/extra/rest/PKGBUILD index 49c5e4a33..c5b485f8b 100644 --- a/extra/rest/PKGBUILD +++ b/extra/rest/PKGBUILD @@ -5,7 +5,7 @@ pkgname=rest pkgver=0.7.11 pkgrel=1 pkgdesc="A helper library for RESTful services." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gtk.org/" license=('GPL2') depends=('glib2' 'libxml2' 'libsoup-gnome') diff --git a/extra/rhythmbox/PKGBUILD b/extra/rhythmbox/PKGBUILD index e7e91d452..6eb3ce681 100644 --- a/extra/rhythmbox/PKGBUILD +++ b/extra/rhythmbox/PKGBUILD @@ -6,7 +6,7 @@ pkgname=rhythmbox pkgver=2.90.1.git20110928 pkgrel=1 pkgdesc="An iTunes-like music player/libary" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.rhythmbox.org" depends=('libgpod' 'gvfs-afc' 'totem-plparser' 'libmusicbrainz3' 'libmtp' 'lirc-utils' 'libwebkit3' 'libdmapsharing' 'media-player-info' 'python2-gobject' diff --git a/extra/ristretto/PKGBUILD b/extra/ristretto/PKGBUILD index 558a3ed1a..886adb619 100644 --- a/extra/ristretto/PKGBUILD +++ b/extra/ristretto/PKGBUILD @@ -6,11 +6,11 @@ pkgname=ristretto pkgver=0.2.1 pkgrel=1 pkgdesc="An image viewer for Xfce" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://goodies.xfce.org/projects/applications/ristretto" license=('GPL') depends=('libxfce4ui' 'libexif' 'desktop-file-utils' 'hicolor-icon-theme') -makedepends=('intltool') +makedepends=('intltool' 'gettext' 'pkg-config') options=('!libtool') groups=('xfce4-goodies') install=ristretto.install diff --git a/extra/rosegarden/PKGBUILD b/extra/rosegarden/PKGBUILD index 967e6d1ea..b2c5880a7 100644 --- a/extra/rosegarden/PKGBUILD +++ b/extra/rosegarden/PKGBUILD @@ -8,7 +8,7 @@ pkgname=rosegarden pkgver=11.06 pkgrel=1 pkgdesc="MIDI/audio sequencer and notation editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.rosegardenmusic.com/" license=('GPL') depends=('liblrdf' 'dssi' 'fftw' 'lirc-utils' diff --git a/extra/rox/PKGBUILD b/extra/rox/PKGBUILD index e8f231f4e..30d4e3554 100644 --- a/extra/rox/PKGBUILD +++ b/extra/rox/PKGBUILD @@ -6,7 +6,7 @@ pkgname=rox pkgver=2.11 pkgrel=1 pkgdesc="A small and fast file manager which can optionally manage the desktop background and panels" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://roscidus.com/desktop/" depends=('sh' 'libsm' 'gtk2') diff --git a/extra/rrdtool/PKGBUILD b/extra/rrdtool/PKGBUILD index 9e5a9dc9d..932710e88 100644 --- a/extra/rrdtool/PKGBUILD +++ b/extra/rrdtool/PKGBUILD @@ -5,11 +5,11 @@ pkgname=rrdtool pkgver=1.4.5 pkgrel=4 pkgdesc="Data logging and graphing application" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.rrdtool.org" license=('GPL' 'custom') depends=('libxml2' 'pango' 'ttf-dejavu') -makedepends=('intltool' 'ruby' 'python2' 'tcl' 'lua') +makedepends=('intltool' 'ruby' 'python2' 'tcl' 'lua' 'groff') optdepends=('tcl: to use corresponding binding' \ 'python2: to use corresponding binding' \ 'ruby: to use corresponding binding' \ diff --git a/extra/rssh/PKGBUILD b/extra/rssh/PKGBUILD index 131c0ed16..cda6c45e4 100644 --- a/extra/rssh/PKGBUILD +++ b/extra/rssh/PKGBUILD @@ -4,7 +4,7 @@ pkgname=rssh pkgver=2.3.3 pkgrel=2 pkgdesc='A restricted shell for use with OpenSSH, allowing only scp and/or sftp' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.pizzashack.org/rssh/' depends=('openssh' 'glibc') backup=('etc/rssh.conf') diff --git a/extra/rsync/PKGBUILD b/extra/rsync/PKGBUILD index afba29ff2..4805bafba 100644 --- a/extra/rsync/PKGBUILD +++ b/extra/rsync/PKGBUILD @@ -7,7 +7,7 @@ pkgname=rsync pkgver=3.0.9 pkgrel=1 pkgdesc="A file transfer program to keep remote files in sync" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://samba.anu.edu.au/rsync/" license=('GPL3') depends=('acl') diff --git a/extra/rtkit/PKGBUILD b/extra/rtkit/PKGBUILD index 2a9ed84eb..2e1101561 100644 --- a/extra/rtkit/PKGBUILD +++ b/extra/rtkit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=rtkit pkgver=0.10 pkgrel=2 pkgdesc="Realtime Policy and Watchdog Daemon" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://git.0pointer.de/?p=rtkit.git" license=('GPL' 'custom:BSD') depends=('dbus' 'polkit') diff --git a/extra/rtmpdump/PKGBUILD b/extra/rtmpdump/PKGBUILD index b1e933a21..98318e7d2 100644 --- a/extra/rtmpdump/PKGBUILD +++ b/extra/rtmpdump/PKGBUILD @@ -7,7 +7,7 @@ pkgname=rtmpdump pkgver=2.4 pkgrel=1 pkgdesc="A tool to download rtmp streams" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://rtmpdump.mplayerhq.hu/" license=('GPL2' 'LGPL2.1') depends=('openssl') diff --git a/extra/rubberband/PKGBUILD b/extra/rubberband/PKGBUILD index f9506554d..526dd8f57 100644 --- a/extra/rubberband/PKGBUILD +++ b/extra/rubberband/PKGBUILD @@ -6,7 +6,7 @@ pkgname=rubberband pkgver=1.6.0 pkgrel=2 pkgdesc="Time-stretching and pitch-shifting audio library and utility" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.breakfastquay.com/rubberband/" license=('GPL') depends=('libsamplerate' 'fftw' 'vamp-plugin-sdk') diff --git a/extra/ruby/PKGBUILD b/extra/ruby/PKGBUILD index 0cf2bb88d..9ed0088fc 100644 --- a/extra/ruby/PKGBUILD +++ b/extra/ruby/PKGBUILD @@ -9,14 +9,14 @@ pkgname=('ruby' 'ruby-docs') pkgver=1.9.2_p290 pkgrel=1 pkgdesc="An object-oriented language for quick and easy programming" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ruby-lang.org/en/" license=('custom') makedepends=('openssl' 'tk' 'libffi' 'doxygen' 'graphviz') -options=('!emptydirs' '!makeflags') -source=(ftp://ftp.ruby-lang.org/pub/${pkgbase}/${pkgver%.*}/${pkgbase}-${pkgver//_/-}.tar.bz2) -md5sums=('096758c3e853b839dc980b183227b182') -sha1sums=('8f25a74f50a10fdd9724e3c74ccd7bae596e198b') +[ "$CARCH" = "mips64el" ] && \ +makedepends=('openssl' 'tk' 'libffi' 'doxygen') +options=('!emptydirs') +source=("ftp://ftp.ruby-lang.org/pub/${pkgbase}/1.9/${pkgbase}-${pkgver//_/-}.tar.bz2") build() { cd "${srcdir}/${pkgbase}-${pkgver//_/-}" @@ -43,3 +43,4 @@ package_ruby-docs() { make DESTDIR="${pkgdir}" install-doc install-capi install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } +md5sums=('096758c3e853b839dc980b183227b182') diff --git a/extra/rxvt-unicode/PKGBUILD b/extra/rxvt-unicode/PKGBUILD index 789246858..919693667 100644 --- a/extra/rxvt-unicode/PKGBUILD +++ b/extra/rxvt-unicode/PKGBUILD @@ -7,7 +7,7 @@ pkgname=rxvt-unicode pkgver=9.12 pkgrel=1 pkgdesc="An unicode enabled rxvt-clone terminal emulator (urxvt)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://software.schmorp.de/pkg/rxvt-unicode.html" license=('GPL') depends=('gcc-libs' 'libxft' 'gdk-pixbuf2') diff --git a/extra/samba/PKGBUILD b/extra/samba/PKGBUILD index cdaaf6e14..9592c0e52 100644 --- a/extra/samba/PKGBUILD +++ b/extra/samba/PKGBUILD @@ -9,7 +9,7 @@ pkgver=3.6.1 # misconstrues as alpha, beta, etc. Bad samba! _realver=3.6.1 pkgrel=1 -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.samba.org" license=('GPL3') makedepends=('db' 'popt' 'libcups' 'acl' 'libldap' 'libcap' 'krb5' 'pam' 'gamin' 'gnutls>=2.4.1' 'talloc' 'tdb') diff --git a/extra/sane-frontends/PKGBUILD b/extra/sane-frontends/PKGBUILD index 0389326dd..36a2b0721 100644 --- a/extra/sane-frontends/PKGBUILD +++ b/extra/sane-frontends/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sane-frontends pkgver=1.0.14 pkgrel=5 pkgdesc="A set of frontends for SANE." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.sane-project.org" license=('GPL') depends=('sane' 'gimp' 'libjpeg>=7') diff --git a/extra/sane/PKGBUILD b/extra/sane/PKGBUILD index 6d0d26c57..d1eda7ab0 100644 --- a/extra/sane/PKGBUILD +++ b/extra/sane/PKGBUILD @@ -9,7 +9,7 @@ pkgver=1.0.22 pkgrel=4 pkgdesc="Scanner Access Now Easy" url="http://www.sane-project.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libtiff>=3.9.2-2' 'libgphoto2>=2.4.7-2' 'libjpeg>=8' 'libieee1284' 'libusb-compat' 'v4l-utils' 'avahi' 'bash') makedepends=('texlive-latexextra') diff --git a/extra/sbcl/PKGBUILD b/extra/sbcl/PKGBUILD index 58b4d824c..70ea00d74 100644 --- a/extra/sbcl/PKGBUILD +++ b/extra/sbcl/PKGBUILD @@ -9,16 +9,20 @@ pkgver=1.0.52 pkgrel=1 pkgdesc="Steel Bank Common Lisp" url="http://www.sbcl.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') depends=('glibc') provides=('common-lisp' 'cl-asdf') makedepends=('sbcl' 'texinfo') +[ "$CARCH" = "mips64el" ] && \ +makedepends=('clisp' 'texinfo') install=sbcl.install source=("http://downloads.sourceforge.net/project/sbcl/sbcl/$pkgver/$pkgname-$pkgver-source.tar.bz2" - "arch-fixes.lisp") + "arch-fixes.lisp" + "mips-arch.h.diff") md5sums=('e9e186637155184ec662b5a37634b457' - '7ac0c1936547f4278198b8bf7725204d') + '7ac0c1936547f4278198b8bf7725204d' + 'a456535d65d6c5b85b1b646f11455fce') build() { cd "$srcdir/$pkgname-$pkgver" @@ -39,7 +43,11 @@ build() { (disable :largefile))) EOF - sh make.sh sbcl + if [ "$CARCH" = "mips64el" ]; then + sh make.sh clisp + else + sh make.sh sbcl + fi make -C doc/manual info } diff --git a/extra/sbcl/mips-arch.h.diff b/extra/sbcl/mips-arch.h.diff new file mode 100644 index 000000000..4f593aa83 --- /dev/null +++ b/extra/sbcl/mips-arch.h.diff @@ -0,0 +1,20 @@ +--- sbcl-1.0.49.orig/src/runtime/mips-arch.h 2011-06-25 16:13:44.103101571 +0200 ++++ sbcl-1.0.49/src/runtime/mips-arch.h 2011-06-25 16:14:31.279501569 +0200 +@@ -1,6 +1,8 @@ + #ifndef _MIPS_ARCH_H + #define _MIPS_ARCH_H + ++/* For lose. */ ++#include "interr.h" + + static inline void + get_spinlock(volatile lispobj *word, long value) +@@ -31,7 +33,7 @@ + [__new] "r" (value) + : "memory"); + +- if (!cmp) ++ if (!__cmp) + lose("recursive get_spinlock: 0x%x,%d\n", word, value); + #else /* LISP_FEATURE_SB_THREAD */ + *word=value; diff --git a/extra/schedtool/PKGBUILD b/extra/schedtool/PKGBUILD index 345c96ce6..fb5bcfe88 100644 --- a/extra/schedtool/PKGBUILD +++ b/extra/schedtool/PKGBUILD @@ -6,7 +6,7 @@ pkgname=schedtool pkgver=1.3.0 pkgrel=1 pkgdesc="Query or alter a process' scheduling policy" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freequaos.host.sk/schedtool/" license=('GPL') depends=('glibc') diff --git a/extra/schroedinger/PKGBUILD b/extra/schroedinger/PKGBUILD index 22fc3e9b2..856f3fec9 100644 --- a/extra/schroedinger/PKGBUILD +++ b/extra/schroedinger/PKGBUILD @@ -6,7 +6,7 @@ pkgname=schroedinger pkgver=1.0.10 pkgrel=1 pkgdesc="An implemenation of the Dirac video codec in ANSI C code" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.diracvideo.org/" license=('GPL2' 'LGPL2' 'MPL' 'MIT') depends=('orc>=0.4.11') diff --git a/extra/scim-anthy/PKGBUILD b/extra/scim-anthy/PKGBUILD index ba47b28a5..f7d4f22d9 100644 --- a/extra/scim-anthy/PKGBUILD +++ b/extra/scim-anthy/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.2.7 pkgrel=2 _filecode=37309 pkgdesc='Japanese input method module for SCIM' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://sourceforge.jp/projects/scim-imengine/' license=('GPL') depends=('scim' 'anthy') diff --git a/extra/scim-chewing/PKGBUILD b/extra/scim-chewing/PKGBUILD index d9e6451b5..395288704 100644 --- a/extra/scim-chewing/PKGBUILD +++ b/extra/scim-chewing/PKGBUILD @@ -7,7 +7,7 @@ pkgname=scim-chewing pkgver=0.3.4 pkgrel=1 pkgdesc='Traditional Chinese input method module for SCIM' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://chewing.csie.net/' license=('GPL') depends=('scim' 'libchewing') diff --git a/extra/scim-hangul/PKGBUILD b/extra/scim-hangul/PKGBUILD index 527151486..081538425 100644 --- a/extra/scim-hangul/PKGBUILD +++ b/extra/scim-hangul/PKGBUILD @@ -6,7 +6,7 @@ pkgname=scim-hangul pkgver=0.3.2 pkgrel=4 pkgdesc='Korean input method module for SCIM' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.scim-im.org/' license=('GPL') depends=('libhangul' 'scim') diff --git a/extra/scim-m17n/PKGBUILD b/extra/scim-m17n/PKGBUILD index 4fcb26155..9d643ef8b 100644 --- a/extra/scim-m17n/PKGBUILD +++ b/extra/scim-m17n/PKGBUILD @@ -7,7 +7,7 @@ pkgname=scim-m17n pkgver=0.2.3 pkgrel=3 pkgdesc='Multilingual input method module for SCIM' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.scim-im.org/' license=('GPL') depends=('scim' 'm17n-lib') diff --git a/extra/scim-pinyin/PKGBUILD b/extra/scim-pinyin/PKGBUILD index 3f8e1e149..1a8220bbd 100644 --- a/extra/scim-pinyin/PKGBUILD +++ b/extra/scim-pinyin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=scim-pinyin pkgver=0.5.91 pkgrel=5 pkgdesc="Chinese 拼音 (PinYin) input for SCIM" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.scim-im.org/" license=GPL depends=('scim>=1.4.7') diff --git a/extra/scim-tables/PKGBUILD b/extra/scim-tables/PKGBUILD index ca35f2882..698a91d04 100644 --- a/extra/scim-tables/PKGBUILD +++ b/extra/scim-tables/PKGBUILD @@ -7,7 +7,7 @@ pkgname=scim-tables pkgver=0.5.10 pkgrel=1 pkgdesc='Generic table input method module for SCIM' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.scim-im.org/' license=('GPL') depends=('scim') diff --git a/extra/scim-uim/PKGBUILD b/extra/scim-uim/PKGBUILD index b93293cf4..a7c9216f1 100644 --- a/extra/scim-uim/PKGBUILD +++ b/extra/scim-uim/PKGBUILD @@ -5,7 +5,7 @@ pkgname=scim-uim pkgver=0.2.0 pkgrel=4 pkgdesc='UIM bridging input engine for SCIM' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.scim-im.org/' license=('GPL') depends=('scim>=1.4.8' 'uim>=1.5.5') diff --git a/extra/scim/PKGBUILD b/extra/scim/PKGBUILD index 924610761..e8a4224f7 100644 --- a/extra/scim/PKGBUILD +++ b/extra/scim/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=2 pkgdesc='Input method user interface and development platform' url='http://www.scim-im.org/projects/scim' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!libtool') makedepends=('intltool') depends=('gtk2' 'libtool') diff --git a/extra/screen/PKGBUILD b/extra/screen/PKGBUILD index c22d539c2..1c6224652 100644 --- a/extra/screen/PKGBUILD +++ b/extra/screen/PKGBUILD @@ -7,7 +7,7 @@ pkgver=4.0.3 pkgrel=12 _ptygroup=5 #the UID of our PTY/TTY group pkgdesc="Full-screen window manager that multiplexes a physical terminal" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/screen/" license=('GPL') depends=('ncurses' 'pam') diff --git a/extra/scribus/PKGBUILD b/extra/scribus/PKGBUILD index 4e81935e3..4d9f9bf90 100644 --- a/extra/scribus/PKGBUILD +++ b/extra/scribus/PKGBUILD @@ -8,7 +8,7 @@ pkgname=scribus pkgver=1.3.9 pkgrel=1 pkgdesc="A desktop publishing program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.scribus.net" license=('GPL') install=scribus.install diff --git a/extra/scrot/PKGBUILD b/extra/scrot/PKGBUILD index 4d6921fda..d093c8457 100644 --- a/extra/scrot/PKGBUILD +++ b/extra/scrot/PKGBUILD @@ -5,7 +5,7 @@ pkgname=scrot pkgver=0.8 pkgrel=4 pkgdesc="A simple command-line screenshot utility for X" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://scrot.sourcearchive.com/" license=('MIT') depends=('giblib') diff --git a/extra/scummvm/PKGBUILD b/extra/scummvm/PKGBUILD index 414f8dba1..c3af7e031 100644 --- a/extra/scummvm/PKGBUILD +++ b/extra/scummvm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=scummvm pkgver=1.3.1 pkgrel=2 pkgdesc="A 'virtual machine' for several classic graphical point-and-click adventure games." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.scummvm.org/" depends=('libmad' 'sdl' 'fluidsynth') diff --git a/extra/sdl_gfx/PKGBUILD b/extra/sdl_gfx/PKGBUILD index 393f04784..2a07a7c2c 100644 --- a/extra/sdl_gfx/PKGBUILD +++ b/extra/sdl_gfx/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sdl_gfx pkgver=2.0.22 pkgrel=1 pkgdesc="SDL Graphic Primitives" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') options=(!libtool) url="http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx" diff --git a/extra/sdl_image/PKGBUILD b/extra/sdl_image/PKGBUILD index 3eb670bd6..a61e6c713 100644 --- a/extra/sdl_image/PKGBUILD +++ b/extra/sdl_image/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sdl_image pkgver=1.2.10 pkgrel=2 pkgdesc="A simple library to load images of various formats as SDL surfaces" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') depends=('sdl>=1.2.13' 'libpng' 'libjpeg>=7' 'libtiff' 'zlib') options=('!libtool') diff --git a/extra/sdl_mixer/PKGBUILD b/extra/sdl_mixer/PKGBUILD index f241519be..914c8612a 100644 --- a/extra/sdl_mixer/PKGBUILD +++ b/extra/sdl_mixer/PKGBUILD @@ -7,7 +7,7 @@ pkgname=sdl_mixer pkgver=1.2.11 pkgrel=2 pkgdesc="A simple multi-channel audio mixer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.libsdl.org/projects/SDL_mixer/" license=('LGPL' 'GPL') depends=('sdl>=1.2.12' 'libvorbis' 'libmikmod' 'smpeg') diff --git a/extra/sdl_net/PKGBUILD b/extra/sdl_net/PKGBUILD index 2e6f3862f..8b8337be4 100644 --- a/extra/sdl_net/PKGBUILD +++ b/extra/sdl_net/PKGBUILD @@ -7,7 +7,7 @@ pkgname=sdl_net pkgver=1.2.7 pkgrel=4 pkgdesc="A small sample cross-platform networking library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.libsdl.org/projects/SDL_net/" license=('GPL') depends=('sdl') diff --git a/extra/sdl_pango/PKGBUILD b/extra/sdl_pango/PKGBUILD index 68b686aeb..2bda76f3a 100644 --- a/extra/sdl_pango/PKGBUILD +++ b/extra/sdl_pango/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sdl_pango pkgver=0.1.2 pkgrel=3 pkgdesc="Pango SDL binding" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sdlpango.sourceforge.net/" license=('LGPL') depends=('pango' 'sdl') diff --git a/extra/sdl_sound/PKGBUILD b/extra/sdl_sound/PKGBUILD index e33a1addd..4fee4c404 100644 --- a/extra/sdl_sound/PKGBUILD +++ b/extra/sdl_sound/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sdl_sound pkgver=1.0.3 pkgrel=3 pkgdesc="A library to decode several popular sound file formats, such as .WAV and .MP3" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://icculus.org/SDL_sound/" license=('LGPL') depends=('sdl' 'libmikmod' 'libvorbis' 'flac' 'speex' 'smpeg') diff --git a/extra/sdl_ttf/PKGBUILD b/extra/sdl_ttf/PKGBUILD index 56e56d9f0..094bd8fd1 100644 --- a/extra/sdl_ttf/PKGBUILD +++ b/extra/sdl_ttf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sdl_ttf pkgver=2.0.10 pkgrel=1 pkgdesc="A library that allows you to use TrueType fonts in your SDL applications" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') url="http://www.libsdl.org/projects/SDL_ttf/" depends=('sdl>=1.2.12' 'freetype2') diff --git a/extra/seahorse/PKGBUILD b/extra/seahorse/PKGBUILD index f45ffbd5c..4dac5ba85 100644 --- a/extra/seahorse/PKGBUILD +++ b/extra/seahorse/PKGBUILD @@ -6,7 +6,7 @@ pkgname=seahorse pkgver=3.2.1 pkgrel=1 pkgdesc="GNOME application for managing PGP keys." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') url="http://projects.gnome.org/seahorse/" depends=('gtk3' 'libgnome-keyring' 'gnome-keyring' 'libsoup' 'gpgme' 'desktop-file-utils' 'hicolor-icon-theme' 'dconf') diff --git a/extra/seed/PKGBUILD b/extra/seed/PKGBUILD index 8b437560a..bc02377ba 100644 --- a/extra/seed/PKGBUILD +++ b/extra/seed/PKGBUILD @@ -6,7 +6,7 @@ pkgname=seed pkgver=3.2.0 pkgrel=1 pkgdesc="Library and interpreter for JavaScript with GObject type system bindings." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/Seed/" license=('LGPL') options=('!libtool') diff --git a/extra/setserial/PKGBUILD b/extra/setserial/PKGBUILD index 590fa8003..d5a876d9a 100644 --- a/extra/setserial/PKGBUILD +++ b/extra/setserial/PKGBUILD @@ -6,7 +6,7 @@ pkgname=setserial pkgver=2.17 pkgrel=4 pkgdesc="Allows to change various attributes of a serial device" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://setserial.sourceforge.net/" license=('GPL') depends=('glibc') diff --git a/extra/sg3_utils/PKGBUILD b/extra/sg3_utils/PKGBUILD index eca1068a5..2d997b7ae 100644 --- a/extra/sg3_utils/PKGBUILD +++ b/extra/sg3_utils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sg3_utils pkgver=1.30 pkgrel=1 pkgdesc="Generic SCSI utilities" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://sg.danny.cz/sg/sg3_utils.html" license=('GPL' 'custom:BSD') depends=('glibc') diff --git a/extra/shared-mime-info/PKGBUILD b/extra/shared-mime-info/PKGBUILD index 586cfb0f1..50fc9038f 100644 --- a/extra/shared-mime-info/PKGBUILD +++ b/extra/shared-mime-info/PKGBUILD @@ -5,7 +5,7 @@ pkgname=shared-mime-info pkgver=0.91 pkgrel=1 pkgdesc="Freedesktop.org Shared MIME Info" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libxml2' 'glib2') makedepends=('intltool' 'pkgconfig') diff --git a/extra/sharutils/PKGBUILD b/extra/sharutils/PKGBUILD index c04443584..4e61303ca 100644 --- a/extra/sharutils/PKGBUILD +++ b/extra/sharutils/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=1 pkgdesc='Makes so-called shell archives out of many files' url='http://www.gnu.org/software/sharutils/' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('perl' 'gettext' 'texinfo') source=("ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.bz2") sha1sums=('e9c9f869f8ecb3bcb30cc323e02e0a1266aeb109') diff --git a/extra/sip/PKGBUILD b/extra/sip/PKGBUILD index 405823d2a..bd17db2be 100644 --- a/extra/sip/PKGBUILD +++ b/extra/sip/PKGBUILD @@ -8,7 +8,7 @@ pkgbase=sip pkgname=('sip' 'python2-sip') pkgver=4.13 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.riverbankcomputing.com/software/sip/" license=('custom:"sip"') makedepends=('python' 'python2') diff --git a/extra/skanlite/PKGBUILD b/extra/skanlite/PKGBUILD index 0014d99c7..5b40b1484 100644 --- a/extra/skanlite/PKGBUILD +++ b/extra/skanlite/PKGBUILD @@ -6,7 +6,7 @@ pkgname=skanlite pkgver=0.7 pkgrel=2 pkgdesc="Image Scanning Application for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://kde-apps.org/content/show.php?content=109803' license=('GPL') depends=('kdebase-runtime' 'libksane') diff --git a/extra/slang/PKGBUILD b/extra/slang/PKGBUILD index 6905293b6..12810e517 100644 --- a/extra/slang/PKGBUILD +++ b/extra/slang/PKGBUILD @@ -6,7 +6,7 @@ pkgname=slang pkgver=2.2.4 pkgrel=1 pkgdesc="S-Lang is a powerful interpreted language" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.jedsoft.org/slang/" license=('GPL') depends=('glibc' 'pcre' 'zlib') diff --git a/extra/slim/PKGBUILD b/extra/slim/PKGBUILD index 6dea30917..1408a573f 100644 --- a/extra/slim/PKGBUILD +++ b/extra/slim/PKGBUILD @@ -8,7 +8,7 @@ pkgname=slim pkgver=1.3.2 pkgrel=6 pkgdesc='Desktop-independent graphical login manager for X11' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://slim.berlios.de/' license=('GPL2') depends=('pam' 'libxmu' 'libpng' 'libjpeg' 'libxft') diff --git a/extra/slv2/PKGBUILD b/extra/slv2/PKGBUILD index 3005cd313..d86c8a099 100644 --- a/extra/slv2/PKGBUILD +++ b/extra/slv2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=slv2 pkgver=0.6.6 pkgrel=6 pkgdesc="Library for LV2 hosts" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://drobilla.net/software/slv2" license=('GPL') depends=('redland>=1.0.13' 'lv2core' 'jack') diff --git a/extra/smartmontools/PKGBUILD b/extra/smartmontools/PKGBUILD index bfa4c202e..d2258230d 100644 --- a/extra/smartmontools/PKGBUILD +++ b/extra/smartmontools/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=1 pkgdesc="Control and monitor S.M.A.R.T. enabled ATA and SCSI Hard Drives." url="http://smartmontools.sourceforge.net" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('gcc-libs') backup=('etc/smartd.conf' 'etc/conf.d/smartd') diff --git a/extra/smb4k/PKGBUILD b/extra/smb4k/PKGBUILD index c0cd4dfbb..689723fa3 100644 --- a/extra/smb4k/PKGBUILD +++ b/extra/smb4k/PKGBUILD @@ -6,7 +6,7 @@ pkgname=smb4k pkgver=0.10.90 pkgrel=1 pkgdesc="A KDE program that browses samba shares" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://smb4k.berlios.de/" license=('GPL') depends=('kdebase-runtime') diff --git a/extra/smpeg/PKGBUILD b/extra/smpeg/PKGBUILD index 9503a1bae..276bc8990 100644 --- a/extra/smpeg/PKGBUILD +++ b/extra/smpeg/PKGBUILD @@ -6,7 +6,7 @@ pkgname=smpeg pkgver=0.4.4 pkgrel=6 pkgdesc="SDL MPEG Player Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://icculus.org/smpeg/" license=('LGPL') depends=('sdl') diff --git a/extra/smplayer-themes/PKGBUILD b/extra/smplayer-themes/PKGBUILD index 5f7be24bb..cef1d8118 100644 --- a/extra/smplayer-themes/PKGBUILD +++ b/extra/smplayer-themes/PKGBUILD @@ -6,7 +6,7 @@ pkgname=smplayer-themes pkgver=0.1.20 pkgrel=1 pkgdesc="Themes for smplayer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://smplayer.sourceforge.net/" license=('GPL') depends=('smplayer') diff --git a/extra/smplayer/PKGBUILD b/extra/smplayer/PKGBUILD index 1646f0c75..c0c7fe001 100644 --- a/extra/smplayer/PKGBUILD +++ b/extra/smplayer/PKGBUILD @@ -8,7 +8,7 @@ pkgname=smplayer pkgver=0.6.9 pkgrel=3 pkgdesc="A complete front-end for MPlayer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://smplayer.sourceforge.net/" license=('GPL') depends=('qt>=4.7.1' 'mplayer') diff --git a/extra/snarf/PKGBUILD b/extra/snarf/PKGBUILD index 591fd1a7c..5e1e7a8fc 100644 --- a/extra/snarf/PKGBUILD +++ b/extra/snarf/PKGBUILD @@ -5,7 +5,7 @@ pkgname=snarf pkgver=7.0 pkgrel=4 pkgdesc="Command-line URL retrieval tool (http/ftp/gopher)" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.xach.com/snarf/" license=('GPL') depends=('glibc') diff --git a/extra/snd/PKGBUILD b/extra/snd/PKGBUILD index ef3574080..7ae2be083 100644 --- a/extra/snd/PKGBUILD +++ b/extra/snd/PKGBUILD @@ -8,7 +8,7 @@ pkgname=snd pkgver=12.5 pkgrel=1 pkgdesc="An advanced sound editor" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ccrma.stanford.edu/software/snd/" license=('custom') depends=('lesstif' 'jack' 'gamin' 'gsl' 'fftw') diff --git a/extra/socat/PKGBUILD b/extra/socat/PKGBUILD index 458009ce3..cbf292c3d 100644 --- a/extra/socat/PKGBUILD +++ b/extra/socat/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=3 pkgdesc='Multipurpose relay' url='http://www.dest-unreach.org/socat/' license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('readline' 'openssl') source=("http://www.dest-unreach.org/socat/download/${pkgname}-${pkgver}.tar.gz") sha1sums=('5a42275da0d8a5182452b36535a74c3cdf21793b') diff --git a/extra/sofia-sip/PKGBUILD b/extra/sofia-sip/PKGBUILD index 74e54b92a..cb6cf1d73 100644 --- a/extra/sofia-sip/PKGBUILD +++ b/extra/sofia-sip/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sofia-sip pkgver=1.12.11 pkgrel=1 pkgdesc="An open-source SIP User-Agent library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sofia-sip.sourceforge.net" options=('!libtool' 'zipman') license=('LGPL') diff --git a/extra/sonata/PKGBUILD b/extra/sonata/PKGBUILD index 416352778..00fff2cbe 100644 --- a/extra/sonata/PKGBUILD +++ b/extra/sonata/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sonata pkgver=1.6.2.1 pkgrel=7 pkgdesc="Elegant GTK+ music client for MPD" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sonata.berlios.de/" license=('GPL3') depends=('pygtk' 'python-mpd') diff --git a/extra/soprano/PKGBUILD b/extra/soprano/PKGBUILD index 97156ffae..260ee2d77 100644 --- a/extra/soprano/PKGBUILD +++ b/extra/soprano/PKGBUILD @@ -6,11 +6,12 @@ pkgname=soprano pkgver=2.7.3 pkgrel=1 pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 framework for RDF data' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://soprano.sourceforge.net/' license=('GPL' 'LGPL') depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso') makedepends=('cmake' 'openjdk6' 'doxygen') +[ "$CARCH" = "mips64el" ] && makedepends=('cmake' 'doxygen') source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2") md5sums=('2674ab79c3ec17e4d1b7ecfc76651cd0') @@ -18,6 +19,8 @@ build() { cd "${srcdir}" mkdir build cd build + + [ "$CARCH" = "mips64el" ] || \ . /etc/profile.d/openjdk6.sh # we need the rpath cmake ../${pkgname}-${pkgver} \ diff --git a/extra/sound-juicer/PKGBUILD b/extra/sound-juicer/PKGBUILD index ba2f50aee..131310350 100644 --- a/extra/sound-juicer/PKGBUILD +++ b/extra/sound-juicer/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sound-juicer pkgver=2.32.1 pkgrel=1 pkgdesc="A cd ripper application" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL') depends=('libmusicbrainz3' 'libgnome-media-profiles' 'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'brasero' 'hicolor-icon-theme') makedepends=('intltool' 'gnome-doc-utils>=0.20.0' 'pkgconfig' 'gnome-common' 'gtk-doc') diff --git a/extra/soundtouch/PKGBUILD b/extra/soundtouch/PKGBUILD index e27054573..afc37c358 100644 --- a/extra/soundtouch/PKGBUILD +++ b/extra/soundtouch/PKGBUILD @@ -5,29 +5,38 @@ pkgname=soundtouch pkgver=1.6.0 pkgrel=1 pkgdesc="An audio processing library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.surina.net/soundtouch/" license=('LGPL') depends=('gcc-libs') options=('!libtool') source=(http://www.surina.net/soundtouch/${pkgname}-${pkgver}.tar.gz soundtouch-1.4.0-mmx-sse-compile-fix.patch + soundtouch-1.4.0-x86_64-asm-broken.patch + disable-mmx.patch soundtouch-1.4.0-x86_64-asm-broken.patch) -md5sums=('aa1c63d4d67b033f044a6a48d2be5bdd' - '108cd080b4b0ebe8ed1f950ff1315e7a' - '0d856bb5b519b18c6ba3a2e1770bdfd2') -sha1sums=('9871dcbf75a68665a3515bb9dda4727beb0358e7' - '7a245aacadcb3003e73c1c202c8de0ecc09283ac' - '95282cca856b3b8645fadb530ce5eb892074f193') build() { cd "${srcdir}/${pkgname}" patch -p1 -i "${srcdir}/soundtouch-1.4.0-mmx-sse-compile-fix.patch" patch -p1 -i "${srcdir}/soundtouch-1.4.0-x86_64-asm-broken.patch" - [ "${CARCH}" = "x86_64" ] && CONFIGFLAG="--with-pic" + if [ "${CARCH}" = "mips64el" ]; then + patch -Np1 -i "${srcdir}/disable-mmx.patch" + fi + ./bootstrap - ./configure --prefix=/usr --enable-shared ${CONFIGFLAG} + case $CARCH in + i686) + ./configure --prefix=/usr --enable-shared + ;; + x86_64) + ./configure --prefix=/usr --enable-shared --with-pic + ;; + mips64el) + ./configure --prefix=/usr --enable-shared --with-pic + ;; + esac make } diff --git a/extra/soundtouch/disable-mmx.patch b/extra/soundtouch/disable-mmx.patch new file mode 100644 index 000000000..7be579c43 --- /dev/null +++ b/extra/soundtouch/disable-mmx.patch @@ -0,0 +1,36 @@ +--- soundtouch/source/SoundTouch/Makefile.in~ 2011-07-04 15:26:59.621763536 -0300 ++++ soundtouch/source/SoundTouch/Makefile.in 2011-07-04 15:27:29.404648895 -0300 +@@ -59,7 +59,7 @@ libLTLIBRARIES_INSTALL = $(INSTALL) + LTLIBRARIES = $(lib_LTLIBRARIES) + libSoundTouch_la_LIBADD = + am_libSoundTouch_la_OBJECTS = AAFilter.lo FIRFilter.lo \ +- FIFOSampleBuffer.lo mmx_optimized.lo sse_optimized.lo \ ++ FIFOSampleBuffer.lo \ + RateTransposer.lo SoundTouch.lo TDStretch.lo \ + cpu_detect_x86_gcc.lo BPMDetect.lo PeakFinder.lo + libSoundTouch_la_OBJECTS = $(am_libSoundTouch_la_OBJECTS) +@@ -206,14 +206,12 @@ EXTRA_DIST = 3dnow_win.cpp cpu_detect_x8 + noinst_HEADERS = AAFilter.h cpu_detect.h cpu_detect_x86_gcc.cpp FIRFilter.h RateTransposer.h TDStretch.h PeakFinder.h + lib_LTLIBRARIES = libSoundTouch.la + # +-libSoundTouch_la_SOURCES = AAFilter.cpp FIRFilter.cpp FIFOSampleBuffer.cpp mmx_optimized.cpp sse_optimized.cpp RateTransposer.cpp SoundTouch.cpp TDStretch.cpp cpu_detect_x86_gcc.cpp BPMDetect.cpp PeakFinder.cpp ++libSoundTouch_la_SOURCES = AAFilter.cpp FIRFilter.cpp FIFOSampleBuffer.cpp RateTransposer.cpp SoundTouch.cpp TDStretch.cpp cpu_detect_x86_gcc.cpp BPMDetect.cpp PeakFinder.cpp + + # Note by authore: '-msse2' might not work in non-X86 compilations. If someone can + # fix this script to automatically check for CPU architecture, please submit a patch + # to me. + AM_CXXFLAGS = -fcheck-new -I../../include +-mmx_optimized.lo : AM_CXXFLAGS = -mmmx -fcheck-new -I../../include +-sse_optimized.lo : AM_CXXFLAGS = -msse -fcheck-new -I../../include + all: all-am + + .SUFFIXES: +@@ -292,8 +290,6 @@ distclean-compile: + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SoundTouch.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TDStretch.Plo@am__quote@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu_detect_x86_gcc.Plo@am__quote@ +-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mmx_optimized.Plo@am__quote@ +-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sse_optimized.Plo@am__quote@ + + .cpp.o: + @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< diff --git a/extra/source-highlight/PKGBUILD b/extra/source-highlight/PKGBUILD index 037f20817..a40896dd4 100644 --- a/extra/source-highlight/PKGBUILD +++ b/extra/source-highlight/PKGBUILD @@ -6,7 +6,7 @@ pkgname=source-highlight pkgver=3.1.5 pkgrel=1 pkgdesc="Convert source code to syntax highlighted document" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/src-highlite/" license=('GPL') depends=('gcc-libs' 'bash' 'boost-libs') diff --git a/extra/sox/PKGBUILD b/extra/sox/PKGBUILD index d9f3730c9..577657653 100644 --- a/extra/sox/PKGBUILD +++ b/extra/sox/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sox pkgver=14.3.2 pkgrel=3 pkgdesc="The Swiss Army knife of sound processing tools" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sox.sourceforge.net/" license=('GPL' 'LGPL') depends=('libtool' 'file' 'libsndfile' 'libpng' 'lame' 'opencore-amr') diff --git a/extra/spamassassin/PKGBUILD b/extra/spamassassin/PKGBUILD index 164475d46..ee4d4c060 100644 --- a/extra/spamassassin/PKGBUILD +++ b/extra/spamassassin/PKGBUILD @@ -5,7 +5,7 @@ pkgname=spamassassin pkgver=3.3.2 pkgrel=2 pkgdesc="A mail filter to identify spam." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=(APACHE) url="http://spamassassin.apache.org" depends=('perl>=5.14' 'perl-net-dns' 'perl-uri' 'perl-html-parser' \ diff --git a/extra/spassgen/PKGBUILD b/extra/spassgen/PKGBUILD index 653a51f57..858de7df2 100644 --- a/extra/spassgen/PKGBUILD +++ b/extra/spassgen/PKGBUILD @@ -5,7 +5,7 @@ pkgname=spassgen pkgver=1.5 pkgrel=7 pkgdesc="A small program that generates passwords" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://spassgen.sourceforge.net/" license=('GPL2') depends=('qt3') diff --git a/extra/speech-dispatcher/PKGBUILD b/extra/speech-dispatcher/PKGBUILD index c0269f941..949f5123e 100644 --- a/extra/speech-dispatcher/PKGBUILD +++ b/extra/speech-dispatcher/PKGBUILD @@ -8,7 +8,7 @@ pkgname=speech-dispatcher pkgver=0.7.1 pkgrel=5 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="High-level device independent layer for speech synthesis interface" url="http://www.freebsoft.org/speechd" license=('GPL2' 'FDL') diff --git a/extra/speex/PKGBUILD b/extra/speex/PKGBUILD index 7bf7e7b22..8acbf9792 100644 --- a/extra/speex/PKGBUILD +++ b/extra/speex/PKGBUILD @@ -6,7 +6,7 @@ pkgname=speex pkgver=1.2rc1 pkgrel=2 pkgdesc="A free codec for free speech" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.speex.org/" license=('BSD') depends=('libogg') diff --git a/extra/squid/PKGBUILD b/extra/squid/PKGBUILD index 47f2bf91a..d9b5ee2db 100644 --- a/extra/squid/PKGBUILD +++ b/extra/squid/PKGBUILD @@ -6,7 +6,7 @@ pkgname=squid pkgver=3.1.16 pkgrel=1 pkgdesc="A full-featured Web proxy cache server." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.squid-cache.org" depends=('openssl' 'pam' 'cron' 'perl' 'libtool') makedepends=('libcap>=2.16') diff --git a/extra/srm/PKGBUILD b/extra/srm/PKGBUILD index 8609ada5b..d35fb4531 100644 --- a/extra/srm/PKGBUILD +++ b/extra/srm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=srm pkgver=1.2.11 pkgrel=1 pkgdesc="A secure replacement for rm(1) that overwrites data before unlinking" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://srm.sourceforge.net/" license=('custom') depends=('glibc') diff --git a/extra/sshfs/PKGBUILD b/extra/sshfs/PKGBUILD index 7f3d85374..64231d518 100644 --- a/extra/sshfs/PKGBUILD +++ b/extra/sshfs/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sshfs pkgver=2.3 pkgrel=1 pkgdesc="FUSE client based on the SSH File Transfer Protocol" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://fuse.sourceforge.net/sshfs.html" license=('GPL') depends=('fuse' 'glib2' 'openssh') diff --git a/extra/ssmtp/PKGBUILD b/extra/ssmtp/PKGBUILD index 03b72606d..c6268ad4e 100644 --- a/extra/ssmtp/PKGBUILD +++ b/extra/ssmtp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=ssmtp pkgver=2.64 pkgrel=2 pkgdesc="Extremely simple MTA to get mail off the system to a mailhub" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://packages.debian.org/stable/mail/ssmtp" depends=('openssl') diff --git a/extra/stardict/PKGBUILD b/extra/stardict/PKGBUILD index 8ce7a50e8..fe150edb8 100644 --- a/extra/stardict/PKGBUILD +++ b/extra/stardict/PKGBUILD @@ -6,7 +6,7 @@ pkgname=stardict pkgver=3.0.3 pkgrel=1 pkgdesc='International dictionary software' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.stardict.org/' license=('GPL') depends=('enchant' 'gtk2' 'libsigc++' 'libsm') diff --git a/extra/startup-notification/PKGBUILD b/extra/startup-notification/PKGBUILD index eac3df02e..4b1dccd98 100644 --- a/extra/startup-notification/PKGBUILD +++ b/extra/startup-notification/PKGBUILD @@ -6,7 +6,7 @@ pkgname=startup-notification pkgver=0.12 pkgrel=1 pkgdesc="Monitor and display application startup" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('libx11' 'xcb-util>=0.3.4') options=('!libtool') diff --git a/extra/stellarium/PKGBUILD b/extra/stellarium/PKGBUILD index 4837acf97..a8328580f 100644 --- a/extra/stellarium/PKGBUILD +++ b/extra/stellarium/PKGBUILD @@ -6,7 +6,7 @@ pkgname=stellarium pkgver=0.11.0 pkgrel=1 pkgdesc="A stellarium with great graphics and a nice database of sky-objects" -arch=("i686" "x86_64") +arch=("i686" "x86_64" 'mips64el') url="http://stellarium.free.fr/" license=('GPL2') depends=('libpng' 'mesa' 'libgl' 'freetype2' 'qt' 'openssl') diff --git a/extra/strace/PKGBUILD b/extra/strace/PKGBUILD index 93923b007..44e774b28 100644 --- a/extra/strace/PKGBUILD +++ b/extra/strace/PKGBUILD @@ -6,7 +6,7 @@ pkgname=strace pkgver=4.6 pkgrel=1 pkgdesc="A useful diagnositic, instructional, and debugging tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/strace/" license=('custom') depends=('perl') diff --git a/extra/streamripper/PKGBUILD b/extra/streamripper/PKGBUILD index 8cceccb06..52144364a 100644 --- a/extra/streamripper/PKGBUILD +++ b/extra/streamripper/PKGBUILD @@ -5,7 +5,7 @@ pkgname=streamripper pkgver=1.64.6 pkgrel=2 pkgdesc="Records and splits streaming mp3 into tracks" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://streamripper.sourceforge.net" license=('GPL') depends=('glib2' 'libmad' 'faad2' 'libvorbis') diff --git a/extra/streamtuner/PKGBUILD b/extra/streamtuner/PKGBUILD index f449a3f89..07243483b 100644 --- a/extra/streamtuner/PKGBUILD +++ b/extra/streamtuner/PKGBUILD @@ -6,7 +6,7 @@ pkgname=streamtuner pkgver=0.99.99 pkgrel=11 pkgdesc="A stream directory browser" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.nongnu.org/streamtuner/" license=('custom') depends=('taglib' 'libxml2' 'gtk2' 'curl>=7.16.2' 'pygtk>=2.13.0-2') diff --git a/extra/strigi/PKGBUILD b/extra/strigi/PKGBUILD index d94f628a3..b00a6c0bb 100644 --- a/extra/strigi/PKGBUILD +++ b/extra/strigi/PKGBUILD @@ -6,7 +6,7 @@ pkgname=strigi pkgver=0.7.6 pkgrel=2 pkgdesc="Fast crawling desktop search engine with Qt4 GUI" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.vandenoever.info/software/strigi/" license=('GPL2') depends=('bzip2' 'exiv2' 'libxml2' 'boost-libs') diff --git a/extra/subversion/PKGBUILD b/extra/subversion/PKGBUILD index 8f8e8adbe..bcb020df4 100644 --- a/extra/subversion/PKGBUILD +++ b/extra/subversion/PKGBUILD @@ -6,12 +6,16 @@ pkgname=subversion pkgver=1.6.17 pkgrel=6 pkgdesc="A Modern Concurrent Version Control System" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('apache' 'bsd') depends=('neon' 'apr-util' 'sqlite3') optdepends=('libgnome-keyring' 'kdeutils-kwallet' 'bash-completion: for svn bash completion') makedepends=('krb5' 'apache' 'python2' 'perl' 'swig' 'ruby' 'java-runtime' 'autoconf' 'db' 'e2fsprogs' 'libgnome-keyring' 'kdelibs') +[ "$CARCH" = "mips64el" ] && \ +makedepends=('krb5' 'apache' 'python2' 'perl' 'swig' + 'autoconf' 'sqlite3' 'db' 'e2fsprogs' 'libgnome-keyring' 'kdelibs' + 'ruby') #'java-runtime' backup=('etc/xinetd.d/svn' 'etc/conf.d/svnserve') url="http://subversion.apache.org/" provides=('svn') @@ -42,10 +46,17 @@ build() { # configure autoreconf + if [ "$CARCH" = "mips64el" ]; then + ./configure --prefix=/usr --with-apr=/usr --with-apr-util=/usr \ + --with-zlib=/usr --with-neon=/usr --with-apxs \ + --with-sqlite=/usr --with-berkeley-db=:/usr/include/:/usr/lib:db-5.2 \ + --with-gnome-keyring --with-kwallet + else ./configure --prefix=/usr --with-apr=/usr --with-apr-util=/usr \ --with-zlib=/usr --with-neon=/usr --with-apxs \ --with-sqlite=/usr --with-berkeley-db=:/usr/include/:/usr/lib:db-5.2 \ --enable-javahl --with-gnome-keyring --with-kwallet + fi # build (make external-all && make LT_LDFLAGS="-L$Fdestdir/usr/lib" local-all ) @@ -82,8 +93,10 @@ package() { make DESTDIR=${pkgdir} swig-rb make install-swig-rb DESTDIR=${pkgdir} + if [ "$CARCH" != "mips64el" ]; then make DESTDIR=${pkgdir} javahl make DESTDIR=${pkgdir} install-javahl + fi install -d ${pkgdir}/etc/{rc.d,xinetd.d,conf.d} diff --git a/extra/sweep/PKGBUILD b/extra/sweep/PKGBUILD index 0cc3698c7..e4c38ba27 100644 --- a/extra/sweep/PKGBUILD +++ b/extra/sweep/PKGBUILD @@ -6,7 +6,7 @@ pkgname=sweep pkgver=0.9.3 pkgrel=2 pkgdesc="Sound editing and mixing program" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.metadecks.org/software/sweep/" license=('GPL2') depends=('gtk2' 'libsamplerate' 'libmad' 'libvorbis' 'alsa-lib' 'speex') diff --git a/extra/swh-plugins/PKGBUILD b/extra/swh-plugins/PKGBUILD index b51701d23..17f9a44ad 100644 --- a/extra/swh-plugins/PKGBUILD +++ b/extra/swh-plugins/PKGBUILD @@ -7,7 +7,7 @@ pkgname=swh-plugins pkgver=0.4.15 pkgrel=4 pkgdesc="Steve Harris' LADSPA plug-ins suite" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://plugin.org.uk/" license=('GPL') depends=('fftw' 'ladspa') diff --git a/extra/swig/PKGBUILD b/extra/swig/PKGBUILD index 0ca1a910e..d1b6f245a 100644 --- a/extra/swig/PKGBUILD +++ b/extra/swig/PKGBUILD @@ -6,7 +6,7 @@ pkgname=swig pkgver=2.0.4 pkgrel=1 pkgdesc="Generate scripting interfaces to C/C++ code" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.swig.org/" license=('custom') depends=('zlib' 'pcre') diff --git a/extra/swt/PKGBUILD b/extra/swt/PKGBUILD index e2e34ebd6..01ca0fe9e 100644 --- a/extra/swt/PKGBUILD +++ b/extra/swt/PKGBUILD @@ -5,7 +5,7 @@ pkgver=3.7.1 pkgrel=1 pkgdesc="An open source widget toolkit for Java" _date=201109091335 -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.eclipse.org/swt/" license=('EPL') depends=('java-runtime>=6' 'gtk2>=2.20.1' 'libxtst') diff --git a/extra/sysklogd/PKGBUILD b/extra/sysklogd/PKGBUILD index 76a376889..ebd117193 100644 --- a/extra/sysklogd/PKGBUILD +++ b/extra/sysklogd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=sysklogd pkgver=1.5 pkgrel=3 pkgdesc="System and kernel log daemons" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.infodrom.org/projects/sysklogd/" license=('GPL' 'BSD') depends=('glibc' 'logrotate') diff --git a/extra/system-config-printer/PKGBUILD b/extra/system-config-printer/PKGBUILD index b82990a84..083fc9414 100644 --- a/extra/system-config-printer/PKGBUILD +++ b/extra/system-config-printer/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.3.7 pkgrel=1 pkgdesc="A CUPS printer configuration tool and status applet" url="http://cyberelk.net/tim/software/system-config-printer/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') makedepends=('udev' 'intltool' 'python2' 'xmlto' 'docbook-xsl' 'desktop-file-utils' 'libcups' 'libxml2') source=(http://cyberelk.net/tim/data/${pkgbase}/1.3/${pkgbase}-${pkgver}.tar.xz{,.sig}) diff --git a/extra/t1lib/PKGBUILD b/extra/t1lib/PKGBUILD index 50d8a4c8e..cf9e754e0 100644 --- a/extra/t1lib/PKGBUILD +++ b/extra/t1lib/PKGBUILD @@ -6,7 +6,7 @@ pkgname=t1lib pkgver=5.1.2 pkgrel=3 pkgdesc="Library for generating character- and string-glyphs from Adobe Type 1 fonts" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.ibiblio.org/pub/Linux/libs/graphics/!INDEX.html" license=('GPL') depends=('libxaw') diff --git a/extra/taglib-extras/PKGBUILD b/extra/taglib-extras/PKGBUILD index 23080ec64..912406c06 100644 --- a/extra/taglib-extras/PKGBUILD +++ b/extra/taglib-extras/PKGBUILD @@ -5,7 +5,7 @@ pkgname=taglib-extras pkgver=1.0.1 pkgrel=2 pkgdesc="Additional taglib plugins for KDE" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://developer.kde.org/~wheeler/taglib.html" license=('LGPL') depends=('taglib>=1.6') diff --git a/extra/taglib-sharp/PKGBUILD b/extra/taglib-sharp/PKGBUILD index bde9d495e..ad52b6bc0 100644 --- a/extra/taglib-sharp/PKGBUILD +++ b/extra/taglib-sharp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=taglib-sharp pkgver=2.0.3.7 pkgrel=1 pkgdesc="Free and Open Source library for the .NET 2.0 and Mono frameworks which will let you tag your software with as much or as little detail as you like without slowing you down." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.taglib-sharp.com/Main_Page" license=('LGPL2') depends=('mono') diff --git a/extra/taglib/PKGBUILD b/extra/taglib/PKGBUILD index 00801f6f1..aaa8f869e 100644 --- a/extra/taglib/PKGBUILD +++ b/extra/taglib/PKGBUILD @@ -6,7 +6,7 @@ pkgname=taglib pkgver=1.7 pkgrel=3 pkgdesc="A Library for reading and editing the meta-data of several popular audio formats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://developer.kde.org/~wheeler/taglib.html" license=('GPL2') depends=('sh' 'zlib' 'gcc-libs') diff --git a/extra/talloc/PKGBUILD b/extra/talloc/PKGBUILD index 678ee5af4..c7dbef708 100644 --- a/extra/talloc/PKGBUILD +++ b/extra/talloc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=talloc pkgver=2.0.5 pkgrel=1 pkgdesc="A hierarchical pool based memory allocator with destructors" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL3') url="http://talloc.samba.org/" source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz) diff --git a/extra/tamu-anova/PKGBUILD b/extra/tamu-anova/PKGBUILD index 8b0df4485..64ed12558 100644 --- a/extra/tamu-anova/PKGBUILD +++ b/extra/tamu-anova/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tamu-anova pkgver=0.2.1 pkgrel=1 pkgdesc="ANOVA Extensions to the GNU Scientific Library" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://www.stat.tamu.edu/~aredd/tamuanova/" license=('GPL') depends=('gsl') diff --git a/extra/tcl/PKGBUILD b/extra/tcl/PKGBUILD index 49a3581d8..e594a1500 100644 --- a/extra/tcl/PKGBUILD +++ b/extra/tcl/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tcl pkgver=8.5.10 pkgrel=1 pkgdesc="The Tcl scripting language" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://tcl.sourceforge.net/" license=('custom') depends=('glibc') diff --git a/extra/tcpdump/PKGBUILD b/extra/tcpdump/PKGBUILD index c6c455be5..690221396 100644 --- a/extra/tcpdump/PKGBUILD +++ b/extra/tcpdump/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tcpdump pkgver=4.1.1 pkgrel=2 pkgdesc="A tool for network monitoring and data acquisition" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.tcpdump.org" license=('BSD') depends=('libpcap' 'openssl') diff --git a/extra/tdb/PKGBUILD b/extra/tdb/PKGBUILD index dca95ae49..f5f62c361 100644 --- a/extra/tdb/PKGBUILD +++ b/extra/tdb/PKGBUILD @@ -7,7 +7,7 @@ pkgname=tdb pkgver=1.2.9 pkgrel=1 pkgdesc="A Trivia Database similar to GDBM but allows simultaneous commits" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL3') url="http://tdb.samba.org/" source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz) diff --git a/extra/telepathy-butterfly/PKGBUILD b/extra/telepathy-butterfly/PKGBUILD index 915673e49..21cd94c91 100644 --- a/extra/telepathy-butterfly/PKGBUILD +++ b/extra/telepathy-butterfly/PKGBUILD @@ -5,7 +5,7 @@ pkgname=telepathy-butterfly pkgver=0.5.15 pkgrel=1 pkgdesc="A MSN connection manager for Telepathy" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://telepathy.freedesktop.org" groups=('telepathy') license=('GPL') diff --git a/extra/telepathy-farsight/PKGBUILD b/extra/telepathy-farsight/PKGBUILD index a49577d12..b72920f75 100644 --- a/extra/telepathy-farsight/PKGBUILD +++ b/extra/telepathy-farsight/PKGBUILD @@ -6,7 +6,7 @@ pkgname=telepathy-farsight pkgver=0.0.19 pkgrel=1 pkgdesc="A telepathy-backend to use stream engine." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://telepathy.freedesktop.org" license=('GPL') depends=('telepathy-glib' 'farsight2') diff --git a/extra/telepathy-farstream/PKGBUILD b/extra/telepathy-farstream/PKGBUILD index d31e534e9..0e722ddeb 100644 --- a/extra/telepathy-farstream/PKGBUILD +++ b/extra/telepathy-farstream/PKGBUILD @@ -5,7 +5,7 @@ pkgname=telepathy-farstream pkgver=0.1.1 pkgrel=1 pkgdesc="A telepathy-backend to use stream engine." -arch=(i686 x86_64) +arch=(mips64el) url="http://telepathy.freedesktop.org" license=('LGPL2.1') depends=('telepathy-glib' 'farsight2') diff --git a/extra/telepathy-gabble/PKGBUILD b/extra/telepathy-gabble/PKGBUILD index 513468475..f78aa084d 100644 --- a/extra/telepathy-gabble/PKGBUILD +++ b/extra/telepathy-gabble/PKGBUILD @@ -6,7 +6,7 @@ pkgname=telepathy-gabble pkgver=0.12.7 pkgrel=1 pkgdesc="A Jabber/XMPP connection manager for Telepathy" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://telepathy.freedesktop.org" groups=('telepathy') license=('LGPL2.1') diff --git a/extra/telepathy-glib/PKGBUILD b/extra/telepathy-glib/PKGBUILD index cbfc104ad..476f33695 100644 --- a/extra/telepathy-glib/PKGBUILD +++ b/extra/telepathy-glib/PKGBUILD @@ -7,7 +7,7 @@ pkgname=telepathy-glib pkgver=0.16.1 pkgrel=1 pkgdesc="GLib bindings for the Telepathy D-Bus protocol" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://telepathy.freedesktop.org" groups=('telepathy') license=('LGPL2.1') diff --git a/extra/telepathy-haze/PKGBUILD b/extra/telepathy-haze/PKGBUILD index d2bce6be0..c406f75cc 100644 --- a/extra/telepathy-haze/PKGBUILD +++ b/extra/telepathy-haze/PKGBUILD @@ -5,7 +5,7 @@ pkgname=telepathy-haze pkgver=0.5.0 pkgrel=1 pkgdesc="A telepathy-backend to use libpurple (Pidgin) protocols." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://telepathy.freedesktop.org" license=('GPL') depends=('telepathy-glib' 'libpurple') diff --git a/extra/telepathy-idle/PKGBUILD b/extra/telepathy-idle/PKGBUILD index 417b88208..90f24162e 100644 --- a/extra/telepathy-idle/PKGBUILD +++ b/extra/telepathy-idle/PKGBUILD @@ -7,7 +7,7 @@ pkgname=telepathy-idle pkgver=0.1.11 pkgrel=1 pkgdesc="An IRC connection manager for Telepathy" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://telepathy.freedesktop.org" groups=('telepathy') license=('LGPL') diff --git a/extra/telepathy-kde-accounts-kcm-plugins/PKGBUILD b/extra/telepathy-kde-accounts-kcm-plugins/PKGBUILD index 52c88c6b8..724ace9d4 100644 --- a/extra/telepathy-kde-accounts-kcm-plugins/PKGBUILD +++ b/extra/telepathy-kde-accounts-kcm-plugins/PKGBUILD @@ -6,7 +6,7 @@ pkgname=telepathy-kde-accounts-kcm-plugins pkgver=0.1.0 pkgrel=1 pkgdesc="Plugins for protocol-specific UI's in the Telepathy Accounts KCM" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde.org" license=('GPL') depends=('telepathy-kde-accounts-kcm') diff --git a/extra/telepathy-kde-accounts-kcm/PKGBUILD b/extra/telepathy-kde-accounts-kcm/PKGBUILD index f92cfc332..d3ac2f1ca 100644 --- a/extra/telepathy-kde-accounts-kcm/PKGBUILD +++ b/extra/telepathy-kde-accounts-kcm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=telepathy-kde-accounts-kcm pkgver=0.1.0 pkgrel=1 pkgdesc="KCM Module for configuring Telepathy Instant Messaging Accounts" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde.org" license=('GPL') depends=('kdelibs' 'telepathy-qt4' 'telepathy-mission-control') diff --git a/extra/telepathy-kde-approver/PKGBUILD b/extra/telepathy-kde-approver/PKGBUILD index 631f41f97..c644e03c7 100644 --- a/extra/telepathy-kde-approver/PKGBUILD +++ b/extra/telepathy-kde-approver/PKGBUILD @@ -6,7 +6,7 @@ pkgname=telepathy-kde-approver pkgver=0.1.0 pkgrel=1 pkgdesc="KDE Channel Approver for Telepathy" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde.org" license=('GPL') depends=('kdelibs' 'telepathy-qt4') diff --git a/extra/telepathy-kde-contact-list/PKGBUILD b/extra/telepathy-kde-contact-list/PKGBUILD index 31df73c28..e40152e4f 100644 --- a/extra/telepathy-kde-contact-list/PKGBUILD +++ b/extra/telepathy-kde-contact-list/PKGBUILD @@ -6,7 +6,7 @@ pkgname=telepathy-kde-contact-list pkgver=0.1.0 pkgrel=1 pkgdesc="Telepathy contact list application " -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde.org" license=('GPL') depends=('kdebase-runtime' 'telepathy-qt4') diff --git a/extra/telepathy-kde-filetransfer-handler/PKGBUILD b/extra/telepathy-kde-filetransfer-handler/PKGBUILD index e76a0f9ec..3acb27612 100644 --- a/extra/telepathy-kde-filetransfer-handler/PKGBUILD +++ b/extra/telepathy-kde-filetransfer-handler/PKGBUILD @@ -5,7 +5,7 @@ pkgname=telepathy-kde-filetransfer-handler pkgver=0.1.0 pkgrel=1 pkgdesc="Telepathy file transfer handler" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde.org" license=('GPL') depends=('kdebase-runtime' 'telepathy-qt4') diff --git a/extra/telepathy-kde-presence-dataengine/PKGBUILD b/extra/telepathy-kde-presence-dataengine/PKGBUILD index 53364c696..86051ba12 100644 --- a/extra/telepathy-kde-presence-dataengine/PKGBUILD +++ b/extra/telepathy-kde-presence-dataengine/PKGBUILD @@ -6,7 +6,7 @@ pkgname=telepathy-kde-presence-dataengine pkgver=0.1.0 pkgrel=2 pkgdesc="Plasma dataengine for managing Telepathy account presence" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde.org" license=('GPL') depends=('kdebase-workspace' 'telepathy-qt4') diff --git a/extra/telepathy-kde-send-file/PKGBUILD b/extra/telepathy-kde-send-file/PKGBUILD index 777c2ace0..3ee0178b5 100644 --- a/extra/telepathy-kde-send-file/PKGBUILD +++ b/extra/telepathy-kde-send-file/PKGBUILD @@ -5,7 +5,7 @@ pkgname=telepathy-kde-send-file pkgver=0.1.0 pkgrel=1 pkgdesc="A File manager plugin to launch a file transfer job with a specified contact" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde.org" license=('GPL') depends=('telepathy-kde-filetransfer-handler') diff --git a/extra/telepathy-kde-text-ui/PKGBUILD b/extra/telepathy-kde-text-ui/PKGBUILD index 9996d0e96..8d0e6bdde 100644 --- a/extra/telepathy-kde-text-ui/PKGBUILD +++ b/extra/telepathy-kde-text-ui/PKGBUILD @@ -6,7 +6,7 @@ pkgname=telepathy-kde-text-ui pkgver=0.1.0 pkgrel=1 pkgdesc="Telepathy text chat handler" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kde.org" license=('GPL') depends=('kdebase-runtime' 'telepathy-qt4') diff --git a/extra/telepathy-logger/PKGBUILD b/extra/telepathy-logger/PKGBUILD index 5938b8311..16cbc416a 100644 --- a/extra/telepathy-logger/PKGBUILD +++ b/extra/telepathy-logger/PKGBUILD @@ -4,7 +4,7 @@ pkgname=telepathy-logger pkgver=0.2.12 pkgrel=1 pkgdesc="Telepathy framework logging daemon" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://telepathy.freedesktop.org/wiki/Logger" license=('LGPL2.1') depends=('telepathy-glib' 'sqlite3' 'libxml2' 'dconf') diff --git a/extra/telepathy-mission-control/PKGBUILD b/extra/telepathy-mission-control/PKGBUILD index 54c820291..348ed04ad 100644 --- a/extra/telepathy-mission-control/PKGBUILD +++ b/extra/telepathy-mission-control/PKGBUILD @@ -7,7 +7,7 @@ pkgname=telepathy-mission-control pkgver=5.9.3 pkgrel=1 pkgdesc="A Telepathy component providing abstraction of some of the details of connection managers." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://telepathy.freedesktop.org/wiki/Mission Control" license=('LGPL2.1') depends=('telepathy-glib' 'libgnome-keyring') diff --git a/extra/telepathy-qt4/PKGBUILD b/extra/telepathy-qt4/PKGBUILD index 64e704ca2..375333cc0 100644 --- a/extra/telepathy-qt4/PKGBUILD +++ b/extra/telepathy-qt4/PKGBUILD @@ -6,7 +6,7 @@ pkgname=telepathy-qt4 pkgver=0.7.3 pkgrel=1 pkgdesc="A library for Qt-based Telepathy clients" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://telepathy.freedesktop.org/wiki/" license=('LGPL') options=('!libtool') diff --git a/extra/telepathy-salut/PKGBUILD b/extra/telepathy-salut/PKGBUILD index 4de770ea2..9cc79c69d 100644 --- a/extra/telepathy-salut/PKGBUILD +++ b/extra/telepathy-salut/PKGBUILD @@ -6,7 +6,7 @@ pkgname=telepathy-salut pkgver=0.6.0 pkgrel=1 pkgdesc="A link-local XMPP connection manager for Telepathy" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://telepathy.freedesktop.org" groups=('telepathy') license=('LGPL') diff --git a/extra/telepathy-sofiasip/PKGBUILD b/extra/telepathy-sofiasip/PKGBUILD index 7704eac95..4205fee4a 100644 --- a/extra/telepathy-sofiasip/PKGBUILD +++ b/extra/telepathy-sofiasip/PKGBUILD @@ -5,7 +5,7 @@ pkgname=telepathy-sofiasip pkgver=0.7.1 pkgrel=1 pkgdesc="a SIP-protocol connection manager for the Telepathy framework based on SofiaSIP-stack." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://telepathy.freedesktop.org" license=('LGPL') depends=('telepathy-glib' 'sofia-sip') diff --git a/extra/terminal/PKGBUILD b/extra/terminal/PKGBUILD index 44383a3e1..eeefba762 100644 --- a/extra/terminal/PKGBUILD +++ b/extra/terminal/PKGBUILD @@ -7,7 +7,7 @@ pkgname=terminal pkgver=0.4.8 pkgrel=1 pkgdesc="A modern terminal emulator primarly for the Xfce desktop environment" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://www.xfce.org/projects/terminal/" groups=('xfce4') diff --git a/extra/testdisk/PKGBUILD b/extra/testdisk/PKGBUILD index 12f8bc639..c4b1b0218 100644 --- a/extra/testdisk/PKGBUILD +++ b/extra/testdisk/PKGBUILD @@ -7,7 +7,7 @@ pkgname=testdisk pkgver=6.12 pkgrel=1 pkgdesc="Checks and undeletes partitions + PhotoRec, signature based recovery tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cgsecurity.org/index.html?testdisk.html" license=('GPL') depends=('libjpeg>=8' 'openssl' 'progsreiserfs' 'ntfsprogs') diff --git a/extra/texmacs/PKGBUILD b/extra/texmacs/PKGBUILD index 2f70efe32..cbd773d3f 100644 --- a/extra/texmacs/PKGBUILD +++ b/extra/texmacs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=texmacs pkgver=1.0.7.14 pkgrel=1 pkgdesc="Free scientific text editor, inspired by TeX and GNU Emacs. WYSIWYG editor TeX-fonts and CAS-interface (Giac, GTybalt, Macaulay 2, Maxima, Octave, Pari, Qcl, R and Yacas) in one." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.texmacs.org/" license=('GPL') depends=('perl' 'guile' 'texlive-core' 'python2' 'libxext' 'freetype2') diff --git a/extra/tftp-hpa/PKGBUILD b/extra/tftp-hpa/PKGBUILD index 72034141e..4b4c7f596 100644 --- a/extra/tftp-hpa/PKGBUILD +++ b/extra/tftp-hpa/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tftp-hpa pkgver=5.1 pkgrel=1 pkgdesc="Official tftp server" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kernel.org/pub/software/network/tftp/" license=('BSD') depends=('readline>=6.0.00') diff --git a/extra/thinkfinger/PKGBUILD b/extra/thinkfinger/PKGBUILD index bf6c8c9bc..f9cfe45e5 100644 --- a/extra/thinkfinger/PKGBUILD +++ b/extra/thinkfinger/PKGBUILD @@ -8,7 +8,7 @@ pkgver=0.3 pkgrel=4 pkgdesc="ThinkFinger is a driver for the SGS Thomson Microelectronics fingerprint reader found in most IBM/Lenovo ThinkPads" url="http://thinkfinger.sourceforge.net/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=("GPL") depends=('pam' 'libusb-compat') install=thinkfinger.install diff --git a/extra/thunar-archive-plugin/PKGBUILD b/extra/thunar-archive-plugin/PKGBUILD index 2f3a99803..eb27f8f03 100644 --- a/extra/thunar-archive-plugin/PKGBUILD +++ b/extra/thunar-archive-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=thunar-archive-plugin pkgver=0.3.0 pkgrel=1 pkgdesc="create and deflate archives in thunar" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://goodies.xfce.org/projects/thunar-plugins/thunar-archive-plugin" groups=('xfce4-goodies') diff --git a/extra/thunar-media-tags-plugin/PKGBUILD b/extra/thunar-media-tags-plugin/PKGBUILD index 142378be6..7cdda5203 100644 --- a/extra/thunar-media-tags-plugin/PKGBUILD +++ b/extra/thunar-media-tags-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=thunar-media-tags-plugin pkgver=0.1.2.99.git20110129 pkgrel=1 pkgdesc="adds special features for media files to the Thunar File Manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://goodies.xfce.org/projects/thunar-plugins/thunar-media-tags-plugin" groups=('xfce4-goodies') diff --git a/extra/thunar-volman/PKGBUILD b/extra/thunar-volman/PKGBUILD index 8679d8273..413379a29 100644 --- a/extra/thunar-volman/PKGBUILD +++ b/extra/thunar-volman/PKGBUILD @@ -6,7 +6,7 @@ pkgname=thunar-volman pkgver=0.6.0 pkgrel=2 pkgdesc="automatic management for removeable devices in thunar" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://foo-projects.org/~benny/projects/thunar-volman" groups=('xfce4-goodies') diff --git a/extra/thunar/PKGBUILD b/extra/thunar/PKGBUILD index 247660553..80632358d 100644 --- a/extra/thunar/PKGBUILD +++ b/extra/thunar/PKGBUILD @@ -6,7 +6,7 @@ pkgname=thunar pkgver=1.2.3 pkgrel=2 pkgdesc="Modern file manager for Xfce" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://thunar.xfce.org" license=('GPL2' 'LGPL2.1') groups=('xfce4') diff --git a/extra/tidyhtml/PKGBUILD b/extra/tidyhtml/PKGBUILD index 031234da6..d39fda268 100644 --- a/extra/tidyhtml/PKGBUILD +++ b/extra/tidyhtml/PKGBUILD @@ -7,7 +7,7 @@ pkgname=tidyhtml pkgver=1.46 pkgrel=1 pkgdesc="A tool to tidy down your HTML code to a clean style" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://tidy.sourceforge.net/" license=('custom') options=('!libtool') diff --git a/extra/tightvnc/PKGBUILD b/extra/tightvnc/PKGBUILD index 642ba8d7f..78e0be4e6 100644 --- a/extra/tightvnc/PKGBUILD +++ b/extra/tightvnc/PKGBUILD @@ -4,7 +4,7 @@ pkgname=tightvnc pkgver=1.3.10 pkgrel=5 pkgdesc="VNC Unix server && viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.tightvnc.com" depends=('libjpeg>=7' 'zlib' 'libxaw' 'libxp' 'xorg-xauth') diff --git a/extra/time/PKGBUILD b/extra/time/PKGBUILD index 8b1a81e6e..d33fb5b2f 100644 --- a/extra/time/PKGBUILD +++ b/extra/time/PKGBUILD @@ -7,7 +7,7 @@ pkgname=time pkgver=1.7 pkgrel=5 pkgdesc="Utility for monitoring a program's use of system resources" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/directory/time.html" license=('GPL') depends=('glibc') diff --git a/extra/timidity++/PKGBUILD b/extra/timidity++/PKGBUILD index 82ced473c..7cdd2262c 100644 --- a/extra/timidity++/PKGBUILD +++ b/extra/timidity++/PKGBUILD @@ -6,7 +6,7 @@ pkgname=timidity++ pkgver=2.13.2 pkgrel=10 pkgdesc="A MIDI to WAVE converter and player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://timidity.sourceforge.net" license=('GPL') depends=('libao' 'libvorbis' 'jack' 'ncurses') diff --git a/extra/tk/PKGBUILD b/extra/tk/PKGBUILD index cb89106d8..f10e33200 100644 --- a/extra/tk/PKGBUILD +++ b/extra/tk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tk pkgver=8.5.10 pkgrel=1 pkgdesc="A windowing toolkit for use with tcl" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://tcl.sourceforge.net/" license=('custom') depends=("tcl=${pkgver}" 'libxss' 'libxft') diff --git a/extra/tomboy/PKGBUILD b/extra/tomboy/PKGBUILD index 48f7ff5e1..aa850f7c4 100644 --- a/extra/tomboy/PKGBUILD +++ b/extra/tomboy/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tomboy pkgver=1.8.0 pkgrel=1 pkgdesc="Desktop note-taking application for Linux and Unix" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnome.org/projects/tomboy/" depends=('gtk2' 'gtkspell' 'gconf' 'gconf-sharp' 'dbus-sharp' 'dbus-sharp-glib' 'mono-addins' 'hicolor-icon-theme') diff --git a/extra/tomcat-native/PKGBUILD b/extra/tomcat-native/PKGBUILD index 62e1d8555..9e7ac5f54 100644 --- a/extra/tomcat-native/PKGBUILD +++ b/extra/tomcat-native/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tomcat-native pkgver=1.1.22 pkgrel=1 pkgdesc="The Apache Tomcat Native Library" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://tomcat.apache.org/" license="Apache" depends=('apr' 'openssl') diff --git a/extra/tomcat/PKGBUILD b/extra/tomcat/PKGBUILD index 8875fed4f..a1bba1b67 100644 --- a/extra/tomcat/PKGBUILD +++ b/extra/tomcat/PKGBUILD @@ -4,7 +4,7 @@ pkgname=tomcat pkgver=5.5.34 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="Servlet-2.4/JSP-2.0 Container" url="http://tomcat.apache.org/" license=('APACHE') diff --git a/extra/totem-plparser/PKGBUILD b/extra/totem-plparser/PKGBUILD index 9506620d5..7441e7b4b 100644 --- a/extra/totem-plparser/PKGBUILD +++ b/extra/totem-plparser/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 url="http://www.hadess.net/totem.php3" pkgdesc="Totem playlist parser library" license=('LGPL') -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('gmime' 'libsoup-gnome') makedepends=('intltool' 'pkgconfig' 'gobject-introspection') options=('!libtool') diff --git a/extra/totem/PKGBUILD b/extra/totem/PKGBUILD index 2ab70e259..0eccfcb05 100644 --- a/extra/totem/PKGBUILD +++ b/extra/totem/PKGBUILD @@ -7,7 +7,7 @@ pkgver=3.2.1 pkgrel=1 pkgdesc="A GNOME3 integrated movie player based on Gstreamer." url="http://www.gnome.org" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2' 'custom') depends=('gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'totem-plparser' 'libxxf86vm' 'libxtst' 'desktop-file-utils' 'iso-codes' 'python2' 'libpeas' 'hicolor-icon-theme' @@ -15,6 +15,10 @@ depends=('gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'totem-plpars 'clutter-gtk' 'mx') makedepends=('intltool' 'gtk-doc' 'python2-gobject' 'nautilus' 'libgdata' 'xulrunner' 'lirc-utils' 'libepc' 'bluez' 'vala' 'grilo') +[ "$CARCH" = "mips64el" ] && { +makedepends=('intltool' 'gtk-doc' 'python2-gobject' 'nautilus' 'libgdata' 'xulrunner' + 'libepc' 'bluez' 'vala' 'grilo') +} options=('!libtool' '!emptydirs') source=(http://ftp.gnome.org/pub/gnome/sources/${pkgbase}/${pkgver%.*}/${pkgbase}-${pkgver}.tar.xz) sha256sums=('e3af3281bde6666af4c7f9594b090087657b06c98e96212b11531269e2ee40a4') diff --git a/extra/tracker/PKGBUILD b/extra/tracker/PKGBUILD index 93565f739..574fd836c 100644 --- a/extra/tracker/PKGBUILD +++ b/extra/tracker/PKGBUILD @@ -9,7 +9,7 @@ pkgver=0.12.7 _tver=${pkgver%.*} pkgrel=1 pkgdesc="All-in-one indexer, search tool and metadata database" -arch=('i686' 'x86_64') +arch=(mips64el) license=('GPL') makedepends=('libgee' 'libgnome-keyring' 'upower' 'libexif' 'exempi' 'poppler-glib' 'libgsf' 'icu' 'enca' 'networkmanager' 'gtk3' diff --git a/extra/transcode/PKGBUILD b/extra/transcode/PKGBUILD index a7e6a6530..3b7ff35df 100644 --- a/extra/transcode/PKGBUILD +++ b/extra/transcode/PKGBUILD @@ -8,7 +8,7 @@ _sripver=0.3-4 pkgver=1.1.5 pkgrel=6 pkgdesc="A video/DVD ripper and encoder for the terminal/console" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://tcforge.berlios.de/" license=('GPL') depends=('imagemagick' 'lzo2' 'libdvdread' 'ffmpeg' 'mjpegtools' diff --git a/extra/transfig/PKGBUILD b/extra/transfig/PKGBUILD index 6a223da76..5bbf5be0e 100644 --- a/extra/transfig/PKGBUILD +++ b/extra/transfig/PKGBUILD @@ -7,7 +7,7 @@ pkgname=transfig pkgver=3.2.5c pkgrel=3 pkgdesc="Format conversion utility that can be used with xfig" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xfig.org" license=('custom') depends=('libpng' 'libxpm') diff --git a/extra/transmission/PKGBUILD b/extra/transmission/PKGBUILD index 68d081cd4..76b7e4407 100644 --- a/extra/transmission/PKGBUILD +++ b/extra/transmission/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=transmission pkgname=('transmission-cli' 'transmission-gtk' 'transmission-qt') pkgver=2.42 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.transmissionbt.com/" license=('MIT') makedepends=('gtk3' 'intltool' 'curl' 'qt' 'libevent') diff --git a/extra/trayer/PKGBUILD b/extra/trayer/PKGBUILD index b125c6445..6f5de6602 100644 --- a/extra/trayer/PKGBUILD +++ b/extra/trayer/PKGBUILD @@ -5,7 +5,7 @@ pkgname=trayer pkgver=1.0 pkgrel=6 pkgdesc="A lightweight GTK2-based systray" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://gna.org/projects/fvwm-crystal/" license=('GPL' 'MIT') depends=('gtk2') diff --git a/extra/tree/PKGBUILD b/extra/tree/PKGBUILD index 5c4567cae..9ae90de60 100644 --- a/extra/tree/PKGBUILD +++ b/extra/tree/PKGBUILD @@ -6,7 +6,7 @@ pkgname=tree pkgver=1.6.0 pkgrel=1 pkgdesc="A directory listing program displaying a depth indented list of files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://mama.indstate.edu/users/ice/tree/" license=('GPL') depends=('glibc') diff --git a/extra/truecrypt/PKGBUILD b/extra/truecrypt/PKGBUILD index 4e831e6b3..ff3a03d79 100644 --- a/extra/truecrypt/PKGBUILD +++ b/extra/truecrypt/PKGBUILD @@ -6,7 +6,7 @@ pkgver=7.1 pkgrel=1 pkgdesc="Free open-source cross-platform disk encryption software" url="http://www.truecrypt.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') # TrueCrypt License v2.6 depends=('fuse>=2.8.0' 'wxgtk>=2.8.9' 'libsm' 'device-mapper') makedepends=('nasm') diff --git a/extra/tsocks/PKGBUILD b/extra/tsocks/PKGBUILD index 0c65f8794..f2ce9b83d 100644 --- a/extra/tsocks/PKGBUILD +++ b/extra/tsocks/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tsocks pkgver=1.8beta5 pkgrel=4 pkgdesc='Transparent SOCKS proxying library' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://tsocks.sourceforge.net/' license=('GPL') source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz") diff --git a/extra/tumbler/PKGBUILD b/extra/tumbler/PKGBUILD index b18e5e01d..7f3c4bc70 100644 --- a/extra/tumbler/PKGBUILD +++ b/extra/tumbler/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=3 pkgdesc="D-Bus service for applications to request thumbnails" url="http://git.xfce.org/xfce/tumbler/" license=('GPL2' 'LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') groups=('xfce4') depends=('poppler-glib' 'dbus-glib' 'bzip2' 'gdk-pixbuf2') makedepends=('intltool' 'ffmpegthumbnailer' 'gstreamer0.10') diff --git a/extra/tunepimp/PKGBUILD b/extra/tunepimp/PKGBUILD index a3fe45ed5..caa9c1f0a 100644 --- a/extra/tunepimp/PKGBUILD +++ b/extra/tunepimp/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.5.3 pkgrel=8 pkgdesc="A development library geared towards developers who wish to create MusicBrainz enabled tagging applications (aka libtunepimp)" url="http://www.musicbrainz.org/products/tunepimp/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') options=('!libtool' '!makeflags') makedepends=('python2') diff --git a/extra/tuxpuck/PKGBUILD b/extra/tuxpuck/PKGBUILD index bbd316b5d..65bd3c55a 100644 --- a/extra/tuxpuck/PKGBUILD +++ b/extra/tuxpuck/PKGBUILD @@ -5,7 +5,7 @@ pkgname=tuxpuck pkgver=0.8.2 pkgrel=4 pkgdesc="Airhockey with tux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://home.no.net/munsuun/tuxpuck/" license=('GPL2') depends=('libjpeg>=8' 'sdl' 'libpng>=1.4.0' 'libvorbis') diff --git a/extra/twisted/PKGBUILD b/extra/twisted/PKGBUILD index d25475b8d..55850a084 100644 --- a/extra/twisted/PKGBUILD +++ b/extra/twisted/PKGBUILD @@ -7,7 +7,7 @@ pkgname=twisted pkgver=11.0.0 pkgrel=1 pkgdesc="Asynchronous networking framework written in Python." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://twistedmatrix.com/" license=('MIT') depends=('python2' 'pycrypto' 'zope-interface') diff --git a/extra/udisks/PKGBUILD b/extra/udisks/PKGBUILD index 68017ee1a..6e68c52ef 100644 --- a/extra/udisks/PKGBUILD +++ b/extra/udisks/PKGBUILD @@ -5,7 +5,7 @@ pkgname=udisks pkgver=1.0.4 pkgrel=1 pkgdesc="Disk Management Service" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.freedesktop.org/wiki/Software/udisks" license=('GPL') depends=('udev' 'sg3_utils' 'glib2' 'dbus-glib' 'polkit' 'parted' 'device-mapper' 'libatasmart' 'lsof' 'eject') diff --git a/extra/uim/PKGBUILD b/extra/uim/PKGBUILD index b7782644e..4b569279a 100644 --- a/extra/uim/PKGBUILD +++ b/extra/uim/PKGBUILD @@ -6,7 +6,7 @@ pkgname=uim pkgver=1.7.1 pkgrel=1 pkgdesc='Multilingual input method library' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://code.google.com/p/uim/' license=('custom:BSD') depends=('libxft' 'libedit' 'anthy' 'm17n-lib') diff --git a/extra/umfpack/PKGBUILD b/extra/umfpack/PKGBUILD index b37f17f42..7e1772adc 100644 --- a/extra/umfpack/PKGBUILD +++ b/extra/umfpack/PKGBUILD @@ -12,13 +12,10 @@ _colamdver=2.7.2 _ccolamdver=2.7.2 pkgrel=1 pkgdesc="A multifrontal direct solver for unsymmetric linear systems (AMD/${_amdver}, UFConfig/${_ufcgfgver})" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cise.ufl.edu/research/sparse/umfpack" license=('LGPL') makedepends=('lapack' 'blas') -noextract=(CHOLMOD-${_cholmodver}.tar.gz - COLAMD-${_colamdver}.tar.gz - CCOLAMD-${_ccolamdver}.tar.gz) source=(http://www.cise.ufl.edu/research/sparse/umfpack/UMFPACK-$pkgver.tar.gz http://www.cise.ufl.edu/research/sparse/UFconfig/UFconfig-${_ufcfgver}.tar.gz http://www.cise.ufl.edu/research/sparse/amd/AMD-${_amdver}.tar.gz @@ -26,9 +23,9 @@ source=(http://www.cise.ufl.edu/research/sparse/umfpack/UMFPACK-$pkgver.tar.gz http://www.cise.ufl.edu/research/sparse/colamd/COLAMD-${_colamdver}.tar.gz http://www.cise.ufl.edu/research/sparse/ccolamd/CCOLAMD-${_ccolamdver}.tar.gz UFconfig.mk) -md5sums=('b3490d4f529fbcf4f415e60aa2680a15' - '4335ee565feec67e8ba9fc0f6a5e2504' - '25548053958c1c5810b17d077b8f37b9' +md5sums=('19f5d8b4231ec9114718641ce51cce6e' + '526413bbbc94f987cf79619d9110bab4' + 'b3e9679ba20635ac4847f01c01d6e992' '9032c5724bee43ccd8f4546338a29fac' '2b4e43c8ef33dacfade6d1ec49542ac1' '79d813d5b54951060fc264172bfb5ca6' @@ -38,7 +35,8 @@ build() { cd "$srcdir/UMFPACK" cp -rf "$srcdir/UFconfig/xerbla" . cp -L ../UFconfig.mk $startdir/src/UFconfig - [ $CARCH == "x86_64" ] && sed -i 's#CFLAGS = -O3 -fexceptions#CFLAGS = -O3 -fexceptions -fPIC#' $srcdir/UFconfig/UFconfig.mk + [ "${CARCH}" != "i686" ] && CFLAGS="${CFLAGS} -fPIC" + sed -ri 's#^((C|F77)FLAGS = ).*#\1'"$CFLAGS"'#' $srcdir/UFconfig/UFconfig.mk make library || return 1 install -d "$pkgdir/usr/lib" "$pkgdir/usr/include" diff --git a/extra/unison/PKGBUILD b/extra/unison/PKGBUILD index 059ab98a2..ffa6ab40b 100644 --- a/extra/unison/PKGBUILD +++ b/extra/unison/PKGBUILD @@ -5,7 +5,7 @@ pkgname=unison pkgver=2.40.63 pkgrel=2 pkgdesc="Unison is a file-synchronization tool" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://www.cis.upenn.edu/~bcpierce/unison" depends=('glibc') diff --git a/extra/unixodbc/PKGBUILD b/extra/unixodbc/PKGBUILD index fa76fd234..b98f97abd 100644 --- a/extra/unixodbc/PKGBUILD +++ b/extra/unixodbc/PKGBUILD @@ -7,7 +7,7 @@ pkgname=unixodbc pkgver=2.3.0 pkgrel=2 pkgdesc="ODBC is an open specification for providing application developers with a predictable API with which to access Data Sources" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2' 'LGPL2.1') url="http://www.unixodbc.org/" backup=('etc/odbc.ini' 'etc/odbcinst.ini') diff --git a/extra/upower/PKGBUILD b/extra/upower/PKGBUILD index 34d7c3c11..ba52989d0 100644 --- a/extra/upower/PKGBUILD +++ b/extra/upower/PKGBUILD @@ -5,7 +5,7 @@ pkgname=upower pkgver=0.9.14 pkgrel=1 pkgdesc="Abstraction for enumerating power devices, listening to device events and querying history and statistics" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://upower.freedesktop.org" license=('GPL') depends=('udev' 'libusb' 'polkit' 'pm-utils' 'dbus-glib' 'libimobiledevice') diff --git a/extra/usbmuxd/PKGBUILD b/extra/usbmuxd/PKGBUILD index 1fe072642..217a0acf6 100644 --- a/extra/usbmuxd/PKGBUILD +++ b/extra/usbmuxd/PKGBUILD @@ -7,7 +7,7 @@ pkgver=1.0.7 pkgrel=2 pkgdesc="USB Multiplex Daemon" url="http://marcansoft.com/blog/iphonelinux/usbmuxd/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2' 'GPL3' 'LGPL2.1') depends=('libusb>=1.0.8') makedepends=('cmake') diff --git a/extra/usbview/PKGBUILD b/extra/usbview/PKGBUILD index 84dc43232..824887a2c 100644 --- a/extra/usbview/PKGBUILD +++ b/extra/usbview/PKGBUILD @@ -6,7 +6,7 @@ pkgname=usbview pkgver=1.1 pkgrel=2 pkgdesc="USB Viewer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.kroah.com/linux-usb/" license=('GPL') depends=('gtk2') diff --git a/extra/usermin/PKGBUILD b/extra/usermin/PKGBUILD index 88575e8c4..b294040a7 100644 --- a/extra/usermin/PKGBUILD +++ b/extra/usermin/PKGBUILD @@ -4,7 +4,7 @@ pkgname=usermin pkgver=1.490 pkgrel=1 pkgdesc="a web interface that can be used to easily perform tasks like reading mail, setting up SSH or configuring mail forwarding" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom:usermin') url="http://www.webmin.com/" depends=('perl' 'webmin') diff --git a/extra/v4l-utils/PKGBUILD b/extra/v4l-utils/PKGBUILD index 3fb5d3b86..3c35d24a2 100644 --- a/extra/v4l-utils/PKGBUILD +++ b/extra/v4l-utils/PKGBUILD @@ -4,7 +4,7 @@ pkgname=v4l-utils pkgver=0.8.5 pkgrel=1 pkgdesc="Userspace tools and conversion library for Video 4 Linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://freshmeat.net/projects/libv4l" provides=("libv4l=$pkgver") replaces=('libv4l') diff --git a/extra/v86d/PKGBUILD b/extra/v86d/PKGBUILD index 5e3bb7af1..d142a2f8b 100644 --- a/extra/v86d/PKGBUILD +++ b/extra/v86d/PKGBUILD @@ -5,7 +5,7 @@ pkgname=v86d pkgver=0.1.10 pkgrel=2 pkgdesc="userspace helper for uvesafb that runs x86 code in an emulated environment" -arch=('i686' 'x86_64') +arch=("i686" "x86_64" 'mips64el') url="http://dev.gentoo.org/~spock/projects/uvesafb/" license=('GPL2') depends=('glibc') diff --git a/extra/vala/PKGBUILD b/extra/vala/PKGBUILD index bf4d2b6c6..05ee931e0 100644 --- a/extra/vala/PKGBUILD +++ b/extra/vala/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vala pkgver=0.14.0 pkgrel=1 pkgdesc="Compiler for the GObject type system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://live.gnome.org/Vala" license=('LGPL') depends=('glib2') diff --git a/extra/valgrind/PKGBUILD b/extra/valgrind/PKGBUILD deleted file mode 100644 index a181f374c..000000000 --- a/extra/valgrind/PKGBUILD +++ /dev/null @@ -1,45 +0,0 @@ -# $Id: PKGBUILD 126782 2011-06-07 10:02:00Z allan $ -# Maintainer: Dan McGee <dan@archlinux.org> -# Maintainer: Allan McRae <allan@archlinux.org> - -pkgname=valgrind -pkgver=3.6.1 -pkgrel=2 -pkgdesc="A tool to help find memory-management problems in programs" -arch=('i686' 'x86_64') -license=('GPL') -url="http://valgrind.org/" -depends=('glibc>=2.14' 'glibc<2.15' 'perl') -makedepends=('gdb') -options=('!emptydirs') -source=(http://valgrind.org/downloads/${pkgname}-${pkgver}.tar.bz2 - valgrind-3.6.1-glibc-2.14.patch - glibc-patch-version.patch) -md5sums=('2c3aa122498baecc9d69194057ca88f5' - '560032ce5d27ef0c7c1af32c3fd45833' - 'b657f0ebdde3d9aefc9fd16f9e653702') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - - # make sure our CFLAGS are respected - sed -i -e 's:^CFLAGS="-Wno-long-long":CFLAGS="$CFLAGS -Wno-long-long":' configure.in - - # glibc-2.14 compatibility - patch -Np1 -i ${srcdir}/valgrind-3.6.1-glibc-2.14.patch - - # prevent need to rebuild with glibc patch level version bumps - patch -Np1 -i ${srcdir}/glibc-patch-version.patch - - if [ "${CARCH}" = "x86_64" ]; then - ./configure --prefix=/usr --mandir=/usr/share/man --enable-only64bit - else - ./configure --prefix=/usr --mandir=/usr/share/man - fi - make -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install -} diff --git a/extra/valgrind/glibc-patch-version.patch b/extra/valgrind/glibc-patch-version.patch deleted file mode 100644 index 2c6830aef..000000000 --- a/extra/valgrind/glibc-patch-version.patch +++ /dev/null @@ -1,52 +0,0 @@ -Saves having to rebuild valgrind on glibc-x.x.* patch level releases - -diff -Naur valgrind-3.5.0-old//glibc-2.X.supp.in valgrind-3.5.0/glibc-2.X.supp.in ---- valgrind-3.5.0-old//glibc-2.X.supp.in 2009-08-19 23:37:48.000000000 +1000 -+++ valgrind-3.5.0/glibc-2.X.supp.in 2010-05-22 19:43:08.088007038 +1000 -@@ -168,9 +168,9 @@ - Memcheck:Param - socketcall.sendto(msg) - fun:__sendto_nocancel -- obj:/*libc-@GLIBC_VERSION@.so -- obj:/*libc-@GLIBC_VERSION@.so -- obj:/*libc-@GLIBC_VERSION@.so -+ obj:/*libc-@GLIBC_VERSION@*.so -+ obj:/*libc-@GLIBC_VERSION@*.so -+ obj:/*libc-@GLIBC_VERSION@*.so - } - { - glibc24-64bit-padding-1c -@@ -180,7 +180,7 @@ - fun:__nscd_get_map_ref - fun:nscd_get*_r - fun:*nscd* -- obj:/*libc-@GLIBC_VERSION@.so -+ obj:/*libc-@GLIBC_VERSION@*.so - } - - -@@ -199,18 +199,18 @@ - Memcheck:Param - socketcall.sendto(msg) - fun:send -- obj:/*libc-@GLIBC_VERSION@.so -- obj:/*libc-@GLIBC_VERSION@.so -- obj:/*libc-@GLIBC_VERSION@.so -+ obj:/*libc-@GLIBC_VERSION@*.so -+ obj:/*libc-@GLIBC_VERSION@*.so -+ obj:/*libc-@GLIBC_VERSION@*.so - } - { - X11-64bit-padding-4b - Memcheck:Param - socketcall.send(msg) - fun:send -- obj:/*libc-@GLIBC_VERSION@.so -- obj:/*libc-@GLIBC_VERSION@.so -- obj:/*libc-@GLIBC_VERSION@.so -+ obj:/*libc-@GLIBC_VERSION@*.so -+ obj:/*libc-@GLIBC_VERSION@*.so -+ obj:/*libc-@GLIBC_VERSION@*.so - } - - ##----------------------------------------------------------------------## diff --git a/extra/vamp-plugin-sdk/PKGBUILD b/extra/vamp-plugin-sdk/PKGBUILD index 72a3938d5..599b1c642 100644 --- a/extra/vamp-plugin-sdk/PKGBUILD +++ b/extra/vamp-plugin-sdk/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vamp-plugin-sdk pkgver=2.2 pkgrel=1 pkgdesc="The Vamp audio analysis plug-in system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.vamp-plugins.org/" license=('BSD') depends=('gcc-libs' 'libsndfile') diff --git a/extra/varnish/PKGBUILD b/extra/varnish/PKGBUILD index 05ab8890f..9cbeb3b04 100644 --- a/extra/varnish/PKGBUILD +++ b/extra/varnish/PKGBUILD @@ -8,7 +8,7 @@ pkgname=varnish pkgver=3.0.1 pkgrel=1 pkgdesc="High-performance HTTP accelerator" -arch=('i686' 'x86_64') +arch=(mips64el) url="http://www.varnish-cache.org/" license=('BSD') depends=('gcc' 'libedit' 'pcre') diff --git a/extra/vcdimager/PKGBUILD b/extra/vcdimager/PKGBUILD index f3d94d176..f824436cd 100644 --- a/extra/vcdimager/PKGBUILD +++ b/extra/vcdimager/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vcdimager pkgver=0.7.24 pkgrel=1 pkgdesc="A full-featured mastering suite for authoring disassembling and analyzing Video CD's and Super Video CD's" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.vcdimager.org/" license=('GPL') depends=('libcdio>=0.82' 'libxml2>=2.7.3' 'popt') diff --git a/extra/vde2/PKGBUILD b/extra/vde2/PKGBUILD index 17dc83588..3b4b25f6d 100644 --- a/extra/vde2/PKGBUILD +++ b/extra/vde2/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=1 pkgdesc="Virtual Distributed Ethernet for emulators like qemu" url="http://sourceforge.net/projects/vde/" license=("GPL" "LGPL" "CUSTOM") -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('bash' 'libpcap' 'openssl') backup=(etc/conf.d/vde) source=(http://downloads.sourceforge.net/vde/$pkgname-$pkgver.tar.bz2 diff --git a/extra/vdpau-video/PKGBUILD b/extra/vdpau-video/PKGBUILD index b426e758e..44fcf8506 100644 --- a/extra/vdpau-video/PKGBUILD +++ b/extra/vdpau-video/PKGBUILD @@ -4,7 +4,7 @@ pkgname=vdpau-video pkgver=0.7.3 pkgrel=2 pkgdesc="VDPAU backend for VA API" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.splitted-desktop.com/~gbeauchesne/vdpau-video/" license=('GPL') depends=('libva' 'libvdpau') diff --git a/extra/vice/PKGBUILD b/extra/vice/PKGBUILD index ee8b413f4..5ac96556b 100644 --- a/extra/vice/PKGBUILD +++ b/extra/vice/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vice pkgver=2.3 pkgrel=3 pkgdesc="A Versatile Commodore Emulator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.viceteam.org/" depends=('alsa-lib' 'gcc-libs' 'giflib' 'lame' 'libxrandr' 'libxv' 'libjpeg' 'libpng' 'libxaw' diff --git a/extra/vigra/PKGBUILD b/extra/vigra/PKGBUILD index ded6f2b6e..b2e124f72 100644 --- a/extra/vigra/PKGBUILD +++ b/extra/vigra/PKGBUILD @@ -6,13 +6,13 @@ pkgbase=vigra pkgname=('vigra' 'vigra-doc') pkgver=1.8.0 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hci.iwr.uni-heidelberg.de/vigra/" license=('custom:MIT') makedepends=(# runtime deps 'libpng' 'libtiff' 'gcc-libs' 'sh' 'hdf5>=1.8.7' 'fftw' # additional makedeps - 'cmake' 'python-nose' 'doxygen' 'python-sphinx' 'boost' 'python-numpy') + 'cmake' 'python2-nose' 'doxygen' 'python-sphinx' 'boost' 'python2-numpy') options=('!libtool') source=(http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/${pkgname}-${pkgver}-src.tar.gz vigra-1.7.1.gcc460.patch) @@ -26,6 +26,7 @@ build() { patch -Np1 -i ${srcdir}/vigra-1.7.1.gcc460.patch cmake -DCMAKE_INSTALL_PREFIX=/usr \ -DWITH_VIGRANUMPY=1 \ + -DPYTHON_EXECUTABLE=/usr/bin/python2.7 \ -DDOCINSTALL=share/doc make } diff --git a/extra/vim/PKGBUILD b/extra/vim/PKGBUILD index 4de38ffec..5a989a09e 100644 --- a/extra/vim/PKGBUILD +++ b/extra/vim/PKGBUILD @@ -11,7 +11,7 @@ __hgrev=f530aef0d959 _versiondir="vim${_topver//./}" pkgver=${_topver}.${_patchlevel} pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom:vim') url="http://www.vim.org" makedepends=('gpm' 'python2' 'python' 'ruby' 'libxt' 'desktop-file-utils' 'gtk2') diff --git a/extra/vinagre/PKGBUILD b/extra/vinagre/PKGBUILD index 7d5ca7bcf..a8bf6cf0e 100644 --- a/extra/vinagre/PKGBUILD +++ b/extra/vinagre/PKGBUILD @@ -7,7 +7,7 @@ pkgname=vinagre pkgver=3.2.1 pkgrel=1 pkgdesc="A VNC Client for the GNOME Desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.gnome.org/projects/vinagre/" install=vinagre.install diff --git a/extra/vino/PKGBUILD b/extra/vino/PKGBUILD index c13a160a5..13592bdf8 100644 --- a/extra/vino/PKGBUILD +++ b/extra/vino/PKGBUILD @@ -5,7 +5,7 @@ pkgname=vino pkgver=3.2.1 pkgrel=1 pkgdesc="a VNC server for the GNOME desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libnotify' 'libxtst' 'libsm' 'libsoup' 'telepathy-glib' 'gtk3' 'libgnome-keyring' 'avahi' 'desktop-file-utils') makedepends=('intltool' 'networkmanager') diff --git a/extra/virtuoso/PKGBUILD b/extra/virtuoso/PKGBUILD index 9df06d613..988741d19 100644 --- a/extra/virtuoso/PKGBUILD +++ b/extra/virtuoso/PKGBUILD @@ -5,7 +5,7 @@ pkgname=virtuoso pkgver=6.1.3 pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc='A scalable cross-platform server that combines SQL/RDF/XML Data Management with Web Application Server and Web Services Platform functionality' url='http://virtuoso.openlinksw.com/wiki/main/Main/' license=('GPL') diff --git a/extra/vlc/PKGBUILD b/extra/vlc/PKGBUILD index 621ad8918..6c899f321 100644 --- a/extra/vlc/PKGBUILD +++ b/extra/vlc/PKGBUILD @@ -7,7 +7,7 @@ pkgname=vlc pkgver=1.1.12 pkgrel=1 pkgdesc="A multi-platform MPEG, VCD/DVD, and DivX player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.videolan.org/vlc/" license=('GPL') depends=('a52dec' 'fluidsynth' 'libmtp' 'libdvbpsi' 'libxpm' 'libcdio' @@ -30,6 +30,21 @@ optdepends=('avahi: for service discovery using bonjour protocol' 'kdelibs: KDE Solid hardware integration' 'vdpau-video: VDPAU backend for VA API (for GPU acceleration on Nvidia cards)' 'libpulse: PulseAudio support') +[ "$CARCH" = "mips64el" ] && { +makedepends=('avahi' 'pkgconfig' 'live-media' 'libnotify' + 'flac' 'libtheora' 'alsa-lib' 'jack' 'kdelibs' 'udev' + 'libraw1394' 'libdc1394' 'libavc1394' 'libva' 'libpulse' + 'gnutls' 'libcaca') +optdepends=('avahi: for service discovery using bonjour protocol' + 'libnotify: for notification plugin' + 'ncurses: for ncurses interface support' + 'libdvdcss: for decoding encrypted DVDs' + 'libavc1394: for devices using the 1394ta AV/C' + 'libdc1394: for IEEE 1394 plugin' + 'kdelibs: KDE Solid hardware integration' + 'vdpau-video: VDPAU backend for VA API (for GPU acceleration on Nvidia cards)' + 'libpulse: PulseAudio support') +} conflicts=('vlc-plugin') replaces=('vlc-plugin') backup=('usr/share/vlc/http/.hosts' @@ -46,6 +61,21 @@ build() { sed -i -e 's:truetype/freefont:TTF:g' modules/misc/freetype.c + if [ "$CARCH" = "mips64el" ]; then + ./configure --prefix=/usr \ + --disable-rpath \ + --enable-faad \ + --enable-v4l \ + --enable-snapshot \ + --enable-dbus-control \ + --enable-nls \ + --disable-lirc \ + --enable-pvr \ + --enable-ncurses \ + --with-live555-tree=/usr/lib/live \ + --enable-upnp \ + --enable-realrtsp + else ./configure --prefix=/usr \ --disable-rpath \ --enable-faad \ @@ -59,6 +89,7 @@ build() { --with-live555-tree=/usr/lib/live \ --enable-upnp \ --enable-realrtsp + fi make } package() { diff --git a/extra/vorbis-tools/PKGBUILD b/extra/vorbis-tools/PKGBUILD index 706d8a8fb..8fd3c7949 100644 --- a/extra/vorbis-tools/PKGBUILD +++ b/extra/vorbis-tools/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vorbis-tools pkgver=1.4.0 pkgrel=2 pkgdesc="Extra tools for Ogg-Vorbis" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.xiph.org/vorbis/' license=('GPL2') depends=('libao' 'libvorbis' 'curl' 'flac') diff --git a/extra/vsftpd/PKGBUILD b/extra/vsftpd/PKGBUILD index c35fe02de..d1651dd39 100644 --- a/extra/vsftpd/PKGBUILD +++ b/extra/vsftpd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=vsftpd pkgver=2.3.4 pkgrel=2 pkgdesc="Very Secure FTP daemon" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="https://security.appspot.com/vsftpd.html" license=('GPL2') depends=('openssl') diff --git a/extra/vte/PKGBUILD b/extra/vte/PKGBUILD index 5cd10f758..679d89cc3 100644 --- a/extra/vte/PKGBUILD +++ b/extra/vte/PKGBUILD @@ -5,7 +5,7 @@ pkgname=vte pkgver=0.28.2 pkgrel=2 pkgdesc="Virtual Terminal Emulator widget for use with GTK2" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL') options=('!libtool' '!emptydirs') depends=('gtk2' 'vte-common') diff --git a/extra/w3m/GC_set_warn_proc.patch b/extra/w3m/GC_set_warn_proc.patch new file mode 100644 index 000000000..a679c8d23 --- /dev/null +++ b/extra/w3m/GC_set_warn_proc.patch @@ -0,0 +1,12 @@ +--- main.c.orig 2011-09-07 17:30:01.181808262 +0200 ++++ main.c 2011-09-07 17:30:52.833808484 +0200 +@@ -833,7 +833,8 @@ + mySignal(SIGPIPE, SigPipe); + #endif + +- orig_GC_warn_proc = GC_set_warn_proc(wrap_GC_warn_proc); ++ orig_GC_warn_proc = GC_get_warn_proc(); ++ GC_set_warn_proc(wrap_GC_warn_proc); + err_msg = Strnew(); + if (load_argc == 0) { + /* no URL specified */ diff --git a/extra/w3m/PKGBUILD b/extra/w3m/PKGBUILD index 80e79e08b..07360a028 100644 --- a/extra/w3m/PKGBUILD +++ b/extra/w3m/PKGBUILD @@ -5,17 +5,20 @@ pkgname=w3m pkgver=0.5.3 pkgrel=1 pkgdesc='Text-based Web browser, as well as pager' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://w3m.sourceforge.net/' license=('custom') depends=('openssl' 'gc' 'ncurses' 'zlib') makedepends=('imlib2') optdepends=('imlib2: for graphics support') -source=("http://downloads.sourceforge.net/sourceforge/w3m/$pkgname-$pkgver.tar.gz") -sha1sums=('444b6c8cf7094ee95f8e9de96b37f814b9d83237') +source=("http://downloads.sourceforge.net/sourceforge/w3m/$pkgname-$pkgver.tar.gz" + "GC_set_warn_proc.patch") +sha1sums=('444b6c8cf7094ee95f8e9de96b37f814b9d83237' + '8bf1eae3241f5781d121319c8ee9bcda32d1f7bd') build() { cd "$srcdir/$pkgname-$pkgver" + patch -Np0 -i "${srcdir}/GC_set_warn_proc.patch" ./configure \ --prefix=/usr \ --libexecdir=/usr/lib \ @@ -34,4 +37,4 @@ package() { install -d "$pkgdir"/usr/share/{doc,licenses}/"$pkgname" find doc/* | grep -v CVS | xargs -i install "{}" "$pkgdir/usr/share/doc/$pkgname/" ln -s "../../doc/$pkgname/README" "$pkgdir/usr/share/licenses/$pkgname/" -}
\ No newline at end of file +} diff --git a/extra/watchdog/PKGBUILD b/extra/watchdog/PKGBUILD index cb4c36d88..95801df8c 100644 --- a/extra/watchdog/PKGBUILD +++ b/extra/watchdog/PKGBUILD @@ -5,7 +5,7 @@ pkgname=watchdog pkgver=5.9 pkgrel=2 pkgdesc="Watchdog daemon" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://sourceforge.net/projects/watchdog" license=('GPL') depends=('glibc') diff --git a/extra/wavpack/PKGBUILD b/extra/wavpack/PKGBUILD index 389bd0721..acb7b5fc4 100644 --- a/extra/wavpack/PKGBUILD +++ b/extra/wavpack/PKGBUILD @@ -6,7 +6,7 @@ pkgname=wavpack pkgver=4.60.1 pkgrel=1 pkgdesc="Audio compression format with lossless, lossy, and hybrid compression modes" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.wavpack.com/" license=('custom') depends=('glibc') diff --git a/extra/webkit-sharp/PKGBUILD b/extra/webkit-sharp/PKGBUILD index 9d3179e53..03213af1d 100644 --- a/extra/webkit-sharp/PKGBUILD +++ b/extra/webkit-sharp/PKGBUILD @@ -7,7 +7,7 @@ pkgname=webkit-sharp pkgver=0.3 pkgrel=3 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/webmin/PKGBUILD b/extra/webmin/PKGBUILD index f1112e39d..daf3477a9 100644 --- a/extra/webmin/PKGBUILD +++ b/extra/webmin/PKGBUILD @@ -4,7 +4,7 @@ pkgname=webmin pkgver=1.570 pkgrel=1 pkgdesc="a web-based interface for system administration" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom:webmin') url="http://www.webmin.com/" depends=('perl') diff --git a/extra/weechat/PKGBUILD b/extra/weechat/PKGBUILD index ad9966358..09e7c3a69 100644 --- a/extra/weechat/PKGBUILD +++ b/extra/weechat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=weechat pkgver=0.3.6 pkgrel=1 pkgdesc="Fast, light and extensible IRC client (curses UI)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.weechat.org/" license=('GPL') depends=('gnutls') diff --git a/extra/wesnoth/PKGBUILD b/extra/wesnoth/PKGBUILD index bdac470ae..9a2ef8d08 100644 --- a/extra/wesnoth/PKGBUILD +++ b/extra/wesnoth/PKGBUILD @@ -8,7 +8,7 @@ pkgname=wesnoth pkgver=1.8.6 pkgrel=2 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=${pkgver}" 'dbus-core') diff --git a/extra/whois/PKGBUILD b/extra/whois/PKGBUILD index fcbf0fc9f..ac95cae6c 100644 --- a/extra/whois/PKGBUILD +++ b/extra/whois/PKGBUILD @@ -6,7 +6,7 @@ pkgname=whois pkgver=5.0.12 pkgrel=1 pkgdesc="The whois client by Marco d'Itri" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.linux.it/~md/software/" license=('GPL') depends=('libidn') diff --git a/extra/windowmaker-crm-git/PKGBUILD b/extra/windowmaker-crm-git/PKGBUILD index b2b1b4f1e..c4612bbda 100644 --- a/extra/windowmaker-crm-git/PKGBUILD +++ b/extra/windowmaker-crm-git/PKGBUILD @@ -5,7 +5,7 @@ pkgname=windowmaker-crm-git pkgver=20110909 pkgrel=1 pkgdesc="An X11 window manager with a NEXTSTEP look and feel - git version from Carlos R. Mafra" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.windowmaker.org" license=('GPL' 'custom') depends=('libxinerama' 'libxrandr' 'libpng' 'libxpm' 'libxft' 'libtiff>=3.9.1' 'giflib' 'libxmu') diff --git a/extra/windowmaker/PKGBUILD b/extra/windowmaker/PKGBUILD index 85fdd5062..f1e781932 100644 --- a/extra/windowmaker/PKGBUILD +++ b/extra/windowmaker/PKGBUILD @@ -5,7 +5,7 @@ pkgname=windowmaker pkgver=0.92.0 pkgrel=8 pkgdesc="An X11 window manager with a NEXTSTEP look and feel" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.windowmaker.info/" license=('GPL' 'custom') depends=('libxinerama' 'libpng' 'libxpm' 'libxft' 'libtiff' 'giflib') diff --git a/extra/wipe/PKGBUILD b/extra/wipe/PKGBUILD index 95767e587..c51bcfa2e 100644 --- a/extra/wipe/PKGBUILD +++ b/extra/wipe/PKGBUILD @@ -8,7 +8,7 @@ pkgname=wipe pkgver=2.3.1 pkgrel=1 pkgdesc="A file and block device wiping utility - a secure rm" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wipe.sourceforge.net/" license=('GPL') depends=('glibc') @@ -17,8 +17,9 @@ md5sums=('3aed00711e0490edbec115bc283b8544') build() { cd $srcdir/$pkgname-$pkgver + [ "$CARCH" = "mips64el" ] && extra="--build=$CHOST --host=$CHOST --target=$CHOST" ./configure --prefix=/usr \ - --mandir=/usr/share/man + --mandir=/usr/share/man $extra make } diff --git a/extra/wireshark/PKGBUILD b/extra/wireshark/PKGBUILD index 01ca3542a..c9d010fa4 100644 --- a/extra/wireshark/PKGBUILD +++ b/extra/wireshark/PKGBUILD @@ -5,7 +5,7 @@ pkgname=(wireshark-cli wireshark-gtk) pkgbase=wireshark pkgver=1.6.3 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') makedepends=('bison' 'flex' 'gtk2' 'krb5' 'libcap' 'libpcap' 'bash' 'gnutls' 'libgcrypt' 'lua') url="http://www.wireshark.org/" diff --git a/extra/wpa_supplicant_gui/PKGBUILD b/extra/wpa_supplicant_gui/PKGBUILD index 96095398d..2b38788de 100644 --- a/extra/wpa_supplicant_gui/PKGBUILD +++ b/extra/wpa_supplicant_gui/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.7.3 pkgrel=1 pkgdesc="A Qt frontend to wpa_supplicant" url="http://hostap.epitest.fi/wpa_supplicant" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('qt' "wpa_supplicant=$pkgver") license=('GPL') source=("http://hostap.epitest.fi/releases/wpa_supplicant-$pkgver.tar.gz") diff --git a/extra/wv/PKGBUILD b/extra/wv/PKGBUILD index 0e8208ae6..3b626f0d7 100644 --- a/extra/wv/PKGBUILD +++ b/extra/wv/PKGBUILD @@ -5,7 +5,7 @@ pkgname=wv pkgver=1.2.7 pkgrel=1 pkgdesc="MSWord library can load and parse Word 2000, 97, 95 and 6 file formats" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://sourceforge.net/projects/wvware" license=(GPL) depends=('libgsf>=1.14.18' 'libpng>=1.4.2' 'sh') diff --git a/extra/wv2/PKGBUILD b/extra/wv2/PKGBUILD index a30b0f9c4..73b733286 100644 --- a/extra/wv2/PKGBUILD +++ b/extra/wv2/PKGBUILD @@ -6,7 +6,7 @@ pkgname=wv2 pkgver=0.4.2 pkgrel=2 pkgdesc="MSWord 9,8,7,6 formats parser" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/wvware/" depends=('libgsf') makedepends=('cmake') diff --git a/extra/wxgtk/PKGBUILD b/extra/wxgtk/PKGBUILD index f56cd59ec..95575519f 100644 --- a/extra/wxgtk/PKGBUILD +++ b/extra/wxgtk/PKGBUILD @@ -5,7 +5,7 @@ pkgname=wxgtk pkgver=2.8.12.1 pkgrel=1 pkgdesc="GTK+ implementation of wxWidgets API for GUI" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wxwidgets.org" license=('custom:wxWindows') depends=('gtk2' 'gstreamer0.10-base' 'libgl' 'libxxf86vm' 'libsm') diff --git a/extra/wxmaxima/PKGBUILD b/extra/wxmaxima/PKGBUILD index 1ab882ce8..3d25c530a 100644 --- a/extra/wxmaxima/PKGBUILD +++ b/extra/wxmaxima/PKGBUILD @@ -7,7 +7,7 @@ pkgname=wxmaxima pkgver=11.08.0 pkgrel=1 pkgdesc="A wxWidgets GUI for the computer algebra system Maxima" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://wxmaxima.sourceforge.net/" license=('GPL2') depends=('maxima' 'libxml2' 'wxgtk') diff --git a/extra/wxpython/PKGBUILD b/extra/wxpython/PKGBUILD index 7f02de61a..4a5370c27 100644 --- a/extra/wxpython/PKGBUILD +++ b/extra/wxpython/PKGBUILD @@ -5,7 +5,7 @@ pkgname=wxpython pkgver=2.8.12.1 pkgrel=1 pkgdesc="A wxWidgets GUI toolkit for Python" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom:wxWindows') url="http://www.wxpython.org" depends=('wxgtk' 'python2') diff --git a/extra/x11vnc/PKGBUILD b/extra/x11vnc/PKGBUILD index fd49db451..c1324d590 100644 --- a/extra/x11vnc/PKGBUILD +++ b/extra/x11vnc/PKGBUILD @@ -6,7 +6,7 @@ pkgname=x11vnc pkgver=0.9.13 pkgrel=1 pkgdesc='VNC server for real X displays' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.karlrunge.com/x11vnc/' license=('GPL2') depends=('openssl' 'libjpeg' 'zlib' 'libx11' 'libxtst' 'libxinerama' 'libxdamage' 'libxrandr' 'avahi') diff --git a/extra/x264/PKGBUILD b/extra/x264/PKGBUILD index 0e847a587..cfa7bfb72 100644 --- a/extra/x264/PKGBUILD +++ b/extra/x264/PKGBUILD @@ -7,7 +7,7 @@ pkgname=x264 pkgver=20111001 pkgrel=1 pkgdesc="free library for encoding H264/AVC video streams" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.videolan.org/developers/x264.html" license=('GPL') depends=('glibc') @@ -18,7 +18,9 @@ md5sums=('dd67dca96ac79e7cb963bfcbf68e017b') build() { cd "$srcdir/$pkgname-snapshot-$pkgver-2245" - ./configure --enable-shared + [ "$CARCH" = "mips64el" ] && extra="--enable-pic" + + ./configure --enable-shared $extra make make DESTDIR="$pkgdir" \ diff --git a/extra/x2x/PKGBUILD b/extra/x2x/PKGBUILD index 8389e2ef8..3fa89f714 100644 --- a/extra/x2x/PKGBUILD +++ b/extra/x2x/PKGBUILD @@ -6,7 +6,7 @@ pkgname=x2x pkgver=1.27 pkgrel=6 pkgdesc="Control one X display from another" -arch=('i686' 'x86_64') +arch=(i686 x86_64 'mips64el') url="https://github.com/dottedmag/x2x" license=('custom') depends=('libxtst') diff --git a/extra/xaos/PKGBUILD b/extra/xaos/PKGBUILD index 3d3a5b31b..28a1f9c9f 100644 --- a/extra/xaos/PKGBUILD +++ b/extra/xaos/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xaos pkgver=3.5 pkgrel=4 pkgdesc="A fast portable real-time interactive fractal zoomer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/xaos/" license=('GPL') depends=('gsl' 'libpng' 'aalib') diff --git a/extra/xaw3d/PKGBUILD b/extra/xaw3d/PKGBUILD index 8854d9e98..931513921 100644 --- a/extra/xaw3d/PKGBUILD +++ b/extra/xaw3d/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xaw3d pkgver=1.5E pkgrel=3 pkgdesc="Three-D Athena widgets" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://directory.fsf.org/project/xaw3d/" license=('MIT') depends=('libxmu' 'libxpm') diff --git a/extra/xawtv/PKGBUILD b/extra/xawtv/PKGBUILD index e9876a82e..4bd5f8da5 100644 --- a/extra/xawtv/PKGBUILD +++ b/extra/xawtv/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xawtv pkgver=3.101 pkgrel=1 pkgdesc="A simple Xaw-based TV program which uses the bttv driver or video4linux" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://git.linuxtv.org/xawtv3.git" license=('GPL') depends=('aalib' 'v4l-utils' 'libxv' 'libxxf86dga' 'libxrandr' 'libgl' 'libdv' 'zvbi' 'libxinerama' 'lirc-utils' 'libxft' 'libxaw' 'xorg-fonts-misc') diff --git a/extra/xbill/PKGBUILD b/extra/xbill/PKGBUILD index 98054c7eb..7b9503c78 100644 --- a/extra/xbill/PKGBUILD +++ b/extra/xbill/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xbill pkgver=2.1 pkgrel=7 pkgdesc="A game that tests your reflexes as you seek and destroy all forms of Bill" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xbill.org/" license=('GPL') depends=('xaw3d') diff --git a/extra/xcb-util/PKGBUILD b/extra/xcb-util/PKGBUILD index d43d6621f..cec5c9b2c 100644 --- a/extra/xcb-util/PKGBUILD +++ b/extra/xcb-util/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xcb-util pkgver=0.3.6 pkgrel=2 pkgdesc="Utility libraries for XC Binding" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xcb.freedesktop.org" license=('custom') depends=('libxcb>=1.4') diff --git a/extra/xchm/PKGBUILD b/extra/xchm/PKGBUILD index 6c76cc559..613d13d0f 100644 --- a/extra/xchm/PKGBUILD +++ b/extra/xchm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xchm pkgver=1.20 pkgrel=1 pkgdesc="A cross-platform GUI front-end to chmlib" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xchm.sourceforge.net" license=('GPL') depends=('chmlib' 'wxgtk' 'desktop-file-utils') @@ -20,7 +20,9 @@ md5sums=('85943645d20af536704a20b58ebd5849' build() { cd "${srcdir}/${pkgname}-${pkgver}" export CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing" - ./configure --prefix=/usr + ./configure --prefix=/usr \ + --build=$CHOST \ + --host=$CHOST make } diff --git a/extra/xclip/PKGBUILD b/extra/xclip/PKGBUILD index 57834cdc0..d14e1bb42 100644 --- a/extra/xclip/PKGBUILD +++ b/extra/xclip/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xclip pkgver=0.12 pkgrel=2 pkgdesc='Command line interface to the X11 clipboard' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://sourceforge.net/projects/xclip' license=('GPL') depends=('libxmu') diff --git a/extra/xcompmgr/PKGBUILD b/extra/xcompmgr/PKGBUILD index 817b015b1..4769d7443 100644 --- a/extra/xcompmgr/PKGBUILD +++ b/extra/xcompmgr/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xcompmgr pkgver=1.1.5 pkgrel=1 pkgdesc="Composite Window-effects manager for X.org" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxcomposite' 'libxdamage' 'libxrender') diff --git a/extra/xdelta/PKGBUILD b/extra/xdelta/PKGBUILD index dabc0db1c..c50fe5969 100644 --- a/extra/xdelta/PKGBUILD +++ b/extra/xdelta/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xdelta pkgver=1.1.4 pkgrel=3 pkgdesc="binary file delta generator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/xdelta/" license=('GPL') depends=('glib' 'zlib') diff --git a/extra/xdelta3/PKGBUILD b/extra/xdelta3/PKGBUILD index a8149d55c..a7d6c3533 100644 --- a/extra/xdelta3/PKGBUILD +++ b/extra/xdelta3/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xdelta3 pkgver=3.0.0 pkgrel=1 pkgdesc="A diff utility which works with binary files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xdelta.org/" license=('GPL') makedepends=('python2') diff --git a/extra/xf86-input-acecad/PKGBUILD b/extra/xf86-input-acecad/PKGBUILD index 49eb109fe..c07e69d4a 100644 --- a/extra/xf86-input-acecad/PKGBUILD +++ b/extra/xf86-input-acecad/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-input-acecad pkgver=1.5.0 pkgrel=2 pkgdesc="X.Org acecad tablet input driver" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('sysfsutils') diff --git a/extra/xf86-input-aiptek/PKGBUILD b/extra/xf86-input-aiptek/PKGBUILD index dd0075860..e4f7ab6ba 100644 --- a/extra/xf86-input-aiptek/PKGBUILD +++ b/extra/xf86-input-aiptek/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-input-aiptek pkgver=1.4.1 pkgrel=2 pkgdesc="X.Org Aiptek USB Digital Tablet input driver" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-input-evdev/PKGBUILD b/extra/xf86-input-evdev/PKGBUILD index 47296c598..b56a620c4 100644 --- a/extra/xf86-input-evdev/PKGBUILD +++ b/extra/xf86-input-evdev/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xf86-input-evdev pkgver=2.6.0 pkgrel=4 pkgdesc="X.org evdev input driver" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-input-joystick/PKGBUILD b/extra/xf86-input-joystick/PKGBUILD index f908ac10f..0a6fe5e38 100644 --- a/extra/xf86-input-joystick/PKGBUILD +++ b/extra/xf86-input-joystick/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-input-joystick pkgver=1.6.0 pkgrel=2 pkgdesc="X.Org Joystick input driver" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xf86-input-keyboard/PKGBUILD b/extra/xf86-input-keyboard/PKGBUILD index 18915c806..009bc808f 100644 --- a/extra/xf86-input-keyboard/PKGBUILD +++ b/extra/xf86-input-keyboard/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-input-keyboard pkgver=1.6.0 pkgrel=3 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 56f28ff52..ffff8fec6 100644 --- a/extra/xf86-input-mouse/PKGBUILD +++ b/extra/xf86-input-mouse/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-input-mouse pkgver=1.7.1 pkgrel=2 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-input-synaptics/PKGBUILD b/extra/xf86-input-synaptics/PKGBUILD index 327a31176..a0b628d28 100644 --- a/extra/xf86-input-synaptics/PKGBUILD +++ b/extra/xf86-input-synaptics/PKGBUILD @@ -8,7 +8,7 @@ pkgname=xf86-input-synaptics pkgver=1.5.0 pkgrel=1 pkgdesc="Synaptics driver for notebook touchpads" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('libxtst') diff --git a/extra/xf86-input-void/PKGBUILD b/extra/xf86-input-void/PKGBUILD index 312657dc5..411a25c62 100644 --- a/extra/xf86-input-void/PKGBUILD +++ b/extra/xf86-input-void/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-input-void pkgver=1.4.0 pkgrel=2 pkgdesc="X.org void 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-wacom/PKGBUILD b/extra/xf86-input-wacom/PKGBUILD index 47d75a2e2..1933dab48 100644 --- a/extra/xf86-input-wacom/PKGBUILD +++ b/extra/xf86-input-wacom/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xf86-input-wacom pkgver=0.11.1 pkgrel=3 pkgdesc="X.Org Wacom tablet driver" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://linuxwacom.sourceforge.net/" license=('GPL') backup=('etc/X11/xorg.conf.d/50-wacom.conf') diff --git a/extra/xf86-video-apm/PKGBUILD b/extra/xf86-video-apm/PKGBUILD index c15e421d8..dee8429de 100644 --- a/extra/xf86-video-apm/PKGBUILD +++ b/extra/xf86-video-apm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-apm pkgver=1.2.3 pkgrel=4 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 9f07d6a0c..dc5ab26e8 100644 --- a/extra/xf86-video-ark/PKGBUILD +++ b/extra/xf86-video-ark/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-ark pkgver=0.7.3 pkgrel=4 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 a51fd704b..f3effc947 100644 --- a/extra/xf86-video-ast/PKGBUILD +++ b/extra/xf86-video-ast/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-ast pkgver=0.93.9 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 2aff325a5..d0783dedf 100644 --- a/extra/xf86-video-ati/PKGBUILD +++ b/extra/xf86-video-ati/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xf86-video-ati pkgver=6.14.3 pkgrel=1 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 udev pixman ati-dri) diff --git a/extra/xf86-video-chips/PKGBUILD b/extra/xf86-video-chips/PKGBUILD index f558899d2..b0a05fdfe 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=3 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 a2b46e91e..3a9024d8d 100644 --- a/extra/xf86-video-cirrus/PKGBUILD +++ b/extra/xf86-video-cirrus/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-cirrus pkgver=1.3.2 pkgrel=7 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-dummy/PKGBUILD b/extra/xf86-video-dummy/PKGBUILD index 9e065565c..7dbc457fe 100644 --- a/extra/xf86-video-dummy/PKGBUILD +++ b/extra/xf86-video-dummy/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-dummy pkgver=0.3.4 pkgrel=5 pkgdesc="X.org dummy 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-fbdev/PKGBUILD b/extra/xf86-video-fbdev/PKGBUILD index ebef4fe1c..fd626bdb8 100644 --- a/extra/xf86-video-fbdev/PKGBUILD +++ b/extra/xf86-video-fbdev/PKGBUILD @@ -3,9 +3,9 @@ pkgname=xf86-video-fbdev pkgver=0.4.2 -pkgrel=5 +pkgrel=6 pkgdesc="X.org framebuffer 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-glint/PKGBUILD b/extra/xf86-video-glint/PKGBUILD index 0566ff9b6..0b606721e 100644 --- a/extra/xf86-video-glint/PKGBUILD +++ b/extra/xf86-video-glint/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-glint pkgver=1.2.6 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 7c63f8002..3b0db9e15 100644 --- a/extra/xf86-video-i128/PKGBUILD +++ b/extra/xf86-video-i128/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-i128 pkgver=1.3.4 pkgrel=4 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 615e7106c..1d7e2446e 100644 --- a/extra/xf86-video-i740/PKGBUILD +++ b/extra/xf86-video-i740/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-i740 pkgver=1.3.2 pkgrel=7 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 5ee2371a4..b083bfe78 100644 --- a/extra/xf86-video-intel/PKGBUILD +++ b/extra/xf86-video-intel/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-intel pkgver=2.16.0 pkgrel=1 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 libxfixes udev) diff --git a/extra/xf86-video-mach64/PKGBUILD b/extra/xf86-video-mach64/PKGBUILD index 2cbfb8b9f..efe509fbf 100644 --- a/extra/xf86-video-mach64/PKGBUILD +++ b/extra/xf86-video-mach64/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-mach64 pkgver=6.9.0 pkgrel=2 pkgdesc="X.org mach64 video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc' 'mach64-dri') diff --git a/extra/xf86-video-mga/PKGBUILD b/extra/xf86-video-mga/PKGBUILD index 8b4289add..1ee157c59 100644 --- a/extra/xf86-video-mga/PKGBUILD +++ b/extra/xf86-video-mga/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-mga pkgver=1.4.13 pkgrel=4 pkgdesc="X.org mga video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc' 'mga-dri') diff --git a/extra/xf86-video-neomagic/PKGBUILD b/extra/xf86-video-neomagic/PKGBUILD index b996da01c..2a1bac87d 100644 --- a/extra/xf86-video-neomagic/PKGBUILD +++ b/extra/xf86-video-neomagic/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-neomagic pkgver=1.2.5 pkgrel=5 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 2627c305c..b235d204a 100644 --- a/extra/xf86-video-nouveau/PKGBUILD +++ b/extra/xf86-video-nouveau/PKGBUILD @@ -7,7 +7,7 @@ _gitdate=20110829 pkgver=0.0.16_git${_gitdate} # see configure.ac pkgrel=1 pkgdesc="Open Source 3D 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' 'udev') diff --git a/extra/xf86-video-nv/PKGBUILD b/extra/xf86-video-nv/PKGBUILD index 7dab5a944..329f39acb 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=4 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 cb982ec8b..7e4f5bee5 100644 --- a/extra/xf86-video-openchrome/PKGBUILD +++ b/extra/xf86-video-openchrome/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.2.904 _svnver=r933 pkgrel=6 pkgdesc="X.Org Openchrome drivers" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') url="http://www.openchrome.org" depends=('libdrm' 'libxvmc' 'unichrome-dri') diff --git a/extra/xf86-video-r128/PKGBUILD b/extra/xf86-video-r128/PKGBUILD index 86b9f89e1..d40f8b417 100644 --- a/extra/xf86-video-r128/PKGBUILD +++ b/extra/xf86-video-r128/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-r128 pkgver=6.8.1 pkgrel=7 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' 'r128-dri') diff --git a/extra/xf86-video-rendition/PKGBUILD b/extra/xf86-video-rendition/PKGBUILD index 32ee7deba..41bb56a7e 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=5 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 54b255a01..44b059ea1 100644 --- a/extra/xf86-video-s3/PKGBUILD +++ b/extra/xf86-video-s3/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-s3 pkgver=0.6.3 pkgrel=6 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 650769602..170bd31aa 100644 --- a/extra/xf86-video-s3virge/PKGBUILD +++ b/extra/xf86-video-s3virge/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xf86-video-s3virge pkgver=1.10.4 pkgrel=6 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 f305995f7..84aabffc1 100644 --- a/extra/xf86-video-savage/PKGBUILD +++ b/extra/xf86-video-savage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-savage pkgver=2.3.3 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' 'savage-dri') diff --git a/extra/xf86-video-siliconmotion/PKGBUILD b/extra/xf86-video-siliconmotion/PKGBUILD index d77e30c1e..e2e588c5c 100644 --- a/extra/xf86-video-siliconmotion/PKGBUILD +++ b/extra/xf86-video-siliconmotion/PKGBUILD @@ -4,9 +4,9 @@ pkgname=xf86-video-siliconmotion pkgver=1.7.5 -pkgrel=3 +pkgrel=5 pkgdesc="X.org siliconmotion video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') @@ -14,11 +14,14 @@ makedepends=('xorg-server-devel>=1.10.99.902') conflicts=('xorg-server<1.10.99.902') options=('!libtool') groups=('xorg-drivers' 'xorg') -source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2) -sha1sums=('946acae0822d51da57abe8b7ed049691bd731589') +source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2 + 99_xf86-video-siliconmotion-1.7.3-fix-loongson.diff) +sha1sums=('946acae0822d51da57abe8b7ed049691bd731589' + '84c98a3341d92ed678ad0dee2033d571bd6b29ca') build() { cd "${srcdir}/${pkgname}-${pkgver}" + [ "$CARCH" = "mips64el" ] && patch -Np1 -i ${srcdir}/99_xf86-video-siliconmotion-1.7.3-fix-loongson.diff ./configure --prefix=/usr make make DESTDIR="${pkgdir}" install @@ -26,3 +29,5 @@ build() { install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" } +sha1sums=('946acae0822d51da57abe8b7ed049691bd731589' + 'b3cc8e8aaaabdf25857b781d6793c70815003f9b') diff --git a/extra/xf86-video-sis/PKGBUILD b/extra/xf86-video-sis/PKGBUILD index 8f247c1d4..2868e778d 100644 --- a/extra/xf86-video-sis/PKGBUILD +++ b/extra/xf86-video-sis/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-sis pkgver=0.10.3 pkgrel=5 pkgdesc="X.org SiS video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc' 'sis-dri') diff --git a/extra/xf86-video-sisusb/PKGBUILD b/extra/xf86-video-sisusb/PKGBUILD index aad955f07..2f60b97b4 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=5 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 1d8a6948b..b14b9c702 100644 --- a/extra/xf86-video-tdfx/PKGBUILD +++ b/extra/xf86-video-tdfx/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-tdfx pkgver=1.4.3 pkgrel=7 pkgdesc="X.org tdfx video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc' 'tdfx-dri') diff --git a/extra/xf86-video-trident/PKGBUILD b/extra/xf86-video-trident/PKGBUILD index f7d60ed27..94b915cbe 100644 --- a/extra/xf86-video-trident/PKGBUILD +++ b/extra/xf86-video-trident/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-trident pkgver=1.3.4 pkgrel=5 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 ce88b5e0b..7701c55a3 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=5 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 ca012bc28..f5812b9fa 100644 --- a/extra/xf86-video-unichrome/PKGBUILD +++ b/extra/xf86-video-unichrome/PKGBUILD @@ -6,7 +6,7 @@ pkgver=0.2.7 pkgrel=6 _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' 'unichrome-dri') diff --git a/extra/xf86-video-v4l/PKGBUILD b/extra/xf86-video-v4l/PKGBUILD index bc3f36b95..24c61207a 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=9 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 91d85103c..c4f795970 100644 --- a/extra/xf86-video-vesa/PKGBUILD +++ b/extra/xf86-video-vesa/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-vesa pkgver=2.3.0 pkgrel=7 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 2ee2775ef..dc958e86b 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=5 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/xf86-video-xgi/PKGBUILD b/extra/xf86-video-xgi/PKGBUILD index 48f22a0b0..eba790b99 100644 --- a/extra/xf86-video-xgi/PKGBUILD +++ b/extra/xf86-video-xgi/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-xgi pkgver=1.6.0 pkgrel=4 pkgdesc="X.org XGI 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-xgixp/PKGBUILD b/extra/xf86-video-xgixp/PKGBUILD index c3dd3e706..884a53446 100644 --- a/extra/xf86-video-xgixp/PKGBUILD +++ b/extra/xf86-video-xgixp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xf86-video-xgixp pkgver=1.8.0 pkgrel=4 pkgdesc="X.org XGIXP video driver" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xfburn/PKGBUILD b/extra/xfburn/PKGBUILD index 7ff0c7cf1..3566c2582 100755 --- a/extra/xfburn/PKGBUILD +++ b/extra/xfburn/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xfburn pkgver=0.4.3 pkgrel=5 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') pkgdesc="a simple CD/DVD burning tool based on libburnia libraries" url="http://goodies.xfce.org/projects/applications/xfburn" license=('GPL2') diff --git a/extra/xfce-utils/PKGBUILD b/extra/xfce-utils/PKGBUILD index 063795561..0b9203407 100644 --- a/extra/xfce-utils/PKGBUILD +++ b/extra/xfce-utils/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce-utils pkgver=4.8.3 pkgrel=1 pkgdesc="Utilities for Xfce" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://www.xfce.org/" groups=('xfce4') @@ -31,7 +31,7 @@ build() { --disable-static \ --enable-dbus \ --disable-debug \ - --with-vendor-info=ArchLinux # --enable-gen-doc \ + --with-vendor-info=Parabola # --enable-gen-doc \ make } diff --git a/extra/xfce4-appfinder/PKGBUILD b/extra/xfce4-appfinder/PKGBUILD index 9eac46486..7f90bbdfa 100644 --- a/extra/xfce4-appfinder/PKGBUILD +++ b/extra/xfce4-appfinder/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-appfinder pkgver=4.8.0 pkgrel=1 pkgdesc="Xfce application finder" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.xfce.org/" groups=('xfce4') diff --git a/extra/xfce4-battery-plugin/PKGBUILD b/extra/xfce4-battery-plugin/PKGBUILD index 62e2ae5bd..70b47aa06 100644 --- a/extra/xfce4-battery-plugin/PKGBUILD +++ b/extra/xfce4-battery-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-battery-plugin pkgver=1.0.0 pkgrel=1 pkgdesc="A battery monitor plugin for the Xfce panel" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') diff --git a/extra/xfce4-clipman-plugin/PKGBUILD b/extra/xfce4-clipman-plugin/PKGBUILD index 25403c890..864caf53c 100644 --- a/extra/xfce4-clipman-plugin/PKGBUILD +++ b/extra/xfce4-clipman-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-clipman-plugin pkgver=1.2.2 pkgrel=1 pkgdesc="A clipboard plugin for the Xfce4 panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin" groups=('xfce4-goodies') diff --git a/extra/xfce4-cpufreq-plugin/PKGBUILD b/extra/xfce4-cpufreq-plugin/PKGBUILD index bea6bf602..f1d95fe32 100644 --- a/extra/xfce4-cpufreq-plugin/PKGBUILD +++ b/extra/xfce4-cpufreq-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-cpufreq-plugin pkgver=1.0.0 pkgrel=1 pkgdesc="CPU frequency plugin for the Xfce4 panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-cpufreq-plugin" groups=('xfce4-goodies') diff --git a/extra/xfce4-cpugraph-plugin/PKGBUILD b/extra/xfce4-cpugraph-plugin/PKGBUILD index f775fcce7..615fcc123 100644 --- a/extra/xfce4-cpugraph-plugin/PKGBUILD +++ b/extra/xfce4-cpugraph-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-cpugraph-plugin pkgver=1.0.1 pkgrel=2 pkgdesc="CPU graph plugin for the Xfce4 panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'custom') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin" groups=('xfce4-goodies') diff --git a/extra/xfce4-datetime-plugin/PKGBUILD b/extra/xfce4-datetime-plugin/PKGBUILD index 3d9e2a532..8a6e7d9aa 100644 --- a/extra/xfce4-datetime-plugin/PKGBUILD +++ b/extra/xfce4-datetime-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-datetime-plugin pkgver=0.6.1 pkgrel=1 pkgdesc="A date and time display plugin for the Xfce panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') diff --git a/extra/xfce4-dict/PKGBUILD b/extra/xfce4-dict/PKGBUILD index 344d7f37d..508d5b92b 100644 --- a/extra/xfce4-dict/PKGBUILD +++ b/extra/xfce4-dict/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-dict pkgver=0.6.0 pkgrel=1 pkgdesc="A dictionary plugin for the Xfce panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://goodies.xfce.org/projects/applications/xfce4-dict" groups=('xfce4-goodies') diff --git a/extra/xfce4-diskperf-plugin/PKGBUILD b/extra/xfce4-diskperf-plugin/PKGBUILD index 11af81a49..4d06b2822 100644 --- a/extra/xfce4-diskperf-plugin/PKGBUILD +++ b/extra/xfce4-diskperf-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-diskperf-plugin pkgver=2.3.0 pkgrel=1 pkgdesc="Plugin for the Xfce4 panel displaying instant disk/partition performance" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-diskperf-plugin" groups=('xfce4-goodies') diff --git a/extra/xfce4-eyes-plugin/PKGBUILD b/extra/xfce4-eyes-plugin/PKGBUILD index 454c329c4..50dd5e8b6 100644 --- a/extra/xfce4-eyes-plugin/PKGBUILD +++ b/extra/xfce4-eyes-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-eyes-plugin pkgver=4.4.1 pkgrel=1 pkgdesc="A rolling eyes (following mouse pointer) plugin for the Xfce panel" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') diff --git a/extra/xfce4-fsguard-plugin/PKGBUILD b/extra/xfce4-fsguard-plugin/PKGBUILD index 11202e348..751b3c26b 100644 --- a/extra/xfce4-fsguard-plugin/PKGBUILD +++ b/extra/xfce4-fsguard-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-fsguard-plugin pkgver=1.0.0 pkgrel=1 pkgdesc="File system usage monitor plugin for the Xfce4 panel" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') diff --git a/extra/xfce4-genmon-plugin/PKGBUILD b/extra/xfce4-genmon-plugin/PKGBUILD index 8e631a255..d7a4bf2c0 100644 --- a/extra/xfce4-genmon-plugin/PKGBUILD +++ b/extra/xfce4-genmon-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-genmon-plugin pkgver=3.3.0 pkgrel=1 pkgdesc="plugin that monitors customizable programs stdout for the Xfce4 panel" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL2.1') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-genmon-plugin" groups=('xfce4-goodies') diff --git a/extra/xfce4-mailwatch-plugin/PKGBUILD b/extra/xfce4-mailwatch-plugin/PKGBUILD index ebc9be73a..59daa2395 100644 --- a/extra/xfce4-mailwatch-plugin/PKGBUILD +++ b/extra/xfce4-mailwatch-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-mailwatch-plugin pkgver=1.1.0 pkgrel=4 pkgdesc="A mailbox watch/check plugin for the Xfce4 panel" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://spurint.org/projects/xfce4-mailwatch-plugin/" groups=('xfce4-goodies') diff --git a/extra/xfce4-mixer/PKGBUILD b/extra/xfce4-mixer/PKGBUILD index dd0e3337f..2a611c91f 100644 --- a/extra/xfce4-mixer/PKGBUILD +++ b/extra/xfce4-mixer/PKGBUILD @@ -5,15 +5,15 @@ pkgname=xfce4-mixer pkgver=4.8.0 pkgrel=1 pkgdesc="The volume control plugin for the Xfce panel" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://www.xfce.org/" groups=('xfce4') depends=("xfce4-panel>=4.8.0" 'gstreamer0.10-base>=0.10.22' 'hicolor-icon-theme') makedepends=('intltool') -optdepends=('gstreamer0.10-base-plugins: to support basic audio hardware' \ - 'gstreamer0.10-good-plugins: well supported hardware'\ - 'gstreamer0.10-bad-plugins: not so well supported hardware'\ +optdepends=('gstreamer0.10-base-plugins: to support basic audio hardware' + 'gstreamer0.10-good-plugins: well supported hardware' + 'gstreamer0.10-bad-plugins: not so well supported hardware' 'gstreamer0.10-ugly-plugins: might contain questionable license hardware') options=('!libtool') install=${pkgname}.install diff --git a/extra/xfce4-mount-plugin/PKGBUILD b/extra/xfce4-mount-plugin/PKGBUILD index 72cd37aca..3e735e931 100644 --- a/extra/xfce4-mount-plugin/PKGBUILD +++ b/extra/xfce4-mount-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-mount-plugin pkgver=0.5.5 pkgrel=1 pkgdesc="plugin for the Xfce4 panel to mount and unmount volumes" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') diff --git a/extra/xfce4-mpc-plugin/PKGBUILD b/extra/xfce4-mpc-plugin/PKGBUILD index 13a03f4e2..159a79844 100644 --- a/extra/xfce4-mpc-plugin/PKGBUILD +++ b/extra/xfce4-mpc-plugin/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xfce4-mpc-plugin pkgver=0.3.6 pkgrel=1 pkgdesc="plugin to control the music player daemon from the xfce4-panel" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-mpc-plugin" groups=('xfce4-goodies') diff --git a/extra/xfce4-netload-plugin/PKGBUILD b/extra/xfce4-netload-plugin/PKGBUILD index 363df6eb7..642deaf20 100644 --- a/extra/xfce4-netload-plugin/PKGBUILD +++ b/extra/xfce4-netload-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-netload-plugin pkgver=1.0.0 pkgrel=1 pkgdesc="A netload plugin for the Xfce panel" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') diff --git a/extra/xfce4-notes-plugin/PKGBUILD b/extra/xfce4-notes-plugin/PKGBUILD index 889e1ac02..4bb356307 100644 --- a/extra/xfce4-notes-plugin/PKGBUILD +++ b/extra/xfce4-notes-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-notes-plugin pkgver=1.7.7 pkgrel=2 pkgdesc="A notes plugin for the Xfce4 panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') diff --git a/extra/xfce4-notifyd/PKGBUILD b/extra/xfce4-notifyd/PKGBUILD index 9ffefd291..41d99d932 100644 --- a/extra/xfce4-notifyd/PKGBUILD +++ b/extra/xfce4-notifyd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-notifyd pkgver=0.2.2 pkgrel=2 pkgdesc="Notification daemon for the Xfce desktop" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://goodies.xfce.org/projects/applications/xfce4-notifyd" license=('GPL2') groups=('xfce4-goodies') diff --git a/extra/xfce4-panel/PKGBUILD b/extra/xfce4-panel/PKGBUILD index 041ebf6a5..1d69fb47c 100644 --- a/extra/xfce4-panel/PKGBUILD +++ b/extra/xfce4-panel/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-panel pkgver=4.8.6 pkgrel=1 pkgdesc="Panel for the Xfce desktop environment" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.xfce.org/" groups=('xfce4') diff --git a/extra/xfce4-power-manager/PKGBUILD b/extra/xfce4-power-manager/PKGBUILD index 9992fc0a4..13b2ef273 100644 --- a/extra/xfce4-power-manager/PKGBUILD +++ b/extra/xfce4-power-manager/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-power-manager pkgver=1.0.10 pkgrel=2 pkgdesc="power manager for xfce4 desktop" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') diff --git a/extra/xfce4-quicklauncher-plugin/PKGBUILD b/extra/xfce4-quicklauncher-plugin/PKGBUILD index d783ecf24..272feb35e 100644 --- a/extra/xfce4-quicklauncher-plugin/PKGBUILD +++ b/extra/xfce4-quicklauncher-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-quicklauncher-plugin pkgver=1.9.4 pkgrel=5 pkgdesc="plugin that creates 4 little application launcher in the Xfce4 panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') diff --git a/extra/xfce4-screenshooter/PKGBUILD b/extra/xfce4-screenshooter/PKGBUILD index 9a793fbc4..1b4d93b60 100644 --- a/extra/xfce4-screenshooter/PKGBUILD +++ b/extra/xfce4-screenshooter/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-screenshooter pkgver=1.8.0 pkgrel=1 pkgdesc="plugin that makes screenshots for the Xfce4 panel" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://goodies.xfce.org/projects/applications/xfce4-screenshooter" groups=('xfce4-goodies') diff --git a/extra/xfce4-sensors-plugin/PKGBUILD b/extra/xfce4-sensors-plugin/PKGBUILD index d2e465791..686999934 100644 --- a/extra/xfce4-sensors-plugin/PKGBUILD +++ b/extra/xfce4-sensors-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-sensors-plugin pkgver=1.2.3 pkgrel=2 pkgdesc="A lm_sensors plugin for the Xfce panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-sensors-plugin" groups=('xfce4-goodies') diff --git a/extra/xfce4-session/PKGBUILD b/extra/xfce4-session/PKGBUILD index 1d17cce0c..af21e0cef 100644 --- a/extra/xfce4-session/PKGBUILD +++ b/extra/xfce4-session/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-session pkgver=4.8.2 pkgrel=2 pkgdesc="A session manager for Xfce" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xfce.org/" license=('GPL2') groups=('xfce4') diff --git a/extra/xfce4-settings/PKGBUILD b/extra/xfce4-settings/PKGBUILD index ab5adf0c1..bcbb88d46 100644 --- a/extra/xfce4-settings/PKGBUILD +++ b/extra/xfce4-settings/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xfce4-settings pkgver=4.8.3 pkgrel=1 pkgdesc="Settings manager for xfce" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.xfce.org/" groups=('xfce4') diff --git a/extra/xfce4-smartbookmark-plugin/PKGBUILD b/extra/xfce4-smartbookmark-plugin/PKGBUILD index 1bfdd9253..1025303ce 100644 --- a/extra/xfce4-smartbookmark-plugin/PKGBUILD +++ b/extra/xfce4-smartbookmark-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-smartbookmark-plugin pkgver=0.4.4 pkgrel=1 pkgdesc="Plugin for the Xfce4 panel that let you quicksearch from selected websites" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-smartbookmark-plugin" groups=('xfce4-goodies') diff --git a/extra/xfce4-systemload-plugin/PKGBUILD b/extra/xfce4-systemload-plugin/PKGBUILD index a499ab317..31656ceed 100644 --- a/extra/xfce4-systemload-plugin/PKGBUILD +++ b/extra/xfce4-systemload-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-systemload-plugin pkgver=1.0.0 pkgrel=1 pkgdesc="A system load plugin for the Xfce4 panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-systemload-plugin" groups=('xfce4-goodies') diff --git a/extra/xfce4-taskmanager/PKGBUILD b/extra/xfce4-taskmanager/PKGBUILD index 477abe743..b9a7f1ebf 100644 --- a/extra/xfce4-taskmanager/PKGBUILD +++ b/extra/xfce4-taskmanager/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xfce4-taskmanager pkgver=1.0.0 pkgrel=2 pkgdesc="Easy to use task manager" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://goodies.xfce.org/projects/applications/xfce4-taskmanager" groups=('xfce4-goodies') diff --git a/extra/xfce4-time-out-plugin/PKGBUILD b/extra/xfce4-time-out-plugin/PKGBUILD index 119084172..5165c329a 100755 --- a/extra/xfce4-time-out-plugin/PKGBUILD +++ b/extra/xfce4-time-out-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-time-out-plugin pkgver=1.0.0 pkgrel=1 pkgdesc="Take a break from your computer with this plugin for XFCE4." -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') license=('GPL') diff --git a/extra/xfce4-timer-plugin/PKGBUILD b/extra/xfce4-timer-plugin/PKGBUILD index 97abd1269..df606bd8e 100644 --- a/extra/xfce4-timer-plugin/PKGBUILD +++ b/extra/xfce4-timer-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-timer-plugin pkgver=0.6.1 pkgrel=1 pkgdesc="plugin to track time for the Xfce4 panel" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-timer-plugin" groups=('xfce4-goodies') diff --git a/extra/xfce4-verve-plugin/PKGBUILD b/extra/xfce4-verve-plugin/PKGBUILD index 1c1586a0e..e416ca41c 100644 --- a/extra/xfce4-verve-plugin/PKGBUILD +++ b/extra/xfce4-verve-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-verve-plugin pkgver=1.0.0 pkgrel=1 pkgdesc="command line plugin Xfce4 panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://xfce-goodies.berlios.de/" groups=('xfce4-goodies') diff --git a/extra/xfce4-wavelan-plugin/PKGBUILD b/extra/xfce4-wavelan-plugin/PKGBUILD index 69976a7b2..2a531db88 100644 --- a/extra/xfce4-wavelan-plugin/PKGBUILD +++ b/extra/xfce4-wavelan-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-wavelan-plugin pkgver=0.5.6 pkgrel=1 pkgdesc="plugin to monitor wifi connectivity for the Xfce4 panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-wavelan-plugin/" groups=('xfce4-goodies') diff --git a/extra/xfce4-weather-plugin/PKGBUILD b/extra/xfce4-weather-plugin/PKGBUILD index fb57ce0f3..ecba2a317 100644 --- a/extra/xfce4-weather-plugin/PKGBUILD +++ b/extra/xfce4-weather-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-weather-plugin pkgver=0.7.4 pkgrel=1 pkgdesc="A weather plugin for the Xfce4 panel" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('GPL2') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-weather-plugin" groups=('xfce4-goodies') diff --git a/extra/xfce4-xkb-plugin/PKGBUILD b/extra/xfce4-xkb-plugin/PKGBUILD index a074d16fd..2a516c7fc 100644 --- a/extra/xfce4-xkb-plugin/PKGBUILD +++ b/extra/xfce4-xkb-plugin/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfce4-xkb-plugin pkgver=0.5.4.2 pkgrel=1 pkgdesc="plugin to switch keyboard layouts for the Xfce4 panel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-xkb-plugin" groups=('xfce4-goodies') diff --git a/extra/xfconf/PKGBUILD b/extra/xfconf/PKGBUILD index 0c5496af8..8f57230a6 100644 --- a/extra/xfconf/PKGBUILD +++ b/extra/xfconf/PKGBUILD @@ -4,16 +4,17 @@ pkgname=xfconf pkgver=4.8.0 -pkgrel=2 +pkgrel=3 pkgdesc="a simple client-server configuration storage and query system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.xfce.org/" groups=('xfce4') # http://www.xfce.org/documentation/requirements # keep dbus and gtk2, see also http://bugs.archlinux.org/task/14536 depends=( "libxfce4util>=4.8.0" "dbus-glib" 'dbus' 'gtk2') -makedepends=('pkgconfig' 'perl-extutils-depends' 'perl-extutils-pkgconfig' 'glib-perl' 'intltool' 'gtk-doc' 'chrpath') +makedepends=('pkgconfig' 'perl-extutils-depends' 'perl-extutils-pkgconfig' +'perl-xml-parser' 'glib-perl' 'intltool' 'gtk-doc' 'chrpath') options=('!libtool' '!emptydirs') source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2) md5sums=('0f11ed1ec7789c5c4c3fcc7cdb3c2940') diff --git a/extra/xfdesktop/PKGBUILD b/extra/xfdesktop/PKGBUILD index e4853d4c5..f300f061c 100644 --- a/extra/xfdesktop/PKGBUILD +++ b/extra/xfdesktop/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfdesktop pkgver=4.8.3 pkgrel=1 pkgdesc="A desktop manager for Xfce" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.xfce.org/" groups=('xfce4') diff --git a/extra/xfig/PKGBUILD b/extra/xfig/PKGBUILD index 45c07d0dc..faf519d2d 100644 --- a/extra/xfig/PKGBUILD +++ b/extra/xfig/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xfig pkgver=3.2.5b pkgrel=5 pkgdesc="An interactive drawing tool" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xfig.org/userman/" license=('custom') depends=('libpng' 'libjpeg' 'xaw3d' 'libxi' 'desktop-file-utils' 'gsfonts') diff --git a/extra/xfwm4/PKGBUILD b/extra/xfwm4/PKGBUILD index 4aa86f2f2..c7f2e6d81 100644 --- a/extra/xfwm4/PKGBUILD +++ b/extra/xfwm4/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xfwm4 pkgver=4.8.2 pkgrel=1 pkgdesc="Xfce window manager" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://www.xfce.org/" groups=('xfce4') diff --git a/extra/xine-lib/PKGBUILD b/extra/xine-lib/PKGBUILD index 86dda60c1..4662ab34f 100644 --- a/extra/xine-lib/PKGBUILD +++ b/extra/xine-lib/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xine-lib pkgver=1.1.19 pkgrel=5 pkgdesc="A multimedia playback engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xine-project.org" license=('LGPL' 'GPL') depends=('libgl' 'libxvmc' 'flac' 'ffmpeg' 'libxinerama' 'libmodplug') diff --git a/extra/xine-ui/PKGBUILD b/extra/xine-ui/PKGBUILD index 9cc134600..f22c7665c 100644 --- a/extra/xine-ui/PKGBUILD +++ b/extra/xine-ui/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xine-ui pkgver=0.99.6 pkgrel=2 pkgdesc="A free video player for Unix" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://www.xine-project.org" depends=('xine-lib' 'curl' 'libxtst' 'libxinerama' 'libxv' 'libpng' 'libxft' diff --git a/extra/xmahjongg/PKGBUILD b/extra/xmahjongg/PKGBUILD index 56df4a23f..2e954d29d 100644 --- a/extra/xmahjongg/PKGBUILD +++ b/extra/xmahjongg/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xmahjongg pkgver=3.7 pkgrel=4 pkgdesc="Mahjongg game for X-Window" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.lcdf.org/xmahjongg/" license=('GPL') depends=('gcc-libs' 'libx11') diff --git a/extra/xmlsec/PKGBUILD b/extra/xmlsec/PKGBUILD index 283a541e8..88df6c5b0 100644 --- a/extra/xmlsec/PKGBUILD +++ b/extra/xmlsec/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.2.18 pkgrel=2 pkgdesc="XML Security Library is a C library based on LibXML2" license=('custom') -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.aleksey.com/xmlsec/index.html" depends=('libxslt>=1.1.26' 'openssl>=1.0.0' 'gnutls' 'nss>=3.12.10' 'libtool') makedepends=('pkgconfig') diff --git a/extra/xmlto/PKGBUILD b/extra/xmlto/PKGBUILD index b83953432..dbbbbf2a7 100644 --- a/extra/xmlto/PKGBUILD +++ b/extra/xmlto/PKGBUILD @@ -8,7 +8,7 @@ pkgname=xmlto pkgver=0.0.24 pkgrel=1 pkgdesc="Convert xml to many other formats" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://cyberelk.net/tim/software/xmlto/" license=('GPL') depends=('libxslt' 'perl-yaml-syck' 'perl-test-pod') diff --git a/extra/xmms/PKGBUILD b/extra/xmms/PKGBUILD index 628a19404..90020879c 100644 --- a/extra/xmms/PKGBUILD +++ b/extra/xmms/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xmms pkgver=1.2.11 pkgrel=4 pkgdesc="The X MultiMedia System - a multimedia player" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://legacy.xmms2.org/" license=('GPL') depends=('gtk' 'libxxf86vm' 'libsm' 'desktop-file-utils') diff --git a/extra/xorg-appres/PKGBUILD b/extra/xorg-appres/PKGBUILD index cc1583a0b..9af921b3b 100644 --- a/extra/xorg-appres/PKGBUILD +++ b/extra/xorg-appres/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-appres pkgver=1.0.3 pkgrel=2 pkgdesc="List X application resource database" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxt') diff --git a/extra/xorg-bdftopcf/PKGBUILD b/extra/xorg-bdftopcf/PKGBUILD index 0a6a35221..80920d665 100644 --- a/extra/xorg-bdftopcf/PKGBUILD +++ b/extra/xorg-bdftopcf/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-bdftopcf pkgver=1.0.3 pkgrel=1 pkgdesc="Convert X font from Bitmap Distribution Format to Portable Compiled Format" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxfont') diff --git a/extra/xorg-font-util/PKGBUILD b/extra/xorg-font-util/PKGBUILD index d23ec52bc..09ec5570f 100644 --- a/extra/xorg-font-util/PKGBUILD +++ b/extra/xorg-font-util/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-font-util pkgver=1.2.0 pkgrel=1 pkgdesc="X.Org font utilities" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') makedepends=('xorg-util-macros') diff --git a/extra/xorg-iceauth/PKGBUILD b/extra/xorg-iceauth/PKGBUILD index 9063e3a4d..8af9aa2b0 100644 --- a/extra/xorg-iceauth/PKGBUILD +++ b/extra/xorg-iceauth/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-iceauth pkgver=1.0.5 pkgrel=1 pkgdesc="ICE authority file utility" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libice') diff --git a/extra/xorg-luit/PKGBUILD b/extra/xorg-luit/PKGBUILD index 48b3446d8..3b7f03484 100644 --- a/extra/xorg-luit/PKGBUILD +++ b/extra/xorg-luit/PKGBUILD @@ -6,7 +6,7 @@ pkgver=1.1.0 pkgrel=2 pkgdesc="Filter that can be run between an arbitrary application and a UTF-8 terminal emulator" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libfontenc') diff --git a/extra/xorg-mkfontscale/PKGBUILD b/extra/xorg-mkfontscale/PKGBUILD index 883dc49b7..55bd8bf0f 100644 --- a/extra/xorg-mkfontscale/PKGBUILD +++ b/extra/xorg-mkfontscale/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-mkfontscale pkgver=1.0.9 pkgrel=1 pkgdesc="Create an index of scalable font files for X" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('freetype2' 'libfontenc') diff --git a/extra/xorg-oclock/PKGBUILD b/extra/xorg-oclock/PKGBUILD index 5016247f2..0453c41e4 100644 --- a/extra/xorg-oclock/PKGBUILD +++ b/extra/xorg-oclock/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-oclock pkgver=1.0.2 pkgrel=1 pkgdesc="Round X clock" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxmu' 'libxext') diff --git a/extra/xorg-server/PKGBUILD b/extra/xorg-server/PKGBUILD index 48f500bb4..af6d14caa 100644 --- a/extra/xorg-server/PKGBUILD +++ b/extra/xorg-server/PKGBUILD @@ -5,10 +5,11 @@ pkgbase=xorg-server pkgname=('xorg-server' 'xorg-server-xephyr' 'xorg-server-xdmx' 'xorg-server-xvfb' 'xorg-server-xnest' 'xorg-server-common' 'xorg-server-devel') pkgver=1.11.1.902 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://xorg.freedesktop.org" -makedepends=('pixman' 'libx11' 'mesa' 'libgl' 'xf86driproto' 'xcmiscproto' 'xtrans' 'bigreqsproto' 'randrproto' 'inputproto' 'fontsproto' 'videoproto' 'compositeproto' 'recordproto' 'scrnsaverproto' 'resourceproto' 'xineramaproto' 'libxkbfile' 'libxfont' 'renderproto' 'libpciaccess' 'libxv' 'xf86dgaproto' 'libxmu' 'libxrender' 'libxi' 'dmxproto' 'libxaw' 'libdmx' 'libxtst' 'libxres' 'xorg-xkbcomp' 'xorg-util-macros' 'xorg-font-util' 'glproto' 'dri2proto') +makedepends=('pixman' 'libx11' 'mesa' 'libgl' 'xcmiscproto' 'xtrans' 'bigreqsproto' 'randrproto' 'inputproto' 'fontsproto' 'videoproto' 'compositeproto' 'recordproto' 'scrnsaverproto' 'resourceproto' 'xineramaproto' 'libxkbfile' 'libxfont' 'renderproto' 'libpciaccess' 'libxv' 'xf86dgaproto' 'libxmu' 'libxrender' 'libxi' 'dmxproto' 'libxaw' 'libdmx' 'libxtst' 'libxres' 'xorg-xkbcomp' 'xorg-util-macros' 'xorg-font-util' 'glproto') +[ "$CARCH" = "mips64el" ] || makedepends+=('xf86driproto' 'dri2proto') options=('!libtool') source=(${url}/releases/individual/xserver/${pkgbase}-${pkgver}.tar.bz2 autoconfig-nvidia.patch @@ -43,6 +44,34 @@ build() { #patch -Np1 -i "${srcdir}/git-fixes.patch" autoreconf -fi + if [ "$CARCH" = "mips64el" ]; then + ./configure --prefix=/usr \ + --enable-ipv6 \ + --disable-dri \ + --disable-dri2 \ + --enable-dmx \ + --enable-xvfb \ + --enable-xnest \ + --enable-composite \ + --enable-xcsecurity \ + --enable-xorg \ + --enable-xephyr \ + --disable-glx \ + --disable-glx-tls \ + --enable-kdrive \ + --enable-install-setuid \ + --enable-config-udev \ + --disable-config-dbus \ + --enable-record \ + --disable-xfbdev \ + --disable-xfake \ + --disable-static \ + --sysconfdir=/etc/X11 \ + --localstatedir=/var \ + --with-xkb-path=/usr/share/X11/xkb \ + --with-xkb-output=/var/lib/xkb \ + --with-fontrootdir=/usr/share/fonts + else ./configure --prefix=/usr \ --enable-ipv6 \ --enable-dri \ @@ -67,6 +96,7 @@ build() { --with-xkb-path=/usr/share/X11/xkb \ --with-xkb-output=/var/lib/xkb \ --with-fontrootdir=/usr/share/fonts + fi make # Disable subdirs for make install rule to make splitting easier @@ -110,9 +140,11 @@ package_xorg-server() { rmdir "${pkgdir}/usr/share/X11" + if [ "$CARCH" != "mips64el" ]; then # Needed for non-mesa drivers, libgl will restore it mv "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so" \ "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.xorg" + fi rm -rf "${pkgdir}/var" @@ -176,7 +208,8 @@ package_xorg-server-xdmx() { package_xorg-server-devel() { pkgdesc="Development files for the X.Org X server" - depends=(xproto randrproto renderproto xextproto inputproto kbproto fontsproto videoproto dri2proto xineramaproto xorg-util-macros pixman libpciaccess) + depends=(xproto randrproto renderproto xextproto inputproto kbproto fontsproto videoproto xineramaproto xorg-util-macros pixman libpciaccess) +[ "$CARCH" = "mips64el" ] || depends+=('dri2proto') cd "${srcdir}/${pkgbase}-${pkgver}" make DESTDIR="${pkgdir}" install diff --git a/extra/xorg-server/vbe-fix-malloc-size-bug.patch b/extra/xorg-server/vbe-fix-malloc-size-bug.patch new file mode 100644 index 000000000..01ed040d4 --- /dev/null +++ b/extra/xorg-server/vbe-fix-malloc-size-bug.patch @@ -0,0 +1,39 @@ +From 8ffaef2ebd2611e2eed4ef97350c3a34508f5252 Mon Sep 17 00:00:00 2001 +From: Adam Jackson <ajax@redhat.com> +Date: Thu, 24 Feb 2011 21:06:34 +0000 +Subject: vbe: Fix malloc size bug + +v2: Slightly more obvious sizing math. + +==14882== Invalid write of size 2 +==14882== at 0x6750267: VBEGetVBEInfo (vbe.c:400) +==14882== by 0x6142064: ??? (in /usr/lib64/xorg/modules/drivers/vesa_drv.so) +==14882== by 0x471895: InitOutput (xf86Init.c:519) +==14882== by 0x422778: main (main.c:205) +==14882== Address 0x4f32fa8 is 72 bytes inside a block of size 73 alloc'd +==14882== at 0x4A0640D: malloc (vg_replace_malloc.c:236) +==14882== by 0x675024B: VBEGetVBEInfo (vbe.c:398) +==14882== by 0x6142064: ??? (in /usr/lib64/xorg/modules/drivers/vesa_drv.so) +==14882== by 0x471895: InitOutput (xf86Init.c:519) +==14882== by 0x422778: main (main.c:205) + +Reviewed-by: Mark Kettenis <kettenis@openbsd.org> +Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> +Signed-off-by: Adam Jackson <ajax@redhat.com> +(cherry picked from commit d8caa782009abf4dc17b945e325e83fda299a534) +--- +diff --git a/hw/xfree86/vbe/vbe.c b/hw/xfree86/vbe/vbe.c +index 7a64a4a..1d3775b 100644 +--- a/hw/xfree86/vbe/vbe.c ++++ b/hw/xfree86/vbe/vbe.c +@@ -395,7 +395,7 @@ VBEGetVBEInfo(vbeInfoPtr pVbe) + i = 0; + while (modes[i] != 0xffff) + i++; +- block->VideoModePtr = malloc(sizeof(CARD16) * i + 1); ++ block->VideoModePtr = malloc(sizeof(CARD16) * (i + 1)); + memcpy(block->VideoModePtr, modes, sizeof(CARD16) * i); + block->VideoModePtr[i] = 0xffff; + +-- +cgit v0.8.3-6-g21f6 diff --git a/extra/xorg-sessreg/PKGBUILD b/extra/xorg-sessreg/PKGBUILD index aa97c8ffd..e7b850a1d 100644 --- a/extra/xorg-sessreg/PKGBUILD +++ b/extra/xorg-sessreg/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-sessreg pkgver=1.0.7 pkgrel=1 pkgdesc="Register X sessions in system utmp/utmpx databases" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('glibc') diff --git a/extra/xorg-setxkbmap/PKGBUILD b/extra/xorg-setxkbmap/PKGBUILD index b25f37dc1..2aceaead9 100644 --- a/extra/xorg-setxkbmap/PKGBUILD +++ b/extra/xorg-setxkbmap/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-setxkbmap pkgver=1.2.0 pkgrel=2 pkgdesc="Set the keyboard using the X Keyboard Extension" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxkbfile') diff --git a/extra/xorg-smproxy/PKGBUILD b/extra/xorg-smproxy/PKGBUILD index d8c25e0a4..ba53babaa 100644 --- a/extra/xorg-smproxy/PKGBUILD +++ b/extra/xorg-smproxy/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-smproxy pkgver=1.0.5 pkgrel=1 pkgdesc="Allows X applications that do not support X11R6 session management to participate in an X11R6 session" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libsm' 'libxt' 'libxmu') diff --git a/extra/xorg-twm/PKGBUILD b/extra/xorg-twm/PKGBUILD index d77f13207..94e32f41b 100644 --- a/extra/xorg-twm/PKGBUILD +++ b/extra/xorg-twm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xorg-twm pkgver=1.0.7 pkgrel=1 pkgdesc="Tab Window Manager for the X Window System" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" backup=(etc/X11/twm/system.twmrc) license=('custom') diff --git a/extra/xorg-x11perf/PKGBUILD b/extra/xorg-x11perf/PKGBUILD index 7c7479dca..489dac0b2 100644 --- a/extra/xorg-x11perf/PKGBUILD +++ b/extra/xorg-x11perf/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-x11perf pkgver=1.5.4 pkgrel=1 pkgdesc="Simple X server performance benchmarker" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxmu' 'libxrender' 'libxft' 'libxext') diff --git a/extra/xorg-xauth/PKGBUILD b/extra/xorg-xauth/PKGBUILD index 192dcce39..fc3b2bb16 100644 --- a/extra/xorg-xauth/PKGBUILD +++ b/extra/xorg-xauth/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xauth pkgver=1.0.6 pkgrel=1 pkgdesc="X.Org authorization settings program" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('libxmu') diff --git a/extra/xorg-xbacklight/PKGBUILD b/extra/xorg-xbacklight/PKGBUILD index 5ed14c78c..2b1a3c230 100644 --- a/extra/xorg-xbacklight/PKGBUILD +++ b/extra/xorg-xbacklight/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xbacklight pkgver=1.1.2 pkgrel=2 pkgdesc="RandR-based backlight control application" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxrandr' 'libx11') diff --git a/extra/xorg-xbiff/PKGBUILD b/extra/xorg-xbiff/PKGBUILD index 60c750ed2..47bd31dd8 100644 --- a/extra/xorg-xbiff/PKGBUILD +++ b/extra/xorg-xbiff/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xbiff pkgver=1.0.3 pkgrel=1 pkgdesc="Watch mailboxes for new message delivery" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxaw' 'libxext') diff --git a/extra/xorg-xcalc/PKGBUILD b/extra/xorg-xcalc/PKGBUILD index 8272a7965..d4d16a8c4 100644 --- a/extra/xorg-xcalc/PKGBUILD +++ b/extra/xorg-xcalc/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xcalc pkgver=1.0.4.1 pkgrel=1 pkgdesc="Scientific calculator for X" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxaw') diff --git a/extra/xorg-xclipboard/PKGBUILD b/extra/xorg-xclipboard/PKGBUILD index 08f506c42..60c4d624b 100644 --- a/extra/xorg-xclipboard/PKGBUILD +++ b/extra/xorg-xclipboard/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xclipboard pkgver=1.1.1 pkgrel=1 pkgdesc="X clipboard manager" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxaw' 'libxmu' 'libxt' 'libx11') diff --git a/extra/xorg-xclock/PKGBUILD b/extra/xorg-xclock/PKGBUILD index db6506846..f3d2ee24e 100644 --- a/extra/xorg-xclock/PKGBUILD +++ b/extra/xorg-xclock/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xclock pkgver=1.0.5 pkgrel=1 pkgdesc="X clock" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxmu' 'libxaw' 'libxrender' 'libxft' 'libxkbfile') diff --git a/extra/xorg-xcmsdb/PKGBUILD b/extra/xorg-xcmsdb/PKGBUILD index 58fdd734f..9687e02fb 100644 --- a/extra/xorg-xcmsdb/PKGBUILD +++ b/extra/xorg-xcmsdb/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xcmsdb pkgver=1.0.3 pkgrel=2 pkgdesc="Device Color Characterization utility for X Color Management System" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11') diff --git a/extra/xorg-xconsole/PKGBUILD b/extra/xorg-xconsole/PKGBUILD index 204892339..1ecc9eeac 100644 --- a/extra/xorg-xconsole/PKGBUILD +++ b/extra/xorg-xconsole/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xconsole pkgver=1.0.4 pkgrel=1 pkgdesc="Monitor system console messages with X" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxaw' 'libxmu' 'libxt' 'libx11') diff --git a/extra/xorg-xcursorgen/PKGBUILD b/extra/xorg-xcursorgen/PKGBUILD index f798e9591..31e374a1d 100644 --- a/extra/xorg-xcursorgen/PKGBUILD +++ b/extra/xorg-xcursorgen/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xcursorgen pkgver=1.0.4 pkgrel=2 pkgdesc="Create an X cursor file from PNG images" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxcursor' 'libpng') diff --git a/extra/xorg-xdm/PKGBUILD b/extra/xorg-xdm/PKGBUILD index 1edcddd16..ac47ef1e2 100644 --- a/extra/xorg-xdm/PKGBUILD +++ b/extra/xorg-xdm/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xdm pkgver=1.1.11 pkgrel=1 pkgdesc="X Display Manager" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('pam' 'libxaw' 'libxinerama' 'xorg-xrdb' 'xorg-sessreg' 'libxft' 'consolekit') diff --git a/extra/xorg-xdpyinfo/PKGBUILD b/extra/xorg-xdpyinfo/PKGBUILD index b4101251d..48c4b5ae9 100644 --- a/extra/xorg-xdpyinfo/PKGBUILD +++ b/extra/xorg-xdpyinfo/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xdpyinfo pkgver=1.3.0 pkgrel=1 pkgdesc="Display information utility for X" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxext' 'libxtst' 'libxxf86vm' 'libxxf86dga' 'libxrender' 'libxcomposite' 'libxinerama' 'libdmx') diff --git a/extra/xorg-xdriinfo/PKGBUILD b/extra/xorg-xdriinfo/PKGBUILD index 643fe2e93..f247c07ee 100644 --- a/extra/xorg-xdriinfo/PKGBUILD +++ b/extra/xorg-xdriinfo/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xdriinfo pkgver=1.0.4 pkgrel=2 pkgdesc="Query configuration information of DRI drivers" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libgl') diff --git a/extra/xorg-xedit/PKGBUILD b/extra/xorg-xedit/PKGBUILD index b6a7dbf41..d9f9d49d7 100644 --- a/extra/xorg-xedit/PKGBUILD +++ b/extra/xorg-xedit/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xedit pkgver=1.2.0 pkgrel=1 pkgdesc="Simple text editor for X" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxaw' 'libxmu' 'libxt' 'libx11') diff --git a/extra/xorg-xev/PKGBUILD b/extra/xorg-xev/PKGBUILD index 70f75e86b..7e981106a 100644 --- a/extra/xorg-xev/PKGBUILD +++ b/extra/xorg-xev/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xev pkgver=1.1.0 pkgrel=2 pkgdesc="Print contents of X events" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11') diff --git a/extra/xorg-xeyes/PKGBUILD b/extra/xorg-xeyes/PKGBUILD index aea051d3a..5c18175bb 100644 --- a/extra/xorg-xeyes/PKGBUILD +++ b/extra/xorg-xeyes/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xeyes pkgver=1.1.1 pkgrel=1 pkgdesc="Follow the mouse/SHAPE extension X demo" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxt' 'libxext' 'libxmu' 'libxrender') diff --git a/extra/xorg-xfd/PKGBUILD b/extra/xorg-xfd/PKGBUILD index 8d7aec33c..5c4bba1c6 100644 --- a/extra/xorg-xfd/PKGBUILD +++ b/extra/xorg-xfd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xfd pkgver=1.1.0 pkgrel=1 pkgdesc="Displays all the characters in a font using either the X11 core protocol or libXft2" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxaw' 'fontconfig' 'libxft' 'libxrender' 'libxmu') diff --git a/extra/xorg-xfontsel/PKGBUILD b/extra/xorg-xfontsel/PKGBUILD index cca0d453e..827003048 100644 --- a/extra/xorg-xfontsel/PKGBUILD +++ b/extra/xorg-xfontsel/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xfontsel pkgver=1.0.3 pkgrel=1 pkgdesc="Point and click selection of X11 font names" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxaw' 'libxmu' 'libxt' 'libx11') diff --git a/extra/xorg-xfs/PKGBUILD b/extra/xorg-xfs/PKGBUILD index 606076b8f..cb7244db9 100644 --- a/extra/xorg-xfs/PKGBUILD +++ b/extra/xorg-xfs/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xorg-xfs pkgver=1.1.1 pkgrel=1 pkgdesc="X.Org X11 xfs font server" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') backup=('etc/X11/fs/config') diff --git a/extra/xorg-xgamma/PKGBUILD b/extra/xorg-xgamma/PKGBUILD index a1cfff2aa..fd9a43f7c 100644 --- a/extra/xorg-xgamma/PKGBUILD +++ b/extra/xorg-xgamma/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xgamma pkgver=1.0.4 pkgrel=2 pkgdesc="Alter a monitor's gamma correction" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxxf86vm') diff --git a/extra/xorg-xhost/PKGBUILD b/extra/xorg-xhost/PKGBUILD index 99f1f3399..82519eab8 100644 --- a/extra/xorg-xhost/PKGBUILD +++ b/extra/xorg-xhost/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xhost pkgver=1.0.4 pkgrel=2 pkgdesc="Server access control program for X" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxmu') diff --git a/extra/xorg-xinit/PKGBUILD b/extra/xorg-xinit/PKGBUILD index a65ace85e..e313a264b 100644 --- a/extra/xorg-xinit/PKGBUILD +++ b/extra/xorg-xinit/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xorg-xinit pkgver=1.3.1 pkgrel=1 pkgdesc="X.Org initialisation program " -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://xorg.freedesktop.org/" depends=('libx11' 'xorg-xauth') diff --git a/extra/xorg-xinput/PKGBUILD b/extra/xorg-xinput/PKGBUILD index e0c49d36e..a7afa3c17 100644 --- a/extra/xorg-xinput/PKGBUILD +++ b/extra/xorg-xinput/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xinput pkgver=1.5.3 pkgrel=2 pkgdesc="Small commandline tool to configure devices" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxi') diff --git a/extra/xorg-xkbcomp/PKGBUILD b/extra/xorg-xkbcomp/PKGBUILD index dc2ec9c89..058840aac 100644 --- a/extra/xorg-xkbcomp/PKGBUILD +++ b/extra/xorg-xkbcomp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xkbcomp pkgver=1.2.3 pkgrel=1 pkgdesc="X Keyboard description compiler" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://xorg.freedesktop.org/" license=('custom') depends=('libxkbfile') diff --git a/extra/xorg-xkbevd/PKGBUILD b/extra/xorg-xkbevd/PKGBUILD index 35ac08075..e95a0944d 100644 --- a/extra/xorg-xkbevd/PKGBUILD +++ b/extra/xorg-xkbevd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xkbevd pkgver=1.1.2 pkgrel=2 pkgdesc="XKB event daemon" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxkbfile') diff --git a/extra/xorg-xkbutils/PKGBUILD b/extra/xorg-xkbutils/PKGBUILD index 5b3d3be12..81e2c9050 100644 --- a/extra/xorg-xkbutils/PKGBUILD +++ b/extra/xorg-xkbutils/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xkbutils pkgver=1.0.3 pkgrel=2 pkgdesc="XKB utility demos" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxaw' 'libxt' 'libx11') diff --git a/extra/xorg-xkill/PKGBUILD b/extra/xorg-xkill/PKGBUILD index b1dbbe639..a2b3f1580 100644 --- a/extra/xorg-xkill/PKGBUILD +++ b/extra/xorg-xkill/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xkill pkgver=1.0.3 pkgrel=2 pkgdesc="Kill a client by its X resource" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxmu') diff --git a/extra/xorg-xload/PKGBUILD b/extra/xorg-xload/PKGBUILD index f61b7d877..1451a91a0 100644 --- a/extra/xorg-xload/PKGBUILD +++ b/extra/xorg-xload/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xload pkgver=1.1.0 pkgrel=1 pkgdesc="System load average display for X" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxaw' 'libxmu' 'libxt' 'libx11') diff --git a/extra/xorg-xlogo/PKGBUILD b/extra/xorg-xlogo/PKGBUILD index 114933c16..56fbc99e2 100644 --- a/extra/xorg-xlogo/PKGBUILD +++ b/extra/xorg-xlogo/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xlogo pkgver=1.0.3 pkgrel=1 pkgdesc="Draw [old] X logo" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libsm' 'libxaw' 'libxmu' 'libxt' 'libxext' 'libx11' 'libxrender' 'libxft') diff --git a/extra/xorg-xlsatoms/PKGBUILD b/extra/xorg-xlsatoms/PKGBUILD index dd88c8c9a..9a7f32f6e 100644 --- a/extra/xorg-xlsatoms/PKGBUILD +++ b/extra/xorg-xlsatoms/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xlsatoms pkgver=1.1.0 pkgrel=2 pkgdesc="List interned atoms defined on server" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxcb') diff --git a/extra/xorg-xlsclients/PKGBUILD b/extra/xorg-xlsclients/PKGBUILD index d0b5ac155..efae30be0 100644 --- a/extra/xorg-xlsclients/PKGBUILD +++ b/extra/xorg-xlsclients/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xlsclients pkgver=1.1.2 pkgrel=1 pkgdesc="List client applications running on a display" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxcb') diff --git a/extra/xorg-xmag/PKGBUILD b/extra/xorg-xmag/PKGBUILD index 66dafe737..4e3728a34 100644 --- a/extra/xorg-xmag/PKGBUILD +++ b/extra/xorg-xmag/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xmag pkgver=1.0.4 pkgrel=1 pkgdesc="Magnify parts of the screen" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxaw' 'libxmu' 'libxt' 'libx11') diff --git a/extra/xorg-xman/PKGBUILD b/extra/xorg-xman/PKGBUILD index 77bb96546..d56b4fe44 100644 --- a/extra/xorg-xman/PKGBUILD +++ b/extra/xorg-xman/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xman pkgver=1.1.2 pkgrel=1 pkgdesc="Unix manual page viewer" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxaw' 'libxt') diff --git a/extra/xorg-xmessage/PKGBUILD b/extra/xorg-xmessage/PKGBUILD index ca10a8d57..82c3fe420 100644 --- a/extra/xorg-xmessage/PKGBUILD +++ b/extra/xorg-xmessage/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xmessage pkgver=1.0.3 pkgrel=1 pkgdesc="Display a message or query in a window" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxaw') diff --git a/extra/xorg-xmodmap/PKGBUILD b/extra/xorg-xmodmap/PKGBUILD index 6f8f31e4f..92942a1e3 100644 --- a/extra/xorg-xmodmap/PKGBUILD +++ b/extra/xorg-xmodmap/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xmodmap pkgver=1.0.5 pkgrel=2 pkgdesc="Utility for modifying keymaps and button mappings" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11') diff --git a/extra/xorg-xpr/PKGBUILD b/extra/xorg-xpr/PKGBUILD index 47ed9440b..6bd56b68f 100644 --- a/extra/xorg-xpr/PKGBUILD +++ b/extra/xorg-xpr/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xpr pkgver=1.0.3 pkgrel=2 pkgdesc="Print an X window dump from xwd" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxmu') diff --git a/extra/xorg-xprop/PKGBUILD b/extra/xorg-xprop/PKGBUILD index 32e121164..ae86243b8 100644 --- a/extra/xorg-xprop/PKGBUILD +++ b/extra/xorg-xprop/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xprop pkgver=1.2.1 pkgrel=1 pkgdesc="Property displayer for X" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11') diff --git a/extra/xorg-xrandr/PKGBUILD b/extra/xorg-xrandr/PKGBUILD index a208b1ee3..f15457c98 100644 --- a/extra/xorg-xrandr/PKGBUILD +++ b/extra/xorg-xrandr/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xrandr pkgver=1.3.5 pkgrel=1 pkgdesc="Primitive command line interface to RandR extension" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxrandr' 'libx11') diff --git a/extra/xorg-xrdb/PKGBUILD b/extra/xorg-xrdb/PKGBUILD index 5e404714a..a1e0d6f50 100644 --- a/extra/xorg-xrdb/PKGBUILD +++ b/extra/xorg-xrdb/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 118463 2011-04-07 07:16:02Z jgc $ +# $Id: PKGBUILD 113821 2011-03-10 15:52:04Z jgc $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=xorg-xrdb -pkgver=1.0.9 -pkgrel=1 +pkgver=1.0.8 +pkgrel=2 pkgdesc="X server resource database utility" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxmu' 'mcpp') makedepends=('xorg-util-macros') groups=('xorg-apps' 'xorg') source=(http://xorg.freedesktop.org/archive/individual/app/xrdb-${pkgver}.tar.bz2) -sha1sums=('efa5f2420411988d6a6e142934393fd272507857') +sha1sums=('9bfdd09a2b303b962439910f7bccaddd69b6ca8a') build() { cd "${srcdir}/xrdb-${pkgver}" diff --git a/extra/xorg-xrefresh/PKGBUILD b/extra/xorg-xrefresh/PKGBUILD index 74d49b040..de950df12 100644 --- a/extra/xorg-xrefresh/PKGBUILD +++ b/extra/xorg-xrefresh/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xrefresh pkgver=1.0.4 pkgrel=2 pkgdesc="Refresh all or part of an X screen" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11') diff --git a/extra/xorg-xset/PKGBUILD b/extra/xorg-xset/PKGBUILD index e483f0646..7e0c40c51 100644 --- a/extra/xorg-xset/PKGBUILD +++ b/extra/xorg-xset/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xset pkgver=1.2.2 pkgrel=1 pkgdesc="User preference utility for X" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxmu') diff --git a/extra/xorg-xsetroot/PKGBUILD b/extra/xorg-xsetroot/PKGBUILD index 35b800dca..3758d9c6a 100644 --- a/extra/xorg-xsetroot/PKGBUILD +++ b/extra/xorg-xsetroot/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xsetroot pkgver=1.1.0 pkgrel=2 pkgdesc="Classic X utility to set your root window background to a given pattern or color" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxmu' 'libx11' 'libxcursor') diff --git a/extra/xorg-xvidtune/PKGBUILD b/extra/xorg-xvidtune/PKGBUILD index 308b8088d..e7426b638 100644 --- a/extra/xorg-xvidtune/PKGBUILD +++ b/extra/xorg-xvidtune/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xvidtune pkgver=1.0.2 pkgrel=1 pkgdesc="Video mode tuner for Xorg" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxxf86vm' 'libxt' 'libxaw' 'libxmu' 'libx11') diff --git a/extra/xorg-xvinfo/PKGBUILD b/extra/xorg-xvinfo/PKGBUILD index f125fa32d..4684113fb 100644 --- a/extra/xorg-xvinfo/PKGBUILD +++ b/extra/xorg-xvinfo/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xvinfo pkgver=1.1.1 pkgrel=2 pkgdesc="Prints out the capabilities of any video adaptors associated with the display that are accessible through the X-Video extension" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11' 'libxv') diff --git a/extra/xorg-xwd/PKGBUILD b/extra/xorg-xwd/PKGBUILD index 1634c5d93..a4de8a9f1 100644 --- a/extra/xorg-xwd/PKGBUILD +++ b/extra/xorg-xwd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xwd pkgver=1.0.4 pkgrel=2 pkgdesc="X Window System image dumping utility" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11') diff --git a/extra/xorg-xwininfo/PKGBUILD b/extra/xorg-xwininfo/PKGBUILD index 1e16302d1..59fcd44af 100644 --- a/extra/xorg-xwininfo/PKGBUILD +++ b/extra/xorg-xwininfo/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xwininfo pkgver=1.1.2 pkgrel=1 pkgdesc="Command-line utility to print information about windows on an X server" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libxcb') diff --git a/extra/xorg-xwud/PKGBUILD b/extra/xorg-xwud/PKGBUILD index c7c593386..5b7a4a430 100644 --- a/extra/xorg-xwud/PKGBUILD +++ b/extra/xorg-xwud/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xorg-xwud pkgver=1.0.3 pkgrel=2 pkgdesc="X Window System image undumping utility" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://xorg.freedesktop.org/" license=('custom') depends=('libx11') diff --git a/extra/xournal/PKGBUILD b/extra/xournal/PKGBUILD index 79f6f7c93..76d0c7f1c 100644 --- a/extra/xournal/PKGBUILD +++ b/extra/xournal/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xournal pkgver=0.4.5 pkgrel=5 pkgdesc='Notetaking and sketching application' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://xournal.sourceforge.net/' license=('GPL') depends=('libgnomecanvas' 'poppler-glib' 'shared-mime-info' 'desktop-file-utils' 'hicolor-icon-theme') diff --git a/extra/xpdf/PKGBUILD b/extra/xpdf/PKGBUILD index 12e63382c..d5034ea67 100644 --- a/extra/xpdf/PKGBUILD +++ b/extra/xpdf/PKGBUILD @@ -10,7 +10,7 @@ pkgrel=1 pkgdesc='Viewer for Portable Document Format (PDF) files' url='http://www.foolabs.com/xpdf/' license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('lesstif' 'gsfonts' 'libxt') optdepends=('poppler: tools that used to be included in xpdf' 'desktop-file-utils: for desktop environments') diff --git a/extra/xsane/PKGBUILD b/extra/xsane/PKGBUILD index 531985301..0a0f1c527 100644 --- a/extra/xsane/PKGBUILD +++ b/extra/xsane/PKGBUILD @@ -6,7 +6,7 @@ pkgbase=xsane pkgname=('xsane' 'xsane-gimp') pkgver=0.998 pkgrel=1 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.xsane.org" license=('GPL2') makedepends=('gtk2' 'lcms' 'sane' 'zlib' 'libjpeg' 'gimp') diff --git a/extra/xscreensaver/PKGBUILD b/extra/xscreensaver/PKGBUILD index 09280bc69..03236b2d9 100644 --- a/extra/xscreensaver/PKGBUILD +++ b/extra/xscreensaver/PKGBUILD @@ -5,7 +5,7 @@ pkgname=xscreensaver pkgver=5.15 pkgrel=2 pkgdesc="Screen saver and locker for the X Window System" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.jwz.org/xscreensaver/" license=('BSD') depends=('libxxf86vm' 'libglade' 'mesa' 'pam' 'xorg-appres' 'libxmu' 'perl-libwww') diff --git a/extra/xsp/PKGBUILD b/extra/xsp/PKGBUILD index 85730ab32..3e0a1b614 100644 --- a/extra/xsp/PKGBUILD +++ b/extra/xsp/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xsp pkgver=2.10.2 pkgrel=1 pkgdesc="A simple webserver based on mono - provides ASP.NET support" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') url="http://www.go-mono.com" depends=('mono>=2.10.2' 'sqlite3') diff --git a/extra/xterm/PKGBUILD b/extra/xterm/PKGBUILD index 594d9715b..bc19589f7 100644 --- a/extra/xterm/PKGBUILD +++ b/extra/xterm/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xterm pkgver=275 pkgrel=1 pkgdesc="X Terminal Emulator" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://invisible-island.net/xterm/" license=('custom') depends=('libxft' 'libxaw' 'ncurses' 'xorg-luit' 'xbitmaps') diff --git a/extra/xulrunner/PKGBUILD b/extra/xulrunner/PKGBUILD index da74448ea..b39be4f56 100644 --- a/extra/xulrunner/PKGBUILD +++ b/extra/xulrunner/PKGBUILD @@ -5,26 +5,31 @@ pkgname=xulrunner pkgver=7.0 _ffoxver=7.0 pkgrel=1 +pkgver=2.0 +pkgrel=2 # hold ver pkgdesc="Mozilla Runtime Environment" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('MPL' 'GPL' 'LGPL') depends=('gtk2' 'gcc-libs' 'libidl2' 'mozilla-common' 'nss' 'libxt' 'libxrender' 'hunspell' 'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 'sqlite3>=3.7.4' 'libnotify') makedepends=('zip' 'pkg-config' 'diffutils' 'python2' 'wireless_tools' 'yasm' 'mesa') url="http://wiki.mozilla.org/XUL:Xul_Runner" -source=(http://releases.mozilla.org/pub/mozilla.org/firefox/releases/${_ffoxver}/source/firefox-${_ffoxver}.source.tar.bz2 +source=(http://ftp.gnu.org/gnu/gnuzilla/${_ffoxver}/icecat-${_ffoxver}.tar.xz mozconfig + mips.patch mozilla-pkgconfig.patch) options=('!emptydirs' '!buildflags') replaces=('xulrunner-oss') -md5sums=('673a015a23e3fefa18d80db68c8b9fc1' - '108a53313284908cc3afe5e29a7557e9' - '639ea80e823543dd415b90c0ee804186') build() { - cd "${srcdir}/mozilla-release" + cd "${srcdir}/icecat-${_ffoxver}/" cp "${srcdir}/mozconfig" .mozconfig #fix libdir/sdkdir - fedora + + [[ "$CARCH" == "mips64el" ]] && { + echo "ac_add_options --disable-ipc" >> .mozconfig + patch -Np0 -i "${srcdir}/mips.patch" + } patch -Np1 -i "${srcdir}/mozilla-pkgconfig.patch" export LDFLAGS="-Wl,-rpath,/usr/lib/xulrunner-${pkgver} -Wl,-O1,--sort-common,--hash-style=gnu,--as-needed" @@ -33,7 +38,7 @@ build() { } package() { - cd "${srcdir}/mozilla-release" + cd "${srcdir}/icecat-${_ffoxver}/" make -j1 -f client.mk DESTDIR="${pkgdir}" install # add xulrunner library path to ld.so.conf diff --git a/extra/xulrunner/mips.patch b/extra/xulrunner/mips.patch new file mode 100644 index 000000000..f9de910b2 --- /dev/null +++ b/extra/xulrunner/mips.patch @@ -0,0 +1,114 @@ +--- ../../tmp.ne6Bz1oy72/xulrunner/src/mozilla-2.0/js/src/assembler/jit/ExecutableAllocator.h 2011-03-18 20:33:47.000000000 -0300 ++++ js/src/assembler/jit/ExecutableAllocator.h 2011-03-30 15:45:07.537247142 -0300 +@@ -44,9 +44,7 @@ + #include <e32std.h> + #endif + +-#if WTF_CPU_MIPS && WTF_PLATFORM_LINUX + #include <sys/cachectl.h> +-#endif + + #if WTF_PLATFORM_WINCE + // From pkfuncs.h (private header file from the Platform Builder) +@@ -311,89 +309,10 @@ + #endif + + +-#if WTF_CPU_X86 || WTF_CPU_X86_64 +- static void cacheFlush(void*, size_t) +- { +- } +-#elif WTF_CPU_MIPS + static void cacheFlush(void* code, size_t size) + { +-#if WTF_COMPILER_GCC && (GCC_VERSION >= 40300) +-#if WTF_MIPS_ISA_REV(2) && (GCC_VERSION < 40403) +- int lineSize; +- asm("rdhwr %0, $1" : "=r" (lineSize)); +- // +- // Modify "start" and "end" to avoid GCC 4.3.0-4.4.2 bug in +- // mips_expand_synci_loop that may execute synci one more time. +- // "start" points to the fisrt byte of the cache line. +- // "end" points to the last byte of the line before the last cache line. +- // Because size is always a multiple of 4, this is safe to set +- // "end" to the last byte. +- // +- intptr_t start = reinterpret_cast<intptr_t>(code) & (-lineSize); +- intptr_t end = ((reinterpret_cast<intptr_t>(code) + size - 1) & (-lineSize)) - 1; +- __builtin___clear_cache(reinterpret_cast<char*>(start), reinterpret_cast<char*>(end)); +-#else +- intptr_t end = reinterpret_cast<intptr_t>(code) + size; +- __builtin___clear_cache(reinterpret_cast<char*>(code), reinterpret_cast<char*>(end)); +-#endif +-#else + _flush_cache(reinterpret_cast<char*>(code), size, BCACHE); +-#endif +- } +-#elif WTF_CPU_ARM_THUMB2 && WTF_PLATFORM_IPHONE +- static void cacheFlush(void* code, size_t size) +- { +- sys_dcache_flush(code, size); +- sys_icache_invalidate(code, size); +- } +-#elif WTF_CPU_ARM_THUMB2 && WTF_PLATFORM_LINUX +- static void cacheFlush(void* code, size_t size) +- { +- asm volatile ( +- "push {r7}\n" +- "mov r0, %0\n" +- "mov r1, %1\n" +- "movw r7, #0x2\n" +- "movt r7, #0xf\n" +- "movs r2, #0x0\n" +- "svc 0x0\n" +- "pop {r7}\n" +- : +- : "r" (code), "r" (reinterpret_cast<char*>(code) + size) +- : "r0", "r1", "r2"); +- } +-#elif WTF_PLATFORM_SYMBIAN +- static void cacheFlush(void* code, size_t size) +- { +- User::IMB_Range(code, static_cast<char*>(code) + size); +- } +-#elif WTF_CPU_ARM_TRADITIONAL && WTF_PLATFORM_LINUX && WTF_COMPILER_RVCT +- static __asm void cacheFlush(void* code, size_t size); +-#elif WTF_CPU_ARM_TRADITIONAL && (WTF_PLATFORM_LINUX || WTF_PLATFORM_ANDROID) && WTF_COMPILER_GCC +- static void cacheFlush(void* code, size_t size) +- { +- asm volatile ( +- "push {r7}\n" +- "mov r0, %0\n" +- "mov r1, %1\n" +- "mov r7, #0xf0000\n" +- "add r7, r7, #0x2\n" +- "mov r2, #0x0\n" +- "svc 0x0\n" +- "pop {r7}\n" +- : +- : "r" (code), "r" (reinterpret_cast<char*>(code) + size) +- : "r0", "r1", "r2"); +- } +-#elif WTF_PLATFORM_WINCE +- static void cacheFlush(void* code, size_t size) +- { +- CacheRangeFlush(code, size, CACHE_SYNC_ALL); + } +-#else +- #error "The cacheFlush support is missing on this platform." +-#endif + + private: + +--- js/src/Makefile.in.orig 2011-03-30 22:02:39.725318514 -0300 ++++ js/src/Makefile.in 2011-03-30 22:02:51.689347820 -0300 +@@ -914,7 +914,7 @@ + # Needed to "configure" it correctly. Unfortunately these + # flags wind up being applied to all code in js/src, not just + # the code in js/src/assembler. +-CXXFLAGS += -DUSE_SYSTEM_MALLOC=1 -DENABLE_ASSEMBLER=1 -DENABLE_JIT=1 ++CXXFLAGS += -DUSE_SYSTEM_MALLOC=1 -DENABLE_JIT=1 + + INCLUDES += -I$(srcdir)/assembler -I$(srcdir)/yarr + + diff --git a/extra/xvidcore/PKGBUILD b/extra/xvidcore/PKGBUILD index 360ddd8aa..924265186 100644 --- a/extra/xvidcore/PKGBUILD +++ b/extra/xvidcore/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xvidcore pkgver=1.3.2 pkgrel=1 pkgdesc="XviD is an open source MPEG-4 video codec" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xvid.org/" license=('GPL') depends=('glibc') diff --git a/extra/yakuake/PKGBUILD b/extra/yakuake/PKGBUILD index 6fe44c6cb..be80c0c5b 100644 --- a/extra/yakuake/PKGBUILD +++ b/extra/yakuake/PKGBUILD @@ -7,7 +7,7 @@ pkgname=yakuake pkgver=2.9.8 pkgrel=1 pkgdesc="A KDE konsole application with the look and feel of that in the Quake engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://yakuake.kde.org" license=('GPL') depends=('kdebase-konsole') diff --git a/extra/yasm/PKGBUILD b/extra/yasm/PKGBUILD index 950d609ca..16ec9e273 100644 --- a/extra/yasm/PKGBUILD +++ b/extra/yasm/PKGBUILD @@ -7,7 +7,7 @@ pkgname=yasm pkgver=1.1.0 pkgrel=1 pkgdesc="A rewrite of NASM to allow for multiple syntax supported (NASM, TASM, GAS, etc.)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://www.tortall.net/projects/yasm/" depends=('glibc') diff --git a/extra/yelp/PKGBUILD b/extra/yelp/PKGBUILD index 2d6ecc158..bcc94143e 100644 --- a/extra/yelp/PKGBUILD +++ b/extra/yelp/PKGBUILD @@ -5,7 +5,7 @@ pkgname=yelp pkgver=3.2.1 pkgrel=1 pkgdesc="A help browser for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('libwebkit3' 'yelp-xsl' 'libxslt' 'hicolor-icon-theme' 'dbus-glib' 'xz' 'bzip2' 'desktop-file-utils' 'dconf') makedepends=('intltool' 'gtk-doc') groups=('gnome') diff --git a/extra/yp-tools/PKGBUILD b/extra/yp-tools/PKGBUILD index 8cf4b6960..d17e30adc 100644 --- a/extra/yp-tools/PKGBUILD +++ b/extra/yp-tools/PKGBUILD @@ -7,7 +7,7 @@ pkgname=yp-tools pkgver=2.12 pkgrel=2 pkgdesc='Linux NIS Tools' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.linux-nis.org/nis/yp-tools/' license=('GPL2') depends=('ypbind-mt') diff --git a/extra/ypbind-mt/PKGBUILD b/extra/ypbind-mt/PKGBUILD index 60df94219..279d11481 100644 --- a/extra/ypbind-mt/PKGBUILD +++ b/extra/ypbind-mt/PKGBUILD @@ -9,7 +9,7 @@ pkgrel=3 pkgdesc='Linux NIS daemon' url='http://www.linux-nis.org/nis/ypbind-mt/' license=('GPL2') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') makedepends=('networkmanager') depends=('rpcbind' 'openslp' 'dbus-glib') optdepends=('yp-tools: to set a domain name') diff --git a/extra/ypserv/PKGBUILD b/extra/ypserv/PKGBUILD index 598e8684b..adb4e3367 100644 --- a/extra/ypserv/PKGBUILD +++ b/extra/ypserv/PKGBUILD @@ -7,7 +7,7 @@ pkgname=ypserv pkgver=2.26 pkgrel=1 pkgdesc='Linux NIS Server' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.linux-nis.org/nis/ypserv/' license=('GPL2') depends=('gdbm' 'openslp') diff --git a/extra/zenity/PKGBUILD b/extra/zenity/PKGBUILD index eece8d587..13b8b846a 100644 --- a/extra/zenity/PKGBUILD +++ b/extra/zenity/PKGBUILD @@ -5,7 +5,7 @@ pkgname=zenity pkgver=3.2.0 pkgrel=1 pkgdesc="Display graphical dialog boxes from shell scripts" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('LGPL') depends=('gtk3' 'libnotify') makedepends=('intltool' 'gtk-doc') diff --git a/extra/zile/PKGBUILD b/extra/zile/PKGBUILD index 960b19cbf..364b40255 100644 --- a/extra/zile/PKGBUILD +++ b/extra/zile/PKGBUILD @@ -6,7 +6,7 @@ pkgname=zile pkgver=2.4.2 pkgrel=1 pkgdesc="A small, fast, and powerful Emacs clone" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.gnu.org/software/zile/" # Lua is not required, the author uses it to generate some source files. depends=('gc' 'ncurses') diff --git a/extra/zip/PKGBUILD b/extra/zip/PKGBUILD index 6d13a1917..ecf3e02a5 100644 --- a/extra/zip/PKGBUILD +++ b/extra/zip/PKGBUILD @@ -7,7 +7,7 @@ pkgver=3.0 _pkgver=30 pkgrel=2 pkgdesc="Creates PKZIP-compatible .zip files" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') url="http://www.info-zip.org/pub/infozip/Zip.html" license=('BSD') depends=('bzip2') diff --git a/extra/zsh/PKGBUILD b/extra/zsh/PKGBUILD index 027b192d2..dac5f02c5 100644 --- a/extra/zsh/PKGBUILD +++ b/extra/zsh/PKGBUILD @@ -5,7 +5,7 @@ pkgname=zsh pkgver=4.3.12 pkgrel=2 pkgdesc='A very advanced and programmable command interpreter (shell) for UNIX' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.zsh.org/' license=('custom') depends=('pcre' 'libcap' 'gdbm') diff --git a/extra/zvbi/PKGBUILD b/extra/zvbi/PKGBUILD index 8ad534a47..4f3dd1622 100644 --- a/extra/zvbi/PKGBUILD +++ b/extra/zvbi/PKGBUILD @@ -7,7 +7,7 @@ pkgver=0.2.33 pkgrel=3 pkgdesc="VBI capture and decoding library" url="http://zapping.sourceforge.net/cgi-bin/view/ZVBI/WebHome" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') depends=('libpng' 'libx11') license=('GPL') options=('!libtool') diff --git a/extra/zziplib/PKGBUILD b/extra/zziplib/PKGBUILD index 4783fc5ee..73d728632 100644 --- a/extra/zziplib/PKGBUILD +++ b/extra/zziplib/PKGBUILD @@ -7,7 +7,7 @@ pkgname=zziplib pkgver=0.13.60 pkgrel=1 pkgdesc="A lightweight library that offers the ability to easily extract data from files archived in a single zip file" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://zziplib.sourceforge.net" license=('LGPL' 'MPL') depends=('zlib') diff --git a/kde-unstable/calligra/PKGBUILD b/kde-unstable/calligra/PKGBUILD deleted file mode 100644 index c4c5f7d6a..000000000 --- a/kde-unstable/calligra/PKGBUILD +++ /dev/null @@ -1,275 +0,0 @@ -# $Id: PKGBUILD 141226 2011-10-26 20:57:53Z andrea $ -# Maintainer: Ronald van Haren <ronald.archlinux.org> -# Maintainer: Andrea Scarpino <andrea@archlinux.org> - -pkgbase=calligra -pkgname=('calligra-filters' - 'calligra-interfaces' - 'calligra-libs' - 'calligra-plugins' - 'calligra-pics' - 'calligra-servicetypes' - 'calligra-templates' - 'calligra-tools' - 'calligra-karbon' - 'calligra-kexi' - 'calligra-kounavail' - 'calligra-plan' - 'calligra-stage' - 'calligra-krita' - 'calligra-tables' - 'calligra-words' - 'calligra-handbook' - 'calligra-thesaurus-doc' - 'calligra-braindump' - 'calligra-flow') -pkgver=2.3.83 -pkgrel=1 -arch=('i686' 'x86_64') -url='http://www.calligra-suite.org' -license=('FDL1.2' 'GPL2' 'LGPL') -makedepends=('kdepimlibs' 'eigen2' 'freetds' 'kdegraphics-okular' 'libgsf' - 'libwpd' 'libwpg' 'pstoedit' 'glew' 'gsl' 'cmake' 'automoc4' - 'boost' 'libkdcraw' 'libpqxx' 'fftw' 'opengtl' 'lcms2') -groups=('calligra') -source=("http://download.kde.org/unstable/${pkgbase}-${pkgver}/${pkgbase}-${pkgver}.tar.bz2") -md5sums=('3ea2425f9bb0950bba0d41bcf32ee437') - -build() { - cd "${srcdir}" - mkdir build - cd build - cmake ../${pkgbase}-${pkgver} \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_SKIP_RPATH=ON \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DBUILD_active=OFF \ - -DBUILD_mobile=OFF \ - -DBUILD_mysql=OFF \ - -DKDCRAW_LOCAL_FOUND=/usr/lib/libkdcraw.so \ - -DWITH_Marble=OFF - make -} - -package_calligra-filters() { - pkgdesc="Filters for the Calligra office suite" - optdepends=('libgsf: Microsoft Word document importer' - 'libwpd: WordPerfect document importer' - 'libwpg: Corel WordPerfect Graphics image importer' - 'pstoedit: Karbon EPS import filter' - 'libkdcraw: support for raw images') - conflicts=('koffice-filters') - replaces=('koffice-filters') - install=calligra-filters.install - - cd "${srcdir}"/build/filters - make DESTDIR="${pkgdir}" install -} - -package_calligra-interfaces() { - pkgdesc="Interfaces for the Calligra office suite" - depends=('calligra-libs') - conflicts=('koffice-interfaces') - replaces=('koffice-interfaces') - - cd "${srcdir}"/build/interfaces - make DESTDIR="${pkgdir}" install -} - -package_calligra-libs() { - pkgdesc="Libraries for the Calligra office suite" - depends=('kdepimlibs' 'lcms2' 'calligra-servicetypes') - conflicts=('koffice-libs') - replaces=('koffice-libs') - - cd "${srcdir}"/build/libs - make DESTDIR="${pkgdir}" install -} - -package_calligra-plugins() { - pkgdesc="Plugins for the Calligra office suite" - depends=('calligra-libs') - conflicts=('koffice-plugins' 'koffice-kchart') - replaces=('koffice-plugins' 'koffice-kchart') - - cd "${srcdir}"/build/plugins - make DESTDIR="${pkgdir}" install -} - -package_calligra-pics() { - pkgdesc="Icons for the Calligra office suite" - depends=('calligra-libs') - conflicts=('koffice-pics') - replaces=('koffice-pics') - install=calligra.install - - cd "${srcdir}"/build/pics - make DESTDIR="${pkgdir}" install -} - -package_calligra-servicetypes() { - pkgdesc="Servicetypes for the Calligra office suite" - conflicts=('koffice-servicetypes') - replaces=('koffice-servicetypes') - install=calligra.install - - cd "${srcdir}"/build/servicetypes - make DESTDIR="${pkgdir}" install -} - -package_calligra-templates() { - pkgdesc="Templates for the Calligra office suite" - conflicts=('koffice-templates') - replaces=('koffice-templates') - - cd "${srcdir}"/build/templates - make DESTDIR="${pkgdir}" install -} - -package_calligra-tools() { - pkgdesc="Tools for the Calligra office suite" - depends=('calligra-libs') - conflicts=('koffice-tools') - replaces=('koffice-tools') - install=calligra-tools.install - - cd "${srcdir}"/build/tools - make DESTDIR="${pkgdir}" install -} - -#### package common files done ##### - -#### package apps and their docs ##### - -package_calligra-karbon() { - pkgdesc="Create scalable vector drawings" - depends=('calligra-libs' 'calligra-templates') - conflicts=('koffice-karbon' 'koffice-karbon-doc' 'calligra-karbon-doc') - replaces=('koffice-karbon' 'koffice-karbon-doc' 'calligra-karbon-doc') - install=calligra-karbon.install - - cd "${srcdir}"/build/karbon - make DESTDIR="${pkgdir}" install -} - -package_calligra-kexi() { - pkgdesc="Develop desktop database applications" - depends=('calligra-libs' 'calligra-templates') - conflicts=('koffice-kexi' 'koffice-kexi-doc' 'calligra-kexi-doc') - replaces=('koffice-kexi' 'koffice-kexi-doc' 'calligra-kexi-doc') - install=calligra-kexi.install - - cd "${srcdir}"/build/kexi - make DESTDIR="${pkgdir}" install -} - -package_calligra-kounavail() { - pkgdesc="Unavailable Calligra Document" - depends=('calligra-libs') - conflicts=('koffice-kounavail') - replaces=('koffice-kounavail') - - cd "${srcdir}"/build/kounavail - make DESTDIR="${pkgdir}" install -} - -package_calligra-plan() { - pkgdesc="Calligra Project Management Component" - depends=('calligra-words') - conflicts=('koffice-kplato' 'calligra-kplato') - replaces=('koffice-kplato' 'calligra-kplato') - install=calligra-plan.install - - cd "${srcdir}"/build/plan - make DESTDIR="${pkgdir}" install -} - -package_calligra-stage() { - pkgdesc="Write presentation documents" - depends=('calligra-libs' 'calligra-templates') - optdepends=('calligra-filters: import/export filters') - conflicts=('koffice-kpresenter' 'koffice-kpresenter-doc' 'calligra-stage-doc') - replaces=('koffice-kpresenter' 'koffice-kpresenter-doc' 'calligra-stage-doc') - install=calligra-stage.install - - cd "${srcdir}"/build/stage - make DESTDIR="${pkgdir}" install -} - -package_calligra-krita() { - pkgdesc="Edit and paint images" - depends=('calligra-libs' 'calligra-templates' 'calligra-plugins' 'glew' - 'qimageblitz' 'poppler-qt' 'openexr' 'opengtl') - optdepends=('calligra-filters: import/export filters') - conflicts=('koffice-krita' 'calligra-krita-doc') - replaces=('koffice-krita' 'calligra-krita-doc') - install=calligra-krita.install - - cd "${srcdir}"/build/krita - make DESTDIR="${pkgdir}" install -} - -package_calligra-tables() { - pkgdesc="Write spreadsheet documents" - depends=('calligra-libs' 'calligra-templates' 'calligra-plugins' 'gsl') - optdepends=('calligra-filters: import/export filters') - conflicts=('koffice-kspread' 'koffice-kspread-doc' 'calligra-tables-doc') - replaces=('koffice-kspread' 'koffice-kspread-doc' 'calligra-tables-doc') - install=calligra-tables.install - - cd "${srcdir}"/build/tables - make DESTDIR="${pkgdir}" install - cd "${srcdir}"/build/doc/tables - make DESTDIR="${pkgdir}" install -} - -package_calligra-words() { - pkgdesc="Word Processor" - depends=('calligra-libs' 'calligra-templates' 'calligra-plugins' 'calligra-pics' - 'calligra-kounavail') - optdepends=('calligra-filters: import/export filters') - conflicts=('koffice-kword') - replaces=('koffice-kword') - install=calligra-words.install - - cd "${srcdir}"/build/words - make DESTDIR="${pkgdir}" install -} - -package_calligra-handbook() { - pkgdesc="Documentation for Calligra" - conflicts=('koffice-handbook') - replaces=('koffice-handbook') - - cd "${srcdir}"/build/doc/calligra - make DESTDIR="${pkgdir}" install -} - -package_calligra-thesaurus-doc() { - pkgdesc="Documentation for Thesaurus" - conflicts=('koffice-thesaurus-doc') - replaces=('koffice-thesaurus-doc') - - cd "${srcdir}"/build/doc/thesaurus - make DESTDIR="${pkgdir}" install -} - -package_calligra-braindump() { - pkgdesc="Notes and idea gathering" - install=calligra-braindump.install - - cd "${srcdir}"/build/braindump - make DESTDIR="${pkgdir}" install -} - -package_calligra-flow() { - pkgdesc="Flowchart & Diagram Editing" - install=calligra-flow.install - conflicts=('calligra-flow-doc') - replaces=('calligra-flow-doc') - - cd "${srcdir}"/build/flow - make DESTDIR="${pkgdir}" install -} - -##### package apps done ##### diff --git a/kde-unstable/calligra/calligra-braindump.install b/kde-unstable/calligra/calligra-braindump.install deleted file mode 100644 index c2179f6e2..000000000 --- a/kde-unstable/calligra/calligra-braindump.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -}
\ No newline at end of file diff --git a/kde-unstable/calligra/calligra-filters.install b/kde-unstable/calligra/calligra-filters.install deleted file mode 100644 index 7c8a8bd2b..000000000 --- a/kde-unstable/calligra/calligra-filters.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - update-mime-database usr/share/mime &> /dev/null -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/kde-unstable/calligra/calligra-flow.install b/kde-unstable/calligra/calligra-flow.install deleted file mode 100644 index 6c87527e2..000000000 --- a/kde-unstable/calligra/calligra-flow.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/kde-unstable/calligra/calligra-karbon.install b/kde-unstable/calligra/calligra-karbon.install deleted file mode 100644 index c2179f6e2..000000000 --- a/kde-unstable/calligra/calligra-karbon.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -}
\ No newline at end of file diff --git a/kde-unstable/calligra/calligra-kexi.install b/kde-unstable/calligra/calligra-kexi.install deleted file mode 100644 index b8c7ebf27..000000000 --- a/kde-unstable/calligra/calligra-kexi.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/kde-unstable/calligra/calligra-krita.install b/kde-unstable/calligra/calligra-krita.install deleted file mode 100644 index 33d234a02..000000000 --- a/kde-unstable/calligra/calligra-krita.install +++ /dev/null @@ -1,13 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null - update-mime-database usr/share/mime &> /dev/null - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -}
\ No newline at end of file diff --git a/kde-unstable/calligra/calligra-stage.install b/kde-unstable/calligra/calligra-stage.install deleted file mode 100644 index 6c87527e2..000000000 --- a/kde-unstable/calligra/calligra-stage.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/kde-unstable/calligra/calligra-tables.install b/kde-unstable/calligra/calligra-tables.install deleted file mode 100644 index 6c87527e2..000000000 --- a/kde-unstable/calligra/calligra-tables.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/kde-unstable/calligra/calligra-tools.install b/kde-unstable/calligra/calligra-tools.install deleted file mode 100644 index 6c87527e2..000000000 --- a/kde-unstable/calligra/calligra-tools.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/kde-unstable/calligra/calligra-words.install b/kde-unstable/calligra/calligra-words.install deleted file mode 100644 index 6c87527e2..000000000 --- a/kde-unstable/calligra/calligra-words.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/kde-unstable/calligra/calligra.install b/kde-unstable/calligra/calligra.install deleted file mode 100644 index e70c054ec..000000000 --- a/kde-unstable/calligra/calligra.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/kde-unstable/kdebase-workspace/PKGBUILD b/kde-unstable/kdebase-workspace/PKGBUILD deleted file mode 100644 index c3056ae52..000000000 --- a/kde-unstable/kdebase-workspace/PKGBUILD +++ /dev/null @@ -1,83 +0,0 @@ -# $Id: PKGBUILD 141887 2011-11-02 18:36:00Z andrea $ -# Maintainer: Andrea Scarpino <andrea@archlinux.org> -# Contributor: Pierre Schmitz <pierre@archlinux.de> - -pkgname=kdebase-workspace -_pkgname=kde-workspace -pkgver=4.7.3 -pkgrel=4 -pkgdesc="KDE Base Workspace" -arch=('i686' 'x86_64') -url='http://www.kde.org' -license=('GPL' 'LGPL' 'FDL') -groups=('kde') -# note on libxdamage: -# not detected by namcap because libgl depends on it -# but nvidia providing libgl does not depend on libxdamage -depends=('kdepim-runtime' 'lm_sensors' 'libraw1394' 'libqalculate' - 'qimageblitz' 'polkit-kde' 'consolekit' 'xorg-xprop' 'libxdamage' - 'libxklavier' 'xorg-xsetroot' 'libxcomposite' 'libxinerama' - 'xorg-xrdb' 'libgles' 'libegl') -makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'kdebindings-python' - 'networkmanager') -optdepends=('kde-wallpapers: officials KDE wallapers') -replaces=('kdmtheme' 'kde-common' 'guidance-power-manager' 'policykit-kde' - 'kdebase-kinfocenter') -conflicts=('kde-common' 'guidance-power-manager' 'policykit-kde' - 'kdebase-kinfocenter') -install="${pkgname}.install" -backup=('usr/share/config/kdm/kdmrc' - 'etc/pam.d/kde' - 'etc/pam.d/kde-np' - 'etc/pam.d/kscreensaver') -options=('emptydirs') -source=("http://download.kde.org/stable/${pkgver}/src/${_pkgname}-${pkgver}.tar.bz2" - 'kdm-zsh-profile.patch' 'kdm' 'kde.pam' 'kde-np.pam' 'kscreensaver.pam' - 'fixpath.patch' 'terminate-server.patch' 'kdm-xinitrd.patch') -sha1sums=('f3ed24e3e70671033718a5139cb61d0d7e2e709e' - '8c2bdefb23a03b753b78d16944d03fa3939d2d99' - '5db3a245201bd4a50e65aa2ef583cf5490e4f646' - 'f7b38af38549242a240f1a90ab9964ca8a366129' - '603cc79c4d2b4eae62bb5f244aeecb3a778b5516' - '106635aa1aae51d6f0668b1853f6c49a4fe9d3d8' - 'd7b5883f7e65c6839b1f65f94d58026673dd0226' - 'ac7bc292c865bc1ab8c02e6341aa7aeaf1a3eeee' - 'd509dac592bd8b310df27991b208c95b6d907514') - -build() { - cd "${srcdir}"/${_pkgname}-${pkgver} - patch -p0 -i "${srcdir}"/kdm-zsh-profile.patch - patch -p1 -i "${srcdir}"/kdm-xinitrd.patch - patch -p0 -i "${srcdir}"/fixpath.patch - patch -p0 -i "${srcdir}"/terminate-server.patch - - cd "${srcdir}" - mkdir build - cd build - cmake ../${_pkgname}-${pkgver} \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_SKIP_RPATH=ON \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DWITH_Xmms=OFF \ - -DWITH_Googlegadgets=OFF \ - -DWITH_libgps=OFF \ - -DWITH_OpenGLES=ON \ - -DKWIN_BUILD_WITH_OPENGLES=ON \ - -DPYTHON_EXECUTABLE=/usr/bin/python2 - make -} - -package() { - cd "${srcdir}"/build - make DESTDIR="${pkgdir}" install - - install -D -m755 "${srcdir}"/kdm "${pkgdir}"/etc/rc.d/kdm - install -D -m644 "${srcdir}"/kde.pam "${pkgdir}"/etc/pam.d/kde - install -D -m644 "${srcdir}"/kde-np.pam "${pkgdir}"/etc/pam.d/kde-np - install -D -m644 "${srcdir}"/kscreensaver.pam "${pkgdir}"/etc/pam.d/kscreensaver - install -d -m755 "${pkgdir}"/usr/share/xsessions/ - ln -sf /usr/share/apps/kdm/sessions/kde-plasma{,-safe}.desktop "${pkgdir}"/usr/share/xsessions/ - install -d -m755 "${pkgdir}"/etc/kde/{env,shutdown} - - install -d -g 135 -o 135 "${pkgdir}"/var/lib/kdm -} diff --git a/kde-unstable/kdebase-workspace/fixpath.patch b/kde-unstable/kdebase-workspace/fixpath.patch deleted file mode 100644 index be2b8383e..000000000 --- a/kde-unstable/kdebase-workspace/fixpath.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- startkde.cmake.orig 2009-01-15 14:24:44.000000000 +0100 -+++ startkde.cmake 2009-01-15 14:33:08.000000000 +0100 -@@ -34,22 +34,6 @@ - MALLOC_CHECK_=2 - export MALLOC_CHECK_ - --# in case we have been started with full pathname spec without being in PATH --bindir=`echo "$0" | sed -n 's,^\(/.*\)/[^/][^/]*$,\1,p'` --if [ -n "$bindir" ]; then -- qbindir=`$bindir/kde4-config --qt-binaries` -- if [ -n "$qbindir" ]; then -- case $PATH in -- $qbindir|$qbindir:*|*:$qbindir|*:$qbindir:*) ;; -- *) PATH=$qbindir:$PATH; export PATH;; -- esac -- fi -- case $PATH in -- $bindir|$bindir:*|*:$bindir|*:$bindir:*) ;; -- *) PATH=$bindir:$PATH; export PATH;; -- esac --fi -- - # Boot sequence: - # - # kdeinit is used to fork off processes which improves memory usage -@@ -206,7 +190,7 @@ - # For anything else (that doesn't set env vars, or that needs a window manager), - # better use the Autostart folder. - --libpath=`kde4-config --path lib | tr : '\n'` -+libpath=`kde4-config --path lib | tr : '\n'`$(echo -e '\n/etc/kde/lib/') - - for prefix in `echo "$libpath" | sed -n -e 's,/lib[^/]*/,/env/,p'`; do - for file in "$prefix"*.sh; do diff --git a/kde-unstable/kdebase-workspace/important-performance-bugfix.patch b/kde-unstable/kdebase-workspace/important-performance-bugfix.patch deleted file mode 100644 index a34c77e5c..000000000 --- a/kde-unstable/kdebase-workspace/important-performance-bugfix.patch +++ /dev/null @@ -1,91 +0,0 @@ -commit e142a1a142cbc8b87f021223e6abc947f456a7f9 -Author: Thomas Lübking <thomas.luebking@gmail.com> -Date: Thu Sep 8 22:20:35 2011 +0200 - - replace non-const QVector::operator[] accesses with const ::at() to avoid maaany deep vecor copies - -diff --git a/kwin/effects.cpp b/kwin/effects.cpp -index e0c76cb..f5863fc0 100644 ---- a/kwin/effects.cpp -+++ b/kwin/effects.cpp -@@ -200,7 +200,7 @@ void EffectsHandlerImpl::reconfigure() - void EffectsHandlerImpl::prePaintScreen(ScreenPrePaintData& data, int time) - { - if (current_paint_screen < loaded_effects.size()) { -- loaded_effects[current_paint_screen++].second->prePaintScreen(data, time); -+ loaded_effects.at(current_paint_screen++).second->prePaintScreen(data, time); - --current_paint_screen; - } - // no special final code -@@ -209,7 +209,7 @@ void EffectsHandlerImpl::prePaintScreen(ScreenPrePaintData& data, int time) - void EffectsHandlerImpl::paintScreen(int mask, QRegion region, ScreenPaintData& data) - { - if (current_paint_screen < loaded_effects.size()) { -- loaded_effects[current_paint_screen++].second->paintScreen(mask, region, data); -+ loaded_effects.at(current_paint_screen++).second->paintScreen(mask, region, data); - --current_paint_screen; - } else - scene->finalPaintScreen(mask, region, data); -@@ -218,7 +218,7 @@ void EffectsHandlerImpl::paintScreen(int mask, QRegion region, ScreenPaintData& - void EffectsHandlerImpl::postPaintScreen() - { - if (current_paint_screen < loaded_effects.size()) { -- loaded_effects[current_paint_screen++].second->postPaintScreen(); -+ loaded_effects.at(current_paint_screen++).second->postPaintScreen(); - --current_paint_screen; - } - // no special final code -@@ -227,7 +227,7 @@ void EffectsHandlerImpl::postPaintScreen() - void EffectsHandlerImpl::prePaintWindow(EffectWindow* w, WindowPrePaintData& data, int time) - { - if (current_paint_window < loaded_effects.size()) { -- loaded_effects[current_paint_window++].second->prePaintWindow(w, data, time); -+ loaded_effects.at(current_paint_window++).second->prePaintWindow(w, data, time); - --current_paint_window; - } - // no special final code -@@ -236,7 +236,7 @@ void EffectsHandlerImpl::prePaintWindow(EffectWindow* w, WindowPrePaintData& dat - void EffectsHandlerImpl::paintWindow(EffectWindow* w, int mask, QRegion region, WindowPaintData& data) - { - if (current_paint_window < loaded_effects.size()) { -- loaded_effects[current_paint_window++].second->paintWindow(w, mask, region, data); -+ loaded_effects.at(current_paint_window++).second->paintWindow(w, mask, region, data); - --current_paint_window; - } else - scene->finalPaintWindow(static_cast<EffectWindowImpl*>(w), mask, region, data); -@@ -245,7 +245,7 @@ void EffectsHandlerImpl::paintWindow(EffectWindow* w, int mask, QRegion region, - void EffectsHandlerImpl::paintEffectFrame(EffectFrame* frame, QRegion region, double opacity, double frameOpacity) - { - if (current_paint_effectframe < loaded_effects.size()) { -- loaded_effects[current_paint_effectframe++].second->paintEffectFrame(frame, region, opacity, frameOpacity); -+ loaded_effects.at(current_paint_effectframe++).second->paintEffectFrame(frame, region, opacity, frameOpacity); - --current_paint_effectframe; - } else { - const EffectFrameImpl* frameImpl = static_cast<const EffectFrameImpl*>(frame); -@@ -256,7 +256,7 @@ void EffectsHandlerImpl::paintEffectFrame(EffectFrame* frame, QRegion region, do - void EffectsHandlerImpl::postPaintWindow(EffectWindow* w) - { - if (current_paint_window < loaded_effects.size()) { -- loaded_effects[current_paint_window++].second->postPaintWindow(w); -+ loaded_effects.at(current_paint_window++).second->postPaintWindow(w); - --current_paint_window; - } - // no special final code -@@ -273,7 +273,7 @@ bool EffectsHandlerImpl::provides(Effect::Feature ef) - void EffectsHandlerImpl::drawWindow(EffectWindow* w, int mask, QRegion region, WindowPaintData& data) - { - if (current_draw_window < loaded_effects.size()) { -- loaded_effects[current_draw_window++].second->drawWindow(w, mask, region, data); -+ loaded_effects.at(current_draw_window++).second->drawWindow(w, mask, region, data); - --current_draw_window; - } else - scene->finalDrawWindow(static_cast<EffectWindowImpl*>(w), mask, region, data); -@@ -282,7 +282,7 @@ void EffectsHandlerImpl::drawWindow(EffectWindow* w, int mask, QRegion region, W - void EffectsHandlerImpl::buildQuads(EffectWindow* w, WindowQuadList& quadList) - { - if (current_build_quads < loaded_effects.size()) { -- loaded_effects[current_build_quads++].second->buildQuads(w, quadList); -+ loaded_effects.at(current_build_quads++).second->buildQuads(w, quadList); - --current_build_quads; - } - } diff --git a/kde-unstable/kdebase-workspace/kde-np.pam b/kde-unstable/kdebase-workspace/kde-np.pam deleted file mode 100644 index 81eeef47b..000000000 --- a/kde-unstable/kdebase-workspace/kde-np.pam +++ /dev/null @@ -1,7 +0,0 @@ -#%PAM-1.0 -auth required pam_nologin.so -auth required pam_permit.so -account required pam_unix.so -password required pam_unix.so -session required pam_unix.so -session required pam_limits.so
\ No newline at end of file diff --git a/kde-unstable/kdebase-workspace/kde.pam b/kde-unstable/kdebase-workspace/kde.pam deleted file mode 100644 index 1a259390f..000000000 --- a/kde-unstable/kdebase-workspace/kde.pam +++ /dev/null @@ -1,7 +0,0 @@ -#%PAM-1.0 -auth required pam_unix.so -auth required pam_nologin.so -account required pam_unix.so -password required pam_unix.so -session required pam_unix.so -session required pam_limits.so
\ No newline at end of file diff --git a/kde-unstable/kdebase-workspace/kdebase-workspace.install b/kde-unstable/kdebase-workspace/kdebase-workspace.install deleted file mode 100644 index f7d6d305b..000000000 --- a/kde-unstable/kdebase-workspace/kdebase-workspace.install +++ /dev/null @@ -1,25 +0,0 @@ -post_install() { - groupadd -g 135 kdm &>/dev/null - useradd -u 135 -g kdm -d /var/lib/kdm -s /bin/false -r -M kdm &>/dev/null - chown -R 135:135 var/lib/kdm &>/dev/null - xdg-icon-resource forceupdate --theme hicolor &>/dev/null - update-desktop-database -q -} - -post_upgrade() { - getent group kdm >/dev/null 2>&1 || groupadd -g 135 kdm &>/dev/null - getent passwd kdm >/dev/null 2>&1 || useradd -u 135 -g kdm -d /var/lib/kdm -s /bin/false -r -M kdm &>/dev/null - chown -R 135:135 var/lib/kdm &>/dev/null - xdg-icon-resource forceupdate --theme hicolor &> /dev/null - update-desktop-database -q -} - -post_remove() { - if getent passwd kdm >/dev/null 2>&1; then - userdel kdm - fi - if getent group kdm >/dev/null 2>&1; then - groupdel kdm - fi - xdg-icon-resource forceupdate --theme hicolor &> /dev/null -} diff --git a/kde-unstable/kdebase-workspace/kdm b/kde-unstable/kdebase-workspace/kdm deleted file mode 100644 index 799d58f4b..000000000 --- a/kde-unstable/kdebase-workspace/kdm +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=$(pidof -o %PPID /usr/bin/kdm) -case "$1" in - start) - stat_busy "Starting KDE Desktop Manager" - [ -z "$PID" ] && /usr/bin/kdm &>/dev/null - if [ $? -gt 0 ]; then - stat_fail - else - add_daemon kdm - stat_done - fi - ;; - stop) - stat_busy "Stopping KDE Desktop Manager" - [ ! -z "$PID" ] && kill $PID &> /dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon kdm - stat_done - fi - ;; - restart) - $0 stop - sleep 3 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac -exit 0 diff --git a/kde-unstable/kdebase-workspace/kdm-zsh-profile.patch b/kde-unstable/kdebase-workspace/kdm-zsh-profile.patch deleted file mode 100644 index 779456b39..000000000 --- a/kde-unstable/kdebase-workspace/kdm-zsh-profile.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- kdm/kfrontend/genkdmconf.c 2008-02-13 09:40:49.000000000 +0000 -+++ kdm/kfrontend/genkdmconf.c 2008-05-16 12:47:36.000000000 +0000 -@@ -662,7 +662,7 @@ - " [ -d /etc/zsh ] && zdir=/etc/zsh || zdir=/etc\n" - " zhome=${ZDOTDIR:-$HOME}\n" - " # zshenv is always sourced automatically.\n" --" [ -f $zdir/zprofile ] && . $zdir/zprofile\n" -+" [ -f /etc/profile ] && . /etc/profile\n" - " [ -f $zhome/.zprofile ] && . $zhome/.zprofile\n" - " [ -f $zdir/zlogin ] && . $zdir/zlogin\n" - " [ -f $zhome/.zlogin ] && . $zhome/.zlogin\n" diff --git a/kde-unstable/kdebase-workspace/kscreensaver.pam b/kde-unstable/kdebase-workspace/kscreensaver.pam deleted file mode 100644 index b4d80c21f..000000000 --- a/kde-unstable/kdebase-workspace/kscreensaver.pam +++ /dev/null @@ -1 +0,0 @@ -auth required pam_unix_auth.so diff --git a/kde-unstable/kdebase-workspace/terminate-server.patch b/kde-unstable/kdebase-workspace/terminate-server.patch deleted file mode 100644 index 094591317..000000000 --- a/kde-unstable/kdebase-workspace/terminate-server.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- kdm/config.def 2009-08-27 10:17:39.000000000 +0200 -+++ kdm/config.def 2009-10-31 00:40:21.000000000 +0100 -@@ -1448,7 +1448,7 @@ - - Key: TerminateServer - Type: bool --Default: false -+Default: true - User: core - Instance: #:*/! - Merge: xdm diff --git a/libre-testing/b43-tools-git/PKGBUILD b/libre-testing/b43-tools-git/PKGBUILD index 42e331f7b..030f535ac 100644 --- a/libre-testing/b43-tools-git/PKGBUILD +++ b/libre-testing/b43-tools-git/PKGBUILD @@ -5,7 +5,7 @@ pkgname=b43-tools-git pkgver=20110214 pkgrel=1 pkgdesc="Tools for the Broadcom 43xx series WLAN chip." -arch=('i686' 'x86_64' 'ppc') +arch=('i686' 'x86_64' 'ppc' 'mips64el') url="http://bu3sch.de/gitweb?p=b43-tools.git;a=summary" license=('GPL2' 'GPL3') depends=('python2') diff --git a/libre-testing/unace-libre/PKGBUILD b/libre-testing/unace-libre/PKGBUILD index 8708694c6..fe5bac90f 100644 --- a/libre-testing/unace-libre/PKGBUILD +++ b/libre-testing/unace-libre/PKGBUILD @@ -4,7 +4,7 @@ _pkgname=unace pkgver=1.2b pkgrel=2 pkgdesc="Extract, view and test ACE 1.x archives" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.emerge.de/" license=('GPL') depends=() diff --git a/libre/abiword-libre/PKGBUILD b/libre/abiword-libre/PKGBUILD new file mode 100644 index 000000000..a9f003a90 --- /dev/null +++ b/libre/abiword-libre/PKGBUILD @@ -0,0 +1,94 @@ +# $Id: PKGBUILD 102234 2010-12-06 22:32:25Z ibiru $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: Maël Lavault <moimael@neuf.fr> + +pkgbase=abiword-libre +pkgname=('abiword-libre' 'abiword-libre-plugins') +pkgver=2.8.6 +pkgrel=4 +arch=('i686' 'x86_64' 'mips64el') +license=('GPL') +url="http://www.abisource.com" +makedepends=('pkgconfig' 'asio' 'boost' 'fribidi' 'goffice' 'libwmf' 'wv' +'link-grammar' 'gtkmathview' 'aiksaurus' 'libxslt' 'enchant' 'libots' 'libwpg' +'librsvg' 'loudmouth' 'libsoup' 'ttf-liberation') +options=('!libtool') +source=("http://repo.parabolagnulinux.org/other/${pkgbase}-${pkgver}.tar.gz" + liberation-fonts.patch + compat_libwpg_0_9.patch) +conflicts=('abiword') +replaces=('abiword') +provides=("abiword=$pkgver") + + +# source PKGBUILD; mksource +mksource() { + #wget http://www.abisource.com/downloads/abiword/${pkgver}/source/abiword-${pkgver}.tar.gz -O -| \ + # tar xzf - + + pushd abiword-${pkgver} + #find -type f -print0 | xargs -0 sed -i "s:Times New Roman:Liberation Serif:g" + patch -Np1 -i ../liberation-fonts.patch || return 1 + popd + + mv abiword-${pkgver} ${pkgbase}-${pkgver} + tar czf ${pkgbase}-${pkgver}.tar.gz ${pkgbase}-${pkgver}/ + + rm -r ${pkgbase}-${pkgver}/ + +} + +build() { + cd "${srcdir}/${pkgbase}-${pkgver}" + + patch -Np1 -i "${srcdir}/compat_libwpg_0_9.patch" + libtoolize --force + autoreconf + + ./configure --prefix=/usr --enable-clipart --enable-templates \ + --enable-collab-backend-xmpp --enable-collab-backend-tcp \ + --enable-collab-backend-service --disable-collab-backend-sugar \ + --enable-plugins --without-gnomevfs --with-gio --with-goffice \ + --disable-static --with-psiconv-config=/nothere + + + sed -ir 's/--no-undefined/-no-undefined/' src/Makefile + make +} + +package_abiword-libre() { + pkgdesc="A fully-featured word processor that doesn't recommend unfree fonts" + depends=('fribidi' 'wv' 'goffice' 'librsvg' 'enchant') + optdepends=('abiword-plugins') + conflicts=("abiword-plugins<${pkgver}-${pkgrel}") + + cd "${srcdir}/${pkgbase}-${pkgver}" + sed -i plugins/Makefile \ + -e 's/ collab / /' \ + -e 's/ wpg / /' \ + -e 's/ wmf / /' \ + -e 's/ grammar / /' \ + -e 's/ mathview / /' \ + -e 's/ aiksaurus / /' \ + -e 's/ latex / /' \ + -e 's/ ots / /' \ + -e 's/ wordperfect / /' + make DESTDIR="${pkgdir}" install +} + +package_abiword-libre-plugins() { + pkgdesc="Additional plugins for Abiword" + depends=("abiword-libre=${pkgver}-${pkgrel}" 'loudmouth' 'libwpg' 'libwmf' + 'link-grammar' 'gtkmathview' 'aiksaurus' 'libxslt' 'libsoup' 'libots') + + cd "${srcdir}/${pkgbase}-${pkgver}/plugins" + for dir in collab wpg wmf grammar mathview aiksaurus latex ots wordperfect; do + make -C ${dir} DESTDIR="${pkgdir}" install + done +} +md5sums=('d0f5d16d9259792fba0a3200c30ff6ae' + '6dcbf402f58d55cb4a9732348facd236' + '09446a2ebba8288fc611e88f7cf17298') +md5sums=('d0f5d16d9259792fba0a3200c30ff6ae' + '880b17db6f249d977d2a7cd012d9ce02' + '09446a2ebba8288fc611e88f7cf17298') diff --git a/extra/abiword/compat_libwpg_0_9.patch b/libre/abiword-libre/compat_libwpg_0_9.patch index cf36e188e..cf36e188e 100644 --- a/extra/abiword/compat_libwpg_0_9.patch +++ b/libre/abiword-libre/compat_libwpg_0_9.patch diff --git a/libre/abiword-libre/liberation-fonts.patch b/libre/abiword-libre/liberation-fonts.patch new file mode 100644 index 000000000..a009b18f5 --- /dev/null +++ b/libre/abiword-libre/liberation-fonts.patch @@ -0,0 +1,1606 @@ +diff -auNpr abiword-2.8.6/plugins/latex/xp/ie_exp_LaTeX.cpp abiword-libre-2.8.6/plugins/latex/xp/ie_exp_LaTeX.cpp +--- abiword-2.8.6/plugins/latex/xp/ie_exp_LaTeX.cpp 2009-07-20 16:22:04.000000000 -0300 ++++ abiword-libre-2.8.6/plugins/latex/xp/ie_exp_LaTeX.cpp 2011-07-02 15:37:16.397564815 -0300 +@@ -1062,7 +1062,7 @@ void s_LaTeX_Listener::_openSpan(PT_Attr + m_pie->write("\\texttt{"); + m_NumCloseBrackets++; + } +- if (!strcmp("Arial", szValue) || ++ if (!strcmp("Liberation Sans", szValue) || + !strcmp("Helvetic", szValue) || + !strcmp("Luxi Sans",szValue)) { + m_pie->write("\\textsf{"); +diff -auNpr abiword-2.8.6/plugins/opendocument/imp/xp/ODi_FontFaceDecls.cpp abiword-libre-2.8.6/plugins/opendocument/imp/xp/ODi_FontFaceDecls.cpp +--- abiword-2.8.6/plugins/opendocument/imp/xp/ODi_FontFaceDecls.cpp 2008-04-20 11:44:51.000000000 -0300 ++++ abiword-libre-2.8.6/plugins/opendocument/imp/xp/ODi_FontFaceDecls.cpp 2011-07-02 15:37:12.791762814 -0300 +@@ -59,7 +59,7 @@ void ODi_FontFaceDecls::startElement (co + fontFamily = pFontFamily; + + if (pFontFamily && (pFontFamily[0] == '\'') && (pFontFamily[strlen(pFontFamily)-1] == '\'')) { +- // e.g.: Turns a "'Times New Roman'" into a "Times New Roman". ++ // e.g.: Turns a "'Liberation Serif'" into a "Liberation Serif". + // OpenOffice.org sometimes adds those extra "'" surrounding the + // font family name if it's composed by more than one word. + m_fontFamilies[pStyleName] = +diff -auNpr abiword-2.8.6/plugins/openwriter/xp/ie_exp_OpenWriter.cpp abiword-libre-2.8.6/plugins/openwriter/xp/ie_exp_OpenWriter.cpp +--- abiword-2.8.6/plugins/openwriter/xp/ie_exp_OpenWriter.cpp 2009-06-25 18:29:32.000000000 -0300 ++++ abiword-libre-2.8.6/plugins/openwriter/xp/ie_exp_OpenWriter.cpp 2011-07-02 15:37:16.561646815 -0300 +@@ -899,12 +899,12 @@ bool OO_StylesWriter::writeStyles(PD_Doc + { + "<office:styles>\n", + "<style:default-style style:family=\"graphics\">\n", +- "<style:properties draw:start-line-spacing-horizontal=\"0.283cm\" draw:start-line-spacing-vertical=\"0.283cm\" draw:end-line-spacing-horizontal=\"0.283cm\" draw:end-line-spacing-vertical=\"0.283cm\" fo:color=\"#000000\" style:font-name=\"Nimbus Roman No9 L\" fo:font-size=\"12pt\" fo:language=\"en\" fo:country=\"US\" style:font-name-asian=\"HG Mincho Light J\" style:font-size-asian=\"12pt\" style:language-asian=\"none\" style:country-asian=\"none\" style:font-name-complex=\"Arial Unicode MS\" style:font-size-complex=\"12pt\" style:language-complex=\"none\" style:country-complex=\"none\" style:text-autospace=\"ideograph-alpha\" style:punctuation-wrap=\"simple\" style:line-break=\"strict\">\n", ++ "<style:properties draw:start-line-spacing-horizontal=\"0.283cm\" draw:start-line-spacing-vertical=\"0.283cm\" draw:end-line-spacing-horizontal=\"0.283cm\" draw:end-line-spacing-vertical=\"0.283cm\" fo:color=\"#000000\" style:font-name=\"Nimbus Roman No9 L\" fo:font-size=\"12pt\" fo:language=\"en\" fo:country=\"US\" style:font-name-asian=\"HG Mincho Light J\" style:font-size-asian=\"12pt\" style:language-asian=\"none\" style:country-asian=\"none\" style:font-name-complex=\"Liberation Sans\" style:font-size-complex=\"12pt\" style:language-complex=\"none\" style:country-complex=\"none\" style:text-autospace=\"ideograph-alpha\" style:punctuation-wrap=\"simple\" style:line-break=\"strict\">\n", + "<style:tab-stops/>\n", + "</style:properties>\n", + "</style:default-style>\n", + "<style:default-style style:family=\"paragraph\">\n", +- "<style:properties fo:color=\"#000000\" style:font-name=\"Nimbus Roman No9 L\" fo:font-size=\"12pt\" fo:language=\"en\" fo:country=\"US\" style:font-name-asian=\"HG Mincho Light J\" style:font-size-asian=\"12pt\" style:language-asian=\"none\" style:country-asian=\"none\" style:font-name-complex=\"Arial Unicode MS\" style:font-size-complex=\"12pt\" style:language-complex=\"none\" style:country-complex=\"none\" fo:hyphenate=\"false\" fo:hyphenation-remain-char-count=\"2\" fo:hyphenation-push-char-count=\"2\" fo:hyphenation-ladder-count=\"no-limit\" style:text-autospace=\"ideograph-alpha\" style:punctuation-wrap=\"hanging\" style:line-break=\"strict\" style:tab-stop-distance=\"2.205cm\"/>\n", ++ "<style:properties fo:color=\"#000000\" style:font-name=\"Nimbus Roman No9 L\" fo:font-size=\"12pt\" fo:language=\"en\" fo:country=\"US\" style:font-name-asian=\"HG Mincho Light J\" style:font-size-asian=\"12pt\" style:language-asian=\"none\" style:country-asian=\"none\" style:font-name-complex=\"Liberation Sans\" style:font-size-complex=\"12pt\" style:language-complex=\"none\" style:country-complex=\"none\" fo:hyphenate=\"false\" fo:hyphenation-remain-char-count=\"2\" fo:hyphenation-push-char-count=\"2\" fo:hyphenation-ladder-count=\"no-limit\" style:text-autospace=\"ideograph-alpha\" style:punctuation-wrap=\"hanging\" style:line-break=\"strict\" style:tab-stop-distance=\"2.205cm\"/>\n", + "</style:default-style>\n" + }; + +diff -auNpr abiword-2.8.6/plugins/openxml/common/xp/OXML_FontManager.cpp abiword-libre-2.8.6/plugins/openxml/common/xp/OXML_FontManager.cpp +--- abiword-2.8.6/plugins/openxml/common/xp/OXML_FontManager.cpp 2008-01-16 15:02:48.000000000 -0200 ++++ abiword-libre-2.8.6/plugins/openxml/common/xp/OXML_FontManager.cpp 2011-07-02 15:37:13.944338815 -0300 +@@ -34,7 +34,7 @@ + #include <string> + + OXML_FontManager::OXML_FontManager() : +- m_defaultFont("Times New Roman") ++ m_defaultFont("Liberation Serif") + { + m_major_rts.clear(); + m_minor_rts.clear(); +diff -auNpr abiword-2.8.6/plugins/openxml/common/xp/OXML_List.cpp abiword-libre-2.8.6/plugins/openxml/common/xp/OXML_List.cpp +--- abiword-2.8.6/plugins/openxml/common/xp/OXML_List.cpp 2009-07-02 12:20:55.000000000 -0300 ++++ abiword-libre-2.8.6/plugins/openxml/common/xp/OXML_List.cpp 2011-07-02 15:37:13.960346815 -0300 +@@ -258,7 +258,7 @@ UT_Error OXML_List::serialize(IE_Exp_Ope + txt = txt.replace(index+1, 1, 1, '1'+i); + } + +- std::string fontFamily("Times New Roman"); ++ std::string fontFamily("Liberation Serif"); + const gchar* listType = "bullet"; + switch(type) + { +diff -auNpr abiword-2.8.6/plugins/passepartout/xp/ie_exp_Passepartout.cpp abiword-libre-2.8.6/plugins/passepartout/xp/ie_exp_Passepartout.cpp +--- abiword-2.8.6/plugins/passepartout/xp/ie_exp_Passepartout.cpp 2009-05-07 18:45:16.000000000 -0300 ++++ abiword-libre-2.8.6/plugins/passepartout/xp/ie_exp_Passepartout.cpp 2011-07-02 15:37:14.172452815 -0300 +@@ -318,7 +318,7 @@ void Passepartout_Listener::_openBlock(P + } + else + { +- TempStr = UT_UTF8String_sprintf(" font-family=\"%s\"", "Times New Roman" ); ++ TempStr = UT_UTF8String_sprintf(" font-family=\"%s\"", "Liberation Serif" ); + m_pie->write(TempStr.utf8_str()); + } + +@@ -426,7 +426,7 @@ void Passepartout_Listener::_openFont(PT + } + else + { +- TempStr = UT_UTF8String_sprintf(" font-family=\"%s\"", "Times New Roman" ); ++ TempStr = UT_UTF8String_sprintf(" font-family=\"%s\"", "Liberation Serif" ); + m_pie->write(TempStr.utf8_str()); + } + +diff -auNpr abiword-2.8.6/plugins/t602/xp/ie_imp_T602.cpp abiword-libre-2.8.6/plugins/t602/xp/ie_imp_T602.cpp +--- abiword-2.8.6/plugins/t602/xp/ie_imp_T602.cpp 2009-01-04 18:34:28.000000000 -0200 ++++ abiword-libre-2.8.6/plugins/t602/xp/ie_imp_T602.cpp 2011-07-02 15:37:14.676704815 -0300 +@@ -620,7 +620,7 @@ switch (c) + case 0x01: + m_sfont ^=1; + if (m_sfont & 1) +- { m_size=static_cast<int>(0.8*m_basesize); m_family="Arial"; ++ { m_size=static_cast<int>(0.8*m_basesize); m_family="Liberation Sans"; + /* FIXME? -> .profile?*/ } + else + { m_size=m_basesize; m_family=m_basefamily; } +diff -auNpr abiword-2.8.6/src/af/gr/gtk/gr_UnixCairoGraphics.cpp abiword-libre-2.8.6/src/af/gr/gtk/gr_UnixCairoGraphics.cpp +--- abiword-2.8.6/src/af/gr/gtk/gr_UnixCairoGraphics.cpp 2009-09-04 09:40:10.000000000 -0300 ++++ abiword-libre-2.8.6/src/af/gr/gtk/gr_UnixCairoGraphics.cpp 2011-07-02 15:36:53.578160816 -0300 +@@ -182,7 +182,7 @@ GR_Font * GR_UnixCairoGraphics::getGUIFo + GtkStyle *tempStyle = gtk_style_new(); + const char *guiFontName = pango_font_description_get_family(tempStyle->font_desc); + if (!guiFontName) +- guiFontName = "'Times New Roman'"; ++ guiFontName = "'Liberation Serif'"; + + UT_UTF8String s = XAP_EncodingManager::get_instance()->getLanguageISOName(); + +diff -auNpr abiword-2.8.6/src/af/gr/xp/gr_CairoGraphics.cpp abiword-libre-2.8.6/src/af/gr/xp/gr_CairoGraphics.cpp +--- abiword-2.8.6/src/af/gr/xp/gr_CairoGraphics.cpp 2010-04-14 18:13:41.000000000 -0300 ++++ abiword-libre-2.8.6/src/af/gr/xp/gr_CairoGraphics.cpp 2011-07-02 15:36:53.918330816 -0300 +@@ -756,8 +756,8 @@ bool GR_CairoGraphics::shape(GR_ShapingI + + /* + * Pango does a royally bad job of the font substitution in +- * pango_itemize(): it will happily return 'Times New Roman' as +- * font when we have requested 'Arial', even though the latter is ++ * pango_itemize(): it will happily return 'Liberation Serif' as ++ * font when we have requested 'Liberation Sans', even though the latter is + * present and has the necessary coverage. Consequently we have to + * do the font substitution manually even on the first shapping. + * +@@ -2931,7 +2931,7 @@ GR_Font * GR_CairoGraphics::getDefaultFo + + case GR_Font::FF_Technical: + case GR_Font::FF_BiDi: +- pszFontFamily = "Arial"; ++ pszFontFamily = "Liberation Sans"; + break; + + default: +diff -auNpr abiword-2.8.6/src/af/util/xp/ut_misc.cpp abiword-libre-2.8.6/src/af/util/xp/ut_misc.cpp +--- abiword-2.8.6/src/af/util/xp/ut_misc.cpp 2009-06-28 19:09:08.000000000 -0300 ++++ abiword-libre-2.8.6/src/af/util/xp/ut_misc.cpp 2011-07-02 15:36:54.746744816 -0300 +@@ -606,7 +606,7 @@ const gchar ** UT_setPropsToValue(const + } + + /*! +- splits the xml property string (font-size:24pt;font-face:Arial') into names and values ++ splits the xml property string (font-size:24pt;font-face:Liberation Sans') into names and values + and stores them in an array + + the caller has to delete[] the array; the process is destructive to props +diff -auNpr abiword-2.8.6/src/af/xap/cocoa/xap_CocoaToolPalette.nib/keyedobjects.nib abiword-libre-2.8.6/src/af/xap/cocoa/xap_CocoaToolPalette.nib/keyedobjects.nib +--- abiword-2.8.6/src/af/xap/cocoa/xap_CocoaToolPalette.nib/keyedobjects.nib 2005-08-02 02:31:06.000000000 -0300 ++++ abiword-libre-2.8.6/src/af/xap/cocoa/xap_CocoaToolPalette.nib/keyedobjects.nib 2011-07-02 15:36:51.257000816 -0300 +@@ -10910,7 +10910,7 @@ + <integer>624</integer> + </dict> + </dict> +- <string>Times New Roman</string> ++ <string>Liberation Serif</string> + <string>_popUpItemAction:</string> + <dict> + <key>$class</key> +diff -auNpr abiword-2.8.6/src/af/xap/gtk/xap_UnixDlg_FileOpenSaveAs.cpp abiword-libre-2.8.6/src/af/xap/gtk/xap_UnixDlg_FileOpenSaveAs.cpp +--- abiword-2.8.6/src/af/xap/gtk/xap_UnixDlg_FileOpenSaveAs.cpp 2009-09-01 11:49:33.000000000 -0300 ++++ abiword-libre-2.8.6/src/af/xap/gtk/xap_UnixDlg_FileOpenSaveAs.cpp 2011-07-02 15:36:50.404574816 -0300 +@@ -878,7 +878,7 @@ gint XAP_UnixDialog_FileOpenSaveAs::prev + + const gchar * file_name = gtk_file_chooser_get_uri (m_FC); + +- GR_Font * fnt = pGr->findFont("Times New Roman", ++ GR_Font * fnt = pGr->findFont("Liberation Serif", + "normal", "", "normal", + "", "12pt", + pSS->getLanguageName()); +diff -auNpr abiword-2.8.6/src/af/xap/win/xap_Win32Dlg_About.cpp abiword-libre-2.8.6/src/af/xap/win/xap_Win32Dlg_About.cpp +--- abiword-2.8.6/src/af/xap/win/xap_Win32Dlg_About.cpp 2009-07-08 05:17:51.000000000 -0300 ++++ abiword-libre-2.8.6/src/af/xap/win/xap_Win32Dlg_About.cpp 2011-07-02 15:36:50.788766816 -0300 +@@ -258,7 +258,7 @@ void XAP_Win32Dialog_About::runModal(XAP + lf.lfWeight = 0; + HFONT hfontSmall = CreateFontIndirect(&lf); + +- strcpy(lf.lfFaceName, "Arial"); ++ strcpy(lf.lfFaceName, "Liberation Sans"); + lf.lfHeight = 36; + lf.lfWeight = FW_BOLD; + HFONT hfontHeading = CreateFontIndirect(&lf); +diff -auNpr abiword-2.8.6/src/af/xap/xp/xap_Dlg_FontChooser.cpp abiword-libre-2.8.6/src/af/xap/xp/xap_Dlg_FontChooser.cpp +--- abiword-2.8.6/src/af/xap/xp/xap_Dlg_FontChooser.cpp 2009-05-30 11:03:24.000000000 -0300 ++++ abiword-libre-2.8.6/src/af/xap/xp/xap_Dlg_FontChooser.cpp 2011-07-02 15:36:52.893818816 -0300 +@@ -569,7 +569,7 @@ void XAP_Preview_FontPreview::draw(void) + std::string sWeight = getVal("font-weight"); + + if(sFamily.empty()) +- sFamily = "Times New Roman"; ++ sFamily = "Liberation Serif"; + + if(sStyle.empty()) + sStyle = "normal"; +diff -auNpr abiword-2.8.6/src/af/xap/xp/xap_Dlg_Zoom.cpp abiword-libre-2.8.6/src/af/xap/xp/xap_Dlg_Zoom.cpp +--- abiword-2.8.6/src/af/xap/xp/xap_Dlg_Zoom.cpp 2007-01-16 20:17:27.000000000 -0300 ++++ abiword-libre-2.8.6/src/af/xap/xp/xap_Dlg_Zoom.cpp 2011-07-02 15:36:52.681712816 -0300 +@@ -124,7 +124,7 @@ void XAP_Dialog_Zoom::_createPreviewFrom + UT_ASSERT(m_zoomPreview); + + m_zoomPreview->setWindowSize(width, height); +- m_zoomPreview->setString("10-pt Times New Roman"); ++ m_zoomPreview->setString("10-pt Liberation Serif"); + m_zoomPreview->setFont(XAP_Preview_Zoom::font_NORMAL); + m_zoomPreview->setZoomPercent(m_zoomPercent); + +diff -auNpr abiword-2.8.6/src/af/xap/xp/xap_Preview_Zoom.cpp abiword-libre-2.8.6/src/af/xap/xp/xap_Preview_Zoom.cpp +--- abiword-2.8.6/src/af/xap/xp/xap_Preview_Zoom.cpp 2009-10-29 14:47:05.000000000 -0300 ++++ abiword-libre-2.8.6/src/af/xap/xp/xap_Preview_Zoom.cpp 2011-07-02 15:36:52.753748816 -0300 +@@ -63,7 +63,7 @@ void XAP_Preview_Zoom::setFont(XAP_Previ + { + case XAP_Preview_Zoom::font_NORMAL: + sprintf (fontString, "%dpt", (10 * m_zoomPercent / 100)); +- found = m_gc->findFont("Times New Roman", ++ found = m_gc->findFont("Liberation Serif", + "normal", "", "normal", + "", fontString, + NULL); +diff -auNpr abiword-2.8.6/src/text/fmt/xp/fl_BlockLayout.cpp abiword-libre-2.8.6/src/text/fmt/xp/fl_BlockLayout.cpp +--- abiword-2.8.6/src/text/fmt/xp/fl_BlockLayout.cpp 2010-06-13 11:02:39.000000000 -0300 ++++ abiword-libre-2.8.6/src/text/fmt/xp/fl_BlockLayout.cpp 2011-07-02 15:37:06.980858815 -0300 +@@ -9733,7 +9733,7 @@ void fl_BlockLayout::StartList( const gc + { + FL_ListType lType = getListTypeFromStyle(szListStyle); + if(IS_NUMBERED_LIST_TYPE(lType)) +- szFont = "Times New Roman"; ++ szFont = "Liberation Serif"; + else + szFont = "symbol"; + UT_ASSERT(0); +diff -auNpr abiword-2.8.6/src/text/fmt/xp/fp_Line.cpp abiword-libre-2.8.6/src/text/fmt/xp/fp_Line.cpp +--- abiword-2.8.6/src/text/fmt/xp/fp_Line.cpp 2009-09-09 03:20:32.000000000 -0300 ++++ abiword-libre-2.8.6/src/text/fmt/xp/fp_Line.cpp 2011-07-02 15:37:07.265000815 -0300 +@@ -1273,7 +1273,7 @@ void fp_Line::_doClearScreenFromRunToEnd + pRun = m_vecRuns.getNthItem(_getRunLogIndx(runIndex)); + + // Handle case where character extends behind the left side +- // like italic Times New Roman f. Clear a litle bit before if ++ // like italic Liberation Serif f. Clear a litle bit before if + // there is clear screen there + UT_sint32 j = runIndex - 1; + +diff -auNpr abiword-2.8.6/src/text/fmt/xp/fp_TextRun.cpp abiword-libre-2.8.6/src/text/fmt/xp/fp_TextRun.cpp +--- abiword-2.8.6/src/text/fmt/xp/fp_TextRun.cpp 2010-04-14 18:49:37.000000000 -0300 ++++ abiword-libre-2.8.6/src/text/fmt/xp/fp_TextRun.cpp 2011-07-02 15:37:08.021378815 -0300 +@@ -1434,7 +1434,7 @@ void fp_TextRun::_clearScreen(bool /* bF + + // + // Handle case where character extend behind the left side +- // like italic Times New Roman f ++ // like italic Liberation Serif f + // + fp_Line * thisLine = getLine(); + fp_Run * pPrev = getPrevRun(); +diff -auNpr abiword-2.8.6/src/text/fmt/xp/fv_View.cpp abiword-libre-2.8.6/src/text/fmt/xp/fv_View.cpp +--- abiword-2.8.6/src/text/fmt/xp/fv_View.cpp 2010-06-13 11:02:39.000000000 -0300 ++++ abiword-libre-2.8.6/src/text/fmt/xp/fv_View.cpp 2011-07-02 15:37:08.353544815 -0300 +@@ -519,9 +519,9 @@ FV_View::FV_View(XAP_App * pApp, void* p + s += pCountry; + } + +- // do a fuzzy match for Times New Roman ++ // do a fuzzy match for Liberation Serif + const char * pszFamily = +- GR_Graphics::findNearestFont ("Times New Roman", ++ GR_Graphics::findNearestFont ("Liberation Serif", + "normal", "normal", + "normal", "normal", + "12pt", s.utf8_str()); +diff -auNpr abiword-2.8.6/src/text/ptbl/xp/pp_Property.cpp abiword-libre-2.8.6/src/text/ptbl/xp/pp_Property.cpp +--- abiword-2.8.6/src/text/ptbl/xp/pp_Property.cpp 2009-05-18 23:33:18.000000000 -0300 ++++ abiword-libre-2.8.6/src/text/ptbl/xp/pp_Property.cpp 2011-07-02 15:37:09.053894814 -0300 +@@ -99,7 +99,7 @@ static PP_Property _props[] = + + { "field-color", "dcdcdc", true, NULL, PP_LEVEL_FIELD}, + { "field-font", "NULL", true, NULL, PP_LEVEL_FIELD}, +- { "font-family", "Times New Roman", true, NULL, PP_LEVEL_CHAR}, ++ { "font-family", "Liberation Serif", true, NULL, PP_LEVEL_CHAR}, + { "font-size", "12pt", true, NULL, PP_LEVEL_CHAR}, // MS word defaults to 10pt, but it just seems too small + { "font-stretch", "normal", true, NULL, PP_LEVEL_CHAR}, + { "font-style", "normal", true, NULL, PP_LEVEL_CHAR}, +diff -auNpr abiword-2.8.6/src/text/ptbl/xp/pp_Revision.cpp abiword-libre-2.8.6/src/text/ptbl/xp/pp_Revision.cpp +--- abiword-2.8.6/src/text/ptbl/xp/pp_Revision.cpp 2009-05-07 23:35:14.000000000 -0300 ++++ abiword-libre-2.8.6/src/text/ptbl/xp/pp_Revision.cpp 2011-07-02 15:37:08.881808814 -0300 +@@ -350,7 +350,7 @@ void PP_RevisionAttr::_init(const gchar + return; + + // the string we are parsing looks like +- // "+1,-2,!3{font-family: Times New Roman}" ++ // "+1,-2,!3{font-family: Liberation Serif}" + + // first duplicate the string so we can play with it ... + char * s = (char*) g_strdup(r); +diff -auNpr abiword-2.8.6/src/text/ptbl/xp/pp_Revision.h abiword-libre-2.8.6/src/text/ptbl/xp/pp_Revision.h +--- abiword-2.8.6/src/text/ptbl/xp/pp_Revision.h 2009-01-04 20:32:46.000000000 -0200 ++++ abiword-libre-2.8.6/src/text/ptbl/xp/pp_Revision.h 2011-07-02 15:37:09.530132814 -0300 +@@ -101,7 +101,7 @@ class ABI_EXPORT PP_Revision: public PP_ + where n is a numerical id of the revision and props is regular + property string, for instance + +- font-family:Times New Roman ++ font-family:Liberation Serif + + revoval of property/attribute is indicated by setting to -/-, e.g., + +diff -auNpr abiword-2.8.6/src/text/ptbl/xp/pt_PT_Styles.cpp abiword-libre-2.8.6/src/text/ptbl/xp/pt_PT_Styles.cpp +--- abiword-2.8.6/src/text/ptbl/xp/pt_PT_Styles.cpp 2009-01-04 18:34:28.000000000 -0200 ++++ abiword-libre-2.8.6/src/text/ptbl/xp/pt_PT_Styles.cpp 2011-07-02 15:37:09.101918814 -0300 +@@ -155,7 +155,7 @@ bool pt_PieceTable::_loadBuiltinStyles(v + s += pCountry; + } + +- const char* pszFamily = XAP_App::findNearestFont("Times New Roman", ++ const char* pszFamily = XAP_App::findNearestFont("Liberation Serif", + "normal", "", + "normal", "", "12pt", + s.utf8_str()); +@@ -167,7 +167,7 @@ bool pt_PieceTable::_loadBuiltinStyles(v + "text-indent:0in; text-position:normal; line-height:1.0; " + "color:000000; bgcolor:transparent; widows:2", pszFamily); + +- pszFamily = XAP_App::findNearestFont("Arial", "normal", "", ++ pszFamily = XAP_App::findNearestFont("Liberation Sans", "normal", "", + "normal", "", "12pt", s.utf8_str()); + + // used to set the dom-dir of the style here, but we do not want to do that. The +@@ -239,7 +239,7 @@ bool pt_PieceTable::_loadBuiltinStyles(v + UT_String_sprintf(stTmp, list_fmt, "Heart List","0", LIST_DEFAULT_INDENT, LIST_DEFAULT_INDENT_LABEL, "transparent", "%L", "Dingbats", "NULL"); + _s("Heart List",false, "P", "", "Current Settings", stTmp.c_str()); + +- // pszFamily is the nearest font to Arial found in the system ++ // pszFamily is the nearest font to Liberation Sans found in the system + UT_String_sprintf(stTmp, "tabstops:0.3in/L0; list-style:Numbered List; " + "start-value:1; margin-left:0.0in; text-indent:0.0in; " + "field-color:transparent; list-delim:%%L.; field-font:%s; " +@@ -250,7 +250,7 @@ bool pt_PieceTable::_loadBuiltinStyles(v + _s("Numbered Heading 2",true,"P","Heading 2","Normal", stTmp.c_str()); + _s("Numbered Heading 3",true,"P","Heading 3","Normal", stTmp.c_str()); + +- // pszFamily is the nearest font to Arial found in the system ++ // pszFamily is the nearest font to Liberation Sans found in the system + + UT_String_sprintf(stTmp, list_fmt, "Numbered List", "1",LIST_DEFAULT_INDENT, LIST_DEFAULT_INDENT_LABEL, "transparent", "%L.", "NULL", "."); + +diff -auNpr abiword-2.8.6/src/wp/ap/xp/ap_Dialog_Lists.cpp abiword-libre-2.8.6/src/wp/ap/xp/ap_Dialog_Lists.cpp +--- abiword-2.8.6/src/wp/ap/xp/ap_Dialog_Lists.cpp 2009-05-20 18:22:35.000000000 -0300 ++++ abiword-libre-2.8.6/src/wp/ap/xp/ap_Dialog_Lists.cpp 2011-07-02 15:37:01.798268815 -0300 +@@ -1170,7 +1170,7 @@ void AP_Lists_preview::setData(const gch + // + if(!pszFont || strcmp(pszFont,"NULL")== 0) + { +- m_pFont = m_gc->findFont("Times New Roman", ++ m_pFont = m_gc->findFont("Liberation Serif", + "normal", "", "normal", + "", "16pt", NULL); + } +diff -auNpr abiword-2.8.6/src/wp/ap/xp/ap_Dialog_PageNumbers.cpp abiword-libre-2.8.6/src/wp/ap/xp/ap_Dialog_PageNumbers.cpp +--- abiword-2.8.6/src/wp/ap/xp/ap_Dialog_PageNumbers.cpp 2007-05-08 14:16:33.000000000 -0300 ++++ abiword-libre-2.8.6/src/wp/ap/xp/ap_Dialog_PageNumbers.cpp 2011-07-02 15:37:02.462600815 -0300 +@@ -88,7 +88,7 @@ AP_Preview_PageNumbers::AP_Preview_PageN + char fontString [10]; + sprintf(fontString, "%dpt", 8); + +- GR_Font * found = m_gc->findFont("Times New Roman", "normal", ++ GR_Font * found = m_gc->findFont("Liberation Serif", "normal", + "", "normal", "", fontString, + NULL); + +diff -auNpr abiword-2.8.6/src/wp/ap/xp/ap_Preview_Annotation.cpp abiword-libre-2.8.6/src/wp/ap/xp/ap_Preview_Annotation.cpp +--- abiword-2.8.6/src/wp/ap/xp/ap_Preview_Annotation.cpp 2009-09-29 10:58:11.000000000 -0300 ++++ abiword-libre-2.8.6/src/wp/ap/xp/ap_Preview_Annotation.cpp 2011-07-02 15:37:03.311024815 -0300 +@@ -94,7 +94,7 @@ void AP_Preview_Annotation::setSizeFromA + pG = pView->getGraphics(); + + UT_return_if_fail(pG); +- GR_Font * pFont = pG->findFont("Times New Roman", "normal", ++ GR_Font * pFont = pG->findFont("Liberation Serif", "normal", + "normal", "normal", + "normal", "12pt", + NULL); +@@ -122,7 +122,7 @@ void AP_Preview_Annotation::draw(void) + UT_RGBColor FGcolor(0,0,0); + UT_RGBColor BGcolor(m_clrBackground); + +- m_pFont = m_gc->findFont("Times New Roman", "normal", ++ m_pFont = m_gc->findFont("Liberation Serif", "normal", + "normal", "normal", + "normal", "12pt", + NULL); +diff -auNpr abiword-2.8.6/src/wp/ap/xp/ap_Preview_Paragraph.cpp abiword-libre-2.8.6/src/wp/ap/xp/ap_Preview_Paragraph.cpp +--- abiword-2.8.6/src/wp/ap/xp/ap_Preview_Paragraph.cpp 2009-03-09 17:01:46.000000000 -0200 ++++ abiword-libre-2.8.6/src/wp/ap/xp/ap_Preview_Paragraph.cpp 2011-07-02 15:37:03.527132815 -0300 +@@ -539,7 +539,7 @@ void AP_Preview_Paragraph::draw(void) + bool AP_Preview_Paragraph::_loadDrawFont(void) + { + // we draw at 7 points in this preview +- GR_Font * font = m_gc->findFont("Times New Roman", ++ GR_Font * font = m_gc->findFont("Liberation Serif", + "normal", "", "normal", + "", "7pt", + NULL); // might need to get the real lang +diff -auNpr abiword-2.8.6/src/wp/impexp/xp/ie_exp_RTF.cpp abiword-libre-2.8.6/src/wp/impexp/xp/ie_exp_RTF.cpp +--- abiword-2.8.6/src/wp/impexp/xp/ie_exp_RTF.cpp 2009-09-29 17:00:48.000000000 -0300 ++++ abiword-libre-2.8.6/src/wp/impexp/xp/ie_exp_RTF.cpp 2011-07-02 15:37:03.939338815 -0300 +@@ -2829,7 +2829,7 @@ void IE_Exp_RTF::_output_ListRTF(fl_Auto + case DASHED_LIST: + Param = 23; + bulletsym = '-'; +- fontName = "Times New Roman"; ++ fontName = "Liberation Serif"; + break; + case SQUARE_LIST: + Param = 23; +diff -auNpr abiword-2.8.6/src/wp/impexp/xp/ie_imp_MsWord_97.cpp abiword-libre-2.8.6/src/wp/impexp/xp/ie_imp_MsWord_97.cpp +--- abiword-2.8.6/src/wp/impexp/xp/ie_imp_MsWord_97.cpp 2009-09-23 02:22:43.000000000 -0300 ++++ abiword-libre-2.8.6/src/wp/impexp/xp/ie_imp_MsWord_97.cpp 2011-07-02 15:37:03.883310815 -0300 +@@ -621,10 +621,10 @@ s_fieldFontForListStyle (MSWordListIdTyp + return "NULL"; + + case WLNF_UPPER_LETTER: // upper letter +- return "Times New Roman"; ++ return "Liberation Serif"; + + case WLNF_LOWER_LETTER: // lower letter +- return "Times New Roman"; ++ return "Liberation Serif"; + + case WLNF_BULLETS: // bullet list + UT_DEBUGMSG(("Fieldfont set to symbol \n")); +@@ -632,11 +632,11 @@ s_fieldFontForListStyle (MSWordListIdTyp + + case WLNF_EUROPEAN_ARABIC: + case WLNF_ORDINAL: // ordinal +- return "Times New Roman"; ++ return "Liberation Serif"; + + default: +- UT_DEBUGMSG(("unknown list type %d field-font set to Times New Roman \n",id)); +- return "Times New Roman"; ++ UT_DEBUGMSG(("unknown list type %d field-font set to Liberation Serif \n",id)); ++ return "Liberation Serif"; + } + } + +@@ -5243,7 +5243,7 @@ void IE_Imp_MsWord_97::_generateCharProp + if(fname) + s += fname; + else +- s += "Times New Roman"; ++ s += "Liberation Serif"; + FREEP(fname); + } + +diff -auNpr abiword-2.8.6/src/wp/impexp/xp/ie_imp_RTF.cpp abiword-libre-2.8.6/src/wp/impexp/xp/ie_imp_RTF.cpp +--- abiword-2.8.6/src/wp/impexp/xp/ie_imp_RTF.cpp 2009-07-27 02:26:14.000000000 -0300 ++++ abiword-libre-2.8.6/src/wp/impexp/xp/ie_imp_RTF.cpp 2011-07-02 15:37:04.239488815 -0300 +@@ -5958,11 +5958,11 @@ bool IE_Imp_RTF::buildCharacterProps(UT_ + // {\f83\fnil\fcharset0\fprq0{\*\panose 00000000000000000000} ;} + // note the empty slot after the panose entry + // later it gets referenced: {\b\f83\fs24\cf1\cgrid0 Malte Cornils +- // this turns those into "Times New Roman" for now, as a hack to keep from crashing ++ // this turns those into "Liberation Serif" for now, as a hack to keep from crashing + if ( pFont->m_pFontName != NULL ) + propBuffer += pFont->m_pFontName; + else +- propBuffer += "Times New Roman"; ++ propBuffer += "Liberation Serif"; + } + if (m_currentRTFState.m_charProps.m_hasColour) + { +@@ -8612,7 +8612,7 @@ bool IE_Imp_RTF::ReadFontTable() + { + // NB: Ignores whitespace until we've seen non-whitespace data. + // This means we pick up the spaces in font names like +- // "Times New Roman", but it also means that any font names ++ // "Liberation Serif", but it also means that any font names + // that genuinely start with spaces will have them discarded. + // This is hopefully not a problem. + tokenType = NextToken(keyword, ¶meter,& paramUsed, +@@ -8680,11 +8680,11 @@ bool IE_Imp_RTF::ReadFontTable() + // It's possible that the font name will be empty. This might happend + // because the font table didn't specify a name, or because the \ansicpgN + // command was invalid, in which case the mbtowc convertion might fail. +- // In these cases, substitute "Times New Roman". ++ // In these cases, substitute "Liberation Serif". + if (!sFontNamesAndPanose[SFontTableState::MainFontName].length()) + { +- UT_DEBUGMSG(("RTF: Font Index %d: Substituting \"Times New Roman\" for missing font name.\n", fontIndex)); +- sFontNamesAndPanose[SFontTableState::MainFontName] = "Times New Roman"; ++ UT_DEBUGMSG(("RTF: Font Index %d: Substituting \"Liberation Serif\" for missing font name.\n", fontIndex)); ++ sFontNamesAndPanose[SFontTableState::MainFontName] = "Liberation Serif"; + } + // Validate and post-process the Panose string. + if (!PostProcessAndValidatePanose(sFontNamesAndPanose[SFontTableState::Panose])) +diff -auNpr abiword-2.8.6/user/wp/readme.abw abiword-libre-2.8.6/user/wp/readme.abw +--- abiword-2.8.6/user/wp/readme.abw 2009-07-23 16:50:13.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/readme.abw 2011-07-02 15:37:19.891310814 -0300 +@@ -16,9 +16,9 @@ + <version id="9" started="1131226323" uid="e94517c8-4e44-11da-9bf9-8faddbe5f409" auto="0" top-xid="120"/> + </history> + <styles> +-<s type="P" name="Heading 1" basedon="Normal" followedby="Normal" props="keep-with-next:1; margin-top:22pt; font-weight:bold; margin-bottom:3pt; font-family:Arial; font-size:17pt; lang:-none-"/> +-<s followedby="Current Settings" name="Normal" type="P" props="font-weight:normal; font-family:Times New Roman; margin-top:0pt; font-style:normal; margin-left:0pt; lang:-none-; dom-dir:ltr; font-variant:normal; text-indent:0in; margin-bottom:12pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> +-<s type="P" name="Heading 2" basedon="Normal" followedby="Normal" props="keep-with-next:1; margin-top:22pt; font-weight:bold; margin-bottom:3pt; font-family:Arial; font-size:14pt; lang:-none-"/> ++<s type="P" name="Heading 1" basedon="Normal" followedby="Normal" props="keep-with-next:1; margin-top:22pt; font-weight:bold; margin-bottom:3pt; font-family:Liberation Sans; font-size:17pt; lang:-none-"/> ++<s followedby="Current Settings" name="Normal" type="P" props="font-weight:normal; font-family:Liberation Serif; margin-top:0pt; font-style:normal; margin-left:0pt; lang:-none-; dom-dir:ltr; font-variant:normal; text-indent:0in; margin-bottom:12pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> ++<s type="P" name="Heading 2" basedon="Normal" followedby="Normal" props="keep-with-next:1; margin-top:22pt; font-weight:bold; margin-bottom:3pt; font-family:Liberation Sans; font-size:14pt; lang:-none-"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section xid="1"> +diff -auNpr abiword-2.8.6/user/wp/templates/Business-Letter.awt abiword-libre-2.8.6/user/wp/templates/Business-Letter.awt +--- abiword-2.8.6/user/wp/templates/Business-Letter.awt 2009-05-22 07:15:16.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/Business-Letter.awt 2011-07-02 15:37:19.995362813 -0300 +@@ -19,14 +19,14 @@ + <version id="4" started="1097285263" uid="6ad98dfc-1992-11d9-90cf-d572573794e2" auto="0"/> + </history> + <styles> +-<s followedby="Return Address Section" name="Return Address Section" basedon="Normal" type="P" props="font-weight:normal; font-family:Times New Roman; margin-top:0pt; font-style:normal; margin-left:0.0000in; bgcolor:transparent; text-decoration:none; text-indent:0in; font-variant:normal; color:000000; lang:en-US; margin-right:0.0000in; margin-bottom:0pt; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> +-<s type="P" name="Normal" followedby="Current Settings" props="text-indent:0in; margin-top:0pt; margin-left:0pt; font-stretch:normal; line-height:1.0; text-align:left; bgcolor:transparent; lang:en-US; margin-bottom:0pt; font-weight:normal; text-decoration:none; font-variant:normal; color:000000; text-position:normal; font-size:12pt; margin-right:0pt; font-style:normal; widows:2; font-family:Times New Roman"/> +-<s followedby="Letter Body" name="Inside Address" basedon="Block Text" type="P" props="text-indent:0in; orphans:2; margin-top:0pt; margin-left:0.0000in; list-decimal:.; line-height:1.0; keep-with-next:no; text-align:left; list-style:None; bgcolor:transparent; lang:en-US; margin-bottom:0pt; font-weight:normal; text-decoration:none; start-value:1; font-variant:normal; color:000000; font-stretch:normal; keep-together:no; font-size:12pt; margin-right:0.0000in; font-style:normal; widows:2; list-delim:%L; font-family:Times New Roman"/> ++<s followedby="Return Address Section" name="Return Address Section" basedon="Normal" type="P" props="font-weight:normal; font-family:Liberation Serif; margin-top:0pt; font-style:normal; margin-left:0.0000in; bgcolor:transparent; text-decoration:none; text-indent:0in; font-variant:normal; color:000000; lang:en-US; margin-right:0.0000in; margin-bottom:0pt; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> ++<s type="P" name="Normal" followedby="Current Settings" props="text-indent:0in; margin-top:0pt; margin-left:0pt; font-stretch:normal; line-height:1.0; text-align:left; bgcolor:transparent; lang:en-US; margin-bottom:0pt; font-weight:normal; text-decoration:none; font-variant:normal; color:000000; text-position:normal; font-size:12pt; margin-right:0pt; font-style:normal; widows:2; font-family:Liberation Serif"/> ++<s followedby="Letter Body" name="Inside Address" basedon="Block Text" type="P" props="text-indent:0in; orphans:2; margin-top:0pt; margin-left:0.0000in; list-decimal:.; line-height:1.0; keep-with-next:no; text-align:left; list-style:None; bgcolor:transparent; lang:en-US; margin-bottom:0pt; font-weight:normal; text-decoration:none; start-value:1; font-variant:normal; color:000000; font-stretch:normal; keep-together:no; font-size:12pt; margin-right:0.0000in; font-style:normal; widows:2; list-delim:%L; font-family:Liberation Serif"/> + <s type="P" name="Block Text" basedon="Normal" followedby="Current Settings" props="margin-bottom:6pt; margin-right:1in; margin-left:1in"/> +-<s followedby="Letter Body" name="Letter Body" basedon="Normal" type="P" props="font-weight:normal; font-family:Times New Roman; margin-top:12pt; font-style:normal; margin-left:0pt; bgcolor:transparent; text-decoration:none; text-indent:0.0000in; font-variant:normal; color:000000; lang:en-US; margin-right:0pt; margin-bottom:0pt; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> +-<s followedby="Letter Body" name="Greeting" basedon="Normal" type="P" props="font-family:Times New Roman; margin-top:12pt; font-variant:normal; margin-left:0pt; text-align:left; font-style:normal; text-indent:0in; color:000000; line-height:1.0; widows:2; bgcolor:transparent; margin-right:0pt; text-decoration:none; font-size:12pt; font-weight:normal; margin-bottom:0pt; lang:en-US; font-stretch:normal"/> +-<s followedby="Signature Line" name="Closing" basedon="Normal" type="P" props="font-weight:normal; font-family:Times New Roman; margin-top:12pt; font-style:normal; margin-left:0.0000in; bgcolor:transparent; text-decoration:none; text-indent:0in; font-variant:normal; color:000000; lang:en-US; margin-right:0pt; margin-bottom:48pt; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> +-<s followedby="Block Text" name="Signature Line" basedon="Return Address Section" type="P" props="font-weight:normal; font-family:Times New Roman; margin-top:0pt; font-style:normal; margin-left:0.0000in; bgcolor:transparent; text-decoration:none; text-indent:0in; font-variant:normal; color:000000; lang:en-US; margin-right:0.0000in; margin-bottom:0pt; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> ++<s followedby="Letter Body" name="Letter Body" basedon="Normal" type="P" props="font-weight:normal; font-family:Liberation Serif; margin-top:12pt; font-style:normal; margin-left:0pt; bgcolor:transparent; text-decoration:none; text-indent:0.0000in; font-variant:normal; color:000000; lang:en-US; margin-right:0pt; margin-bottom:0pt; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> ++<s followedby="Letter Body" name="Greeting" basedon="Normal" type="P" props="font-family:Liberation Serif; margin-top:12pt; font-variant:normal; margin-left:0pt; text-align:left; font-style:normal; text-indent:0in; color:000000; line-height:1.0; widows:2; bgcolor:transparent; margin-right:0pt; text-decoration:none; font-size:12pt; font-weight:normal; margin-bottom:0pt; lang:en-US; font-stretch:normal"/> ++<s followedby="Signature Line" name="Closing" basedon="Normal" type="P" props="font-weight:normal; font-family:Liberation Serif; margin-top:12pt; font-style:normal; margin-left:0.0000in; bgcolor:transparent; text-decoration:none; text-indent:0in; font-variant:normal; color:000000; lang:en-US; margin-right:0pt; margin-bottom:48pt; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> ++<s followedby="Block Text" name="Signature Line" basedon="Return Address Section" type="P" props="font-weight:normal; font-family:Liberation Serif; margin-top:0pt; font-style:normal; margin-left:0.0000in; bgcolor:transparent; text-decoration:none; text-indent:0in; font-variant:normal; color:000000; lang:en-US; margin-right:0.0000in; margin-bottom:0pt; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> + </styles> + <pagesize pagetype="Letter" orientation="portrait" width="8.500000" height="11.000000" units="in" page-scale="1.000000"/> + <section props="page-margin-footer:0.5in; page-margin-header:0.5in"> +diff -auNpr abiword-2.8.6/user/wp/templates/Business-Report.awt abiword-libre-2.8.6/user/wp/templates/Business-Report.awt +--- abiword-2.8.6/user/wp/templates/Business-Report.awt 2009-05-22 07:15:18.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/Business-Report.awt 2011-07-02 15:37:20.011370813 -0300 +@@ -21,7 +21,7 @@ + <p style="Normal" props="text-align:right"><c props="lang:en-US; font-size:12 pt"></c></p> + <p style="Normal" props="text-align:right"><c props="lang:en-US; font-size:12 pt"></c></p> + <p style="Normal" props="text-align:left"><c props="lang:en-US; font-size:48 pt; font-weight:bold">Title</c><c props="lang:en-US; font-size:48 pt; font-weight:bold"></c></p> +-<p style="Normal" props="text-align:left"><c props="font-family:Times New Roman; text-decoration:none; color:000000; lang:en-US; text-position:normal; font-weight:bold; font-style:normal; font-size:48pt">Subtitle</c><c props="font-family:Times New Roman; text-decoration:none; color:000000; lang:en-US; text-position:normal; font-weight:bold; font-style:normal; font-size:48pt"></c></p> ++<p style="Normal" props="text-align:left"><c props="font-family:Liberation Serif; text-decoration:none; color:000000; lang:en-US; text-position:normal; font-weight:bold; font-style:normal; font-size:48pt">Subtitle</c><c props="font-family:Liberation Serif; text-decoration:none; color:000000; lang:en-US; text-position:normal; font-weight:bold; font-style:normal; font-size:48pt"></c></p> + <p style="Normal" props="text-align:right; margin-top:0pt; line-height:1.0"><c props="lang:en-US; font-size:8 pt"></c><image dataid="/home/dickk/images/balk.png_0" props="lang:en-US; height:0.090551in; width:6.295276in"/></p> + <p style="Normal" props="text-align:right; margin-top:0pt; line-height:1.0"><c props="lang:en-US; font-size:18 pt; font-weight:bold">Release 1.0</c></p> + <p style="Normal"><c props="lang:en-US"></c></p> +@@ -99,11 +99,11 @@ + <section footer="1961180032" header="671410933"> + <p style="Normal"></p> + <p style="Normal"></p> +-<p level="1" listid="1908846824" parentid="0" style="Numbered Heading 1" props="start-value:1; text-indent:0.0000in; list-style:Numbered List; field-font:Arial; margin-left:0.0000in"><c props="list-tag:254800672"><pbr/></c><c props="list-tag:254800672"></c><field type="list_label" props="width:0in; font-family:Arial; color:000000; font-weight:bold; lang:en-US; font-style:normal; text-position:normal; bgcolor:transparent; text-decoration:none; height:0in; font-size:17pt"></field><c type="list_label" props="width:0in; font-family:Arial; color:000000; font-weight:bold; lang:en-US; font-style:normal; text-position:normal; bgcolor:transparent; text-decoration:none; height:0in; font-size:17pt"> Heading 1</c></p> ++<p level="1" listid="1908846824" parentid="0" style="Numbered Heading 1" props="start-value:1; text-indent:0.0000in; list-style:Numbered List; field-font:Liberation Sans; margin-left:0.0000in"><c props="list-tag:254800672"><pbr/></c><c props="list-tag:254800672"></c><field type="list_label" props="width:0in; font-family:Liberation Sans; color:000000; font-weight:bold; lang:en-US; font-style:normal; text-position:normal; bgcolor:transparent; text-decoration:none; height:0in; font-size:17pt"></field><c type="list_label" props="width:0in; font-family:Liberation Sans; color:000000; font-weight:bold; lang:en-US; font-style:normal; text-position:normal; bgcolor:transparent; text-decoration:none; height:0in; font-size:17pt"> Heading 1</c></p> + <p style="Normal"><c type="list_label" props="lang:en-US; height:0in; width:0in">text</c><c type="list_label" props="lang:en-US; height:0in; width:0in"></c></p> +-<p level="2" listid="686698307" parentid="1908846824" style="Numbered Heading 2" props="start-value:1; text-indent:0.0000in; list-style:Numbered List; field-font:Arial; margin-left:0.0000in"><c type="list_label" props="lang:en-US; height:0in; width:0in; list-tag:1877104478"></c><field type="list_label" props="width:0in; font-family:Arial; color:000000; font-weight:bold; lang:en-US; font-style:normal; text-position:normal; bgcolor:transparent; text-decoration:none; height:0in; font-size:14pt"></field><c type="list_label" props="width:0in; font-family:Arial; color:000000; font-weight:bold; lang:en-US; font-style:normal; text-position:normal; bgcolor:transparent; text-decoration:none; height:0in; font-size:14pt"> Heading 2</c></p> ++<p level="2" listid="686698307" parentid="1908846824" style="Numbered Heading 2" props="start-value:1; text-indent:0.0000in; list-style:Numbered List; field-font:Liberation Sans; margin-left:0.0000in"><c type="list_label" props="lang:en-US; height:0in; width:0in; list-tag:1877104478"></c><field type="list_label" props="width:0in; font-family:Liberation Sans; color:000000; font-weight:bold; lang:en-US; font-style:normal; text-position:normal; bgcolor:transparent; text-decoration:none; height:0in; font-size:14pt"></field><c type="list_label" props="width:0in; font-family:Liberation Sans; color:000000; font-weight:bold; lang:en-US; font-style:normal; text-position:normal; bgcolor:transparent; text-decoration:none; height:0in; font-size:14pt"> Heading 2</c></p> + <p style="Normal"><c type="list_label" props="lang:en-US; height:0in; width:0in">text</c><c type="list_label" props="lang:en-US; height:0in; width:0in"></c></p> +-<p level="3" listid="1990149216" parentid="686698307" style="Numbered Heading 3" props="start-value:1; text-indent:0.0000in; list-style:Numbered List; field-font:Arial; margin-left:0.0000in"><c type="list_label" props="lang:en-US; height:0in; width:0in; list-tag:1324672020"></c><field type="list_label" props="width:0in; font-family:Arial; color:000000; font-weight:bold; lang:en-US; font-style:normal; text-position:normal; bgcolor:transparent; text-decoration:none; height:0in; font-size:12pt"></field><c type="list_label" props="width:0in; font-family:Arial; color:000000; font-weight:bold; lang:en-US; font-style:normal; text-position:normal; bgcolor:transparent; text-decoration:none; height:0in; font-size:12pt"> Heading 3</c></p> ++<p level="3" listid="1990149216" parentid="686698307" style="Numbered Heading 3" props="start-value:1; text-indent:0.0000in; list-style:Numbered List; field-font:Liberation Sans; margin-left:0.0000in"><c type="list_label" props="lang:en-US; height:0in; width:0in; list-tag:1324672020"></c><field type="list_label" props="width:0in; font-family:Liberation Sans; color:000000; font-weight:bold; lang:en-US; font-style:normal; text-position:normal; bgcolor:transparent; text-decoration:none; height:0in; font-size:12pt"></field><c type="list_label" props="width:0in; font-family:Liberation Sans; color:000000; font-weight:bold; lang:en-US; font-style:normal; text-position:normal; bgcolor:transparent; text-decoration:none; height:0in; font-size:12pt"> Heading 3</c></p> + <p style="Normal"><c type="list_label" props="lang:en-US; height:0in; width:0in"></c></p> + </section> + <section id="1961180032" listid="0" parentid="0" type="footer"> +diff -auNpr abiword-2.8.6/user/wp/templates/Employee-Directory.awt abiword-libre-2.8.6/user/wp/templates/Employee-Directory.awt +--- abiword-2.8.6/user/wp/templates/Employee-Directory.awt 2009-05-22 07:15:21.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/Employee-Directory.awt 2011-07-02 15:37:20.047388813 -0300 +@@ -10,9 +10,9 @@ + + <pagesize pagetype="Letter" orientation="portrait" width="8.500000" height="11.000000" units="in" page-scale="1.000000"/> + <section props="page-margin-footer:0.5in; page-margin-header:0.5in"> +-<p style="Normal" props="text-align:left"><c props="lang:en-US; font-size:20pt; font-family:Times New Roman">Company Name</c></p> +-<p style="Normal" props="text-align:left"><c props="lang:en-US; font-size:26pt; font-family:Times New Roman">Directory of Employees</c></p> +-<p style="Normal" props="text-align:left"><c props="lang:en-US; font-size:12pt; font-family:Times New Roman"></c><image dataid="C:\Documents and Settings\jgz\Desktop\bar.bmp_0" props="height:0.15in; font-size:12pt; width:8.23in"/></p> ++<p style="Normal" props="text-align:left"><c props="lang:en-US; font-size:20pt; font-family:Liberation Serif">Company Name</c></p> ++<p style="Normal" props="text-align:left"><c props="lang:en-US; font-size:26pt; font-family:Liberation Serif">Directory of Employees</c></p> ++<p style="Normal" props="text-align:left"><c props="lang:en-US; font-size:12pt; font-family:Liberation Serif"></c><image dataid="C:\Documents and Settings\jgz\Desktop\bar.bmp_0" props="height:0.15in; font-size:12pt; width:8.23in"/></p> + <p style="Normal" props="text-align:center"><c props="lang:en-US; font-size:12pt"></c></p> + <p style="Normal" props="text-align:center"><c props="lang:en-US; font-size:12pt"></c></p> + <p style="Normal" props="text-align:center"><c props="lang:en-US"></c></p> +@@ -36,59 +36,59 @@ + <p style="Normal" props="tabstops:2.0000in/L0"><c type="date">Normal Style (123) 555-1212</c></p> + <p style="Normal" props="text-align:left; tabstops:2.0000in/L0"><c type="date" props="font-weight:normal; font-size:11pt; font-style:normal"></c></p> + <p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-weight:normal; font-size:11pt; font-style:normal"></c></p> +-<p style="Heading 3" props="margin-top:0.3056in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0417in; text-indent:0.0000in; line-height:1.000000; text-align:center; margin-right:0.0000in"><c type="date" props="font-family:Arial; font-size:12pt; color:000000; text-decoration:underline ; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">Department Name</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">The big boss upstairs (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; lang:en-US; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none"></c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> +-<p style="Heading 3" props="margin-top:0.3056in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0417in; text-indent:0.0000in; line-height:1.000000; text-align:center; margin-right:0.0000in"><c type="date" props="font-family:Arial; font-size:12pt; color:000000; text-decoration:underline ; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">Department Name</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">The big boss upstairs (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> +-<p style="Heading 3" props="margin-top:0.3056in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0417in; text-indent:0.0000in; line-height:1.000000; text-align:center; margin-right:0.0000in"><c type="date" props="font-family:Arial; font-size:12pt; color:000000; text-decoration:underline ; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">Department Name</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">The big boss upstairs (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> +-<p style="Heading 3" props="margin-top:0.3056in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0417in; text-indent:0.0000in; line-height:1.000000; text-align:center; margin-right:0.0000in"><c type="date" props="font-family:Arial; font-size:12pt; color:000000; text-decoration:underline ; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">Department Name</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">The big boss upstairs (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> +-<p style="Heading 3" props="margin-top:0.3056in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0417in; text-indent:0.0000in; line-height:1.000000; text-align:center; margin-right:0.0000in"><c type="date" props="font-family:Arial; font-size:12pt; color:000000; lang:en-US; text-position:normal; font-weight:bold; font-style:normal; text-decoration:underline ">General Numbers</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Front Desk (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Security (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Building Management (123) 555-1212</c></p> +-<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Times New Roman; font-size:12pt; color:000000; lang:en-US; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none">Other General Numbers (123) 555-1212</c></p> ++<p style="Heading 3" props="margin-top:0.3056in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0417in; text-indent:0.0000in; line-height:1.000000; text-align:center; margin-right:0.0000in"><c type="date" props="font-family:Liberation Sans; font-size:12pt; color:000000; text-decoration:underline ; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">Department Name</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">The big boss upstairs (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; lang:en-US; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none"></c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> ++<p style="Heading 3" props="margin-top:0.3056in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0417in; text-indent:0.0000in; line-height:1.000000; text-align:center; margin-right:0.0000in"><c type="date" props="font-family:Liberation Sans; font-size:12pt; color:000000; text-decoration:underline ; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">Department Name</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">The big boss upstairs (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> ++<p style="Heading 3" props="margin-top:0.3056in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0417in; text-indent:0.0000in; line-height:1.000000; text-align:center; margin-right:0.0000in"><c type="date" props="font-family:Liberation Sans; font-size:12pt; color:000000; text-decoration:underline ; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">Department Name</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">The big boss upstairs (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> ++<p style="Heading 3" props="margin-top:0.3056in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0417in; text-indent:0.0000in; line-height:1.000000; text-align:center; margin-right:0.0000in"><c type="date" props="font-family:Liberation Sans; font-size:12pt; color:000000; text-decoration:underline ; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">Department Name</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:bold; font-style:normal; lang:en-US">The big boss upstairs (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Last Name, First Name (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US"></c></p> ++<p style="Heading 3" props="margin-top:0.3056in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0417in; text-indent:0.0000in; line-height:1.000000; text-align:center; margin-right:0.0000in"><c type="date" props="font-family:Liberation Sans; font-size:12pt; color:000000; lang:en-US; text-position:normal; font-weight:bold; font-style:normal; text-decoration:underline ">General Numbers</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Front Desk (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Security (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">Building Management (123) 555-1212</c></p> ++<p style="Normal" props="margin-top:0.0000in; margin-left:0.0000in; tabstops:2.000000in/L0; margin-bottom:0.0000in; text-indent:0.0000in; line-height:1.000000; text-align:left; margin-right:0.0000in"><c type="date" props="font-family:Liberation Serif; font-size:12pt; color:000000; lang:en-US; text-position:normal; font-weight:normal; font-style:normal; text-decoration:none">Other General Numbers (123) 555-1212</c></p> + </section> + <data> + <d name="C:\Documents and Settings\jgz\Desktop\bookopen.bmp_0" mime-type="image/png" base64="yes"> +diff -auNpr abiword-2.8.6/user/wp/templates/Fax-Coversheet.awt abiword-libre-2.8.6/user/wp/templates/Fax-Coversheet.awt +--- abiword-2.8.6/user/wp/templates/Fax-Coversheet.awt 2009-05-22 07:15:24.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/Fax-Coversheet.awt 2011-07-02 15:37:20.027378813 -0300 +@@ -10,26 +10,26 @@ + + <pagesize pagetype="Letter" orientation="portrait" width="8.500000" height="11.000000" units="in" page-scale="1.000000"/> + <section props="page-margin-footer:0.5in; page-margin-header:0.5in"> +-<p style="Normal" props="tabstops:6.2500in/R0,2.7500in/L0,4.5000in/C0"><c props="lang:en-US"> </c><c props="bgcolor:000000; lang:en-US; font-size:24pt; font-family:Arial Black; color:ffffff"> Company Name </c><c props="bgcolor:000000; lang:en-US; font-size:12pt; font-family:Arial Black; color:ffffff"></c></p> +-<p style="Normal"><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Arial; color:000000">Company Address Line 1</c></p> +-<p style="Normal"><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Arial; color:000000">Company Address Line 2</c></p> +-<p style="Normal"><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Arial; color:000000">Company Address Line 3</c></p> +-<p style="Normal"><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Arial; color:000000"></c></p> +-<p style="Normal"><c props="bgcolor:ffffff; lang:en-US; font-size:72pt; font-family:Arial Black; color:000000">FAX</c></p> +-<p style="Normal" props="tabstops:4.0000in/L0,0.7500in/L0,3.2500in/L0"><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Arial; font-size:12pt">TO: </c><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Arial; color:000000"> </c><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Arial; font-size:12pt">From: </c></p> +-<p style="Normal" props="tabstops:4.0000in/L0,0.7500in/L0,3.2500in/L0"><image dataid="C:\Documents and Settings\jgz\Desktop\bar.bmp_0" props="height:0.15in; width:8.23in"/><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Arial; font-size:12pt">Fax: </c><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Arial; color:000000"> </c><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Arial; font-size:12pt">Pages: </c></p> +-<p style="Normal" props="tabstops:4.0000in/L0,0.7500in/L0,3.2500in/L0"><image dataid="C:\Documents and Settings\jgz\Desktop\bar.bmp_1" props="height:0.15in; width:8.23in"/><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Arial; font-size:12pt">Phone: </c><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Arial; color:000000"> </c><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Arial; font-size:12pt">Date: </c><field type="date_mdy" param=""></field></p> ++<p style="Normal" props="tabstops:6.2500in/R0,2.7500in/L0,4.5000in/C0"><c props="lang:en-US"> </c><c props="bgcolor:000000; lang:en-US; font-size:24pt; font-family:Liberation Sans Bold; color:ffffff"> Company Name </c><c props="bgcolor:000000; lang:en-US; font-size:12pt; font-family:Liberation Sans Bold; color:ffffff"></c></p> ++<p style="Normal"><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Liberation Sans; color:000000">Company Address Line 1</c></p> ++<p style="Normal"><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Liberation Sans; color:000000">Company Address Line 2</c></p> ++<p style="Normal"><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Liberation Sans; color:000000">Company Address Line 3</c></p> ++<p style="Normal"><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Liberation Sans; color:000000"></c></p> ++<p style="Normal"><c props="bgcolor:ffffff; lang:en-US; font-size:72pt; font-family:Liberation Sans Bold; color:000000">FAX</c></p> ++<p style="Normal" props="tabstops:4.0000in/L0,0.7500in/L0,3.2500in/L0"><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Liberation Sans; font-size:12pt">TO: </c><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Liberation Sans; color:000000"> </c><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Liberation Sans; font-size:12pt">From: </c></p> ++<p style="Normal" props="tabstops:4.0000in/L0,0.7500in/L0,3.2500in/L0"><image dataid="C:\Documents and Settings\jgz\Desktop\bar.bmp_0" props="height:0.15in; width:8.23in"/><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Liberation Sans; font-size:12pt">Fax: </c><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Liberation Sans; color:000000"> </c><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Liberation Sans; font-size:12pt">Pages: </c></p> ++<p style="Normal" props="tabstops:4.0000in/L0,0.7500in/L0,3.2500in/L0"><image dataid="C:\Documents and Settings\jgz\Desktop\bar.bmp_1" props="height:0.15in; width:8.23in"/><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Liberation Sans; font-size:12pt">Phone: </c><c props="bgcolor:ffffff; lang:en-US; font-size:12pt; font-family:Liberation Sans; color:000000"> </c><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Liberation Sans; font-size:12pt">Date: </c><field type="date_mdy" param=""></field></p> + <p style="Normal" props="tabstops:4.0000in/L0,0.7500in/L0,3.2500in/L0; margin-left:0.0000in"><image dataid="C:\Documents and Settings\jgz\Desktop\bar.bmp_2" props="height:0.15in; width:8.23in"/></p> + <p style="Normal" props="tabstops:4.0000in/L0,0.7500in/L0,3.2500in/L0; margin-left:0.0000in"><c type="date_mdy" param="" props="font-weight:bold">Re: </c><c type="date_mdy" param=""> </c><c type="date_mdy" param="" props="font-weight:bold">CC: </c></p> + <p style="Normal" props="tabstops:4.0000in/L0,0.7500in/L0,3.2500in/L0; margin-left:0.0000in"><c type="date_mdy" param="" props="font-weight:bold"></c><image dataid="C:\Documents and Settings\jgz\Desktop\bar.bmp_4" props="height:0.15in; width:8.23in"/></p> + <p style="Normal" props="tabstops:2.2500in/L0,1.0000in/L0,3.7500in/L0,5.0000in/L0; margin-left:0.0000in"></p> +-<p style="Normal" props="tabstops:2.2500in/L0,1.0000in/L0,3.7500in/L0,5.0000in/L0; margin-left:0.0000in"><c type="date_mdy" param="" props="font-family:Symbol; font-weight:bold"></c><c type="date_mdy" param="" props="font-family:Times New Roman; font-weight:bold"> </c><c type="date_mdy" param="" props="font-weight:bold">Urgent </c><c type="date_mdy" param="" props="font-family:Symbol; font-weight:bold"> </c><c type="date_mdy" param="" props="font-weight:bold">For Review </c><c type="date_mdy" param="" props="font-family:Symbol; font-weight:bold"></c><c type="date_mdy" param="" props="font-family:Times New Roman; font-weight:bold"> </c><c type="date_mdy" param="" props="font-weight:bold">Please Comment </c><c type="date_mdy" param="" props="font-family:Symbol; font-weight:bold"></c><c type="date_mdy" param="" props="font-family:Times New Roman; font-weight:bold"> </c><c type="date_mdy" param="" props="font-weight:bold">Please Reply </c><c type="date_mdy" param="" props="font-family:Symbol; font-weight:bold"></c><c type="date_mdy" param="" props="font-family:Times New Roman; font-weight:bold"> </c><c type="date_mdy" param="" props="font-weight:bold">Please Recycle</c><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Arial; font-size:12pt"> </c></p> +-<p style="Normal" props="tabstops:2.2500in/L0,1.0000in/L0,3.7500in/L0,5.0000in/L0; margin-left:0.0000in"><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Arial; font-size:12pt"></c><image dataid="C:\Documents and Settings\jgz\Desktop\bar.bmp_5" props="height:0.15in; width:8.23in"/></p> ++<p style="Normal" props="tabstops:2.2500in/L0,1.0000in/L0,3.7500in/L0,5.0000in/L0; margin-left:0.0000in"><c type="date_mdy" param="" props="font-family:Symbol; font-weight:bold"></c><c type="date_mdy" param="" props="font-family:Liberation Serif; font-weight:bold"> </c><c type="date_mdy" param="" props="font-weight:bold">Urgent </c><c type="date_mdy" param="" props="font-family:Symbol; font-weight:bold"> </c><c type="date_mdy" param="" props="font-weight:bold">For Review </c><c type="date_mdy" param="" props="font-family:Symbol; font-weight:bold"></c><c type="date_mdy" param="" props="font-family:Liberation Serif; font-weight:bold"> </c><c type="date_mdy" param="" props="font-weight:bold">Please Comment </c><c type="date_mdy" param="" props="font-family:Symbol; font-weight:bold"></c><c type="date_mdy" param="" props="font-family:Liberation Serif; font-weight:bold"> </c><c type="date_mdy" param="" props="font-weight:bold">Please Reply </c><c type="date_mdy" param="" props="font-family:Symbol; font-weight:bold"></c><c type="date_mdy" param="" props="font-family:Liberation Serif; font-weight:bold"> </c><c type="date_mdy" param="" props="font-weight:bold">Please Recycle</c><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Liberation Sans; font-size:12pt"> </c></p> ++<p style="Normal" props="tabstops:2.2500in/L0,1.0000in/L0,3.7500in/L0,5.0000in/L0; margin-left:0.0000in"><c props="bgcolor:ffffff; lang:en-US; font-weight:bold; color:000000; font-family:Liberation Sans; font-size:12pt"></c><image dataid="C:\Documents and Settings\jgz\Desktop\bar.bmp_5" props="height:0.15in; width:8.23in"/></p> + <p style="Normal"></p> + <p style="Normal"></p> +-<p style="Normal" props="text-align:center"><c props="font-family:Arial; text-decoration:underline; color:000000; lang:en-US; bgcolor:ffffff; font-weight:bold; font-size:16pt">Comments</c></p> ++<p style="Normal" props="text-align:center"><c props="font-family:Liberation Sans; text-decoration:underline; color:000000; lang:en-US; bgcolor:ffffff; font-weight:bold; font-size:16pt">Comments</c></p> + <p style="Normal" props="margin-left:0.0000in"></p> +-<p style="Normal" props="margin-left:0.0000in"><c props="font-family:Arial; color:000000; font-size:10pt; text-position:normal; lang:en-US; bgcolor:ffffff; font-weight:normal; font-style:normal; text-decoration:none">This text should the replaced with your comments about the fax and any </c><c props="font-family:Arial; bgcolor:ffffff; font-size:10pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">additional</c><c props="font-family:Arial; color:000000; font-size:10pt; text-position:normal; lang:en-US; bgcolor:ffffff; font-weight:normal; font-style:normal; text-decoration:none"> comment to the receiver. </c></p> ++<p style="Normal" props="margin-left:0.0000in"><c props="font-family:Liberation Sans; color:000000; font-size:10pt; text-position:normal; lang:en-US; bgcolor:ffffff; font-weight:normal; font-style:normal; text-decoration:none">This text should the replaced with your comments about the fax and any </c><c props="font-family:Liberation Sans; bgcolor:ffffff; font-size:10pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">additional</c><c props="font-family:Liberation Sans; color:000000; font-size:10pt; text-position:normal; lang:en-US; bgcolor:ffffff; font-weight:normal; font-style:normal; text-decoration:none"> comment to the receiver. </c></p> + </section> + <data> + <d name="C:\Documents and Settings\jgz\Desktop\bar.bmp_0" mime-type="image/png" base64="yes"> +diff -auNpr abiword-2.8.6/user/wp/templates/Friendly-Letter.awt abiword-libre-2.8.6/user/wp/templates/Friendly-Letter.awt +--- abiword-2.8.6/user/wp/templates/Friendly-Letter.awt 2009-05-22 07:15:27.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/Friendly-Letter.awt 2011-07-02 15:37:20.023376813 -0300 +@@ -16,12 +16,12 @@ + <version id="1" started="1096736888" uid="a22a447e-1495-11d9-9525-9e1170ef822d" auto="0"/> + </history> + <styles> +-<s followedby="Return Address Section" name="Return Address Section" basedon="Normal" type="P" props="font-weight:normal; font-family:Times New Roman; margin-top:0pt; font-style:normal; margin-left:4.5000in; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0.0000in; color:000000; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> +-<s type="P" name="Normal" followedby="Current Settings" props="text-indent:0in; margin-top:0pt; margin-left:0pt; font-stretch:normal; line-height:1.0; text-align:left; bgcolor:transparent; lang:en-US; margin-bottom:0pt; text-decoration:none; font-weight:normal; font-variant:normal; color:000000; text-position:normal; font-size:12pt; margin-right:0pt; font-style:normal; widows:2; font-family:Times New Roman"/> +-<s followedby="Letter Body" name="Greeting" basedon="Normal" type="P" props="font-weight:normal; font-family:Times New Roman; margin-top:12pt; font-style:normal; margin-left:0pt; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> +-<s followedby="Letter Body" name="Letter Body" basedon="Normal" type="P" props="font-weight:normal; font-family:Times New Roman; margin-top:12pt; font-style:normal; margin-left:0pt; lang:en-US; font-variant:normal; text-indent:0.5000in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> +-<s followedby="Signature Line" name="Closing" basedon="Normal" type="P" props="font-weight:normal; font-family:Times New Roman; margin-top:12pt; font-style:normal; margin-left:4.5000in; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:48pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> +-<s type="P" name="Signature Line" basedon="Return Address Section" followedby="Block Text" props="font-weight:normal; font-family:Times New Roman; margin-top:0pt; font-style:normal; margin-left:4.5000in; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0.0000in; color:000000; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> ++<s followedby="Return Address Section" name="Return Address Section" basedon="Normal" type="P" props="font-weight:normal; font-family:Liberation Serif; margin-top:0pt; font-style:normal; margin-left:4.5000in; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0.0000in; color:000000; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> ++<s type="P" name="Normal" followedby="Current Settings" props="text-indent:0in; margin-top:0pt; margin-left:0pt; font-stretch:normal; line-height:1.0; text-align:left; bgcolor:transparent; lang:en-US; margin-bottom:0pt; text-decoration:none; font-weight:normal; font-variant:normal; color:000000; text-position:normal; font-size:12pt; margin-right:0pt; font-style:normal; widows:2; font-family:Liberation Serif"/> ++<s followedby="Letter Body" name="Greeting" basedon="Normal" type="P" props="font-weight:normal; font-family:Liberation Serif; margin-top:12pt; font-style:normal; margin-left:0pt; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> ++<s followedby="Letter Body" name="Letter Body" basedon="Normal" type="P" props="font-weight:normal; font-family:Liberation Serif; margin-top:12pt; font-style:normal; margin-left:0pt; lang:en-US; font-variant:normal; text-indent:0.5000in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> ++<s followedby="Signature Line" name="Closing" basedon="Normal" type="P" props="font-weight:normal; font-family:Liberation Serif; margin-top:12pt; font-style:normal; margin-left:4.5000in; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:48pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> ++<s type="P" name="Signature Line" basedon="Return Address Section" followedby="Block Text" props="font-weight:normal; font-family:Liberation Serif; margin-top:0pt; font-style:normal; margin-left:4.5000in; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0.0000in; color:000000; font-size:12pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> + </styles> + <pagesize pagetype="Letter" orientation="portrait" width="8.500000" height="11.000000" units="in" page-scale="1.000000"/> + <section props="page-margin-footer:0.5in; page-margin-header:0.5in"> +diff -auNpr abiword-2.8.6/user/wp/templates/Memo.awt abiword-libre-2.8.6/user/wp/templates/Memo.awt +--- abiword-2.8.6/user/wp/templates/Memo.awt 2009-05-22 07:15:31.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/Memo.awt 2011-07-02 15:37:19.915322814 -0300 +@@ -14,10 +14,10 @@ + <m key="abiword.date_last_changed">Fri Mar 12 21:07:56 2004</m> + </metadata> + <styles> +-<s followedby="Current Settings" name="Normal" type="P" props="font-weight:normal; font-family:Times New Roman; margin-top:0pt; font-style:normal; margin-left:0pt; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:10pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:10pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> +-<s followedby="Normal" name="Heading 3" basedon="Normal" type="P" props="font-weight:normal; margin-top:22pt; keep-with-next:1; margin-bottom:3pt; font-family:Arial; font-size:10pt"/> +-<s followedby="Normal" name="Heading 2" basedon="Normal" type="P" props="margin-top:22pt; font-size:10pt; margin-bottom:3pt; text-align:right; font-style:italic; font-weight:normal; font-family:Arial; keep-with-next:1"/> +-<s type="P" name="Heading 1" basedon="Normal" followedby="Normal" props="keep-with-next:1; margin-top:22pt; font-weight:bold; margin-bottom:3pt; font-family:Arial; font-size:17pt"/> ++<s followedby="Current Settings" name="Normal" type="P" props="font-weight:normal; font-family:Liberation Serif; margin-top:0pt; font-style:normal; margin-left:0pt; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:10pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:10pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> ++<s followedby="Normal" name="Heading 3" basedon="Normal" type="P" props="font-weight:normal; margin-top:22pt; keep-with-next:1; margin-bottom:3pt; font-family:Liberation Sans; font-size:10pt"/> ++<s followedby="Normal" name="Heading 2" basedon="Normal" type="P" props="margin-top:22pt; font-size:10pt; margin-bottom:3pt; text-align:right; font-style:italic; font-weight:normal; font-family:Liberation Sans; keep-with-next:1"/> ++<s type="P" name="Heading 1" basedon="Normal" followedby="Normal" props="keep-with-next:1; margin-top:22pt; font-weight:bold; margin-bottom:3pt; font-family:Liberation Sans; font-size:17pt"/> + </styles> + <lists> + <l id="1002" parentid="0" type="5" start-value="0" list-delim="%L" list-decimal="NULL"/> +@@ -59,10 +59,10 @@ + <p style="Normal">The box that this text is in uses AbiWord's table support to draw the border. You can either allow the border to fit to the size of the text as it is now, or press <ENTER> repeatedly at the end of your memo to expand the border to fill the rest of the page.</p> + <p style="Normal">Don't forget to change the header and footer before printing! If you wish to save this memo for later and ensure that the date above is saved as today's (not automatically updating), select it and type the desired date text over it.</p> + <p style="Normal">The styles used in this document for correct conversion, import, export, and HTML are:</p> +-<p level="1" listid="1002" parentid="0" style="Normal" props="start-value:0; text-indent:-0.3000in; list-style:Bullet List; field-font:Symbol; margin-left:0.5000in"><c props="list-tag:1003"></c><field type="list_label" props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"> Heading 1 for Company Name</c></p> +-<p level="1" listid="1002" parentid="0" style="Normal" props="start-value:0; text-indent:-0.3000in; list-style:Bullet List; field-font:Symbol; margin-left:0.5000in"><c props="width:0in; list-tag:1004; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; lang:en-US; font-variant:normal; color:000000; list-style:Bullet List; bgcolor:transparent; font-size:10pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></c><field type="list_label" props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"> Heading 2 for Slogan</c></p> +-<p level="1" listid="1002" parentid="0" style="Normal" props="start-value:0; text-indent:-0.3000in; list-style:Bullet List; field-font:Symbol; margin-left:0.5000in"><c props="width:0in; list-tag:1005; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; lang:en-US; font-variant:normal; color:000000; list-style:Bullet List; bgcolor:transparent; font-size:10pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></c><field type="list_label" props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"> Heading 3 for "Date:", "To:", etc.</c></p> +-<p level="1" listid="1002" parentid="0" style="Normal" props="start-value:0; text-indent:-0.3000in; list-style:Bullet List; field-font:Symbol; margin-left:0.5000in"><c props="width:0in; list-tag:1006; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; lang:en-US; font-variant:normal; color:000000; list-style:Bullet List; bgcolor:transparent; font-size:10pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></c><field type="list_label" props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"></field><c props="width:0in; font-family:Times New Roman; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"> Normal for body text</c></p> ++<p level="1" listid="1002" parentid="0" style="Normal" props="start-value:0; text-indent:-0.3000in; list-style:Bullet List; field-font:Symbol; margin-left:0.5000in"><c props="list-tag:1003"></c><field type="list_label" props="width:0in; font-family:Liberation Serif; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"></field><c props="width:0in; font-family:Liberation Serif; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"> Heading 1 for Company Name</c></p> ++<p level="1" listid="1002" parentid="0" style="Normal" props="start-value:0; text-indent:-0.3000in; list-style:Bullet List; field-font:Symbol; margin-left:0.5000in"><c props="width:0in; list-tag:1004; font-family:Liberation Serif; display:inline; font-style:normal; font-weight:normal; lang:en-US; font-variant:normal; color:000000; list-style:Bullet List; bgcolor:transparent; font-size:10pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></c><field type="list_label" props="width:0in; font-family:Liberation Serif; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"></field><c props="width:0in; font-family:Liberation Serif; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"> Heading 2 for Slogan</c></p> ++<p level="1" listid="1002" parentid="0" style="Normal" props="start-value:0; text-indent:-0.3000in; list-style:Bullet List; field-font:Symbol; margin-left:0.5000in"><c props="width:0in; list-tag:1005; font-family:Liberation Serif; display:inline; font-style:normal; font-weight:normal; lang:en-US; font-variant:normal; color:000000; list-style:Bullet List; bgcolor:transparent; font-size:10pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></c><field type="list_label" props="width:0in; font-family:Liberation Serif; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"></field><c props="width:0in; font-family:Liberation Serif; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"> Heading 3 for "Date:", "To:", etc.</c></p> ++<p level="1" listid="1002" parentid="0" style="Normal" props="start-value:0; text-indent:-0.3000in; list-style:Bullet List; field-font:Symbol; margin-left:0.5000in"><c props="width:0in; list-tag:1006; font-family:Liberation Serif; display:inline; font-style:normal; font-weight:normal; lang:en-US; font-variant:normal; color:000000; list-style:Bullet List; bgcolor:transparent; font-size:10pt; homogeneous:1; text-decoration:none; height:0in; text-position:normal; font-stretch:normal"></c><field type="list_label" props="width:0in; font-family:Liberation Serif; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"></field><c props="width:0in; font-family:Liberation Serif; display:inline; font-style:normal; font-weight:normal; bgcolor:transparent; lang:en-US; text-position:normal; homogeneous:1; color:000000; font-variant:normal; text-decoration:none; font-size:10pt; height:0in; list-style:Bullet List; font-stretch:normal"> Normal for body text</c></p> + </cell> + </table> + <p style="Normal"></p> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt abiword-libre-2.8.6/user/wp/templates/normal.awt +--- abiword-2.8.6/user/wp/templates/normal.awt 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt 2011-07-02 15:37:20.019374813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + + <pagesize pagetype="Letter" orientation="portrait" width="8.500000" height="11.000000" units="in" page-scale="1.000000"/> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-am_ET abiword-libre-2.8.6/user/wp/templates/normal.awt-am_ET +--- abiword-2.8.6/user/wp/templates/normal.awt-am_ET 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-am_ET 2011-07-02 15:37:20.015372813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-ar abiword-libre-2.8.6/user/wp/templates/normal.awt-ar +--- abiword-2.8.6/user/wp/templates/normal.awt-ar 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-ar 2011-07-02 15:37:20.019374813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-ar_EG abiword-libre-2.8.6/user/wp/templates/normal.awt-ar_EG +--- abiword-2.8.6/user/wp/templates/normal.awt-ar_EG 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-ar_EG 2011-07-02 15:37:19.979354813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-ar_SA abiword-libre-2.8.6/user/wp/templates/normal.awt-ar_SA +--- abiword-2.8.6/user/wp/templates/normal.awt-ar_SA 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-ar_SA 2011-07-02 15:37:19.999364813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-bg_BG abiword-libre-2.8.6/user/wp/templates/normal.awt-bg_BG +--- abiword-2.8.6/user/wp/templates/normal.awt-bg_BG 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-bg_BG 2011-07-02 15:37:19.975352813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-ca_ES abiword-libre-2.8.6/user/wp/templates/normal.awt-ca_ES +--- abiword-2.8.6/user/wp/templates/normal.awt-ca_ES 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-ca_ES 2011-07-02 15:37:19.923326814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-cs_CZ abiword-libre-2.8.6/user/wp/templates/normal.awt-cs_CZ +--- abiword-2.8.6/user/wp/templates/normal.awt-cs_CZ 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-cs_CZ 2011-07-02 15:37:20.003366813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-da_DK abiword-libre-2.8.6/user/wp/templates/normal.awt-da_DK +--- abiword-2.8.6/user/wp/templates/normal.awt-da_DK 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-da_DK 2011-07-02 15:37:19.995362813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-de abiword-libre-2.8.6/user/wp/templates/normal.awt-de +--- abiword-2.8.6/user/wp/templates/normal.awt-de 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-de 2011-07-02 15:37:20.007368813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-de_AT abiword-libre-2.8.6/user/wp/templates/normal.awt-de_AT +--- abiword-2.8.6/user/wp/templates/normal.awt-de_AT 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-de_AT 2011-07-02 15:37:19.975352813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-de_CH abiword-libre-2.8.6/user/wp/templates/normal.awt-de_CH +--- abiword-2.8.6/user/wp/templates/normal.awt-de_CH 2008-04-09 21:48:42.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-de_CH 2011-07-02 15:37:19.979354813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-de_DE abiword-libre-2.8.6/user/wp/templates/normal.awt-de_DE +--- abiword-2.8.6/user/wp/templates/normal.awt-de_DE 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-de_DE 2011-07-02 15:37:20.035382813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-div_MV abiword-libre-2.8.6/user/wp/templates/normal.awt-div_MV +--- abiword-2.8.6/user/wp/templates/normal.awt-div_MV 2007-01-14 12:52:46.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-div_MV 2011-07-02 15:37:20.071400813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; lang:div-MV; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; lang:div-MV; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-el_GR abiword-libre-2.8.6/user/wp/templates/normal.awt-el_GR +--- abiword-2.8.6/user/wp/templates/normal.awt-el_GR 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-el_GR 2011-07-02 15:37:20.063396813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-en_AU abiword-libre-2.8.6/user/wp/templates/normal.awt-en_AU +--- abiword-2.8.6/user/wp/templates/normal.awt-en_AU 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-en_AU 2011-07-02 15:37:19.903316814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-en_CA abiword-libre-2.8.6/user/wp/templates/normal.awt-en_CA +--- abiword-2.8.6/user/wp/templates/normal.awt-en_CA 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-en_CA 2011-07-02 15:37:20.079404813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="Letter" orientation="portrait" width="216.000000" height="279.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-en_GB abiword-libre-2.8.6/user/wp/templates/normal.awt-en_GB +--- abiword-2.8.6/user/wp/templates/normal.awt-en_GB 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-en_GB 2011-07-02 15:37:19.911320814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-en_IE abiword-libre-2.8.6/user/wp/templates/normal.awt-en_IE +--- abiword-2.8.6/user/wp/templates/normal.awt-en_IE 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-en_IE 2011-07-02 15:37:20.075402813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-en_NZ abiword-libre-2.8.6/user/wp/templates/normal.awt-en_NZ +--- abiword-2.8.6/user/wp/templates/normal.awt-en_NZ 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-en_NZ 2011-07-02 15:37:20.067398813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-en_ZA abiword-libre-2.8.6/user/wp/templates/normal.awt-en_ZA +--- abiword-2.8.6/user/wp/templates/normal.awt-en_ZA 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-en_ZA 2011-07-02 15:37:20.079404813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-es abiword-libre-2.8.6/user/wp/templates/normal.awt-es +--- abiword-2.8.6/user/wp/templates/normal.awt-es 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-es 2011-07-02 15:37:19.903316814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-es_AR abiword-libre-2.8.6/user/wp/templates/normal.awt-es_AR +--- abiword-2.8.6/user/wp/templates/normal.awt-es_AR 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-es_AR 2011-07-02 15:37:20.039384813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-es_ES abiword-libre-2.8.6/user/wp/templates/normal.awt-es_ES +--- abiword-2.8.6/user/wp/templates/normal.awt-es_ES 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-es_ES 2011-07-02 15:37:20.063396813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-es_IR abiword-libre-2.8.6/user/wp/templates/normal.awt-es_IR +--- abiword-2.8.6/user/wp/templates/normal.awt-es_IR 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-es_IR 2011-07-02 15:37:20.011370813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-es_MX abiword-libre-2.8.6/user/wp/templates/normal.awt-es_MX +--- abiword-2.8.6/user/wp/templates/normal.awt-es_MX 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-es_MX 2011-07-02 15:37:19.919324814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-fa_IR abiword-libre-2.8.6/user/wp/templates/normal.awt-fa_IR +--- abiword-2.8.6/user/wp/templates/normal.awt-fa_IR 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-fa_IR 2011-07-02 15:37:20.003366813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-fi_FI abiword-libre-2.8.6/user/wp/templates/normal.awt-fi_FI +--- abiword-2.8.6/user/wp/templates/normal.awt-fi_FI 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-fi_FI 2011-07-02 15:37:19.999364813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-fr abiword-libre-2.8.6/user/wp/templates/normal.awt-fr +--- abiword-2.8.6/user/wp/templates/normal.awt-fr 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-fr 2011-07-02 15:37:20.019374813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-fr_BE abiword-libre-2.8.6/user/wp/templates/normal.awt-fr_BE +--- abiword-2.8.6/user/wp/templates/normal.awt-fr_BE 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-fr_BE 2011-07-02 15:37:20.075402813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-fr_CA abiword-libre-2.8.6/user/wp/templates/normal.awt-fr_CA +--- abiword-2.8.6/user/wp/templates/normal.awt-fr_CA 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-fr_CA 2011-07-02 15:37:19.907318814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="Letter" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-fr_CH abiword-libre-2.8.6/user/wp/templates/normal.awt-fr_CH +--- abiword-2.8.6/user/wp/templates/normal.awt-fr_CH 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-fr_CH 2011-07-02 15:37:19.899314814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-fr_FR abiword-libre-2.8.6/user/wp/templates/normal.awt-fr_FR +--- abiword-2.8.6/user/wp/templates/normal.awt-fr_FR 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-fr_FR 2011-07-02 15:37:19.983356813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-gl_ES abiword-libre-2.8.6/user/wp/templates/normal.awt-gl_ES +--- abiword-2.8.6/user/wp/templates/normal.awt-gl_ES 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-gl_ES 2011-07-02 15:37:20.023376813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-he abiword-libre-2.8.6/user/wp/templates/normal.awt-he +--- abiword-2.8.6/user/wp/templates/normal.awt-he 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-he 2011-07-02 15:37:19.995362813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-he_IL abiword-libre-2.8.6/user/wp/templates/normal.awt-he_IL +--- abiword-2.8.6/user/wp/templates/normal.awt-he_IL 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-he_IL 2011-07-02 15:37:19.979354813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-hu_HU abiword-libre-2.8.6/user/wp/templates/normal.awt-hu_HU +--- abiword-2.8.6/user/wp/templates/normal.awt-hu_HU 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-hu_HU 2011-07-02 15:37:19.979354813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-it_IT abiword-libre-2.8.6/user/wp/templates/normal.awt-it_IT +--- abiword-2.8.6/user/wp/templates/normal.awt-it_IT 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-it_IT 2011-07-02 15:37:19.911320814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-ja_JP abiword-libre-2.8.6/user/wp/templates/normal.awt-ja_JP +--- abiword-2.8.6/user/wp/templates/normal.awt-ja_JP 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-ja_JP 2011-07-02 15:37:20.027378813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-lt_LT abiword-libre-2.8.6/user/wp/templates/normal.awt-lt_LT +--- abiword-2.8.6/user/wp/templates/normal.awt-lt_LT 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-lt_LT 2011-07-02 15:37:19.899314814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-nb_NO abiword-libre-2.8.6/user/wp/templates/normal.awt-nb_NO +--- abiword-2.8.6/user/wp/templates/normal.awt-nb_NO 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-nb_NO 2011-07-02 15:37:19.999364813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-nl_NL abiword-libre-2.8.6/user/wp/templates/normal.awt-nl_NL +--- abiword-2.8.6/user/wp/templates/normal.awt-nl_NL 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-nl_NL 2011-07-02 15:37:19.911320814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-nn_NO abiword-libre-2.8.6/user/wp/templates/normal.awt-nn_NO +--- abiword-2.8.6/user/wp/templates/normal.awt-nn_NO 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-nn_NO 2011-07-02 15:37:20.031380813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-pl_PL abiword-libre-2.8.6/user/wp/templates/normal.awt-pl_PL +--- abiword-2.8.6/user/wp/templates/normal.awt-pl_PL 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-pl_PL 2011-07-02 15:37:20.011370813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-ps abiword-libre-2.8.6/user/wp/templates/normal.awt-ps +--- abiword-2.8.6/user/wp/templates/normal.awt-ps 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-ps 2011-07-02 15:37:20.035382813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-pt_BR abiword-libre-2.8.6/user/wp/templates/normal.awt-pt_BR +--- abiword-2.8.6/user/wp/templates/normal.awt-pt_BR 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-pt_BR 2011-07-02 15:37:19.915322814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-pt_PT abiword-libre-2.8.6/user/wp/templates/normal.awt-pt_PT +--- abiword-2.8.6/user/wp/templates/normal.awt-pt_PT 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-pt_PT 2011-07-02 15:37:20.035382813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-ru abiword-libre-2.8.6/user/wp/templates/normal.awt-ru +--- abiword-2.8.6/user/wp/templates/normal.awt-ru 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-ru 2011-07-02 15:37:19.907318814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-ru_RU abiword-libre-2.8.6/user/wp/templates/normal.awt-ru_RU +--- abiword-2.8.6/user/wp/templates/normal.awt-ru_RU 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-ru_RU 2011-07-02 15:37:19.919324814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-sk_SK abiword-libre-2.8.6/user/wp/templates/normal.awt-sk_SK +--- abiword-2.8.6/user/wp/templates/normal.awt-sk_SK 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-sk_SK 2011-07-02 15:37:20.075402813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-sl abiword-libre-2.8.6/user/wp/templates/normal.awt-sl +--- abiword-2.8.6/user/wp/templates/normal.awt-sl 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-sl 2011-07-02 15:37:20.031380813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-sv abiword-libre-2.8.6/user/wp/templates/normal.awt-sv +--- abiword-2.8.6/user/wp/templates/normal.awt-sv 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-sv 2011-07-02 15:37:20.015372813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-sv_SE abiword-libre-2.8.6/user/wp/templates/normal.awt-sv_SE +--- abiword-2.8.6/user/wp/templates/normal.awt-sv_SE 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-sv_SE 2011-07-02 15:37:20.067398813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-syr abiword-libre-2.8.6/user/wp/templates/normal.awt-syr +--- abiword-2.8.6/user/wp/templates/normal.awt-syr 2007-01-14 12:52:46.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-syr 2011-07-02 15:37:20.079404813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; lang:syr; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; lang:syr; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-tr abiword-libre-2.8.6/user/wp/templates/normal.awt-tr +--- abiword-2.8.6/user/wp/templates/normal.awt-tr 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-tr 2011-07-02 15:37:19.903316814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-tr_TR abiword-libre-2.8.6/user/wp/templates/normal.awt-tr_TR +--- abiword-2.8.6/user/wp/templates/normal.awt-tr_TR 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-tr_TR 2011-07-02 15:37:19.911320814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-uk_UA abiword-libre-2.8.6/user/wp/templates/normal.awt-uk_UA +--- abiword-2.8.6/user/wp/templates/normal.awt-uk_UA 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-uk_UA 2011-07-02 15:37:20.003366813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-ur_PK abiword-libre-2.8.6/user/wp/templates/normal.awt-ur_PK +--- abiword-2.8.6/user/wp/templates/normal.awt-ur_PK 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-ur_PK 2011-07-02 15:37:20.067398813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-yi abiword-libre-2.8.6/user/wp/templates/normal.awt-yi +--- abiword-2.8.6/user/wp/templates/normal.awt-yi 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-yi 2011-07-02 15:37:19.919324814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-zh_CN abiword-libre-2.8.6/user/wp/templates/normal.awt-zh_CN +--- abiword-2.8.6/user/wp/templates/normal.awt-zh_CN 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-zh_CN 2011-07-02 15:37:20.015372813 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/normal.awt-zh_TW abiword-libre-2.8.6/user/wp/templates/normal.awt-zh_TW +--- abiword-2.8.6/user/wp/templates/normal.awt-zh_TW 2007-01-20 13:20:58.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/normal.awt-zh_TW 2011-07-02 15:37:19.907318814 -0300 +@@ -9,7 +9,7 @@ + <!-- ===================================================================== --> + + <styles> +-<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Times New Roman; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> ++<s type="P" name="Normal" basedon="" followedby="Current Settings" props="font-family:Liberation Serif; margin-top:0pt; font-variant:normal; margin-left:0pt; text-indent:0in; widows:2; font-style:normal; font-weight:normal; text-decoration:none; color:000000; line-height:1.0; text-align:left; margin-bottom:0pt; text-position:normal; margin-right:0pt; bgcolor:transparent; font-size:12pt; font-stretch:normal"/> + </styles> + <pagesize pagetype="A4" orientation="portrait" width="210.000000" height="297.000000" units="mm" page-scale="1.000000"/> + <section props="page-margin-right:1.0000in; page-margin-footer:0.5000in; page-margin-header:0.5000in; page-margin-left:1.0000in; page-margin-top:1.0000in; page-margin-bottom:1.0000in"> +diff -auNpr abiword-2.8.6/user/wp/templates/Press-Release.awt abiword-libre-2.8.6/user/wp/templates/Press-Release.awt +--- abiword-2.8.6/user/wp/templates/Press-Release.awt 2009-05-22 07:15:33.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/Press-Release.awt 2011-07-02 15:37:20.071400813 -0300 +@@ -16,19 +16,19 @@ + <version id="3" started="1080258930" uid="0c5a8b0e-7ec0-11d8-92e5-d7901b3e7f1a" auto="0"/> + </history> + <styles> +-<s followedby="Current Settings" name="Normal" type="P" props="font-weight:normal; font-family:Arial; margin-top:0pt; font-style:normal; margin-left:0.5000in; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0.5000in; color:000000; font-size:12pt; line-height:1.000000; text-align:left; widows:2; font-stretch:normal"/> +-<s followedby="Normal" name="Heading 1" basedon="Normal" type="P" props="margin-top:0.3056in; font-size:17pt; margin-bottom:0.0417in; line-height:1.000000; font-weight:bold; keep-with-next:1; font-family:Arial"/> +-<s followedby="Press Release" name="Press Release" basedon="Normal" type="P" props="font-weight:normal; font-family:Arial; margin-top:0.1667in; font-style:normal; margin-left:0.5000in; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0.5000in; color:000000; font-size:12pt; line-height:1.000000; text-align:left; widows:2; font-stretch:normal"/> +-<s followedby="About Companies" name="About Companies" basedon="Press Release" type="P" props="font-weight:normal; font-family:Arial; margin-top:0.1111in; font-style:normal; margin-left:0.7500in; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0.7500in; color:000000; font-size:10pt; line-height:1.000000; text-align:justify; widows:2; font-stretch:normal"/> ++<s followedby="Current Settings" name="Normal" type="P" props="font-weight:normal; font-family:Liberation Sans; margin-top:0pt; font-style:normal; margin-left:0.5000in; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0.5000in; color:000000; font-size:12pt; line-height:1.000000; text-align:left; widows:2; font-stretch:normal"/> ++<s followedby="Normal" name="Heading 1" basedon="Normal" type="P" props="margin-top:0.3056in; font-size:17pt; margin-bottom:0.0417in; line-height:1.000000; font-weight:bold; keep-with-next:1; font-family:Liberation Sans"/> ++<s followedby="Press Release" name="Press Release" basedon="Normal" type="P" props="font-weight:normal; font-family:Liberation Sans; margin-top:0.1667in; font-style:normal; margin-left:0.5000in; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0.5000in; color:000000; font-size:12pt; line-height:1.000000; text-align:left; widows:2; font-stretch:normal"/> ++<s followedby="About Companies" name="About Companies" basedon="Press Release" type="P" props="font-weight:normal; font-family:Liberation Sans; margin-top:0.1111in; font-style:normal; margin-left:0.7500in; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0.7500in; color:000000; font-size:10pt; line-height:1.000000; text-align:justify; widows:2; font-stretch:normal"/> + <s type="P" name="Block Text" basedon="Normal" followedby="Current Settings" props="line-height:1.000000; margin-bottom:0.0833in; margin-right:1.0000in; margin-left:1.0000in"/> + <s type="P" name="Box List" followedby="Current Settings" props="list-delim:%L; list-decimal:NULL; field-color:transparent; start-value:0; margin-left:0.5000in; field-font:Dingbats; list-style:Box List; line-height:1.000000; text-indent:-0.300000in"/> + <s type="P" name="Bullet List" followedby="Current Settings" props="list-delim:%L; list-decimal:NULL; field-color:transparent; start-value:0; margin-left:0.5000in; field-font:Symbol; list-style:Bullet List; line-height:1.000000; text-indent:-0.300000in"/> +-<s followedby="Normal" name="Chapter Heading" basedon="Numbered Heading 1" type="P" props="list-delim:Chapter %L.; field-color:transparent; start-value:1; margin-left:0.0in; field-font:Arial; list-style:Numbered List; line-height:1.000000; text-indent:0.0in; tabstops:1.100000in/L0"/> ++<s followedby="Normal" name="Chapter Heading" basedon="Numbered Heading 1" type="P" props="list-delim:Chapter %L.; field-color:transparent; start-value:1; margin-left:0.0in; field-font:Liberation Sans; list-style:Numbered List; line-height:1.000000; text-indent:0.0in; tabstops:1.100000in/L0"/> + <s followedby="Normal" name="Contents 1" basedon="Normal" type="P" props="list-delim:%L.; list-decimal:.; field-color:transparent; start-value:1; margin-left:0.5000in; field-font:NULL; list-style:Numbered List; line-height:1.000000; text-indent:-0.300000in"/> + <s followedby="Normal" name="Contents 2" basedon="Normal" type="P" props="list-delim:%L.; list-decimal:.; field-color:transparent; start-value:1; margin-left:1.0000in; field-font:NULL; list-style:Numbered List; line-height:1.000000; text-indent:-0.300000in"/> + <s followedby="Normal" name="Contents 3" basedon="Normal" type="P" props="list-delim:%L.; list-decimal:.; field-color:transparent; start-value:1; margin-left:1.5000in; field-font:NULL; list-style:Numbered List; line-height:1.000000; text-indent:-0.300000in"/> + <s followedby="Normal" name="Contents 4" basedon="Normal" type="P" props="list-delim:%L.; list-decimal:.; field-color:transparent; start-value:1; margin-left:2.0000in; field-font:NULL; list-style:Numbered List; line-height:1.000000; text-indent:-0.300000in"/> +-<s followedby="Normal" name="Contents Header" basedon="Normal" type="P" props="margin-top:0.1667in; font-size:16pt; margin-bottom:0.0833in; text-align:center; line-height:1.000000; font-weight:bold; keep-with-next:1; font-family:Arial"/> ++<s followedby="Normal" name="Contents Header" basedon="Normal" type="P" props="margin-top:0.1667in; font-size:16pt; margin-bottom:0.0833in; text-align:center; line-height:1.000000; font-weight:bold; keep-with-next:1; font-family:Liberation Sans"/> + <s type="P" name="Dashed List" followedby="Current Settings" props="list-delim:%L; list-decimal:NULL; field-color:transparent; start-value:0; margin-left:0.5000in; field-font:NULL; list-style:Dashed List; line-height:1.000000; text-indent:-0.300000in"/> + <s type="P" name="Diamond List" followedby="Current Settings" props="list-delim:%L; list-decimal:NULL; field-color:transparent; start-value:0; margin-left:0.5000in; field-font:Dingbats; list-style:Diamond List; line-height:1.000000; text-indent:-0.300000in"/> + <s type="C" name="Endnote Reference" basedon="None" followedby="Current Settings" props="text-position:superscript; line-height:1.000000; font-size:10pt"/> +@@ -36,19 +36,19 @@ + <s type="C" name="Footnote Reference" basedon="None" followedby="Current Settings" props="text-position:superscript; line-height:1.000000; font-size:10pt"/> + <s type="C" name="Footnote Text" basedon="Normal" followedby="Current Settings" props="text-position:normal; line-height:1.000000; font-size:10pt"/> + <s type="P" name="Hand List" followedby="Current Settings" props="list-delim:%L; list-decimal:NULL; field-color:transparent; start-value:0; margin-left:0.5000in; field-font:Dingbats; list-style:Hand List; line-height:1.000000; text-indent:-0.300000in"/> +-<s followedby="Normal" name="Heading 2" basedon="Normal" type="P" props="margin-top:0.3056in; font-size:14pt; margin-bottom:0.0417in; line-height:1.000000; font-weight:bold; keep-with-next:1; font-family:Arial"/> +-<s followedby="Normal" name="Heading 3" basedon="Normal" type="P" props="margin-top:0.3056in; font-size:12pt; margin-bottom:0.0417in; line-height:1.000000; font-weight:bold; keep-with-next:1; font-family:Arial"/> +-<s followedby="Normal" name="Heading 4" basedon="Normal" type="P" props="margin-top:0.3056in; font-size:12pt; margin-bottom:0.0417in; line-height:1.000000; font-weight:bold; keep-with-next:1; font-family:Arial"/> ++<s followedby="Normal" name="Heading 2" basedon="Normal" type="P" props="margin-top:0.3056in; font-size:14pt; margin-bottom:0.0417in; line-height:1.000000; font-weight:bold; keep-with-next:1; font-family:Liberation Sans"/> ++<s followedby="Normal" name="Heading 3" basedon="Normal" type="P" props="margin-top:0.3056in; font-size:12pt; margin-bottom:0.0417in; line-height:1.000000; font-weight:bold; keep-with-next:1; font-family:Liberation Sans"/> ++<s followedby="Normal" name="Heading 4" basedon="Normal" type="P" props="margin-top:0.3056in; font-size:12pt; margin-bottom:0.0417in; line-height:1.000000; font-weight:bold; keep-with-next:1; font-family:Liberation Sans"/> + <s type="P" name="Heart List" followedby="Current Settings" props="list-delim:%L; list-decimal:NULL; field-color:transparent; start-value:0; margin-left:0.5000in; field-font:Dingbats; list-style:Heart List; line-height:1.000000; text-indent:-0.300000in"/> + <s type="P" name="Implies List" followedby="Current Settings" props="list-delim:%L; list-decimal:NULL; field-color:transparent; start-value:0; margin-left:0.5000in; field-font:Symbol; list-style:Implies List; line-height:1.000000; text-indent:-0.300000in"/> + <s type="P" name="Lower Case List" basedon="Numbered List" followedby="Current Settings" props="list-delim:%L); list-decimal:.; field-color:transparent; start-value:1; margin-left:0.5000in; field-font:NULL; list-style:Lower Case List; line-height:1.000000; text-indent:-0.300000in"/> + <s type="P" name="Lower Roman List" basedon="Normal" followedby="Current Settings" props="list-delim:%L; list-decimal:.; field-color:transparent; start-value:1; margin-left:0.5000in; field-font:NULL; list-style:Lower Roman List; line-height:1.000000; text-indent:-0.300000in"/> +-<s followedby="Normal" name="Numbered Heading 1" basedon="Heading 1" type="P" props="list-delim:%L.; field-color:transparent; start-value:1; margin-left:0.0in; field-font:Arial; list-style:Numbered List; line-height:1.000000; text-indent:0.0in; tabstops:0.299306in/L0"/> +-<s followedby="Normal" name="Numbered Heading 2" basedon="Heading 2" type="P" props="list-delim:%L.; field-color:transparent; start-value:1; margin-left:0.0in; field-font:Arial; list-style:Numbered List; line-height:1.000000; text-indent:0.0in; tabstops:0.299306in/L0"/> +-<s followedby="Normal" name="Numbered Heading 3" basedon="Heading 3" type="P" props="list-delim:%L.; field-color:transparent; start-value:1; margin-left:0.0in; field-font:Arial; list-style:Numbered List; line-height:1.000000; text-indent:0.0in; tabstops:0.299306in/L0"/> ++<s followedby="Normal" name="Numbered Heading 1" basedon="Heading 1" type="P" props="list-delim:%L.; field-color:transparent; start-value:1; margin-left:0.0in; field-font:Liberation Sans; list-style:Numbered List; line-height:1.000000; text-indent:0.0in; tabstops:0.299306in/L0"/> ++<s followedby="Normal" name="Numbered Heading 2" basedon="Heading 2" type="P" props="list-delim:%L.; field-color:transparent; start-value:1; margin-left:0.0in; field-font:Liberation Sans; list-style:Numbered List; line-height:1.000000; text-indent:0.0in; tabstops:0.299306in/L0"/> ++<s followedby="Normal" name="Numbered Heading 3" basedon="Heading 3" type="P" props="list-delim:%L.; field-color:transparent; start-value:1; margin-left:0.0in; field-font:Liberation Sans; list-style:Numbered List; line-height:1.000000; text-indent:0.0in; tabstops:0.299306in/L0"/> + <s type="P" name="Numbered List" followedby="Current Settings" props="list-delim:%L.; list-decimal:.; field-color:transparent; start-value:1; margin-left:0.5000in; field-font:NULL; list-style:Numbered List; line-height:1.000000; text-indent:-0.300000in"/> + <s type="P" name="Plain Text" basedon="Normal" followedby="Current Settings" props="font-family:Courier New; line-height:1.000000"/> +-<s followedby="Normal" name="Section Heading" basedon="Numbered Heading 1" type="P" props="list-delim:Section %L.; field-color:transparent; start-value:1; margin-left:0.0in; field-font:Arial; list-style:Numbered List; line-height:1.000000; text-indent:0.0in; tabstops:1.100000in/L0"/> ++<s followedby="Normal" name="Section Heading" basedon="Numbered Heading 1" type="P" props="list-delim:Section %L.; field-color:transparent; start-value:1; margin-left:0.0in; field-font:Liberation Sans; list-style:Numbered List; line-height:1.000000; text-indent:0.0in; tabstops:1.100000in/L0"/> + <s type="P" name="Square List" followedby="Current Settings" props="list-delim:%L; list-decimal:NULL; field-color:transparent; start-value:0; margin-left:0.5000in; field-font:Dingbats; list-style:Square List; line-height:1.000000; text-indent:-0.300000in"/> + <s type="P" name="Star List" followedby="Current Settings" props="list-delim:%L; list-decimal:NULL; field-color:transparent; start-value:0; margin-left:0.5000in; field-font:Dingbats; list-style:Star List; line-height:1.000000; text-indent:-0.300000in"/> + <s type="P" name="Tick List" followedby="Current Settings" props="list-delim:%L; list-decimal:NULL; field-color:transparent; start-value:0; margin-left:0.5000in; field-font:Dingbats; list-style:Tick List; line-height:1.000000; text-indent:-0.300000in"/> +@@ -77,7 +77,7 @@ + <p style="Normal"><c props="lang:en-US"></c></p> + </cell> + <cell props="bot-attach:3; left-attach:0; right-attach:1; top-attach:2"> +-<p style="Normal" props="text-align:center"><c props="font-family:Arial; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">FOR IMMEDIATE RELEASE</c></p> ++<p style="Normal" props="text-align:center"><c props="font-family:Liberation Sans; font-size:12pt; color:000000; text-decoration:none; text-position:normal; font-weight:normal; font-style:normal; lang:en-US">FOR IMMEDIATE RELEASE</c></p> + </cell> + </table> + <p></p> +diff -auNpr abiword-2.8.6/user/wp/templates/Resume.awt abiword-libre-2.8.6/user/wp/templates/Resume.awt +--- abiword-2.8.6/user/wp/templates/Resume.awt 2009-05-22 07:15:36.000000000 -0300 ++++ abiword-libre-2.8.6/user/wp/templates/Resume.awt 2011-07-02 15:37:20.031380813 -0300 +@@ -14,11 +14,11 @@ + <m key="abiword.date_last_changed">Fri Mar 12 22:08:25 2004</m> + </metadata> + <styles> +-<s followedby="Current Settings" name="Normal" type="P" props="font-weight:normal; font-family:Arial; margin-top:0pt; font-style:normal; margin-left:0pt; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:9pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> +-<s followedby="Normal" name="Heading 1" basedon="Normal" type="P" props="font-weight:bold; margin-top:22pt; keep-with-next:1; margin-bottom:3pt; font-family:Arial; font-size:20pt"/> +-<s followedby="Normal" name="Heading 2" basedon="Normal" type="P" props="margin-top:22pt; font-size:11pt; margin-bottom:3pt; font-weight:normal; text-align:right; font-family:Arial; keep-with-next:1"/> +-<s followedby="Normal" name="Heading 3" basedon="Normal" type="P" props="font-weight:bold; margin-top:22pt; keep-with-next:1; margin-bottom:3pt; font-family:Arial; font-size:9pt"/> +-<s followedby="Heading 3" name="Brief" basedon="Normal" type="P" props="font-weight:normal; font-family:Arial; margin-top:0pt; font-style:normal; margin-left:0.2500in; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:9pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:9pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> ++<s followedby="Current Settings" name="Normal" type="P" props="font-weight:normal; font-family:Liberation Sans; margin-top:0pt; font-style:normal; margin-left:0pt; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:0pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:9pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> ++<s followedby="Normal" name="Heading 1" basedon="Normal" type="P" props="font-weight:bold; margin-top:22pt; keep-with-next:1; margin-bottom:3pt; font-family:Liberation Sans; font-size:20pt"/> ++<s followedby="Normal" name="Heading 2" basedon="Normal" type="P" props="margin-top:22pt; font-size:11pt; margin-bottom:3pt; font-weight:normal; text-align:right; font-family:Liberation Sans; keep-with-next:1"/> ++<s followedby="Normal" name="Heading 3" basedon="Normal" type="P" props="font-weight:bold; margin-top:22pt; keep-with-next:1; margin-bottom:3pt; font-family:Liberation Sans; font-size:9pt"/> ++<s followedby="Heading 3" name="Brief" basedon="Normal" type="P" props="font-weight:normal; font-family:Liberation Sans; margin-top:0pt; font-style:normal; margin-left:0.2500in; lang:en-US; font-variant:normal; text-indent:0in; margin-bottom:9pt; text-decoration:none; bgcolor:transparent; margin-right:0pt; color:000000; font-size:9pt; line-height:1.0; text-align:left; widows:2; font-stretch:normal"/> + </styles> + <pagesize pagetype="Letter" orientation="portrait" width="8.500000" height="11.000000" units="in" page-scale="1.000000"/> + <section header="0" props="page-margin-footer:0.5in; page-margin-header:0.4375in; page-margin-top:1.1250in"> diff --git a/libre/abuse-libre/PKGBUILD b/libre/abuse-libre/PKGBUILD index d8e5d8e4f..d822004e6 100644 --- a/libre/abuse-libre/PKGBUILD +++ b/libre/abuse-libre/PKGBUILD @@ -7,7 +7,7 @@ pkgname=abuse-libre pkgver=0.8 pkgrel=1 pkgdesc='A side-scroller action game that pits you against ruthless alien killers. Without unfree "Claudio"' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://abuse.zoy.org/' license=('GPL' 'custom:PublicDomain') depends=('gcc-libs' 'libgl' 'sdl' 'sdl_mixer') diff --git a/libre/aspell-pl-libre/PKGBUILD b/libre/aspell-pl-libre/PKGBUILD index f932a95d1..692b7b6eb 100644 --- a/libre/aspell-pl-libre/PKGBUILD +++ b/libre/aspell-pl-libre/PKGBUILD @@ -7,7 +7,7 @@ pkgname=aspell-pl-libre pkgver=20110907 pkgrel=1 pkgdesc="Polish dictionary for aspell" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.sjp.pl/slownik/en/" license=('GPL' 'LGPL' 'MPL') depends=('aspell') diff --git a/libre/audacious-plugins-libre/PKGBUILD b/libre/audacious-plugins-libre/PKGBUILD index 2d2aba652..0b6af2cd2 100644 --- a/libre/audacious-plugins-libre/PKGBUILD +++ b/libre/audacious-plugins-libre/PKGBUILD @@ -6,7 +6,7 @@ pkgname=audacious-plugins-libre pkgver=2.5.1 pkgrel=2 pkgdesc='Plugins for Audacious without unfree plugins' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://audacious-media-player.org/' license=('GPL') provides=("audacious-plugins=$pkgver") diff --git a/libre/audacity-libre/PKGBUILD b/libre/audacity-libre/PKGBUILD index a0c1b154d..cbb0aad47 100644 --- a/libre/audacity-libre/PKGBUILD +++ b/libre/audacity-libre/PKGBUILD @@ -5,7 +5,7 @@ pkgname=audacity-libre pkgver=1.3.13 pkgrel=1 pkgdesc="A program that lets you manipulate digital audio waveforms, libre" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://audacity.sourceforge.net/" license=('GPL') depends=('libvorbis' 'libmad' 'libid3tag' 'wxgtk' 'libsamplerate' 'lame' 'hicolor-icon-theme' diff --git a/libre/aufs2-libre/PKGBUILD b/libre/aufs2-libre/PKGBUILD index bd177ef9c..f12df73ae 100644 --- a/libre/aufs2-libre/PKGBUILD +++ b/libre/aufs2-libre/PKGBUILD @@ -7,7 +7,7 @@ pkgrel=4 #_kernver=${pkgver%_*}-LIBRE _kernver=2.6.38-LIBRE pkgdesc="Another Unionfs Implementation for the Linux-Libre kernel" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://aufs.sourceforge.net/" license=('GPL2') depends=('kernel26-libre>=2.6.38' 'kernel26-libre<2.6.39') diff --git a/libre/crosstool-ng/PKGBUILD b/libre/crosstool-ng/PKGBUILD index 8843af016..c836e7a24 100644 --- a/libre/crosstool-ng/PKGBUILD +++ b/libre/crosstool-ng/PKGBUILD @@ -5,7 +5,7 @@ pkgname=crosstool-ng pkgver=1.13.0 pkgrel=1 pkgdesc="A versatile cross toolchain generator (eglibc addons patch)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://crosstool-ng.org/" license=(GPL2) depends=('cvs' 'curl') diff --git a/libre/ffmpeg-libre/PKGBUILD b/libre/ffmpeg-libre/PKGBUILD index 41c332dca..a0c4e3aba 100644 --- a/libre/ffmpeg-libre/PKGBUILD +++ b/libre/ffmpeg-libre/PKGBUILD @@ -8,14 +8,16 @@ pkgname=ffmpeg-libre pkgver=20110330 pkgrel=1 pkgdesc="Complete and free Internet live audio and video broadcasting solution for Linux/Unix. Libre version without faac" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://ffmpeg.org/" license=('GPL') depends=('bzip2' 'lame' 'sdl' 'libvorbis' 'xvidcore' 'zlib' 'x264' 'libtheora' 'opencore-amr' 'alsa-lib' 'libvdpau' 'libxfixes' 'schroedinger' 'libvpx' 'libva' 'openjpeg') makedepends=('yasm' 'git') #git clone git://git.videolan.org/ffmpeg.git -source=(ftp://ftp.archlinux.org/other/ffmpeg/ffmpeg-${pkgver}.tar.xz) -md5sums=('dd682a876a496b9f9ae8afb3b3b70389') +source=(ftp://ftp.archlinux.org/other/ffmpeg/ffmpeg-${pkgver}.tar.xz + ffmpeg-loongson.patch) +md5sums=('dd682a876a496b9f9ae8afb3b3b70389' + 'a178dab43d73388543689df4828fb2d2') #source=(http://ffmpeg.org/releases//releases/ffmpeg-${pkgver}.tar.bz2) provides=("ffmpeg=$pkgver") conflicts=('ffmpeg') diff --git a/libre/file-roller-libre/PKGBUILD b/libre/file-roller-libre/PKGBUILD index fc7ebe757..bf9c3b705 100644 --- a/libre/file-roller-libre/PKGBUILD +++ b/libre/file-roller-libre/PKGBUILD @@ -6,7 +6,7 @@ pkgname=file-roller-libre pkgver=3.2.0 pkgrel=1 pkgdesc="Archive manipulator for GNOME" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'dconf' 'nautilus') makedepends=('intltool' 'gnome-doc-utils' 'pkg-config' 'nautilus' 'libsm') diff --git a/libre/ghostscript-libre/PKGBUILD b/libre/ghostscript-libre/PKGBUILD index fb41750cf..80a61b2af 100644 --- a/libre/ghostscript-libre/PKGBUILD +++ b/libre/ghostscript-libre/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ghostscript-libre pkgver=9.02 pkgrel=2 pkgdesc="An interpreter for the PostScript language without non-free files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') #non free files removed depends=('libxt' 'libcups' 'fontconfig' 'jasper' 'zlib' 'libpng' 'libjpeg' 'libtiff') makedepends=('gtk2' 'gnutls') diff --git a/libre/grub2/PKGBUILD b/libre/grub2/PKGBUILD index 9f445eb1d..91b59e5e0 100644 --- a/libre/grub2/PKGBUILD +++ b/libre/grub2/PKGBUILD @@ -15,7 +15,7 @@ pkgbase="grub2" pkgver='1.99' pkgrel=4 url="http://www.gnu.org/software/grub/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL3') epoch=1 makedepends=('bdf-unifont' 'python2' 'xz' 'autogen' 'texinfo' 'help2man' 'gettext' 'device-mapper') diff --git a/libre/gstreamer0.10-bad-libre/PKGBUILD b/libre/gstreamer0.10-bad-libre/PKGBUILD index 59fbf021b..c5dfd46d1 100644 --- a/libre/gstreamer0.10-bad-libre/PKGBUILD +++ b/libre/gstreamer0.10-bad-libre/PKGBUILD @@ -6,15 +6,17 @@ pkgbase=gstreamer0.10-bad-libre pkgname=('gstreamer0.10-bad-libre' 'gstreamer0.10-bad-libre-plugins') pkgver=0.10.22 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('LGPL' 'GPL') makedepends=('pkgconfig' 'gstreamer0.10-base>=0.10.34' 'xvidcore' 'libdca' 'bzip2' 'libdc1394' 'neon' 'musicbrainz' 'faad2' 'libmms' 'libcdaudio' 'libmpcdec' 'mjpegtools' 'libdvdnav' 'libmodplug' 'jasper' 'liblrdf' 'libofa' 'soundtouch' 'libvdpau' 'schroedinger' 'libass' 'libvpx' 'gsm' 'libgme' 'rtmpdump' 'libsndfile' 'librsvg') url="http://gstreamer.freedesktop.org/" options=(!libtool !emptydirs) -source=(${url}/src/gst-plugins-bad/gst-plugins-bad-${pkgver}.tar.bz2) +source=(${url}/src/gst-plugins-bad/gst-plugins-bad-${pkgver}.tar.bz2 + mpeg2enc-mjpegtools-2.0.patch) build() { cd "${srcdir}/gst-plugins-bad-${pkgver}" + patch -Np1 -i "${srcdir}/mpeg2enc-mjpegtools-2.0.patch" ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ --disable-static --enable-experimental \ --with-package-name="GStreamer Bad Plugins (Parabola)" \ @@ -51,4 +53,5 @@ package_gstreamer0.10-bad-libre-plugins() { make -C sys DESTDIR="${pkgdir}" install make -C gst-libs DESTDIR="${pkgdir}" uninstall } -md5sums=('9a2acee1f386f71247003d0d7090fb1c') +md5sums=('9a2acee1f386f71247003d0d7090fb1c' + 'e3068957abab56b474abf183adce7da3') diff --git a/libre/gstreamer0.10-bad-libre/mpeg2enc-mjpegtools-2.0.patch b/libre/gstreamer0.10-bad-libre/mpeg2enc-mjpegtools-2.0.patch new file mode 100644 index 000000000..771d75743 --- /dev/null +++ b/libre/gstreamer0.10-bad-libre/mpeg2enc-mjpegtools-2.0.patch @@ -0,0 +1,26 @@ +From 407b02578689804dc6bc47e53be9e87cc1b25597 Mon Sep 17 00:00:00 2001 +From: Götz Waschk <waschk@mandriva.org> +Date: Tue, 24 May 2011 13:42:44 +0000 +Subject: mpeg2enc: support mjpegtools 2.0 + +This adds conditional includes for the renamed headers in mjpegtools 2.0. +Fixes: #650970. +--- +diff --git a/ext/mpeg2enc/gstmpeg2encoder.cc b/ext/mpeg2enc/gstmpeg2encoder.cc +index acfda50..31f1a30 100644 +--- a/ext/mpeg2enc/gstmpeg2encoder.cc ++++ b/ext/mpeg2enc/gstmpeg2encoder.cc +@@ -26,7 +26,10 @@ + + #include <mpegconsts.h> + #include <quantize.hh> +-#if GST_MJPEGTOOLS_API >= 10900 ++#if GST_MJPEGTOOLS_API >= 10903 ++#include <ontheflyratectlpass1.hh> ++#include <ontheflyratectlpass2.hh> ++#elif GST_MJPEGTOOLS_API >= 10900 + #include <ontheflyratectl.hh> + #include <pass1ratectl.hh> + #include <pass2ratectl.hh> +-- +cgit v0.9.0.2-2-gbebe diff --git a/libre/hardinfo/PKGBUILD b/libre/hardinfo/PKGBUILD index 869d2f52a..73dffcdbd 100644 --- a/libre/hardinfo/PKGBUILD +++ b/libre/hardinfo/PKGBUILD @@ -5,7 +5,7 @@ pkgname=hardinfo pkgver=0.5.1 pkgrel=2.1 pkgdesc="A system information and benchmark tool." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://hardinfo.berlios.de/wiki/index.php/Main_Page" license=('GPL2') depends=('gtk2' 'libsoup' 'gnutls') diff --git a/libre/icecat/PKGBUILD b/libre/icecat/PKGBUILD index 9ab8d6c71..05507bbaa 100644 --- a/libre/icecat/PKGBUILD +++ b/libre/icecat/PKGBUILD @@ -83,6 +83,8 @@ build() { #patch -Np1 -i "$srcdir/mozilla-firefox-1.0-lang.patch" #patch -Np1 -i "$srcdir/firefox-version.patch" + [ "$CARCH" = "mips64el" ] && echo "ac_add_options --disable-ipc" >> .mozconfig + # Fix PRE_RELEASE_SUFFIX sed -i '/^PRE_RELEASE_SUFFIX := ""/s/ ""//' \ browser/base/Makefile.in diff --git a/libre/initscripts/PKGBUILD b/libre/initscripts/PKGBUILD index da4e33e37..3c5212895 100644 --- a/libre/initscripts/PKGBUILD +++ b/libre/initscripts/PKGBUILD @@ -8,7 +8,7 @@ pkgname=initscripts pkgver=2011.10.3 pkgrel=1 pkgdesc="System initialization/bootup scripts (Parabola branding)" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://parabolagnulinux.org" license=('GPL2') groups=('base') diff --git a/libre/kdeutils-libre/PKGBUILD b/libre/kdeutils-libre/PKGBUILD index 4337580e3..45679d919 100644 --- a/libre/kdeutils-libre/PKGBUILD +++ b/libre/kdeutils-libre/PKGBUILD @@ -18,7 +18,7 @@ pkgname=('kdeutils-ark-libre' 'kdeutils-sweeper') pkgver=4.7.2 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://www.kde.org' license=('GPL' 'LGPL' 'FDL') groups=('kde' 'kdeutils') diff --git a/libre/kernel26-libre-lts/PKGBUILD b/libre/kernel26-libre-lts/PKGBUILD index acbdde5ad..2bf359698 100644 --- a/libre/kernel26-libre-lts/PKGBUILD +++ b/libre/kernel26-libre-lts/PKGBUILD @@ -9,7 +9,7 @@ _basekernel=2.6.32 _preset=kernel26-lts.preset pkgver=${_basekernel}.42 pkgrel=1 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://linux-libre.fsfla.org" source=(http://www.fsfla.org/svnwiki/selibre/linux-libre/download/releases/${pkgver}-libre2/linux-${pkgver}-libre2.tar.bz2 diff --git a/libre/kernel26-libre/Kbuild b/libre/kernel26-libre/Kbuild new file mode 100644 index 000000000..8a9d7dceb --- /dev/null +++ b/libre/kernel26-libre/Kbuild @@ -0,0 +1,19 @@ +# Fail on warnings - also for files referenced in subdirs +# -Werror can be disabled for specific files using: +# CFLAGS_<file.o> := -Wno-error +subdir-ccflags-y := -Wno-error + +# platform specific definitions +include arch/mips/Kbuild.platforms +obj-y := $(platform-y) + +# make clean traverses $(obj-) without having included .config, so +# everything ends up here +obj- := $(platform-) + +# mips object files +# The object files are linked as core-y files would be linked + +obj-y += kernel/ +obj-y += mm/ +obj-y += math-emu/ diff --git a/libre/kernel26-libre/Kbuild.platforms b/libre/kernel26-libre/Kbuild.platforms new file mode 100644 index 000000000..90a226888 --- /dev/null +++ b/libre/kernel26-libre/Kbuild.platforms @@ -0,0 +1,6 @@ +# All platforms listed in alphabetic order + +platforms += loongson + +# include the platform specific files +include $(patsubst %, $(srctree)/arch/mips/%/Platform, $(platforms)) diff --git a/libre/lame-libre/PKGBUILD b/libre/lame-libre/PKGBUILD index 205d81c1f..66d50a1bf 100644 --- a/libre/lame-libre/PKGBUILD +++ b/libre/lame-libre/PKGBUILD @@ -6,7 +6,7 @@ pkgname=lame-libre pkgver=3.98.4 pkgrel=3 pkgdesc="An MP3 encoder and graphical frame analyzer" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://lame.sourceforge.net/" depends=('ncurses') makedepends=('nasm') diff --git a/libre/lesspipe-libre/PKGBUILD b/libre/lesspipe-libre/PKGBUILD index 48d5ebe0f..22c6ecbd8 100644 --- a/libre/lesspipe-libre/PKGBUILD +++ b/libre/lesspipe-libre/PKGBUILD @@ -8,7 +8,7 @@ pkgver=1.71 pkgrel=1 pkgdesc='an input filter for the pager less' depends=('less') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') optdepends=('rpmextract: support for rpm files' 'fastjar: support for jar files' diff --git a/libre/libquicktime-libre/PKGBUILD b/libre/libquicktime-libre/PKGBUILD index c6e4ab588..d3f51d911 100644 --- a/libre/libquicktime-libre/PKGBUILD +++ b/libre/libquicktime-libre/PKGBUILD @@ -6,7 +6,7 @@ _pkgname=libquicktime pkgver=1.2.2 pkgrel=3 pkgdesc="A library for reading and writing quicktime files (no unfree faac support)." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://libquicktime.sourceforge.net/" depends=('gtk2' 'ffmpeg' 'alsa-lib' 'libxv' 'libgl' 'libxaw' 'x264' 'faad2') diff --git a/libre/libretools/PKGBUILD b/libre/libretools/PKGBUILD index 4eafae894..69b3bc5d4 100644 --- a/libre/libretools/PKGBUILD +++ b/libre/libretools/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: fauno <fauno@kiwwwi.com.ar> pkgbase=libretools -pkgname=(libretools libretools-pr libretools-mips64el) +pkgname=(libretools libretools-mips64el) pkgver=$(date -u +%Y%m%d) pkgrel=1 pkgdesc="Scripts for easing Parabola's tasks" diff --git a/libre/liferea-libre/PKGBUILD b/libre/liferea-libre/PKGBUILD index 8ee55b4ba..76c631b72 100644 --- a/libre/liferea-libre/PKGBUILD +++ b/libre/liferea-libre/PKGBUILD @@ -7,7 +7,7 @@ pkgname=liferea-libre pkgver=1.6.6b pkgrel=1 pkgdesc="A desktop news aggregator for online news feeds and weblogs" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://liferea.sourceforge.net/" provides=("liferea=$pkgver") replaces=('liferea') diff --git a/libre/linux-libre/Kbuild b/libre/linux-libre/Kbuild new file mode 100644 index 000000000..8a9d7dceb --- /dev/null +++ b/libre/linux-libre/Kbuild @@ -0,0 +1,19 @@ +# Fail on warnings - also for files referenced in subdirs +# -Werror can be disabled for specific files using: +# CFLAGS_<file.o> := -Wno-error +subdir-ccflags-y := -Wno-error + +# platform specific definitions +include arch/mips/Kbuild.platforms +obj-y := $(platform-y) + +# make clean traverses $(obj-) without having included .config, so +# everything ends up here +obj- := $(platform-) + +# mips object files +# The object files are linked as core-y files would be linked + +obj-y += kernel/ +obj-y += mm/ +obj-y += math-emu/ diff --git a/libre/linux-libre/Kbuild.platforms b/libre/linux-libre/Kbuild.platforms new file mode 100644 index 000000000..90a226888 --- /dev/null +++ b/libre/linux-libre/Kbuild.platforms @@ -0,0 +1,6 @@ +# All platforms listed in alphabetic order + +platforms += loongson + +# include the platform specific files +include $(patsubst %, $(srctree)/arch/mips/%/Platform, $(platforms)) diff --git a/libre/linux-libre/PKGBUILD b/libre/linux-libre/PKGBUILD index 062efe27e..123c463d4 100644 --- a/libre/linux-libre/PKGBUILD +++ b/libre/linux-libre/PKGBUILD @@ -11,17 +11,20 @@ _kernelname=${pkgname#linux-libre} _basekernel=3.1 pkgver=${_basekernel} pkgrel=2 -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://linux-libre.fsfla.org/" license=('GPL2') makedepends=('xmlto' 'docbook-xsl') options=('!strip') source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/${_basekernel}-libre/linux-${_basekernel}-libre.tar.xz" # "http://linux-libre.fsfla.org/pub/linux-libre/releases/${pkgver}-libre/patch-${_basekernel}-libre-${pkgver}-libre.xz" + "http://www.linux-libre.fsfla.org/pub/linux-libre/lemote/gnewsense/pool/linux-patches-${pkgver}-libre-lemote_0lxo_mipsel.tar.bz2" # the main kernel config files 'config.i686' 'config.x86_64' # standard config files for mkinitcpio ramdisk "${pkgname}.preset" + 'Kbuild' + 'Kbuild.platforms' 'boot-logo.patch' 'change-default-console-loglevel.patch') @@ -38,7 +41,18 @@ build() { # (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227) patch -Np1 -i "${srcdir}/change-default-console-loglevel.patch" - cat "${srcdir}/config.${CARCH}" > ./.config # simpler + if [ "$CARCH" == "mips64el" ]; then + sed -i "s|^EXTRAVERSION.*|EXTRAVERSION =-libre|" Makefile + msg2 "Adding loongson-community patches" + patch -Np1 -i "${srcdir}/${_basekernel}-*-loongson-community.patch" + patch -Np0 -i "${srcdir}/lxo-config.patch" + +# ensure N32 + sed -i "s|CONFIG_MIPS32_N32=.*|CONFIG_MIPS32_N32=y|g" ./.config + sed -i "s|CONFIG_LOCALVERSION=.*|CONFIG_LOCALVERSION=\"-LIBRE\"|g" ./.config + else + cat "${srcdir}/config.${CARCH}" > ./.config # simpler + fi if [ "${_kernelname}" != "" ]; then sed -i "s|CONFIG_LOCALVERSION=.*|CONFIG_LOCALVERSION=\"${_kernelname}\"|g" ./.config @@ -68,7 +82,11 @@ build() { yes "" | make config # build! - make ${MAKEFLAGS} bzImage modules + if [ "$CARCH" == "mips64el" ]; then + make ${MAKEFLAGS} vmlinuz modules + else + make ${MAKEFLAGS} bzImage modules + fi } package_linux-libre() { @@ -85,13 +103,19 @@ package_linux-libre() { cd "${srcdir}/linux-${_basekernel}" KARCH=x86 + [[ $CARCH = "mips64el" ]] && KARCH=mips # get kernel version _kernver="$(make kernelrelease)" mkdir -p "${pkgdir}"/{lib/modules,lib/firmware,boot} make INSTALL_MOD_PATH="${pkgdir}" modules_install - cp arch/$KARCH/boot/bzImage "${pkgdir}/boot/vmlinuz-${pkgname}" + + if [ "$CARCH" == "mips64el" ]; then + cp vmlinuz ${pkgdir}/boot/vmlinuz-${pkgname} + else + cp arch/$KARCH/boot/bzImage "${pkgdir}/boot/vmlinuz-${pkgname}" + fi # add vmlinux install -D -m644 vmlinux "${pkgdir}/usr/src/linux-${_kernver}/vmlinux" @@ -110,6 +134,13 @@ package_linux-libre() { -e "s|fallback_image=.*|fallback_image=\"/boot/initramfs-${pkgname}-fallback.img\"|g" \ -i "${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset" +# mkinitcpio 0.7 relies on bzImage to find the kernel version + if [ "$CARCH" == "mips64el" ]; then + sed \ + -e "s|ALL_kver=.*|ALL_kver=\"${_kernver}\"|g" \ + -i "${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset" + fi + # remove build and source links rm -f "${pkgdir}"/lib/modules/${_kernver}/{source,build} # remove the firmware @@ -129,6 +160,15 @@ package_linux-libre-headers() { conflicts=('kernel26-headers' 'kernel26-libre-headers' 'linux-headers') replaces=('kernel26-headers' 'kernel26-libre-headers' 'linux-headers') + KARCH=x86 + [[ $CARCH = "mips64el" ]] && KARCH=mips + +# In case of repackaging this is empty + if [ -z "${_kernver}" ]; then + cd ${srcdir}/linux-$pkgver + _kernver="$(make kernelrelease)" + fi + mkdir -p "${pkgdir}/lib/modules/${_kernver}" cd "${pkgdir}/lib/modules/${_kernver}" @@ -150,13 +190,19 @@ package_linux-libre-headers() { done # copy arch includes for external modules - mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/arch/x86" - cp -a arch/x86/include "${pkgdir}/usr/src/linux-${_kernver}/arch/x86/" + mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}" + cp -a "arch/${KARCH}/include" "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/" # copy files necessary for later builds cp Module.symvers "${pkgdir}/usr/src/linux-${_kernver}" cp -a scripts "${pkgdir}/usr/src/linux-${_kernver}" + if [ "$CARCH" = "mips64el" ]; then + cp -a "arch/${KARCH}/Kbuild" "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/" + cp -a "arch/${KARCH}/loongson" "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/" + cp -a "${srcdir}/Kbuild.platforms" "${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/" + fi + # fix permissions on scripts dir chmod og-w -R "${pkgdir}/usr/src/linux-${_kernver}/scripts" mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/.tmp_versions" @@ -251,7 +297,12 @@ package_linux-libre-headers() { done # remove unneeded architectures - rm -rf "${pkgdir}"/usr/src/linux-${_kernver}/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,microblaze,mn10300,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,xtensa} + rm -rf "${pkgdir}"/usr/src/linux-${_kernver}/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,microblaze,mn10300,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,xtensa} + if [ "$CARCH" = "mips64el" ]; then + rm -rf ${pkgdir}/usr/src/linux-${_kernver}/arch/x86 + else + rm -rf ${pkgdir}/usr/src/linux-${_kernver}/arch/mips + fi } package_linux-libre-docs() { @@ -270,18 +321,3 @@ package_linux-libre-docs() { # remove a file already in linux package rm -f "${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile" } -md5sums=('44e7bc20c235a193f9b6123a8d5e9509' - '8840c46301f6eb425b9ab456d1ca7b7f' - '8089b63fdecf93735f178eb2907ce61e' - '4cc90e12cab492c1d61183c47683bd52' - 'a8a3843046926eb7ab81312cd438c5c5' - '04b21c79df0a952c22d681dd4f4562df' - '263725f20c0b9eb9c353040792d644e5' - '9d3c56a4b999c8bfbd4018089a62f662') - -md5sums=('d73df15ab1d36fe3c102755d8f42117f' - 'a7cbd8c216a1f4c6068625c4dc746164' - '616e05f7436572a7e83500b5daa7e958' - 'a8a3843046926eb7ab81312cd438c5c5' - '04b21c79df0a952c22d681dd4f4562df' - '9d3c56a4b999c8bfbd4018089a62f662') diff --git a/libre/linux-libre/linux-libre.preset.mips64el b/libre/linux-libre/linux-libre.preset.mips64el new file mode 100644 index 000000000..7af90ba7a --- /dev/null +++ b/libre/linux-libre/linux-libre.preset.mips64el @@ -0,0 +1,14 @@ +# mkinitcpio preset file for the 'linux' package + +ALL_config="/etc/mkinitcpio.conf" +ALL_kver="/boot/vmlinuz-linux-libre" + +PRESETS=('default' 'fallback') + +#default_config="/etc/mkinitcpio.conf" +default_image="/boot/initramfs-linux-libre.img" +#default_options="" + +#fallback_config="/etc/mkinitcpio.conf" +fallback_image="/boot/initramfs-linux-libre-fallback.img" +fallback_options="-S autodetect" diff --git a/libre/mesa-demos-libre/PKGBUILD b/libre/mesa-demos-libre/PKGBUILD index 46f7a75e8..2e7d14fe3 100644 --- a/libre/mesa-demos-libre/PKGBUILD +++ b/libre/mesa-demos-libre/PKGBUILD @@ -4,7 +4,7 @@ pkgname='mesa-demos-libre' pkgver=8.0.1 pkgrel=1 -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') pkgdesc="Mesa demos and tools, libre" url="http://mesa3d.sourceforge.net" license=('custom') diff --git a/libre/mplayer-libre/PKGBUILD b/libre/mplayer-libre/PKGBUILD index 75184bbb8..8798778d5 100644 --- a/libre/mplayer-libre/PKGBUILD +++ b/libre/mplayer-libre/PKGBUILD @@ -11,6 +11,11 @@ arch=('i686' 'x86_64') makedepends=('libxxf86dga' 'libxxf86vm' 'libmad' 'cdparanoia' 'libxinerama' 'sdl' 'lame' 'libtheora' 'xvidcore' 'libmng' 'libxss' 'libgl' 'smbclient' 'aalib' 'jack' 'libcaca' 'x264' 'faad2' 'lirc-utils' 'libxvmc' 'enca' 'libvdpau' 'opencore-amr' 'libdca' 'a52dec' 'schroedinger' 'libvpx' 'speex' 'libpulse' 'fribidi' 'unzip' 'mesa' 'live-media' 'yasm' 'git' 'fontconfig' 'mpg123' 'ladspa' 'libass') +# no lirc +[ "$CARCH" = "mips64el" ] && \ +makedepends=('libxxf86dga' 'libxxf86vm' 'libmad' 'cdparanoia' 'libxinerama' 'sdl' 'lame' 'libtheora' 'xvidcore' 'libmng' 'libxss' 'libgl' 'smbclient' +'aalib' 'jack' 'libcaca' 'x264' 'faad2' 'libxvmc' 'enca' 'libvdpau' 'opencore-amr' 'libdca' 'a52dec' 'schroedinger' 'libvpx' 'speex' +'libpulse' 'fribidi' 'unzip' 'mesa' 'live-media' 'yasm' 'git' 'fontconfig' 'mpg123' 'ladspa' 'libass') license=('GPL') url="http://www.mplayerhq.hu/" options=(!buildflags !emptydirs !distcc) @@ -48,6 +53,10 @@ package_mplayer-libre() { depends=('desktop-file-utils' 'ttf-dejavu' 'enca' 'libxss' 'a52dec' 'libvpx' 'lirc-utils' 'x264' 'libmng' 'libdca' 'aalib' 'lame' 'fontconfig' 'libgl' 'speex' 'libxinerama' 'libvdpau' 'libpulse' 'smbclient' 'xvidcore' 'opencore-amr' 'jack' 'cdparanoia' 'libmad' 'sdl' 'libtheora' 'libcaca' 'libxxf86dga' 'fribidi' 'libjpeg' 'faad2' 'libxvmc' 'schroedinger' 'mpg123' 'libass') +[ "$CARCH" = "mips64el" ] && \ + depends=('desktop-file-utils' 'ttf-dejavu' 'enca' 'libxss' 'a52dec' 'libvpx' 'x264' 'libmng' 'libdca' 'aalib' 'lame' 'fontconfig' 'libgl' 'speex' + 'libxinerama' 'libvdpau' 'libpulse' 'smbclient' 'xvidcore' 'opencore-amr' 'jack' 'cdparanoia' 'libmad' 'sdl' 'libtheora' 'libcaca' 'libxxf86dga' 'fribidi' + 'libjpeg' 'faad2' 'libxvmc' 'schroedinger' 'mpg123' 'libass') provides=("mplayer=$pkgver") replaces=('mplayer') conflicts=('mplayer') diff --git a/libre/mplayer-vaapi-libre/PKGBUILD b/libre/mplayer-vaapi-libre/PKGBUILD index 73f3e6022..e06c9a9b1 100644 --- a/libre/mplayer-vaapi-libre/PKGBUILD +++ b/libre/mplayer-vaapi-libre/PKGBUILD @@ -10,7 +10,7 @@ pkgver=33161 _vaapi_version=20110127 pkgrel=3 pkgdesc="A movie player, compiled with vaapi support, without faac dependency, added speex support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.splitted-desktop.com/~gbeauchesne/mplayer-vaapi/" license=('GPL') depends=('libxxf86dga' 'libxxf86vm' 'libmad' 'cdparanoia' 'libxinerama' 'sdl' diff --git a/libre/p7zip-libre/PKGBUILD b/libre/p7zip-libre/PKGBUILD index 61d0d5d71..42192eccb 100644 --- a/libre/p7zip-libre/PKGBUILD +++ b/libre/p7zip-libre/PKGBUILD @@ -12,13 +12,15 @@ pkgrel=4 pkgdesc='Command-line version of the 7zip compressed file archiver without Rar' url='http://p7zip.sourceforge.net/' license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') provides=("p7zip=$pkgver" 'unzip') conflicts=('p7zip' 'unzip') replaces=('p7zip' 'unzip') optdepends=('wxgtk: GUI' 'desktop-file-utils: desktop entries') makedepends=('yasm' 'nasm' 'wxgtk') +[ "$CARCH" = "mips64el" ] && \ +makedepends=('yasm' 'nasm') source=("http://repo.parabolagnulinux.org/other/${pkgname}_${pkgver}.tar.bz2" 'p7zip-libre.patch' 'unzip' # unzip replacement @@ -52,15 +54,20 @@ mksource() { build() { cd "${srcdir}/${_pkgname}_${pkgver}" - [[ $CARCH = x86_64 ]] \ - && cp makefile.linux_amd64_asm makefile.machine \ - || cp makefile.linux_x86_asm_gcc_4.X makefile.machine + case $CARCH in + x86_64) cp makefile.linux_amd64_asm makefile.machine ;; + i686) cp makefile.linux_x86_asm_gcc_4.X makefile.machine ;; + esac - make all4 OPTFLAGS="${CXXFLAGS}" + if [ "$CARCH" = "mips64el" ]; then + make all3 OPTFLAGS="${CXXFLAGS}" + else + make all4 OPTFLAGS="${CXXFLAGS}" + fi } package() { - cd "${srcdir}/${_pkgname}_${pkgver}" + cd "${srcdir}/${_pkgname}_${pkgver}" make install \ DEST_DIR="${pkgdir}" \ @@ -83,4 +90,3 @@ package() { # Install unzip replacement script install -D -m755 "${srcdir}/unzip" "${pkgdir}/usr/bin/unzip" } - diff --git a/libre/pacman/PKGBUILD b/libre/pacman/PKGBUILD index 1768684e1..9170adaf1 100644 --- a/libre/pacman/PKGBUILD +++ b/libre/pacman/PKGBUILD @@ -20,13 +20,8 @@ source=(ftp://ftp.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz pacman.conf.x86_64 pacman.conf.mips64el makepkg.conf - 0001-makepkg-fix-removing-symbolic-link.patch) -md5sums=('2dd3a85d55ee3dd89abd349aa837447c' - 'ba85525fe868f030bef209b0487dd5a5' - '7aaccf24479f396d4a5987c8ccd2f3a2' - '150a2854816cd67b1608e00f99701c1c' - 'be10d3d2e533515a0470237761415568' - '749a4ddc6d8418d8d031f1c9b4e09d6f') + 0001-makepkg-fix-removing-symbolic-link.patch + config.site) # keep an upgrade path for older installations PKGEXT='.pkg.tar.gz' @@ -67,7 +62,9 @@ package() { mycarch="mips64el" mychost="mips64el-unknown-linux-gnu" myflags="-O2 -march=loongson2f -mabi=n32 -pipe -mplt -Wa,-mfix-loongson2f-nop -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2" - myldflags="" + myldflags="-Wl,--as-needed" + install -m644 $srcdir/config.site $pkgdir/etc + install -m644 $srcdir/config.site $pkgdir/usr/share ;; esac install -m644 $srcdir/makepkg.conf $pkgdir/etc/ @@ -86,3 +83,10 @@ package() { } # vim: set ts=2 sw=2 et: +md5sums=('2dd3a85d55ee3dd89abd349aa837447c' + 'ba85525fe868f030bef209b0487dd5a5' + '7aaccf24479f396d4a5987c8ccd2f3a2' + '150a2854816cd67b1608e00f99701c1c' + 'be10d3d2e533515a0470237761415568' + '749a4ddc6d8418d8d031f1c9b4e09d6f' + 'ffdc154c1af4f52870874d553b7d439a') diff --git a/libre/pacman/config.site b/libre/pacman/config.site new file mode 100644 index 000000000..44f8a58ba --- /dev/null +++ b/libre/pacman/config.site @@ -0,0 +1,9 @@ +# Use ABI-specific libdir on mips64el. + +if [ $(uname -m) = mips64 -a "$libdir" = '${exec_prefix}/lib' ]; then + case "$CFLAGS" in + *mabi=32*) libdir='${exec_prefix}/lib';; + *mabi=n32*) libdir='${exec_prefix}/lib32';; + *mabi=64*) libdir='${exec_prefix}/lib64';; + esac +fi diff --git a/libre/pacman/makepkg.conf.mips64el b/libre/pacman/makepkg.conf.mips64el new file mode 100644 index 000000000..ae090a1fa --- /dev/null +++ b/libre/pacman/makepkg.conf.mips64el @@ -0,0 +1,114 @@ +# +# /etc/makepkg.conf +# + +######################################################################### +# SOURCE ACQUISITION +######################################################################### +# +#-- The download utilities that makepkg should use to acquire sources +# Format: 'protocol::agent' +DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u' + 'http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u' + 'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u' + 'rsync::/usr/bin/rsync -z %u %o' + 'scp::/usr/bin/scp -C %u %o') + +# Other common tools: +# /usr/bin/snarf +# /usr/bin/lftpget -c +# /usr/bin/curl + +######################################################################### +# ARCHITECTURE, COMPILE FLAGS +######################################################################### +# +CARCH="@CARCH@" +CHOST="@CHOST@" + +#-- Exclusive: will only run on @CARCH@ +# -march (or -mcpu) builds exclusively for an architecture +# -mtune optimizes for an architecture, but builds for whole processor family +CFLAGS="@CARCHFLAGS@" +CXXFLAGS="@CARCHFLAGS@" +#LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed" +#-- Make Flags: change this for DistCC/SMP systems +#MAKEFLAGS="-j2" + +######################################################################### +# BUILD ENVIRONMENT +######################################################################### +# +# Defaults: BUILDENV=(fakeroot !distcc color !ccache check) +# A negated environment option will do the opposite of the comments below. +# +#-- fakeroot: Allow building packages as a non-root user +#-- distcc: Use the Distributed C/C++/ObjC compiler +#-- color: Colorize output messages +#-- ccache: Use ccache to cache compilation +#-- check: Run the check() function if present in the PKGBUILD +# +BUILDENV=(fakeroot !distcc color !ccache check) +# +#-- If using DistCC, your MAKEFLAGS will also need modification. In addition, +#-- specify a space-delimited list of hosts running in the DistCC cluster. +#DISTCC_HOSTS="" + +######################################################################### +# GLOBAL PACKAGE OPTIONS +# These are default values for the options=() settings +######################################################################### +# +# Default: OPTIONS=(strip docs libtool emptydirs zipman purge) +# A negated option will do the opposite of the comments below. +# +#-- strip: Strip symbols from binaries/libraries +#-- docs: Save doc directories specified by DOC_DIRS +#-- libtool: Leave libtool (.la) files in packages +#-- emptydirs: Leave empty directories in packages +#-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip +#-- purge: Remove files specified by PURGE_TARGETS +# +OPTIONS=(strip docs libtool emptydirs zipman purge) + +#-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512 +INTEGRITY_CHECK=(md5) +#-- Options to be used when stripping binaries. See `man strip' for details. +STRIP_BINARIES="--strip-all" +#-- Options to be used when stripping shared libraries. See `man strip' for details. +STRIP_SHARED="--strip-unneeded" +#-- Options to be used when stripping static libraries. See `man strip' for details. +STRIP_STATIC="--strip-debug" +#-- Manual (man and info) directories to compress (if zipman is specified) +MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info}) +#-- Doc directories to remove (if !docs is specified) +DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc}) +#-- Files to be removed from all packages (if purge is specified) +PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod) + +######################################################################### +# PACKAGE OUTPUT +######################################################################### +# +# Default: put built package and cached source in build directory +# +#-- Destination: specify a fixed directory where all packages will be placed +#PKGDEST=/home/packages +#-- Source cache: specify a fixed directory where source files will be cached +#SRCDEST=/home/sources +#-- Source packages: specify a fixed directory where all src packages will be placed +#SRCPKGDEST=/home/srcpackages +#-- Packager: name/email of the person or organization building packages +#PACKAGER="John Doe <john@doe.com>" + +######################################################################### +# EXTENSION DEFAULTS +######################################################################### +# +# WARNING: Do NOT modify these variables unless you know what you are +# doing. +# +PKGEXT='.pkg.tar.xz' +SRCEXT='.src.tar.gz' + +# vim: set ft=sh ts=2 sw=2 et: diff --git a/libre/pacman/mips64el.patch b/libre/pacman/mips64el.patch new file mode 100644 index 000000000..1dac6194f --- /dev/null +++ b/libre/pacman/mips64el.patch @@ -0,0 +1,26 @@ +--- configure.ac.orig 2011-06-10 14:50:19.241750094 -0300 ++++ configure.ac 2011-06-10 14:50:35.537678580 -0300 +@@ -271,6 +271,10 @@ case "${host}" in + CARCH="arm" + CARCHFLAGS="-march=armv4 " + ;; ++ mips64el-*) ++ CARCH="mips64el" ++ CARCHFLAGS="" ++ ;; + *) + AC_MSG_WARN([[Your architecture is unknown for makepkg.conf, consider adding it to configure.ac]]) + CARCH="unknown" +--- configure.orig 2011-06-10 14:57:12.971308117 -0300 ++++ configure 2011-06-10 14:56:49.963295618 -0300 +@@ -15673,6 +15673,10 @@ case "${host}" in + CARCH="arm" + CARCHFLAGS="-march=armv4 " + ;; ++ mips64el-*) ++ CARCH="mips64el" ++ CARCHFLAGS="" ++ ;; + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Your architecture is unknown for makepkg.conf, consider adding it to configure.ac" >&5 + $as_echo "$as_me: WARNING: Your architecture is unknown for makepkg.conf, consider adding it to configure.ac" >&2;} diff --git a/libre/pacman/rePKGBUILD b/libre/pacman/rePKGBUILD index af613dc74..2fd342c18 100644 --- a/libre/pacman/rePKGBUILD +++ b/libre/pacman/rePKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Nicolas Reynolds <fauno@kiwwwi.com.ar> source PKGBUILD -CARCH=x86_64 +#CARCH=x86_64 unset build package md5sums source _repo=core source=(PKGBUILD diff --git a/libre/psutils-libre/PKGBUILD b/libre/psutils-libre/PKGBUILD index 6ed3b7f60..a2ee853d1 100644 --- a/libre/psutils-libre/PKGBUILD +++ b/libre/psutils-libre/PKGBUILD @@ -6,7 +6,7 @@ pkgname=psutils-libre pkgver=1.17 pkgrel=1 pkgdesc="A set of postscript utilities" -arch=(i686 x86_64) +arch=(i686 x86_64 'mips64el') license=('custom') depends=('glibc' 'ghostscript') provides=('psutils-lprng' 'psutils') diff --git a/libre/python-reportlab-libre/PKGBUILD b/libre/python-reportlab-libre/PKGBUILD index e0dfc9d9c..41e2a4d00 100644 --- a/libre/python-reportlab-libre/PKGBUILD +++ b/libre/python-reportlab-libre/PKGBUILD @@ -9,7 +9,7 @@ _origname=reportlab pkgver=2.5 pkgrel=1 pkgdesc="A proven industry-strength PDF generating solution" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('python2' 'freetype2' 'ttf-bitstream-vera' 'gsfonts' 'python-imaging') license=('custom') source=(http://www.reportlab.org/ftp/${_origname}-$pkgver.tar.gz diff --git a/libre/python2-libre/PKGBUILD b/libre/python2-libre/PKGBUILD index 78550b63f..3daa399ed 100644 --- a/libre/python2-libre/PKGBUILD +++ b/libre/python2-libre/PKGBUILD @@ -9,7 +9,7 @@ pkgver=2.7.2 pkgrel=2 _pybasever=2.7 pkgdesc="A high-level scripting language" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('PSF') url="http://www.python.org/" depends=('bzip2' 'gdbm' 'openssl' 'zlib' 'expat' 'sqlite3' 'libffi') diff --git a/libre/rp-pppoe-libre/PKGBUILD b/libre/rp-pppoe-libre/PKGBUILD index a360e113e..cea9ca4d3 100644 --- a/libre/rp-pppoe-libre/PKGBUILD +++ b/libre/rp-pppoe-libre/PKGBUILD @@ -6,7 +6,7 @@ pkgname=rp-pppoe-libre pkgver=3.10 pkgrel=7 pkgdesc="Roaring Penguin's Point-to-Point Protocol over Ethernet client. Unfree software recommendation removed." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.roaringpenguin.com/pppoe/" license=('GPL') depends=('ppp>=2.4.5' 'sh' 'net-tools') diff --git a/libre/sdl-libre/PKGBUILD b/libre/sdl-libre/PKGBUILD index 20f6ece4b..b5e29fd4c 100644 --- a/libre/sdl-libre/PKGBUILD +++ b/libre/sdl-libre/PKGBUILD @@ -7,7 +7,7 @@ pkgname=sdl-libre pkgver=1.2.14 pkgrel=7.1 pkgdesc="A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.libsdl.org" license=('LGPL') provides=("sdl=${pkgver}") diff --git a/libre/seamonkey-libre/PKGBUILD b/libre/seamonkey-libre/PKGBUILD index 343f3e3ed..21fc89d96 100644 --- a/libre/seamonkey-libre/PKGBUILD +++ b/libre/seamonkey-libre/PKGBUILD @@ -4,7 +4,7 @@ pkgname=seamonkey-libre pkgver=2.0.12 pkgrel=1 pkgdesc="SeaMonkey internet suite, with GNUZilla addons" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('MPL') depends=('gtk2' 'mozilla-common' 'nss' 'libxt' 'gcc-libs' 'alsa-lib' 'dbus-glib') makedepends=('zip' 'pkg-config' 'libgnomeui>=2.24.2' 'python2' 'libidl2' 'autoconf2.13') diff --git a/libre/sqlite3/PKGBUILD b/libre/sqlite3/PKGBUILD index 2a939aa57..9e380bd73 100644 --- a/libre/sqlite3/PKGBUILD +++ b/libre/sqlite3/PKGBUILD @@ -13,7 +13,7 @@ _amalgamationver2=${_amalgamationver/00/} pkgver=${_amalgamationver2//0/.} pkgrel=2 pkgdesc="A C library that implements an SQL database engine" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') url="http://www.sqlite.org/" makedepends=('tcl' 'readline>=6.0.00') diff --git a/libre/texlive-bin-libre/PKGBUILD b/libre/texlive-bin-libre/PKGBUILD index cc77a04c3..48ec8778d 100644 --- a/libre/texlive-bin-libre/PKGBUILD +++ b/libre/texlive-bin-libre/PKGBUILD @@ -8,7 +8,7 @@ _luatex_ver=0.70.1 pkgrel=2 pkgdesc="TeX Live binaries" license=('GPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') depends=('t1lib' 'gd' 'libgraphite' 'poppler' 'libsigsegv' 'zziplib') makedepends=('perl' 'clisp' 'ffcall') optdepends=('ed: for texconfig') diff --git a/libre/thunderbird-libre/PKGBUILD b/libre/thunderbird-libre/PKGBUILD index 7e3f9b587..d62ffd324 100644 --- a/libre/thunderbird-libre/PKGBUILD +++ b/libre/thunderbird-libre/PKGBUILD @@ -6,7 +6,7 @@ pkgname=thunderbird-libre pkgver=3.1.10 pkgrel=3 pkgdesc="Standalone Mail/News reader, with GNUZilla addons" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('MPL' 'GPL') url="http://www.mozilla.org/projects/thunderbird" depends=('gtk2' 'gcc-libs' 'mozilla-common' 'nss' 'libxt' 'shared-mime-info' 'alsa-lib' 'dbus-glib' 'hunspell' 'sqlite3>=3.7.4' 'desktop-file-utils' 'libnotify') diff --git a/libre/unarchiver/PKGBUILD b/libre/unarchiver/PKGBUILD index 0d597d96f..36928ad2c 100644 --- a/libre/unarchiver/PKGBUILD +++ b/libre/unarchiver/PKGBUILD @@ -3,7 +3,7 @@ pkgname=unarchiver pkgver=2.7.1 pkgrel=3 pkgdesc="An Objective-C application for uncompressing archive files" -arch=('x86_64' 'i686') +arch=('x86_64' 'i686' 'mips64el') url="http://wakaba.c3.cx/s/apps/unarchiver.html" license=('LGPL2.1') depends=('gnustep-base>=1.23.0-1.1' 'openssl' 'bzip2' 'icu' 'gcc-libs' 'zlib') diff --git a/libre/unrar-libre/PKGBUILD b/libre/unrar-libre/PKGBUILD index e08e90220..0096718b4 100644 --- a/libre/unrar-libre/PKGBUILD +++ b/libre/unrar-libre/PKGBUILD @@ -4,7 +4,7 @@ pkgname=unrar-libre pkgver=0.0.1 pkgrel=1 pkgdesc="A free software library to decompress .rar files." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://gna.org/projects/unrar/" license=('GPL') provides=(unrar) diff --git a/libre/xarchiver-libre/PKGBUILD b/libre/xarchiver-libre/PKGBUILD index 001873ad3..70a105323 100644 --- a/libre/xarchiver-libre/PKGBUILD +++ b/libre/xarchiver-libre/PKGBUILD @@ -7,7 +7,7 @@ pkgname=xarchiver-libre pkgver=0.5.2 pkgrel=4 pkgdesc="GTK+ frontend to various command line archivers" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://xarchiver.sourceforge.net" license=('GPL') groups=('xfce4-goodies') diff --git a/libre/xchat-libre/PKGBUILD b/libre/xchat-libre/PKGBUILD index f04ec2f47..a8092476a 100644 --- a/libre/xchat-libre/PKGBUILD +++ b/libre/xchat-libre/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xchat-libre pkgver=2.8.8 pkgrel=7 pkgdesc="A GTK+ based IRC client without non-free browser reference" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xchat.org/" provides=("xchat=$pkgver") replaces=('xchat') diff --git a/multilib-testing/lib32-libdrm/PKGBUILD b/multilib-testing/lib32-libdrm/PKGBUILD deleted file mode 100644 index beb5ed17a..000000000 --- a/multilib-testing/lib32-libdrm/PKGBUILD +++ /dev/null @@ -1,48 +0,0 @@ -# $Id: PKGBUILD 57565 2011-10-30 20:00:47Z lcarlier $ -# Contributor: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libdrm -pkgname=lib32-$_pkgbasename -pkgver=2.4.27 -pkgrel=1 -pkgdesc="Userspace interface to kernel DRM services (32-bit)" -arch=(x86_64) -license=('custom') -depends=('lib32-libpciaccess' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool') -url="http://dri.freedesktop.org/" -source=(http://dri.freedesktop.org/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2 - no-pthread-stubs.patch) -md5sums=('0fba4f42735cd3d24dd7a8cde0023fbd' - 'c722c8406507b7e3a8da7a3030d1d9cf') - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - patch -Np1 -i "${srcdir}/no-pthread-stubs.patch" - - # libtoolize --force - autoreconf --force --install - ./configure --prefix=/usr --libdir=/usr/lib32 \ - --enable-udev \ - --enable-intel \ - --enable-radeon \ - --enable-vmwgfx-experimental-api \ - --enable-nouveau-experimental-api - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib-testing/lib32-libdrm/no-pthread-stubs.patch b/multilib-testing/lib32-libdrm/no-pthread-stubs.patch deleted file mode 100644 index 348c2a795..000000000 --- a/multilib-testing/lib32-libdrm/no-pthread-stubs.patch +++ /dev/null @@ -1,66 +0,0 @@ -diff -ru libdrm-2.4.0/configure.ac libdrm-2.4.0-nostubs/configure.ac ---- libdrm-2.4.0/configure.ac 2008-10-09 21:57:09.000000000 +0200 -+++ libdrm-2.4.0-nostubs/configure.ac 2008-10-21 10:48:24.000000000 +0200 -@@ -47,10 +47,6 @@ - LT_INIT([disable-static]) - - --PKG_CHECK_MODULES(PTHREADSTUBS, pthread-stubs) --AC_SUBST(PTHREADSTUBS_CFLAGS) --AC_SUBST(PTHREADSTUBS_LIBS) -- - PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10]) - AC_SUBST(PCIACCESS_CFLAGS) - AC_SUBST(PCIACCESS_LIBS) ---- libdrm-2.4.16/intel/Makefile.am 2009-11-20 23:54:36.000000000 +0000 -+++ libdrm-2.4.16/intel/Makefile.am.new 2009-12-07 08:11:32.235748069 +0000 -@@ -26,14 +26,13 @@ - $(WARN_CFLAGS) \ - -I$(top_srcdir) \ - -I$(top_srcdir)/intel \ -- $(PTHREADSTUBS_CFLAGS) \ - $(PCIACCESS_CFLAGS) \ - -I$(top_srcdir)/include/drm - - libdrm_intel_la_LTLIBRARIES = libdrm_intel.la - libdrm_intel_ladir = $(libdir) - libdrm_intel_la_LDFLAGS = -version-number 1:0:0 -no-undefined --libdrm_intel_la_LIBADD = ../libdrm.la @PTHREADSTUBS_LIBS@ @PCIACCESS_LIBS@ @CLOCK_LIB@ -+libdrm_intel_la_LIBADD = ../libdrm.la @PCIACCESS_LIBS@ @CLOCK_LIB@ - - libdrm_intel_la_SOURCES = \ - intel_bufmgr.c \ ---- libdrm-2.4.16/radeon/Makefile.am 2009-11-20 23:54:36.000000000 +0000 -+++ libdrm-2.4.16/radeon/Makefile.am.new 2009-12-07 08:12:31.889075388 +0000 -@@ -26,13 +26,12 @@ - $(WARN_CFLAGS) \ - -I$(top_srcdir) \ - -I$(top_srcdir)/radeon \ -- $(PTHREADSTUBS_CFLAGS) \ - -I$(top_srcdir)/include/drm - - libdrm_radeon_la_LTLIBRARIES = libdrm_radeon.la - libdrm_radeon_ladir = $(libdir) - libdrm_radeon_la_LDFLAGS = -version-number 1:0:0 -no-undefined --libdrm_radeon_la_LIBADD = ../libdrm.la @PTHREADSTUBS_LIBS@ -+libdrm_radeon_la_LIBADD = ../libdrm.la - - libdrm_radeon_la_SOURCES = \ - radeon_bo_gem.c \ ---- libdrm-2.4.16/nouveau/Makefile.am 2009-11-20 23:54:36.000000000 +0000 -+++ libdrm-2.4.16/nouveau/Makefile.am.new 2009-12-07 08:13:01.489072320 +0000 -@@ -2,13 +2,12 @@ - $(WARN_CFLAGS) \ - -I$(top_srcdir) \ - -I$(top_srcdir)/nouveau \ -- $(PTHREADSTUBS_CFLAGS) \ - -I$(top_srcdir)/include/drm - - libdrm_nouveau_la_LTLIBRARIES = libdrm_nouveau.la - libdrm_nouveau_ladir = $(libdir) - libdrm_nouveau_la_LDFLAGS = -version-number 1:0:0 -no-undefined --libdrm_nouveau_la_LIBADD = ../libdrm.la @PTHREADSTUBS_LIBS@ -+libdrm_nouveau_la_LIBADD = ../libdrm.la - - libdrm_nouveau_la_SOURCES = \ - nouveau_device.c \ diff --git a/multilib/binutils-multilib/PKGBUILD b/multilib/binutils-multilib/PKGBUILD deleted file mode 100644 index 8d1bbadc3..000000000 --- a/multilib/binutils-multilib/PKGBUILD +++ /dev/null @@ -1,75 +0,0 @@ -# $Id: PKGBUILD 54543 2011-08-20 07:14:17Z allan $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> -# Contributor: Allan McRae <allan@archlinux.org> - -# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc - -pkgname=binutils-multilib -pkgver=2.21.1 -pkgrel=2 -_date=20110627 -pkgdesc="A set of programs to assemble and manipulate binary and object files for multilib" -arch=('x86_64') -url="http://www.gnu.org/software/binutils/" -license=('GPL') -groups=('multilib-devel') -provides=("binutils=$pkgver-$pkgrel") -conflicts=('binutils') -depends=('glibc>=2.14' 'zlib') -makedepends=('dejagnu' 'gcc-multilib') # Make sure we compile this with gcc-multilib -options=('!libtool' '!distcc' '!ccache') -install=binutils.install -source=(http://mirrors.kernel.org/archlinux/other/binutils/binutils-${pkgver}_${_date}.tar.bz2) -md5sums=('2face559e80d649ba148e42bb2d1fb0f') - -build() { - cd ${srcdir} - mkdir binutils-build && cd binutils-build - - ${srcdir}/binutils/configure --prefix=/usr \ - --enable-ld=default --enable-gold \ - --enable-plugins --enable-threads \ - --enable-shared \ - --enable-64-bit-bfd --enable-multilib - - # check the host environment and makes sure all the necessary tools are available - make configure-host - - make tooldir=${pkgdir}/usr -} - -check() { - cd ${srcdir}/binutils-build - - # do not abort on errors - manually check log files - make -k -j1 check || true -} - -package() { - cd ${srcdir}/binutils-build - make prefix=${pkgdir}/usr tooldir=${pkgdir}/usr install - - # Add some useful headers - install -m644 ${srcdir}/binutils/include/libiberty.h ${pkgdir}/usr/include - install -m644 ${srcdir}/binutils/include/demangle.h ${pkgdir}/usr/include - - # Rebuild libiberty.a with -fPIC - make -C libiberty clean - make CFLAGS="$CFLAGS -fPIC" -C libiberty - install -m644 libiberty/libiberty.a ${pkgdir}/usr/lib - - # Rebuild libbfd.a with -fPIC - make -C bfd clean - # hidden visability prevent 3rd party shared libraries exporting bfd non-stable API - make CFLAGS="$CFLAGS -fPIC -fvisibility=hidden" -C bfd - install -m644 bfd/libbfd.a ${pkgdir}/usr/lib - - # Remove Windows/Novell specific man pages - rm -f ${pkgdir}/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}* - - # Remove these symlinks, they are not ABI stable. - # Programs should compile static to the .a file. - rm -f ${pkgdir}/usr/lib/lib{bfd,opcodes}.so - echo "INPUT ( /usr/lib/libbfd.a -liberty -lz )" >${pkgdir}/usr/lib/libbfd.so - echo "INPUT ( /usr/lib/libopcodes.a -lbfd )" >${pkgdir}/usr/lib/libopcodes.so -} diff --git a/multilib/binutils-multilib/binutils.install b/multilib/binutils-multilib/binutils.install deleted file mode 100644 index 8bf9f3a47..000000000 --- a/multilib/binutils-multilib/binutils.install +++ /dev/null @@ -1,17 +0,0 @@ -infodir=usr/share/info -filelist=(as.info bfd.info binutils.info configure.info gprof.info ld.info standards.info) - -post_upgrade() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - diff --git a/multilib/chuck/PKGBUILD b/multilib/chuck/PKGBUILD deleted file mode 100644 index 06811dea5..000000000 --- a/multilib/chuck/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# $Id: PKGBUILD 35414 2010-12-20 02:07:32Z heftig $ -# Maintainer: Brad Fanella <bradfanella@archlinux.us> -# Contributor: SpepS <dreamspepser at yahoo dot it> -# Contributor: Jeff Mickey <jeff@archlinux.org> -# Contributor: tardo <tardo@nagi-fanboi.net> - -pkgname=chuck -pkgver=1.2.1.3 -pkgrel=5 -pkgdesc="Concurrent, on-the-fly audio programming language." -arch=('i686' 'x86_64') -url="http://chuck.cs.princeton.edu/" -license=('GPL') -depends=('gcc-libs' 'libsndfile' 'alsa-lib') -makedepends=('bison' 'flex') -source=(http://chuck.cs.princeton.edu/release/files/$pkgname-$pkgver.tgz) -md5sums=('ac8459b4067c2491fbdeb61d122a5985') - -if [[ $CARCH == x86_64 ]]; then - depends=('lib32-gcc-libs' 'lib32-libsndfile' 'lib32-alsa-lib') - makedepends+=('gcc-multilib') -fi - -build() { - if [[ $CARCH == x86_64 ]]; then - export CC='gcc -m32' - export CXX='g++ -m32' - export PKG_CONFIG_PATH=/usr/lib32/pkgconfig - fi - - cd $srcdir/$pkgname-$pkgver/src - CFLAGS="$CFLAGS -fno-strict-aliasing" - - # This can be linux-alsa linux-jack linux-oss osx win32 - make linux-alsa -} - -package() { - cd $srcdir/$pkgname-$pkgver/src - install -D -m 755 chuck $pkgdir/usr/bin/chuck -} diff --git a/multilib/gcc-multilib/PKGBUILD b/multilib/gcc-multilib/PKGBUILD deleted file mode 100644 index 4b2f0c3b7..000000000 --- a/multilib/gcc-multilib/PKGBUILD +++ /dev/null @@ -1,303 +0,0 @@ -# $Id: PKGBUILD 57525 2011-10-30 06:48:49Z allan $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> -# Contributor: Allan McRae <allan@archlinux.org> - -# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc -# NOTE: libtool requires rebuilt with each new gcc version - -pkgbase='gcc-multilib' -pkgname=('gcc-multilib' 'gcc-libs-multilib' 'lib32-gcc-libs' 'gcc-fortran-multilib' 'gcc-objc-multilib' 'gcc-ada-multilib' 'gcc-go-multilib') -pkgver=4.6.2 -pkgrel=1 -#_snapshot=4.6-20110819 -_libstdcppmanver=20110814 # Note: check source directory name when updating this -pkgdesc="The GNU Compiler Collection for multilib" -arch=('x86_64') -license=('GPL' 'LGPL' 'FDL' 'custom') -url="http://gcc.gnu.org" -makedepends=('binutils-multilib>=2.21.1' 'libmpc' 'cloog' 'ppl' 'gcc-ada-multilib' - 'lib32-glibc>=2.14') -checkdepends=('dejagnu') -options=('!libtool' '!emptydirs') -source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2 - #ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2 - ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-api.${_libstdcppmanver}.man.tar.bz2 - gcc_pure64.patch - gcc-hash-style-both.patch) -md5sums=('028115c4fbfb6cfd75d6369f4a90d87e' - 'ce920d2550ff7e042b9f091d27764d8f' - '4030ee1c08dd1e843c0225b772360e76' - '4df25b623799b148a0703eaeec8fdf3f') - -if [ -n "${_snapshot}" ]; then - _basedir="${srcdir}/gcc-${_snapshot}" -else - _basedir="${srcdir}/gcc-${pkgver}" -fi - -build() { - cd ${_basedir} - - # Do not install libiberty - sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in - - # Do not run fixincludes - sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in - - patch -Np1 -i ${srcdir}/gcc_pure64.patch - patch -Np0 -i ${srcdir}/gcc-hash-style-both.patch - - echo ${pkgver} > gcc/BASE-VER - - cd ${srcdir} - mkdir gcc-build && cd gcc-build - - ${_basedir}/configure --prefix=/usr \ - --libdir=/usr/lib --libexecdir=/usr/lib \ - --mandir=/usr/share/man --infodir=/usr/share/info \ - --with-bugurl=https://bugs.archlinux.org/ \ - --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ \ - --enable-shared --enable-threads=posix \ - --with-system-zlib --enable-__cxa_atexit \ - --disable-libunwind-exceptions --enable-clocale=gnu \ - --enable-gnu-unique-object --enable-linker-build-id \ - --with-ppl --enable-cloog-backend=isl \ - --enable-lto --enable-gold --enable-ld=default \ - --enable-plugin --with-plugin-ld=ld.gold \ - --enable-multilib --disable-libssp --disable-libstdcxx-pch \ - --enable-checking=release - make -} - -check() { - cd gcc-build - - # increase stack size to prevent test failures - # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31827 - ulimit -s 32768 - - # do not abort on error as some are "expected" - make -k check || true - ${_basedir}/contrib/test_summary -} - -package_gcc-libs-multilib() -{ - pkgdesc="Runtime libraries shipped by GCC for multilib" - depends=('glibc>=2.14' "lib32-gcc-libs=$pkgver-$pkgrel") - provides=("gcc-libs=$pkgver-$pkgrel") - conflicts=('gcc-libs') - install=gcc-libs.install - - cd gcc-build - make -j1 -C $CHOST/libgcc DESTDIR=${pkgdir} install-shared - for lib in libmudflap libgomp libstdc++-v3/src; do - make -j1 -C $CHOST/$lib DESTDIR=${pkgdir} install-toolexeclibLTLIBRARIES - done - make -j1 -C $CHOST/libstdc++-v3/po DESTDIR=${pkgdir} install - make -j1 -C $CHOST/libgomp DESTDIR=${pkgdir} install-info - - make -j1 DESTDIR=${pkgdir} install-target-libquadmath - make -j1 DESTDIR=${pkgdir} install-target-libgfortran - make -j1 DESTDIR=${pkgdir} install-target-libobjc - - # remove unnecessary files installed by install-target-{libquadmath,libgfortran,libobjc} - rm -rf ${pkgdir}/usr/lib/{gcc/,libgfortran.spec} - - # remove stuff in lib32-gcc-libs - rm -rf ${pkgdir}/usr/lib32 - - # remove static libraries - find ${pkgdir} -name *.a -delete - - # Install Runtime Library Exception - install -Dm644 ${_basedir}/COPYING.RUNTIME \ - ${pkgdir}/usr/share/licenses/gcc-libs-multilib/RUNTIME.LIBRARY.EXCEPTION -} - -package_lib32-gcc-libs() -{ - pkgdesc="Runtime libraries shipped by GCC (32-bit)" - depends=('lib32-glibc>=2.14' "gcc-libs>=$pkgver") - - cd gcc-build - make -j1 -C $CHOST/32/libgcc DESTDIR=${pkgdir} install-shared - for lib in libmudflap libgomp libstdc++-v3/src; do - make -j1 -C $CHOST/32/$lib DESTDIR=${pkgdir} install-toolexeclibLTLIBRARIES - done - - make -j1 DESTDIR=${pkgdir} install-target-libquadmath - make -j1 DESTDIR=${pkgdir} install-target-libgfortran - make -j1 DESTDIR=${pkgdir} install-target-libobjc - - # remove unnecessary files installed by install-target-{libquadmath,libgfortran,libobjc} - rm ${pkgdir}/usr/lib32/libgfortran.spec - - # remove stuff in gcc-libs-multilib - rm -rf ${pkgdir}/usr/lib - rm -rf ${pkgdir}/usr/share/info - - # remove static libraries - find ${pkgdir} -name *.a -delete - - # Install Runtime Library Exception - install -Dm644 ${_basedir}/COPYING.RUNTIME \ - ${pkgdir}/usr/share/licenses/lib32-gcc-libs/RUNTIME.LIBRARY.EXCEPTION -} - -package_gcc-multilib() -{ - pkgdesc="The GNU Compiler Collection - C and C++ frontends for multilib" - depends=("gcc-libs-multilib=$pkgver-$pkgrel" 'binutils-multilib>=2.21.1' 'libmpc' 'cloog' 'ppl') - groups=('multilib-devel') - provides=("gcc=$pkgver-$pkgrel") - conflicts=('gcc') - install=gcc.install - - cd gcc-build - - # unfortunately it is much, much easier to install the lot and clean-up the mess... - make -j1 DESTDIR=${pkgdir} install - rm $pkgdir/usr/bin/{{$CHOST-,}gfortran,{$CHOST-,}gccgo,gnat*} - rm $pkgdir/usr/lib{,32}/*.so* - rm $pkgdir/usr/lib{,32}/lib{ffi,gfortran,go{,begin},objc,quadmath}.a - rm $pkgdir/usr/lib{,32}/libgfortran.spec - rm -r $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/{{,32/}ada{include,lib},finclude,include/objc} - rm $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/include/{ffi{,target}.h,quadmath{,_weak}.h} - rm $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/{cc1obj{,plus},f951,gnat1,go1,{,32/}libgfortranbegin.a} - rm -r $pkgdir/usr/lib{,32}/go - rm $pkgdir/usr/share/info/{gccgo,gfortran,gnat*,libgomp,libquadmath}.info - rm $pkgdir/usr/share/locale/{de,fr}/LC_MESSAGES/libstdc++.mo - rm $pkgdir/usr/share/man/man1/{gccgo,gfortran}.1 - rm $pkgdir/usr/share/man/man3/ffi* - - # many packages require these symlinks - install -dm755 ${pkgdir}/lib - ln -sf /usr/bin/cpp ${pkgdir}/lib/cpp - ln -sf gcc ${pkgdir}/usr/bin/cc - ln -sf g++ ${pkgdir}/usr/bin/c++ - - # install gengtype for plugin support - install -m755 gcc/build/gengtype $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/ - install -m644 gcc/gtype.state $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/ - - # POSIX conformance launcher scripts for c89 and c99 - cat > $pkgdir/usr/bin/c89 <<"EOF" -#!/bin/sh -fl="-std=c89" -for opt; do - case "$opt" in - -ansi|-std=c89|-std=iso9899:1990) fl="";; - -std=*) echo "`basename $0` called with non ANSI/ISO C option $opt" >&2 - exit 1;; - esac -done -exec gcc $fl ${1+"$@"} -EOF - - cat > $pkgdir/usr/bin/c99 <<"EOF" -#!/bin/sh -fl="-std=c99" -for opt; do - case "$opt" in - -std=c99|-std=iso9899:1999) fl="";; - -std=*) echo "`basename $0` called with non ISO C99 option $opt" >&2 - exit 1;; - esac -done -exec gcc $fl ${1+"$@"} -EOF - - chmod 755 $pkgdir/usr/bin/c{8,9}9 - - # install the libstdc++ man pages - install -dm755 ${pkgdir}/usr/share/man/man3 - install -m644 ${srcdir}/man/man3/* ${pkgdir}/usr/share/man/man3/ - - # Install Runtime Library Exception - install -Dm644 ${_basedir}/COPYING.RUNTIME \ - ${pkgdir}/usr/share/licenses/gcc-multilib/RUNTIME.LIBRARY.EXCEPTION -} - -package_gcc-fortran-multilib() -{ - pkgdesc="Fortran front-end for GCC for multilib" - depends=("gcc-multilib=$pkgver-$pkgrel") - provides=("gcc-fortran=$pkgver-$pkgrel") - conflicts=('gcc-fortran') - install=gcc-fortran.install - - cd gcc-build - make -j1 DESTDIR=${pkgdir} install-target-libquadmath - make -j1 DESTDIR=$pkgdir install-target-libgfortran - make -j1 -C $CHOST/libgomp DESTDIR=$pkgdir install-nodist_fincludeHEADERS - make -j1 -C gcc DESTDIR=$pkgdir fortran.install-{common,man,info} - install -Dm755 gcc/f951 $pkgdir/usr/lib/gcc/$CHOST/$pkgver/f951 - - # remove libraries included in gcc-libs - rm ${pkgdir}/usr/lib{,32}/lib{gfortran,quadmath}.so* - rm ${pkgdir}/usr/share/info/libquadmath.info - - # Install Runtime Library Exception - install -Dm644 ${_basedir}/COPYING.RUNTIME \ - ${pkgdir}/usr/share/licenses/gcc-fortran-multilib/RUNTIME.LIBRARY.EXCEPTION -} - -package_gcc-objc-multilib() -{ - pkgdesc="Objective-C front-end for GCC for multilib" - depends=("gcc-multilib=$pkgver-$pkgrel") - provides=("gcc-objc=$pkgver-$pkgrel") - conflicts=('gcc-objc') - - cd gcc-build - make -j1 DESTDIR=$pkgdir install-target-libobjc - install -dm755 $pkgdir/usr/lib/gcc/$CHOST/$pkgver/ - install -m755 gcc/cc1obj{,plus} $pkgdir/usr/lib/gcc/$CHOST/$pkgver/ - - # remove libraries included in gcc-libs - rm ${pkgdir}/usr/lib{,32}/libobjc.so* - - # Install Runtime Library Exception - install -Dm644 ${_basedir}/COPYING.RUNTIME \ - ${pkgdir}/usr/share/licenses/gcc-objc-multilib/RUNTIME.LIBRARY.EXCEPTION -} - -package_gcc-ada-multilib() -{ - pkgdesc="Ada front-end for GCC (GNAT) for multilib" - depends=("gcc-multilib=$pkgver-$pkgrel") - provides=("gcc-ada=$pkgver-$pkgrel") - conflicts=('gcc-ada') - install=gcc-ada.install - - cd gcc-build/gcc - make -j1 DESTDIR=$pkgdir ada.install-{common,info} - install -m755 gnat1 $pkgdir/usr/lib/gcc/$CHOST/$pkgver - - cd ../$CHOST/32/libada - make -j1 DESTDIR=${pkgdir} INSTALL="install" \ - INSTALL_DATA="install -m644" install-gnatlib - - # Install Runtime Library Exception - install -Dm644 ${_basedir}/COPYING.RUNTIME \ - ${pkgdir}/usr/share/licenses/gcc-ada-multilib/RUNTIME.LIBRARY.EXCEPTION -} - -package_gcc-go-multilib() -{ - pkgdesc="Go front-end for GCC for multilib" - depends=("gcc-multilib=$pkgver-$pkgrel") - provides=("gcc-go=$pkgver-$pkgrel") - conflicts=('gcc-go') - install=gcc-go.install - - cd gcc-build - make -j1 DESTDIR=$pkgdir install-target-libgo - make -j1 -C gcc DESTDIR=$pkgdir go.install-{common,man,info} - install -Dm755 gcc/go1 $pkgdir/usr/lib/gcc/$CHOST/$pkgver/go1 - - # Install Runtime Library Exception - install -Dm644 ${_basedir}/COPYING.RUNTIME \ - ${pkgdir}/usr/share/licenses/gcc-go/RUNTIME.LIBRARY.EXCEPTION -} diff --git a/multilib/gcc-multilib/gcc-ada.install b/multilib/gcc-multilib/gcc-ada.install deleted file mode 100644 index df0553a4f..000000000 --- a/multilib/gcc-multilib/gcc-ada.install +++ /dev/null @@ -1,20 +0,0 @@ -infodir=usr/share/info -filelist=(gnat-style.info gnat_rm.info gnat_ugn.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} diff --git a/multilib/gcc-multilib/gcc-fortran.install b/multilib/gcc-multilib/gcc-fortran.install deleted file mode 100644 index b15d89a97..000000000 --- a/multilib/gcc-multilib/gcc-fortran.install +++ /dev/null @@ -1,16 +0,0 @@ -infodir=usr/share/info -file="gfortran.info" - -post_install() { - [ -x usr/bin/install-info ] || return 0 - install-info $infodir/$file.gz $infodir/dir 2> /dev/null -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null -} diff --git a/multilib/gcc-multilib/gcc-go.install b/multilib/gcc-multilib/gcc-go.install deleted file mode 100644 index 7dc50dee5..000000000 --- a/multilib/gcc-multilib/gcc-go.install +++ /dev/null @@ -1,20 +0,0 @@ -infodir=usr/share/info -filelist=(gccgo.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} diff --git a/multilib/gcc-multilib/gcc-hash-style-both.patch b/multilib/gcc-multilib/gcc-hash-style-both.patch deleted file mode 100644 index 8b59f4535..000000000 --- a/multilib/gcc-multilib/gcc-hash-style-both.patch +++ /dev/null @@ -1,122 +0,0 @@ ---- gcc/config/alpha/linux-elf.h.orig 2010-12-09 23:27:07.000000000 +1000 -+++ gcc/config/alpha/linux-elf.h 2011-03-11 10:01:47.770000457 +1000 -@@ -41,7 +41,7 @@ - - #define ELF_DYNAMIC_LINKER LINUX_DYNAMIC_LINKER - --#define LINK_SPEC "-m elf64alpha %{G*} %{relax:-relax} \ -+#define LINK_SPEC "-m elf64alpha --hash-style=both %{G*} %{relax:-relax} \ - %{O*:-O3} %{!O*:-O1} \ - %{shared:-shared} \ - %{!shared: \ ---- gcc/config/i386/linux64.h.orig 2011-03-03 08:35:36.000000000 +1000 -+++ gcc/config/i386/linux64.h 2011-03-11 10:01:47.770000457 +1000 -@@ -78,7 +78,7 @@ - %{!mno-sse2avx:%{mavx:-msse2avx}} %{msse2avx:%{!mavx:-msse2avx}}" - - #undef LINK_SPEC --#define LINK_SPEC "%{" SPEC_64 ":-m elf_x86_64} %{" SPEC_32 ":-m elf_i386} \ -+#define LINK_SPEC "%{" SPEC_64 ":-m elf_x86_64} %{" SPEC_32 ":-m elf_i386} --hash-style=both \ - %{shared:-shared} \ - %{!shared: \ - %{!static: \ ---- gcc/config/i386/linux.h.orig 2011-01-15 04:45:06.000000000 +1000 -+++ gcc/config/i386/linux.h 2011-03-11 10:01:47.770000457 +1000 -@@ -104,7 +104,7 @@ - { "dynamic_linker", LINUX_DYNAMIC_LINKER } - - #undef LINK_SPEC --#define LINK_SPEC "-m %(link_emulation) %{shared:-shared} \ -+#define LINK_SPEC "-m %(link_emulation) --hash-style=both %{shared:-shared} \ - %{!shared: \ - %{!static: \ - %{rdynamic:-export-dynamic} \ ---- gcc/config/ia64/linux.h.orig 2010-12-09 23:27:07.000000000 +1000 -+++ gcc/config/ia64/linux.h 2011-03-11 10:01:47.770000457 +1000 -@@ -64,7 +64,7 @@ - #define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-ia64.so.2" - - #undef LINK_SPEC --#define LINK_SPEC "\ -+#define LINK_SPEC "--hash-style=both \ - %{shared:-shared} \ - %{!shared: \ - %{!static: \ ---- gcc/config/rs6000/linux64.h.orig 2011-02-11 03:30:10.000000000 +1000 -+++ gcc/config/rs6000/linux64.h 2011-03-11 10:03:34.280000457 +1000 -@@ -389,11 +389,11 @@ - CHOOSE_DYNAMIC_LINKER (GLIBC_DYNAMIC_LINKER64, UCLIBC_DYNAMIC_LINKER64) - - --#define LINK_OS_LINUX_SPEC32 "-m elf32ppclinux %{!shared: %{!static: \ -+#define LINK_OS_LINUX_SPEC32 "-m elf32ppclinux --hash-style=both %{!shared: %{!static: \ - %{rdynamic:-export-dynamic} \ - -dynamic-linker " LINUX_DYNAMIC_LINKER32 "}}" - --#define LINK_OS_LINUX_SPEC64 "-m elf64ppc %{!shared: %{!static: \ -+#define LINK_OS_LINUX_SPEC64 "-m elf64ppc --hash-style=both %{!shared: %{!static: \ - %{rdynamic:-export-dynamic} \ - -dynamic-linker " LINUX_DYNAMIC_LINKER64 "}}" - ---- gcc/config/rs6000/sysv4.h.orig 2011-01-28 04:36:03.000000000 +1000 -+++ gcc/config/rs6000/sysv4.h 2011-03-11 10:01:47.773333792 +1000 -@@ -830,7 +830,7 @@ - #define LINUX_DYNAMIC_LINKER \ - CHOOSE_DYNAMIC_LINKER (GLIBC_DYNAMIC_LINKER, UCLIBC_DYNAMIC_LINKER) - --#define LINK_OS_LINUX_SPEC "-m elf32ppclinux %{!shared: %{!static: \ -+#define LINK_OS_LINUX_SPEC "-m elf32ppclinux --hash-style=both %{!shared: %{!static: \ - %{rdynamic:-export-dynamic} \ - -dynamic-linker " LINUX_DYNAMIC_LINKER "}}" - ---- gcc/config/s390/linux.h.orig 2010-12-09 23:27:07.000000000 +1000 -+++ gcc/config/s390/linux.h 2011-03-11 10:01:47.770000457 +1000 -@@ -77,7 +77,7 @@ - - #undef LINK_SPEC - #define LINK_SPEC \ -- "%{m31:-m elf_s390}%{m64:-m elf64_s390} \ -+ "%{m31:-m elf_s390}%{m64:-m elf64_s390} --hash-style=both \ - %{shared:-shared} \ - %{!shared: \ - %{static:-static} \ ---- gcc/config/sparc/linux64.h.orig 2011-02-17 23:57:21.000000000 +1000 -+++ gcc/config/sparc/linux64.h 2011-03-11 10:01:47.770000457 +1000 -@@ -113,7 +113,7 @@ - { "link_arch_default", LINK_ARCH_DEFAULT_SPEC }, \ - { "link_arch", LINK_ARCH_SPEC }, - --#define LINK_ARCH32_SPEC "-m elf32_sparc -Y P,%R/usr/lib %{shared:-shared} \ -+#define LINK_ARCH32_SPEC "-m elf32_sparc --hash-style=both -Y P,%R/usr/lib %{shared:-shared} \ - %{!shared: \ - %{!static: \ - %{rdynamic:-export-dynamic} \ -@@ -121,7 +121,7 @@ - %{static:-static}} \ - " - --#define LINK_ARCH64_SPEC "-m elf64_sparc -Y P,%R/usr/lib64 %{shared:-shared} \ -+#define LINK_ARCH64_SPEC "-m elf64_sparc --hash-style=both -Y P,%R/usr/lib64 %{shared:-shared} \ - %{!shared: \ - %{!static: \ - %{rdynamic:-export-dynamic} \ -@@ -193,7 +193,7 @@ - #else /* !SPARC_BI_ARCH */ - - #undef LINK_SPEC --#define LINK_SPEC "-m elf64_sparc -Y P,%R/usr/lib64 %{shared:-shared} \ -+#define LINK_SPEC "-m elf64_sparc --hash-style=both -Y P,%R/usr/lib64 %{shared:-shared} \ - %{!shared: \ - %{!static: \ - %{rdynamic:-export-dynamic} \ ---- gcc/config/sparc/linux.h.orig 2011-01-27 06:30:12.000000000 +1000 -+++ gcc/config/sparc/linux.h 2011-03-11 10:01:47.770000457 +1000 -@@ -74,7 +74,7 @@ - #define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2" - - #undef LINK_SPEC --#define LINK_SPEC "-m elf32_sparc -Y P,/usr/lib %{shared:-shared} \ -+#define LINK_SPEC "-m elf32_sparc --hash-style=both -Y P,/usr/lib %{shared:-shared} \ - %{!mno-relax:%{!r:-relax}} \ - %{!shared: \ - %{!static: \ diff --git a/multilib/gcc-multilib/gcc-libs.install b/multilib/gcc-multilib/gcc-libs.install deleted file mode 100644 index 23553b8f0..000000000 --- a/multilib/gcc-multilib/gcc-libs.install +++ /dev/null @@ -1,16 +0,0 @@ -infodir=usr/share/info -filelist=(libgomp.info libquadmath.info) - -post_upgrade() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} diff --git a/multilib/gcc-multilib/gcc.install b/multilib/gcc-multilib/gcc.install deleted file mode 100644 index 3407a5e1f..000000000 --- a/multilib/gcc-multilib/gcc.install +++ /dev/null @@ -1,20 +0,0 @@ -infodir=usr/share/info -filelist=(cpp.info cppinternals.info gcc.info gccinstall.info gccint.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} diff --git a/multilib/gcc-multilib/gcc_pure64.patch b/multilib/gcc-multilib/gcc_pure64.patch deleted file mode 100644 index 8c0baf8e2..000000000 --- a/multilib/gcc-multilib/gcc_pure64.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff -Naur gcc-4.2.0.orig/gcc/config/i386/linux64.h gcc-4.2.0/gcc/config/i386/linux64.h ---- gcc-4.2.0.orig/gcc/config/i386/linux64.h 2007-05-16 19:21:19.000000000 -0400 -+++ gcc-4.2.0/gcc/config/i386/linux64.h 2007-05-18 17:04:05.000000000 -0400 -@@ -49,8 +49,8 @@ - When the -shared link option is used a final link is not being - done. */ - --#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2" --#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux-x86-64.so.2" -+#define GLIBC_DYNAMIC_LINKER32 "/lib32/ld-linux.so.2" -+#define GLIBC_DYNAMIC_LINKER64 "/lib/ld-linux-x86-64.so.2" - - #undef LINK_SPEC - #define LINK_SPEC "%{!m32:-m elf_x86_64} %{m32:-m elf_i386} \ -diff -Naur gcc-4.2.0.orig/gcc/config/i386/t-linux64 gcc-4.2.0/gcc/config/i386/t-linux64 ---- gcc-4.2.0.orig/gcc/config/i386/t-linux64 2007-05-16 19:21:19.000000000 -0400 -+++ gcc-4.2.0/gcc/config/i386/t-linux64 2007-05-18 17:04:36.000000000 -0400 -@@ -6,7 +6,7 @@ - - MULTILIB_OPTIONS = m64/m32 - MULTILIB_DIRNAMES = 64 32 --MULTILIB_OSDIRNAMES = ../lib64 $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib) -+MULTILIB_OSDIRNAMES = ../lib ../lib32 - - LIBGCC = stmp-multilib - INSTALL_LIBGCC = install-multilib diff --git a/multilib/lib32-acl/PKGBUILD b/multilib/lib32-acl/PKGBUILD deleted file mode 100644 index 6654ef38c..000000000 --- a/multilib/lib32-acl/PKGBUILD +++ /dev/null @@ -1,34 +0,0 @@ -# $Id: PKGBUILD 57960 2011-11-04 22:18:21Z lcarlier $ -# Maintainer: Thomas Bächler <thomas@archlinux.org> - -pkgname=lib32-acl -pkgver=2.2.51 -pkgrel=2 -pkgdesc="Access control list libraries (32-bit)" -arch=('x86_64') -url="http://savannah.nongnu.org/projects/acl" -license=('LGPL') -depends=('lib32-attr>=2.4.46' 'acl') -makedepends=('gcc-multilib') -options=('!libtool') -source=(http://download.savannah.gnu.org/releases/acl/acl-${pkgver}.src.tar.gz) -sha256sums=('06854521cf5d396801af7e54b9636680edf8064355e51c07657ec7442a185225') - -build() { - cd "${srcdir}/acl-${pkgver}" - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - export INSTALL_USER=root INSTALL_GROUP=root - ./configure --prefix=/usr --libdir=/usr/lib32 --libexecdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/acl-${pkgver}" - - make DIST_ROOT="${pkgdir}" install install-lib install-dev - - rm -rf ${pkgdir}/usr/{bin,include,share} -} diff --git a/multilib/lib32-alsa-lib/PKGBUILD b/multilib/lib32-alsa-lib/PKGBUILD deleted file mode 100644 index 8dff0f1d3..000000000 --- a/multilib/lib32-alsa-lib/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# $Id: PKGBUILD 40235 2011-02-22 08:22:12Z heftig $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> - -_pkgbasename=alsa-lib -pkgname=lib32-${_pkgbasename} -pkgver=1.0.24.1 -pkgrel=1 -pkgdesc="An alternative implementation of Linux sound support (32 bit)" -arch=('x86_64') -url="http://www.alsa-project.org" -depends=('lib32-glibc' $_pkgbasename) -makedepends=('gcc-multilib') -license=('GPL') -options=(!libtool) -source=(ftp://ftp.alsa-project.org/pub/lib/${_pkgbasename}-$pkgver.tar.bz2) - -build() { - cd $srcdir/${_pkgbasename}-$pkgver - export CC='gcc -m32' - export PKG_CONFIG_PATH=/usr/lib32/pkgconfig - ./configure --prefix=/usr --libdir=/usr/lib32 --disable-python - make -} - -package() { - cd $srcdir/${_pkgbasename}-$pkgver - make DESTDIR=$pkgdir install - - # Clean up lib32 package - rm -rf "${pkgdir}"/usr/{bin,include,share} -} -md5sums=('7cc05f25e1d5b65da8fb3fdcd540f226') diff --git a/multilib/lib32-alsa-oss/PKGBUILD b/multilib/lib32-alsa-oss/PKGBUILD deleted file mode 100644 index bcb47a8e7..000000000 --- a/multilib/lib32-alsa-oss/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# $Id: PKGBUILD 57964 2011-11-04 22:23:42Z lcarlier $ -# Maintainer: judd <jvinet@zeroflux.org> - -_pkgbasename=alsa-oss -pkgname=lib32-${_pkgbasename} -pkgver=1.0.17 -pkgrel=3 -pkgdesc="OSS compatibility library (32 bit)" -arch=(x86_64) -license=('GPL') -url="http://www.alsa-project.org" -options=(!libtool) -depends=('lib32-glibc' 'lib32-alsa-lib' 'alsa-oss') -source=(ftp://ftp.alsa-project.org/pub/oss-lib/${_pkgbasename}-$pkgver.tar.bz2) -md5sums=('1b1850c2fc91476a73d50f537cbd402f') - -build() { - cd $srcdir/${_pkgbasename}-$pkgver - - export CC='gcc -m32' - export PKG_CONFIG_PATH=/usr/lib32/pkgconfig - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd $srcdir/${_pkgbasename}-$pkgver - - make DESTDIR="$pkgdir" install - - # Clean up lib32 package - rm -rf "${pkgdir}"/usr/{bin,include,share} -} diff --git a/multilib/lib32-alsa-plugins/PKGBUILD b/multilib/lib32-alsa-plugins/PKGBUILD deleted file mode 100644 index 4a0ce214d..000000000 --- a/multilib/lib32-alsa-plugins/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 40238 2011-02-22 08:27:39Z heftig $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> - -_pkgbasename=alsa-plugins -pkgname=lib32-$_pkgbasename -pkgver=1.0.24 -pkgrel=1 -pkgdesc="Extra alsa plugins (32-bit)" -arch=(x86_64) -url="http://www.alsa-project.org" -license=(GPL) -depends=(lib32-alsa-lib $_pkgbasename) -makedepends=(lib32-{libpulse,jack,speex,libsamplerate} gcc-multilib) -optdepends=('lib32-libpulse: PulseAudio plugin' - 'lib32-jack: Jack plugin' - 'lib32-libsamplerate: libsamplerate resampling plugin' - 'lib32-speex: libspeexdsp resampling plugin') -options=('!libtool') -source=("ftp://ftp.alsa-project.org/pub/plugins/$_pkgbasename-$pkgver.tar.bz2") -md5sums=('e4d4c90e11ab9d1a117afbbc1edd2b16') - -build() { - cd "$srcdir/$_pkgbasename-$pkgver" - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --libdir=/usr/lib32 --disable-avcodec - make -} - -package() { - cd "$srcdir/$_pkgbasename-$pkgver" - make DESTDIR="$pkgdir" install -} diff --git a/multilib/lib32-atk/PKGBUILD b/multilib/lib32-atk/PKGBUILD deleted file mode 100644 index 89fdf434c..000000000 --- a/multilib/lib32-atk/PKGBUILD +++ /dev/null @@ -1,34 +0,0 @@ -# $Id: PKGBUILD 56310 2011-10-05 14:32:13Z bluewind $ -# Contributor: Pierre Schmitz <pierre@archlinux.de> -# Maintainer: Mikko Seppälä <t-r-a-y@mbnet.fi> -_pkgbasename=atk -pkgname=lib32-$_pkgbasename -pkgver=2.2.0 -pkgrel=1 -pkgdesc="A library providing a set of interfaces for accessibility (32-bit)" -arch=('x86_64') -license=('LGPL') -depends=('lib32-glib2>=2.25.17' $_pkgbasename) -makedepends=('gcc-multilib') -options=('!libtool') -source=(http://ftp.gnome.org/pub/gnome/sources/${_pkgbasename}/${pkgver%.*}/${_pkgbasename}-${pkgver}.tar.xz) -url='http://www.gtk.org/' -sha256sums=('8b22f0e7803dd3734c676ccd68ea999ff1156ca49d99c3de5c1d269ad0c3739d') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - ./configure --prefix=/usr --libdir=/usr/lib32 \ - --disable-introspection - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share} -} diff --git a/multilib/lib32-attr/PKGBUILD b/multilib/lib32-attr/PKGBUILD deleted file mode 100644 index c802e5b3b..000000000 --- a/multilib/lib32-attr/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# $Id: PKGBUILD 54388 2011-08-17 20:57:53Z lcarlier $ -# Maintainer: Thomas Bächler <thomas@archlinux.org> -_pkgbasename=attr -pkgname=lib32-$_pkgbasename -pkgver=2.4.46 -pkgrel=1 -pkgdesc="Extended attribute support library for ACL support (32-bit)" -arch=(x86_64) -url="http://savannah.nongnu.org/projects/attr" -license=('LGPL') -depends=('lib32-glibc' $_pkgbasename) -makedepends=('gcc-multilib' 'gettext') -options=('!libtool') -source=(http://download.savannah.gnu.org/releases/attr/attr-${pkgver}.src.tar.gz) -sha256sums=('dcd69bdca7ff166bc45141eddbcf21967999a6b66b0544be12a1cc2fd6340e1f') - -build() { - cd ${srcdir}/attr-${pkgver} - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - export INSTALL_USER=root INSTALL_GROUP=root - ./configure --prefix=/usr --libdir=/usr/lib32 --libexecdir=/usr/lib32 - make - - # Doesn't like building as non-root - -# make prefix=${pkgdir}/usr \ -# PKG_LIB_DIR=$pkgdir/usr/lib32 \ -# PKG_DEVLIB_DIR=$pkgdir/usr/lib32 \ - make DIST_ROOT="${pkgdir}" \ - install-lib install-dev - - rm -rf "${pkgdir}"/usr/{bin,include,share} -} diff --git a/multilib/lib32-audiofile/PKGBUILD b/multilib/lib32-audiofile/PKGBUILD deleted file mode 100644 index 467f9bd3d..000000000 --- a/multilib/lib32-audiofile/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# $Id: PKGBUILD 26514 2010-09-15 22:28:30Z bluewind $ -# Maintainer: dorphell <dorphell@archlinux.org> -_pkgbasename=audiofile -pkgname=lib32-$_pkgbasename -pkgver=0.2.7 -pkgrel=3 -pkgdesc="Silicon Graphics Audio File Library (32-bit)" -arch=('x86_64') -url="http://www.68k.org/~michael/audiofile/" -license=('LGPL') -depends=('lib32-glibc' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool') -source=(http://ftp.gnome.org/pub/gnome/sources/${_pkgbasename}/0.2/${_pkgbasename}-${pkgver}.tar.bz2) -sha256sums=('61efd278627415b5468426fc9e52aef32ea0fdac12b56bcdd72734c2ece5945e') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - make DESTDIR="${pkgdir}" install - rm -rf "${pkgdir}"/usr/{include,share,bin} -} diff --git a/multilib/lib32-bzip2/PKGBUILD b/multilib/lib32-bzip2/PKGBUILD deleted file mode 100644 index 3b81ad3ec..000000000 --- a/multilib/lib32-bzip2/PKGBUILD +++ /dev/null @@ -1,43 +0,0 @@ -#$Id: PKGBUILD 53422 2011-08-03 14:41:13Z ibiru $ -# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> -# Contributor: TryA <tryagainprod {at} gmail.com> - -_pkgbasename=bzip2 -pkgname=lib32-bzip2 -pkgver=1.0.6 -pkgrel=1 -pkgdesc="A high-quality data compression program (32-bit)" -arch=('x86_64') -license=('custom') -url="http://sources.redhat.com/bzip2" -depends=('lib32-glibc' $_pkgbasename) -makedepends=('gcc-multilib') -source=(http://www.bzip.org/$pkgver/bzip2-$pkgver.tar.gz) -md5sums=('00b516f4704d4a7cb50a1d97e6e8e15b') - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - sed -i "s|CC=gcc|CC=gcc -m32|" Makefile - sed -i "s|CC=gcc|CC=gcc -m32|" Makefile-libbz2_so - - # add large-file support - sed -e 's/^CFLAGS=\(.*\)$/CFLAGS=\1 \$(BIGFILES)/' -i ./Makefile-libbz2_so - - # use our optimization - sed -i "s|-O2|${CFLAGS}|g" Makefile - sed -i "s|-O2|${CFLAGS}|g" Makefile-libbz2_so - - make -f Makefile-libbz2_so - make libbz2.a -} - -package(){ - cd "${srcdir}/${_pkgbasename}-${pkgver}" - install -Dm755 libbz2.so.1.0.6 "${pkgdir}"/usr/lib32/libbz2.so.1.0.6 - ln -s libbz2.so.1.0.6 "${pkgdir}"/usr/lib32/libbz2.so - ln -s libbz2.so.1.0.6 "${pkgdir}"/usr/lib32/libbz2.so.1 - ln -s libbz2.so.1.0.6 "${pkgdir}"/usr/lib32/libbz2.so.1.0 - - install -Dm644 libbz2.a ${pkgdir}/usr/lib32/libbz2.a -} diff --git a/multilib/lib32-cairo/PKGBUILD b/multilib/lib32-cairo/PKGBUILD deleted file mode 100644 index a8cbc6b72..000000000 --- a/multilib/lib32-cairo/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# $Id: PKGBUILD 43547 2011-03-27 14:25:07Z bluewind $ -# Maintainer: Ionut Biru <ibiru@archlinux.org> - -_pkgbasename=cairo -pkgname=lib32-$_pkgbasename -pkgver=1.10.2 -pkgrel=2 -pkgdesc="Cairo vector graphics library (32-bit)" -arch=('x86_64') -url="http://cairographics.org/" -license=('LGPL' 'MPL') -depends=('lib32-libpng' 'lib32-libxrender' 'lib32-fontconfig' - 'lib32-pixman' 'lib32-glib2' ${_pkgbasename}) -makedepends=('gcc-multilib') -source=(http://cairographics.org/releases/${_pkgbasename}-${pkgver}.tar.gz - cairo-1.10.0-buggy_gradients.patch) -sha1sums=('ccce5ae03f99c505db97c286a0c9a90a926d3c6e' - '8b843a9934e5112b6188e5bcf4adfc1fdaf9fa04') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - ./configure --prefix=/usr --libdir=/usr/lib32 \ - --sysconfdir=/etc --localstatedir=/var \ - --disable-static --enable-tee - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - rm -rf "${pkgdir}"/usr/{include,share,bin} -} diff --git a/multilib/lib32-cairo/cairo-1.10.0-buggy_gradients.patch b/multilib/lib32-cairo/cairo-1.10.0-buggy_gradients.patch deleted file mode 100644 index 368e356d3..000000000 --- a/multilib/lib32-cairo/cairo-1.10.0-buggy_gradients.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- a/src/cairo-xlib-display.c.ubuntu 2010-08-04 11:57:49.000000000 +0200
-+++ b/src/cairo-xlib-display.c 2010-08-04 11:58:28.000000000 +0200
-@@ -353,11 +353,7 @@
- /* Prior to Render 0.10, there is no protocol support for gradients and
- * we call function stubs instead, which would silently consume the drawing.
- */
--#if RENDER_MAJOR == 0 && RENDER_MINOR < 10
- display->buggy_gradients = TRUE;
--#else
-- display->buggy_gradients = FALSE;
--#endif
- display->buggy_pad_reflect = FALSE;
- display->buggy_repeat = FALSE;
diff --git a/multilib/lib32-curl/PKGBUILD b/multilib/lib32-curl/PKGBUILD deleted file mode 100755 index e082dac0f..000000000 --- a/multilib/lib32-curl/PKGBUILD +++ /dev/null @@ -1,56 +0,0 @@ -# $Id: PKGBUILD 53559 2011-08-05 17:14:56Z bluewind $ -# Maintainer: Florian Pritz <flo@xssn.at> - -_pkgbasename=curl -pkgname=lib32-$_pkgbasename -pkgver=7.21.7 -pkgrel=1 -pkgdesc="An URL retrieval utility and library (32-bit)" -arch=('x86_64') -url="http://curl.haxx.se" -license=('MIT') -depends=('lib32-zlib' 'lib32-openssl' 'bash' 'ca-certificates' 'lib32-libssh2' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool') -source=("http://curl.haxx.se/download/${_pkgbasename}-${pkgver}.tar.bz2") -md5sums=('5f6d50c4d4ee38c57fe37e3cff75adbd') - - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/${_pkgbasename}-${pkgver} - - ./configure \ - --with-random=/dev/urandom \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --disable-dependency-tracking \ - --enable-ipv6 \ - --disable-ldaps \ - --disable-ldap \ - --disable-manual \ - --enable-versioned-symbols \ - --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt \ - --without-libidn \ - --libdir=/usr/lib32 \ - --enable-threaded-resolver - make -} - -package() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{share,bin} - #we need curlbuild.h - find ${pkgdir}/usr/include/curl -type f -not -name curlbuild.h -delete - #now save it as curlbuild-32.h - mv ${pkgdir}/usr/include/curl/curlbuild.h ${pkgdir}/usr/include/curl/curlbuild-32.h - - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-db/PKGBUILD b/multilib/lib32-db/PKGBUILD deleted file mode 100644 index 93be51e47..000000000 --- a/multilib/lib32-db/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# $Id: PKGBUILD 35318 2010-12-18 21:29:14Z heftig $ -# Maintainer: Biru Ionut <biru.ionut at gmail.com> -# Contributor: Allan McRae <allan@archlinux.org> -# Contributor: Andreas Radke <andyrtr@archlinux.org> - -_pkgbasename=db -pkgname=lib32-$_pkgbasename -pkgver=5.1.19 -pkgrel=1 -pkgdesc="The Berkeley DB embedded database system (32-bit)" -arch=('x86_64') -url="http://www.oracle.com/technology/software/products/berkeley-db/index.html" -license=('custom') -depends=('lib32-gcc-libs' $_pkgbasename) -makedepends=('gcc-multilib') -options=('!libtool') -source=(http://download-uk.oracle.com/berkeley-db/db-${pkgver}.tar.gz) -md5sums=('76fcbfeebfcd09ba0b4d96bfdf8d884d') - -build() { - cd ${srcdir}/$_pkgbasename-${pkgver}/build_unix - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ../dist/configure --prefix=/usr --enable-compat185 \ - --enable-shared --enable-static --enable-cxx --enable-dbm \ - --libdir=/usr/lib32 - make LIBSO_LIBS=-lpthread -} - -package() { - cd ${srcdir}/${_pkgbasename}-${pkgver}/build_unix - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{docs,include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-dbus-core/PKGBUILD b/multilib/lib32-dbus-core/PKGBUILD deleted file mode 100644 index ac3a2e24a..000000000 --- a/multilib/lib32-dbus-core/PKGBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# $Id: PKGBUILD 26527 2010-09-15 22:30:16Z bluewind $ -# Maintainer : Ionut Biru <ibiru@archlinux.org> - -pkgname=lib32-dbus-core -_pkgbasename=dbus-core -pkgver=1.4.0 -pkgrel=2 -pkgdesc="Freedesktop.org message bus system (32-bit)" -arch=('x86_64') -url="http://www.freedesktop.org/Software/dbus" -license=('GPL' 'custom') -depends=('lib32-glibc' 'lib32-expat' 'dbus-core') -makedepends=('gcc-multilib') -options=(!libtool) -source=(http://dbus.freedesktop.org/releases/dbus/dbus-${pkgver}.tar.gz) -md5sums=('f59618b18d2fb2bd1fce9e1c5a2a3282') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/dbus-${pkgver}" - - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=/usr/lib32 \ - --libexecdir=/usr/lib/dbus-1.0 --with-dbus-user=81 \ - --with-system-pid-file=/var/run/dbus.pid \ - --enable-inotify --disable-dnotify \ - --disable-verbose-mode --disable-static \ - --disable-tests --disable-asserts --without-x - make -} -package() { - cd "${srcdir}/dbus-${pkgver}" - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{bin,include,lib,share} - rm -rf "${pkgdir}"/{etc,var} - - mkdir -p "${pkgdir}/usr/share/licenses" - ln -s ${_pkgbasename} "${pkgdir}/usr/share/licenses/${pkgname}" -} diff --git a/multilib/lib32-e2fsprogs/PKGBUILD b/multilib/lib32-e2fsprogs/PKGBUILD deleted file mode 100644 index ca7e2eb25..000000000 --- a/multilib/lib32-e2fsprogs/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer: Ionut Biru <ibiru@archlinux.org> -# Contributor: mightyjaym <jm.ambrosino@free.fr> -# Contributor: Mikko Seppälä <t-r-a-y@mbnet.fi> - -_pkgbasename=e2fsprogs -pkgname=lib32-e2fsprogs -pkgver=1.41.14 -pkgrel=2 -pkgdesc="Ext2 filesystem libraries (32-bit)" -arch=(x86_64) -license=('GPL' 'LGPL' 'MIT') -url="http://e2fsprogs.sourceforge.net" -depends=('lib32-util-linux' $_pkgbasename) -makedepends=('bc' 'gcc-multilib') -source=("http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz") -sha1sums=('24f9364fa3d4c0d7d00cb627b819d0e51055d6c5') - - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - ./configure --prefix=/usr --libdir=/usr/lib32 --with-root-prefix="" --enable-elf-shlibs \ - --disable-{debugfs,imager,resizer,fsck,uuidd,libuuid,libblkid} - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install-libs - - rm -rf "${pkgdir}"/usr/{bin,include,share} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-expat/CVE-2009-3560.patch b/multilib/lib32-expat/CVE-2009-3560.patch deleted file mode 100644 index 5fe9c36c8..000000000 --- a/multilib/lib32-expat/CVE-2009-3560.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -urNad trunk~/lib/xmlparse.c trunk/lib/xmlparse.c ---- trunk~/lib/xmlparse.c 2007-05-08 04:25:35.000000000 +0200 -+++ trunk/lib/xmlparse.c 2009-12-29 21:57:22.141732904 +0100 -@@ -3703,6 +3703,9 @@ - return XML_ERROR_UNCLOSED_TOKEN; - case XML_TOK_PARTIAL_CHAR: - return XML_ERROR_PARTIAL_CHAR; -+ case -XML_TOK_PROLOG_S: -+ tok = -tok; -+ break; - case XML_TOK_NONE: - #ifdef XML_DTD - /* for internal PE NOT referenced between declarations */ diff --git a/multilib/lib32-expat/CVE-2009-3720.patch b/multilib/lib32-expat/CVE-2009-3720.patch deleted file mode 100644 index 65d16431f..000000000 --- a/multilib/lib32-expat/CVE-2009-3720.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -urNad trunk~/lib/xmltok_impl.c trunk/lib/xmltok_impl.c ---- trunk~/lib/xmltok_impl.c 2006-11-26 18:34:46.000000000 +0100 -+++ trunk/lib/xmltok_impl.c 2009-10-22 21:42:41.000000000 +0200 -@@ -1744,7 +1744,7 @@ - const char *end, - POSITION *pos) - { -- while (ptr != end) { -+ while (ptr < end) { - switch (BYTE_TYPE(enc, ptr)) { - #define LEAD_CASE(n) \ - case BT_LEAD ## n: \ diff --git a/multilib/lib32-expat/PKGBUILD b/multilib/lib32-expat/PKGBUILD deleted file mode 100644 index c50cb9c79..000000000 --- a/multilib/lib32-expat/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# $Id: PKGBUILD 26535 2010-09-15 22:31:07Z bluewind $ - -_pkgbasename=expat -pkgname=lib32-${_pkgbasename} -pkgver=2.0.1 -pkgrel=7 -pkgdesc="An XML Parser library written in C (32 bit)" -arch=('x86_64') -url="http://expat.sourceforge.net/" -license=('custom') -makedepends=('gcc-multilib') -depends=('lib32-glibc' "${_pkgbasename}") -options=('!libtool') -source=(http://downloads.sourceforge.net/sourceforge/expat/${_pkgbasename}-${pkgver}.tar.gz - CVE-2009-3560.patch - CVE-2009-3720.patch) -md5sums=('ee8b492592568805593f81f8cdf2a04c' - '50603cac0f03aabc7087415251f592be' - 'f3eeb796f28945899216b815e5901996') - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - patch -Np1 -i $srcdir/CVE-2009-3560.patch - patch -Np1 -i $srcdir/CVE-2009-3720.patch - export CC='gcc -m32' - export PKG_CONFIG_PATH=/usr/lib32/pkgconfig - ./configure --prefix=/usr --libdir=/usr/lib32 --mandir=/usr/share/man - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - install -d -m755 "${pkgdir}/usr/share/licenses/" - ln -s ${_pkgbasename} "${pkgdir}/usr/share/licenses/${pkgname}" - - # Clean up lib32 package - rm -rf "${pkgdir}"/usr/{bin,include,share/man} -} diff --git a/multilib/lib32-flac/PKGBUILD b/multilib/lib32-flac/PKGBUILD deleted file mode 100644 index 00c2b8791..000000000 --- a/multilib/lib32-flac/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# $Id: PKGBUILD 26539 2010-09-15 22:31:33Z bluewind $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> - -_pkgbasename=flac -pkgname=lib32-$_pkgbasename -pkgver=1.2.1 -pkgrel=7 -pkgdesc="Free Lossless Audio Codec (32-bit)" -arch=('x86_64') -url="http://flac.sourceforge.net/" -license=('custom:Xiph' 'LGPL' 'GPL' 'FDL') -depends=('lib32-libogg' 'lib32-gcc-libs' $_pkgbasename) -makedepends=('nasm' gcc-multilib) -options=('!libtool' '!makeflags') -source=(http://downloads.sf.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz - flac-1.2.1-gcc-4.3-includes.patch) -md5sums=('153c8b15a54da428d1f0fadc756c22c7' - 'b9d245422bbc547b18a72897366bea77') -sha1sums=('bd54354900181b59db3089347cc84ad81e410b38' - '7e9f8c2ef4d9daf5ddd20df63b608fe19b8c1560') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/${_pkgbasename}-${pkgver} - patch -Np1 -i ${srcdir}/flac-1.2.1-gcc-4.3-includes.patch - ./configure --prefix=/usr --mandir=/usr/share/man --enable-shared \ - --disable-rpath --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-flac/flac-1.2.1-gcc-4.3-includes.patch b/multilib/lib32-flac/flac-1.2.1-gcc-4.3-includes.patch deleted file mode 100644 index 52fec8be5..000000000 --- a/multilib/lib32-flac/flac-1.2.1-gcc-4.3-includes.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -Naur flac-1.2.1-orig/examples/cpp/encode/file/main.cpp flac-1.2.1/examples/cpp/encode/file/main.cpp ---- flac-1.2.1-orig/examples/cpp/encode/file/main.cpp 2007-09-13 09:58:03.000000000 -0600 -+++ flac-1.2.1/examples/cpp/encode/file/main.cpp 2007-11-18 12:59:45.000000000 -0600 -@@ -30,6 +30,7 @@ - - #include <stdio.h> - #include <stdlib.h> -+#include <cstring> - #include "FLAC++/metadata.h" - #include "FLAC++/encoder.h" - diff --git a/multilib/lib32-fontconfig/30-urw-aliases.patch b/multilib/lib32-fontconfig/30-urw-aliases.patch deleted file mode 100644 index 8077b869e..000000000 --- a/multilib/lib32-fontconfig/30-urw-aliases.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- a/conf.d/30-urw-aliases.conf 2009-08-06 16:23:57.000000000 +0100 -+++ b/conf.d/30-urw-aliases.conf 2009-08-06 16:25:07.000000000 +0100 -@@ -29,6 +29,10 @@ - <family>Zapf Dingbats</family> - <accept><family>Dingbats</family></accept> - </alias> -+ <alias binding="same"> -+ <family>ZapfDingbats</family> -+ <accept><family>Dingbats</family></accept> -+ </alias> - <match target="pattern"> - <test name="family"> - <string>Symbol</string> diff --git a/multilib/lib32-fontconfig/PKGBUILD b/multilib/lib32-fontconfig/PKGBUILD deleted file mode 100644 index 36f52ba32..000000000 --- a/multilib/lib32-fontconfig/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# $Id: PKGBUILD 26542 2010-09-15 22:31:59Z bluewind $ -# Maintainer: Jan de Groot <jgc@archlinux.org> -_pkgbasename=fontconfig -pkgname=lib32-$_pkgbasename -pkgver=2.8.0 -pkgrel=3 -pkgdesc="A library for configuring and customizing font access (32-bit)" -arch=(x86_64) -url="http://www.fontconfig.org/release/" -license=('custom') -depends=('lib32-expat>=2.0.1' 'lib32-freetype2>=2.3.11' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool') -source=(http://www.fontconfig.org/release/${_pkgbasename}-${pkgver}.tar.gz - 30-urw-aliases.patch) -md5sums=('77e15a92006ddc2adbb06f840d591c0e' - '51bc6cb633b50f3c28793361738aac5b') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - patch -Np1 -i "${srcdir}/30-urw-aliases.patch" - # enable Position Independent Code for prelinking - export CFLAGS="${CFLAGS} -fPIC" - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} "$pkgdir"/{etc,var} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-freetype2/PKGBUILD b/multilib/lib32-freetype2/PKGBUILD deleted file mode 100644 index 73a59381b..000000000 --- a/multilib/lib32-freetype2/PKGBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# $Id: PKGBUILD 53420 2011-08-03 14:38:19Z ibiru $ -# Maintainer: Ionut Biru <ibiru@archlinux.org> -# Contributor: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=freetype2 -pkgname=lib32-$_pkgbasename -pkgver=2.4.6 -pkgrel=2 -pkgdesc="TrueType font rendering library (32-bit)" -arch=(x86_64) -license=('GPL') -url="http://freetype.sourceforge.net" -depends=('lib32-zlib' 'lib32-bzip2' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool') -source=(http://downloads.sourceforge.net/sourceforge/freetype/freetype-${pkgver}.tar.bz2 - freetype-2.3.0-enable-spr.patch - freetype-2.2.1-enable-valid.patch) -md5sums=('5e6510613f612809d2d7862592b92ab7' - '816dc8619a6904a7385769433c0a8653' - '214119610444c9b02766ccee5e220680') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/freetype-${pkgver}" - patch -Np1 -i "${srcdir}/freetype-2.3.0-enable-spr.patch" - patch -Np1 -i "${srcdir}/freetype-2.2.1-enable-valid.patch" - - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/freetype-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} -} diff --git a/multilib/lib32-freetype2/freetype-2.2.1-enable-valid.patch b/multilib/lib32-freetype2/freetype-2.2.1-enable-valid.patch deleted file mode 100644 index c78b6b70f..000000000 --- a/multilib/lib32-freetype2/freetype-2.2.1-enable-valid.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- freetype-2.2.1/modules.cfg.orig 2006-07-07 21:01:09.000000000 -0400 -+++ freetype-2.2.1/modules.cfg 2006-07-07 21:01:54.000000000 -0400 -@@ -110,7 +110,7 @@ - AUX_MODULES += cache - - # TrueType GX/AAT table validation. Needs ftgxval.c below. --# AUX_MODULES += gxvalid -+AUX_MODULES += gxvalid - - # Support for streams compressed with gzip (files with suffix .gz). - # -@@ -124,7 +124,7 @@ - - # OpenType table validation. Needs ftotval.c below. - # --# AUX_MODULES += otvalid -+AUX_MODULES += otvalid - - # Auxiliary PostScript driver component to share common code. - # diff --git a/multilib/lib32-freetype2/freetype-2.3.0-enable-spr.patch b/multilib/lib32-freetype2/freetype-2.3.0-enable-spr.patch deleted file mode 100644 index 8432e28a4..000000000 --- a/multilib/lib32-freetype2/freetype-2.3.0-enable-spr.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- freetype-2.3.0/include/freetype/config/ftoption.h.spf 2007-01-18 14:27:34.000000000 -0500 -+++ freetype-2.3.0/include/freetype/config/ftoption.h 2007-01-18 14:27:48.000000000 -0500 -@@ -92,7 +92,7 @@ - /* This is done to allow FreeType clients to run unmodified, forcing */ - /* them to display normal gray-level anti-aliased glyphs. */ - /* */ --/* #define FT_CONFIG_OPTION_SUBPIXEL_RENDERING */ -+#define FT_CONFIG_OPTION_SUBPIXEL_RENDERING - - - /*************************************************************************/ diff --git a/multilib/lib32-gdk-pixbuf2/PKGBUILD b/multilib/lib32-gdk-pixbuf2/PKGBUILD deleted file mode 100644 index 2e5826a1b..000000000 --- a/multilib/lib32-gdk-pixbuf2/PKGBUILD +++ /dev/null @@ -1,45 +0,0 @@ -# $Id: PKGBUILD 91063 2010-09-21 19:21:24Z ibiru $ -# Maintainer: Ionut Biru <ibiru@archlinux.org> -_pkgbasename=gdk-pixbuf2 -pkgname=lib32-$_pkgbasename -pkgver=2.24.0 -pkgrel=2 -pkgdesc="An image loading library for gtk2 (32-bit)" -arch=('x86_64') -url="http://www.gtk.org/" -license=('GPL2') -depends=('lib32-glib2>=2.25.15' - lib32-lib{'png>=1.4.3','tiff>=3.9.4','jpeg>=8.0.2',x11} - $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool' '!docs') -install=gdk-pixbuf2.install -source=(http://download.gnome.org/sources/gdk-pixbuf/2.24/gdk-pixbuf-${pkgver}.tar.bz2) -md5sums=('d8ece3a4ade4a91c768328620e473ab8') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/gdk-pixbuf-${pkgver}" - - ./configure --prefix=/usr --libdir=/usr/lib32 \ - --without-libjasper \ - --with-included-loaders=png - make -} - -package() { - cd "${srcdir}/gdk-pixbuf-${pkgver}" - - make DESTDIR="${pkgdir}" install - rm -rf "${pkgdir}"/etc - rm -rf "${pkgdir}"/usr/{include,share} - - cd "${pkgdir}"/usr/bin - mv gdk-pixbuf-query-loaders gdk-pixbuf-query-loaders-32 - rm gdk-pixbuf-csource -} - -# vim:set ts=2 sw=2 et: diff --git a/multilib/lib32-gdk-pixbuf2/gdk-pixbuf2.install b/multilib/lib32-gdk-pixbuf2/gdk-pixbuf2.install deleted file mode 100644 index 92d58ef04..000000000 --- a/multilib/lib32-gdk-pixbuf2/gdk-pixbuf2.install +++ /dev/null @@ -1,11 +0,0 @@ -post_install() { - usr/bin/gdk-pixbuf-query-loaders-32 --update-cache -} - -post_upgrade() { - post_install -} - -pre_remove() { - rm -f usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders/loaders.cache -} diff --git a/multilib/lib32-giflib/PKGBUILD b/multilib/lib32-giflib/PKGBUILD deleted file mode 100644 index a311cfa8e..000000000 --- a/multilib/lib32-giflib/PKGBUILD +++ /dev/null @@ -1,48 +0,0 @@ -# Maintainer: Jan de Groot <jgc@archlinux.org> -# Contributor: Baptiste Daroussin <baptiste.daroussin@gmail.com> -# Contributor: Grigorios Bouzakis <grbzks[at]gmail[dot]com> -# Contributor: mightyjaym <jm.ambrosino@free.fr> - -_pkgbasename=giflib -pkgname=lib32-$_pkgbasename -pkgver=4.1.6 -pkgrel=5 -pkgdesc="A library for reading and writing gif images (32-bit)" -url="http://sourceforge.net/projects/giflib/" -arch=('x86_64') -license=('MIT') -depends=('lib32-libx11' 'lib32-libsm' $_pkgbasename) -makedepends=(gcc-multilib) -provides=("lib32-libungif=${pkgver}") -conflicts=('lib32-libungif') -replaces=('lib32-libungif') -options=('!libtool') -source=(http://downloads.sourceforge.net/sourceforge/giflib/${_pkgbasename}-${pkgver}.tar.bz2) -md5sums=('7125644155ae6ad33dbc9fc15a14735f') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/${_pkgbasename}-${pkgver} - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - - make DESTDIR=${pkgdir} install - - # libungif compatibility - instructions taken from Redhat specfile - MAJOR=`echo ${pkgver} | sed 's/\([0-9]\+\)\..*/\1/'` - gcc -shared -Wl,-soname,libungif.so.${MAJOR} -Llib/.libs -lgif -o libungif.so.${pkgver} - install -m755 libungif.so.${pkgver} ${pkgdir}/usr/lib32/ - ln -sf libungif.so.${pkgver} ${pkgdir}/usr/lib32/libungif.so.4 - ln -sf libungif.so.4 ${pkgdir}/usr/lib32/libungif.so - - rm -rf "${pkgdir}"/usr/{include,share,bin} - install -m755 -d ${pkgdir}/usr/share/licenses - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-glew/PKGBUILD b/multilib/lib32-glew/PKGBUILD deleted file mode 100644 index 57a7580e9..000000000 --- a/multilib/lib32-glew/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# $Id: PKGBUILD 55986 2011-09-28 09:25:54Z bluewind $ -# Maintainer: Florian Pritz <flo@xinu.at> - -_pkgbasename=glew -pkgname=lib32-$_pkgbasename -pkgver=1.7.0 -pkgrel=1 -pkgdesc="A cross-platform C/C++ extension loading library (32 bit)" -arch=('x86_64') -url="http://glew.sourceforge.net" -license=('BSD' 'MIT' 'GPL') -depends=('lib32-libxmu' 'lib32-libxi' 'lib32-mesa' "$_pkgbasename>=$pkgver") -makedepends=('gcc-multilib') -source=(http://downloads.sourceforge.net/${_pkgbasename}/${_pkgbasename}-${pkgver}.tgz) -sha1sums=('9266f2360c1687a96f2ea06419671d370b2928d1') - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - sed -i 's|CC = cc|CC = gcc -m32|' config/Makefile.linux - sed -i 's|LD = cc|LD = gcc -m32|' config/Makefile.linux - sed -i 's|lib64|lib32|' config/Makefile.linux - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make GLEW_DEST="${pkgdir}/usr" install - chmod 0755 "${pkgdir}/usr/lib32/libGLEW.so.${pkgver}" - - rm -rf "${pkgdir}"/usr/{include,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-glib/PKGBUILD b/multilib/lib32-glib/PKGBUILD deleted file mode 100644 index a863c66f6..000000000 --- a/multilib/lib32-glib/PKGBUILD +++ /dev/null @@ -1,43 +0,0 @@ -# $Id: PKGBUILD 29612 2010-10-17 13:00:45Z pschmitz $ - -_pkgbasename=glib -pkgname=lib32-$_pkgbasename -pkgver=1.2.10 -pkgrel=11 -pkgdesc="Common C routines used by Gtk+ and other libs (32-bit)" -arch=('x86_64') -url="http://www.gtk.org/" -license=('LGPL') -depends=('lib32-glibc' "${_pkgbasename}") -makedepends=('gcc-multilib') -options=('!libtool' '!docs') -source=("ftp://ftp.gtk.org/pub/gtk/v1.2/${_pkgbasename}-${pkgver}.tar.gz" - 'gcc340.patch' - 'aclocal-fixes.patch') -md5sums=('6fe30dad87c77b91b632def29dd69ef9' - '877b3330e822a4be69a0f8a8c268cfd7' - 'e52c4b88427b9785bb8049dbdc9ff6fb') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/${_pkgbasename}-${pkgver} - patch -Np1 -i ../gcc340.patch - patch -Np0 -i ../aclocal-fixes.patch - - ./configure --prefix=/usr \ - --mandir=/usr/share/man \ - --libdir=/usr/lib32 \ - --infodir=/usr/share/info \ - --host=x86_64-unknown-linux-gnu \ - --target=x86_64-unknown-linux-gnu - make -} - -package() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - make DESTDIR=${pkgdir} install - rm -rf "${pkgdir}"/usr/{share,include,bin,lib32/glib} -} diff --git a/multilib/lib32-glib/aclocal-fixes.patch b/multilib/lib32-glib/aclocal-fixes.patch deleted file mode 100644 index b064074aa..000000000 --- a/multilib/lib32-glib/aclocal-fixes.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- glib.m4.orig 2006-03-05 13:13:24.000000000 +0000 -+++ glib.m4 2006-03-05 13:13:35.000000000 +0000 -@@ -5,7 +5,7 @@ - dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if "gmodule" or - dnl gthread is specified in MODULES, pass to glib-config - dnl --AC_DEFUN(AM_PATH_GLIB, -+AC_DEFUN([AM_PATH_GLIB], - [dnl - dnl Get the cflags and libraries from the glib-config script - dnl diff --git a/multilib/lib32-glib/gcc340.patch b/multilib/lib32-glib/gcc340.patch deleted file mode 100644 index 941111ae7..000000000 --- a/multilib/lib32-glib/gcc340.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff -Naur glib-1.2.10.orig/glib.h glib-1.2.10/glib.h ---- glib-1.2.10.orig/glib.h 2001-02-27 04:44:38.000000000 +0100 -+++ glib-1.2.10/glib.h 2004-05-27 15:50:32.436527848 +0200 -@@ -271,8 +271,10 @@ - - /* Wrap the gcc __PRETTY_FUNCTION__ and __FUNCTION__ variables with - * macros, so we can refer to them as strings unconditionally. -+ * -+ * Unfortunately these are _not_ treated as strings anymore in GCC3.4. - */ --#ifdef __GNUC__ -+#if defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ < 4) - #define G_GNUC_FUNCTION __FUNCTION__ - #define G_GNUC_PRETTY_FUNCTION __PRETTY_FUNCTION__ - #else /* !__GNUC__ */ diff --git a/multilib/lib32-glib2/PKGBUILD b/multilib/lib32-glib2/PKGBUILD deleted file mode 100644 index a32afa6e4..000000000 --- a/multilib/lib32-glib2/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# $Id: PKGBUILD 57908 2011-11-04 11:02:50Z bluewind $ -# Maintainer: Ionut Biru <ibiru@archlinux.org> -# Contributor: Pierre Schmitz <pierre@archlinux.de> -# Contributor: Mikko Seppälä <t-r-a-y@mbnet.fi> - -_pkgbasename=glib2 -pkgname=lib32-$_pkgbasename -pkgver=2.30.1 -pkgrel=1 -pkgdesc="Common C routines used by GTK+ 2.4 and other libs (32-bit)" -url="http://www.gtk.org/" -arch=('x86_64') -license=('LGPL') -depends=('lib32-pcre' 'lib32-zlib' 'lib32-dbus-core' lib32-libffi $_pkgbasename) -makedepends=('gcc-multilib' python2) -options=('!libtool' '!docs') -source=(http://ftp.gnome.org/pub/GNOME/sources/glib/2.30/glib-${pkgver}.tar.xz) -sha256sums=('82fde222ea33a0faac88e9b50f5b1f7fcfc235c861a9371e8fe47ec12c1e27f9') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/glib-${pkgver}" - PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib32 \ - --enable-static --enable-shared --with-pcre=system --disable-fam - make -} - -package() { - cd "${srcdir}/glib-${pkgver}" - make DESTDIR="${pkgdir}" install - rm -rf "${pkgdir}"/{etc,usr/{share,include}} - - cd "${pkgdir}"/usr/bin - mv gio-querymodules gio-querymodules-32 - rm -f gdbus glib* gobject-query gsettings gtester* - rm -rf "$pkgdir"/usr/{bin/gdbus-codegen,lib32/gdbus-2.0} -} diff --git a/multilib/lib32-glibc/PKGBUILD b/multilib/lib32-glibc/PKGBUILD deleted file mode 100644 index 48057fdec..000000000 --- a/multilib/lib32-glibc/PKGBUILD +++ /dev/null @@ -1,167 +0,0 @@ -# $Id: PKGBUILD 57526 2011-10-30 06:49:02Z allan $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> -# Contributor: Jan de Groot <jgc@archlinux.org> -# Contributor: Allan McRae <allan@archlinux.org> - -# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc -# NOTE: valgrind requires rebuild with each new glibc version - -_pkgbasename=glibc -pkgname=lib32-$_pkgbasename -pkgver=2.14.1 -pkgrel=1 -_glibcdate=20111025 -pkgdesc="GNU C Library for multilib" -arch=('x86_64') -url="http://www.gnu.org/software/libc" -license=('GPL' 'LGPL') -depends=("glibc>=$pkgver") -makedepends=('gcc-multilib>=4.6') -options=('!strip' '!emptydirs') -source=(ftp://ftp.archlinux.org/other/glibc/${_pkgbasename}-${pkgver}_${_glibcdate}.tar.xz - glibc-2.10-dont-build-timezone.patch - glibc-2.10-bz4781.patch - glibc-__i686.patch - glibc-2.12.1-static-shared-getpagesize.patch - glibc-2.12.2-ignore-origin-of-privileged-program.patch - glibc-2.13-futex.patch - glibc-2.14-libdl-crash.patch - glibc-2.14-revert-4768ae77.patch - glibc-2.14-reexport-rpc-interface.patch - glibc-2.14-reinstall-nis-rpc-headers.patch - lib32-glibc.conf) -md5sums=('c52a15134dfa9f2c94f2ccd4cb155cf1' - '4dadb9203b69a3210d53514bb46f41c3' - '0c5540efc51c0b93996c51b57a8540ae' - '40cd342e21f71f5e49e32622b25acc52' - 'a3ac6f318d680347bb6e2805d42b73b2' - 'b042647ea7d6f22ad319e12e796bd13e' - '7d0154b7e17ea218c9fa953599d24cc4' - '6970bcfeb3bf88913436d5112d16f588' - '7da8c554a3b591c7401d7023b1928afc' - 'c5de2a946215d647c8af5432ec4b0da0' - '55febbb72139ac7b65757df085024b83' - 'a8f4549c716cd37244fbf1ed059497f8') - -build() { - cd ${srcdir}/glibc - - # timezone data is in separate package (tzdata) - patch -Np1 -i ${srcdir}/glibc-2.10-dont-build-timezone.patch - - # http://sources.redhat.com/bugzilla/show_bug.cgi?id=4781 - patch -Np1 -i ${srcdir}/glibc-2.10-bz4781.patch - - # http://sources.redhat.com/bugzilla/show_bug.cgi?id=411 - # http://sourceware.org/ml/libc-alpha/2009-07/msg00072.html - patch -Np1 -i ${srcdir}/glibc-__i686.patch - - # http://sourceware.org/bugzilla/show_bug.cgi?id=11929 - # using Fedora "fix" as patch in that bug report causes breakages... - patch -Np1 -i ${srcdir}/glibc-2.12.1-static-shared-getpagesize.patch - - # http://www.exploit-db.com/exploits/15274/ - # http://sourceware.org/git/?p=glibc.git;a=patch;h=d14e6b09 (only fedora branch...) - patch -Np1 -i ${srcdir}/glibc-2.12.2-ignore-origin-of-privileged-program.patch - - # http://sourceware.org/bugzilla/show_bug.cgi?id=12403 - patch -Np1 -i ${srcdir}/glibc-2.13-futex.patch - - # http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=675155e9 (only fedora branch...) - # http://sourceware.org/ml/libc-alpha/2011-06/msg00006.html - patch -Np1 -i ${srcdir}/glibc-2.14-libdl-crash.patch - - # Revert commit causing issues with crappy DNS servers... - # Will be removed when workaround becomes annoying to maintain - USE A BETTER DNS SERVER! - # Note that both these patches do not fix the issue completely: - # http://sourceware.org/bugzilla/show_bug.cgi?id=13013 - # http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=032c0ee3 (only fedora branch...) - patch -Np1 -i ${srcdir}/glibc-2.14-revert-4768ae77.patch - - # re-export RPC interface until libtirpc is ready as a replacement - # http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=acee4873 (only fedora branch...) - patch -Np1 -i ${srcdir}/glibc-2.14-reexport-rpc-interface.patch - # http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=bdd816a3 (only fedora branch...) - patch -Np1 -i ${srcdir}/glibc-2.14-reinstall-nis-rpc-headers.patch - - cd ${srcdir} - mkdir glibc-build - cd glibc-build - - export CC="gcc -m32" - - # Hack to fix NPTL issues with Xen, only required on 32bit platforms - export CFLAGS="${CFLAGS} -mno-tls-direct-seg-refs" - - echo "slibdir=/lib32" >> configparms - - # remove hardening options from CFLAGS for building libraries - CFLAGS=${CFLAGS/-fstack-protector/} - CFLAGS=${CFLAGS/-D_FORTIFY_SOURCE=2/} - - ${srcdir}/glibc/configure --prefix=/usr \ - --libdir=/usr/lib32 --libexecdir=/usr/lib32 \ - --with-headers=/usr/include \ - --enable-add-ons=nptl,libidn \ - --enable-kernel=2.6.27 \ - --with-tls --with-__thread \ - --enable-bind-now --without-gd \ - --without-cvs --disable-profile \ - --enable-multi-arch i686-unknown-linux-gnu - - # build libraries with hardening disabled - echo "build-programs=no" >> configparms - make - - # re-enable hardening for programs - sed -i "s#=no#=yes#" configparms - echo "CC += -fstack-protector -D_FORTIFY_SOURCE=2" >> configparms - echo "CXX += -fstack-protector -D_FORTIFY_SOURCE=2" >> configparms - make - - # remove harding in preparation to run test-suite - sed -i '2,4d' configparms -} - -check() { - cd ${srcdir}/glibc-build - - # some errors are expected - manually check log files - make -k check || true -} - -package() { - cd ${srcdir}/glibc-build - make install_root=${pkgdir} install - - rm -rf ${pkgdir}/{etc,sbin,usr/{bin,sbin,share}} - - # We need one 32 bit specific header file - find ${pkgdir}/usr/include -type f -not -name stubs-32.h -delete - - # manually strip files as stripping libpthread-*.so and libthread_db.so - # with the default $STRIP_SHARED breaks gdb and stripping ld-*.so breaks - # valgrind on x86_64 - - cd $pkgdir - strip $STRIP_BINARIES usr/lib32/getconf/* - - strip $STRIP_STATIC usr/lib32/*.a \ - lib32/{{ld,libpthread}-${pkgver},libthread_db-1.0}.so - - strip $STRIP_SHARED lib32/{libanl,libBrokenLocale,libc,libcidn,libcrypt}-${pkgver}.so \ - lib32/libnss_{compat,dns,files,hesiod,nis,nisplus}-${pkgver}.so \ - lib32/{libdl,libm,libnsl,libresolv,librt,libutil}-${pkgver}.so \ - lib32/{libmemusage,libpcprofile,libSegFault}.so \ - usr/lib32/{pt_chown,{audit,gconv}/*.so} - - # Dynamic linker - mkdir ${pkgdir}/lib - ln -s ../lib32/ld-linux.so.2 ${pkgdir}/lib/ - - # Add lib32 paths to the default library search path - install -Dm644 "$srcdir/lib32-glibc.conf" "$pkgdir/etc/ld.so.conf.d/lib32-glibc.conf" - - # Symlink /usr/lib32/locale to /usr/lib/locale - ln -s ../lib/locale "$pkgdir/usr/lib32/locale" -} diff --git a/multilib/lib32-glibc/glibc-2.10-bz4781.patch b/multilib/lib32-glibc/glibc-2.10-bz4781.patch deleted file mode 100644 index cf1a97a18..000000000 --- a/multilib/lib32-glibc/glibc-2.10-bz4781.patch +++ /dev/null @@ -1,42 +0,0 @@ -diff -Naur glibc-old/sysdeps/unix/sysv/linux/i386/clone.S glibc/sysdeps/unix/sysv/linux/i386/clone.S ---- glibc-old/sysdeps/unix/sysv/linux/i386/clone.S 2009-05-09 13:35:30.000000000 +1000 -+++ glibc/sysdeps/unix/sysv/linux/i386/clone.S 2009-05-23 13:27:46.000000000 +1000 -@@ -120,9 +120,6 @@ - ret - - L(thread_start): -- cfi_startproc; -- /* Clearing frame pointer is insufficient, use CFI. */ -- cfi_undefined (eip); - /* Note: %esi is zero. */ - movl %esi,%ebp /* terminate the stack frame */ - #ifdef RESET_PID -@@ -155,7 +152,6 @@ - jmp L(haspid) - .previous - #endif -- cfi_endproc; - - cfi_startproc - PSEUDO_END (BP_SYM (__clone)) -diff -Naur glibc-old/sysdeps/unix/sysv/linux/x86_64/clone.S glibc/sysdeps/unix/sysv/linux/x86_64/clone.S ---- glibc-old/sysdeps/unix/sysv/linux/x86_64/clone.S 2009-05-09 13:35:30.000000000 +1000 -+++ glibc/sysdeps/unix/sysv/linux/x86_64/clone.S 2009-05-23 13:27:46.000000000 +1000 -@@ -89,9 +89,6 @@ - ret - - L(thread_start): -- cfi_startproc; -- /* Clearing frame pointer is insufficient, use CFI. */ -- cfi_undefined (rip); - /* Clear the frame pointer. The ABI suggests this be done, to mark - the outermost frame obviously. */ - xorl %ebp, %ebp -@@ -116,7 +113,6 @@ - /* Call exit with return value from function call. */ - movq %rax, %rdi - call HIDDEN_JUMPTARGET (_exit) -- cfi_endproc; - - cfi_startproc; - PSEUDO_END (BP_SYM (__clone)) diff --git a/multilib/lib32-glibc/glibc-2.10-dont-build-timezone.patch b/multilib/lib32-glibc/glibc-2.10-dont-build-timezone.patch deleted file mode 100644 index d3abeff17..000000000 --- a/multilib/lib32-glibc/glibc-2.10-dont-build-timezone.patch +++ /dev/null @@ -1,13 +0,0 @@ -timezone data has been split into the package sys-libs/timezone-data - ---- glibc-2.4/Makeconfig -+++ glibc-2.4/Makeconfig -@@ -931,7 +931,7 @@ - stdlib stdio-common libio malloc string wcsmbs time dirent \ - grp pwd posix io termios resource misc socket sysvipc gmon \ - gnulib iconv iconvdata wctype manual shadow gshadow po argp \ -- crypt nss localedata timezone rt conform debug \ -+ crypt nss localedata rt conform debug \ - $(add-on-subdirs) $(dlfcn) $(binfmt-subdir) - - ifndef avoid-generated diff --git a/multilib/lib32-glibc/glibc-2.12.1-static-shared-getpagesize.patch b/multilib/lib32-glibc/glibc-2.12.1-static-shared-getpagesize.patch deleted file mode 100644 index e84754279..000000000 --- a/multilib/lib32-glibc/glibc-2.12.1-static-shared-getpagesize.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- glibc-2.12-192-g7c08a05/sysdeps/unix/sysv/linux/getpagesize.c -+++ glibc-2.12.90-17/sysdeps/unix/sysv/linux/getpagesize.c -@@ -28,7 +28,7 @@ - int - __getpagesize () - { --#ifdef __ASSUME_AT_PAGESIZE -+#if 0 && defined __ASSUME_AT_PAGESIZE - assert (GLRO(dl_pagesize) != 0); - return GLRO(dl_pagesize); - #else diff --git a/multilib/lib32-glibc/glibc-2.12.2-ignore-origin-of-privileged-program.patch b/multilib/lib32-glibc/glibc-2.12.2-ignore-origin-of-privileged-program.patch deleted file mode 100644 index ce089b49c..000000000 --- a/multilib/lib32-glibc/glibc-2.12.2-ignore-origin-of-privileged-program.patch +++ /dev/null @@ -1,26 +0,0 @@ -From d14e6b09d60d52cc12f0396c3106b14e1bd0fe8f Mon Sep 17 00:00:00 2001 -From: Andreas Schwab <schwab@redhat.com> -Date: Thu, 9 Dec 2010 15:00:59 +0100 -Subject: [PATCH 1/1] Ignore origin of privileged program - ---- - ChangeLog | 5 +++++ - elf/dl-object.c | 3 +++ - 2 files changed, 8 insertions(+), 0 deletions(-) - -diff --git a/elf/dl-object.c b/elf/dl-object.c -index 22a1635..7674d49 100644 ---- a/elf/dl-object.c -+++ b/elf/dl-object.c -@@ -214,6 +214,9 @@ _dl_new_object (char *realname, const char *libname, int type, - out: - new->l_origin = origin; - } -+ else if (INTUSE(__libc_enable_secure) && type == lt_executable) -+ /* The origin of a privileged program cannot be trusted. */ -+ new->l_origin = (char *) -1; - - return new; - } --- -1.7.2 diff --git a/multilib/lib32-glibc/glibc-2.13-futex.patch b/multilib/lib32-glibc/glibc-2.13-futex.patch deleted file mode 100644 index 9b9c3ac45..000000000 --- a/multilib/lib32-glibc/glibc-2.13-futex.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S -+++ a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S -@@ -210,7 +210,7 @@ pthread_rwlock_timedrdlock: - cfi_restore(%r12) - retq - --#ifdef __ASSUME_PRIVATE_FUTEX -+#ifdef __ASSUME_FUTEX_CLOCK_REALTIME - cfi_adjust_cfa_offset(16) - cfi_rel_offset(%r12, 8) - cfi_rel_offset(%r13, 0) ---- a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S -+++ a/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S -@@ -192,7 +192,7 @@ pthread_rwlock_timedwrlock: - - 7: movq %rdx, %rax - --#ifndef __ASSUME_PRIVATE_FUTEX -+#ifndef __ASSUME_FUTEX_CLOCK_REALTIME - addq $16, %rsp - cfi_adjust_cfa_offset(-16) - popq %r14 -@@ -207,7 +207,7 @@ pthread_rwlock_timedwrlock: - cfi_restore(%r12) - retq - --#ifdef __ASSUME_PRIVATE_FUTEX -+#ifdef __ASSUME_FUTEX_CLOCK_REALTIME - cfi_adjust_cfa_offset(16) - cfi_rel_offset(%r12, 8) - cfi_rel_offset(%r13, 0) diff --git a/multilib/lib32-glibc/glibc-2.14-libdl-crash.patch b/multilib/lib32-glibc/glibc-2.14-libdl-crash.patch deleted file mode 100644 index 6c9d2718e..000000000 --- a/multilib/lib32-glibc/glibc-2.14-libdl-crash.patch +++ /dev/null @@ -1,132 +0,0 @@ -diff --git a/elf/dl-close.c b/elf/dl-close.c -index 73b2a2f..9bd91e3 100644 ---- a/elf/dl-close.c -+++ b/elf/dl-close.c -@@ -1,5 +1,5 @@ - /* Close a shared object opened by `_dl_open'. -- Copyright (C) 1996-2007, 2009, 2010, 2011 Free Software Foundation, Inc. -+ Copyright (C) 1996-2007, 2009, 2010 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or -@@ -119,17 +119,8 @@ _dl_close_worker (struct link_map *map) - if (map->l_direct_opencount > 0 || map->l_type != lt_loaded - || dl_close_state != not_pending) - { -- if (map->l_direct_opencount == 0) -- { -- if (map->l_type == lt_loaded) -- dl_close_state = rerun; -- else if (map->l_type == lt_library) -- { -- struct link_map **oldp = map->l_initfini; -- map->l_initfini = map->l_orig_initfini; -- _dl_scope_free (oldp); -- } -- } -+ if (map->l_direct_opencount == 0 && map->l_type == lt_loaded) -+ dl_close_state = rerun; - - /* There are still references to this object. Do nothing more. */ - if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_FILES, 0)) -diff --git a/elf/dl-deps.c b/elf/dl-deps.c -index 9e30594..3890d00 100644 ---- a/elf/dl-deps.c -+++ b/elf/dl-deps.c -@@ -478,6 +478,7 @@ _dl_map_object_deps (struct link_map *map, - nneeded * sizeof needed[0]); - atomic_write_barrier (); - l->l_initfini = l_initfini; -+ l->l_free_initfini = 1; - } - - /* If we have no auxiliary objects just go on to the next map. */ -@@ -681,6 +682,7 @@ Filters not supported with LD_TRACE_PRELINKING")); - l_initfini[nlist] = NULL; - atomic_write_barrier (); - map->l_initfini = l_initfini; -+ map->l_free_initfini = 1; - if (l_reldeps != NULL) - { - atomic_write_barrier (); -@@ -689,5 +691,5 @@ Filters not supported with LD_TRACE_PRELINKING")); - _dl_scope_free (old_l_reldeps); - } - if (old_l_initfini != NULL) -- map->l_orig_initfini = old_l_initfini; -+ _dl_scope_free (old_l_initfini); - -diff --git a/elf/dl-libc.c b/elf/dl-libc.c -index 7be9483..a13fce3 100644 ---- a/elf/dl-libc.c -+++ b/elf/dl-libc.c -@@ -265,13 +265,13 @@ libc_freeres_fn (free_mem) - - for (Lmid_t ns = 0; ns < GL(dl_nns); ++ns) - { -- /* Remove all additional names added to the objects. */ - for (l = GL(dl_ns)[ns]._ns_loaded; l != NULL; l = l->l_next) - { - struct libname_list *lnp = l->l_libname->next; - - l->l_libname->next = NULL; - -+ /* Remove all additional names added to the objects. */ - while (lnp != NULL) - { - struct libname_list *old = lnp; -@@ -279,6 +279,10 @@ libc_freeres_fn (free_mem) - if (! old->dont_free) - free (old); - } -+ -+ /* Free the initfini dependency list. */ -+ if (l->l_free_initfini) -+ free (l->l_initfini); - } - - if (__builtin_expect (GL(dl_ns)[ns]._ns_global_scope_alloc, 0) != 0 -diff --git a/elf/rtld.c b/elf/rtld.c -index 4a9109e..617e30e 100644 ---- a/elf/rtld.c -+++ b/elf/rtld.c -@@ -2251,6 +2251,7 @@ ERROR: ld.so: object '%s' cannot be loaded as audit interface: %s; ignored.\n", - lnp->dont_free = 1; - lnp = lnp->next; - } -+ l->l_free_initfini = 0; - - if (l != &GL(dl_rtld_map)) - _dl_relocate_object (l, l->l_scope, GLRO(dl_lazy) ? RTLD_LAZY : 0, -diff --git a/include/link.h b/include/link.h -index e877104..051b99a 100644 ---- a/include/link.h -+++ b/include/link.h -@@ -1,6 +1,6 @@ - /* Data structure for communication from the run-time dynamic linker for - loaded ELF shared objects. -- Copyright (C) 1995-2006, 2007, 2009, 2010, 2011 Free Software Foundation, Inc. -+ Copyright (C) 1995-2006, 2007, 2009, 2010 Free Software Foundation, Inc. - This file is part of the GNU C Library. - - The GNU C Library is free software; you can redistribute it and/or -@@ -192,6 +192,9 @@ struct link_map - during LD_TRACE_PRELINKING=1 - contains any DT_SYMBOLIC - libraries. */ -+ unsigned int l_free_initfini:1; /* Nonzero if l_initfini can be -+ freed, ie. not allocated with -+ the dummy malloc in ld.so. */ - - /* Collected information about own RPATH directories. */ - struct r_search_path_struct l_rpath_dirs; -@@ -240,9 +243,6 @@ struct link_map - - /* List of object in order of the init and fini calls. */ - struct link_map **l_initfini; -- /* The init and fini list generated at startup, saved when the -- object is also loaded dynamically. */ -- struct link_map **l_orig_initfini; - - /* List of the dependencies introduced through symbol binding. */ - struct link_map_reldeps diff --git a/multilib/lib32-glibc/glibc-2.14-reexport-rpc-interface.patch b/multilib/lib32-glibc/glibc-2.14-reexport-rpc-interface.patch deleted file mode 100644 index e2beea881..000000000 --- a/multilib/lib32-glibc/glibc-2.14-reexport-rpc-interface.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff --git a/include/libc-symbols.h b/include/libc-symbols.h -index 67e1ca2..5e7cca5 100644 ---- a/include/libc-symbols.h -+++ b/include/libc-symbols.h -@@ -635,7 +635,7 @@ for linking") - # define libc_hidden_proto(name, attrs...) hidden_proto (name, ##attrs) - # define libc_hidden_def(name) hidden_def (name) - # define libc_hidden_weak(name) hidden_weak (name) --# define libc_hidden_nolink(name, version) hidden_nolink (name, libc, version) -+# define libc_hidden_nolink(name, version) hidden_def (name) - # define libc_hidden_ver(local, name) hidden_ver (local, name) - # define libc_hidden_data_def(name) hidden_data_def (name) - # define libc_hidden_data_weak(name) hidden_data_weak (name) -diff --git a/sunrpc/Makefile b/sunrpc/Makefile -index 5134ce9..40c73d1 100644 ---- a/sunrpc/Makefile -+++ b/sunrpc/Makefile -@@ -53,7 +53,7 @@ headers-in-tirpc = $(addprefix rpc/,auth.h auth_unix.h clnt.h pmap_clnt.h \ - des_crypt.h) - headers-not-in-tirpc = $(addprefix rpc/,key_prot.h rpc_des.h) \ - $(rpcsvc:%=rpcsvc/%) rpcsvc/bootparam.h --headers = rpc/netdb.h -+headers = rpc/netdb.h $(headers-in-tirpc) $(headers-not-in-tirpc) - install-others = $(inst_sysconfdir)/rpc - generated = $(rpcsvc:%.x=rpcsvc/%.h) $(rpcsvc:%.x=x%.c) $(rpcsvc:%.x=x%.stmp) \ - $(rpcsvc:%.x=rpcsvc/%.stmp) rpcgen diff --git a/multilib/lib32-glibc/glibc-2.14-reinstall-nis-rpc-headers.patch b/multilib/lib32-glibc/glibc-2.14-reinstall-nis-rpc-headers.patch deleted file mode 100644 index eb0fd822d..000000000 --- a/multilib/lib32-glibc/glibc-2.14-reinstall-nis-rpc-headers.patch +++ /dev/null @@ -1,28 +0,0 @@ -From bdd816a366c4e5bba5de7157d948e0c0737fb4fb Mon Sep 17 00:00:00 2001 -From: Andreas Schwab <schwab@redhat.com> -Date: Tue, 17 May 2011 17:42:30 +0200 -Subject: [PATCH] Reinstall NIS RPC headers - ---- - nis/Makefile | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/nis/Makefile b/nis/Makefile -index b5c9609..d2934d9 100644 ---- a/nis/Makefile -+++ b/nis/Makefile -@@ -23,9 +23,9 @@ subdir := nis - - aux := nis_hash - -+headers := $(wildcard rpcsvc/*.[hx]) - distribute := nss-nis.h nss-nisplus.h nis_intern.h Banner \ -- nisplus-parser.h nis_xdr.h nss \ -- $(wildcard rpcsvc/*.[hx]) -+ nisplus-parser.h nis_xdr.h nss - - # These are the databases available for the nis (and perhaps later nisplus) - # service. This must be a superset of the services in nss. --- -1.7.5.4 - diff --git a/multilib/lib32-glibc/glibc-2.14-revert-4768ae77.patch b/multilib/lib32-glibc/glibc-2.14-revert-4768ae77.patch deleted file mode 100644 index 11f087cb7..000000000 --- a/multilib/lib32-glibc/glibc-2.14-revert-4768ae77.patch +++ /dev/null @@ -1,37 +0,0 @@ -diff -Naur glibc-orig//resolv/res_send.c glibc/resolv/res_send.c ---- glibc-orig//resolv/res_send.c 2011-06-10 18:59:03.041436996 +1000 -+++ glibc/resolv/res_send.c 2011-06-10 19:08:09.379309323 +1000 -@@ -549,7 +549,7 @@ - ns, ansp, ansp2, nansp2, resplen2); - if (n < 0) - return (-1); -- if (n == 0 && (buf2 == NULL || *resplen2 == 0)) -+ if (n == 0) - goto next_ns; - } else { - /* Use datagrams. */ -@@ -559,7 +559,7 @@ - ansp2, nansp2, resplen2); - if (n < 0) - return (-1); -- if (n == 0 && (buf2 == NULL || *resplen2 == 0)) -+ if (n == 0) - goto next_ns; - if (v_circuit) - // XXX Check whether both requests failed or -@@ -1275,14 +1275,10 @@ - (*thisresplenp > *thisanssizp) - ? *thisanssizp : *thisresplenp); - -- if (recvresp1 || (buf2 != NULL && recvresp2)) { -- *resplen2 = 0; -+ if (recvresp1 || (buf2 != NULL && recvresp2)) - return resplen; -- } - if (buf2 != NULL) - { -- /* No data from the first reply. */ -- resplen = 0; - /* We are waiting for a possible second reply. */ - if (hp->id == anhp->id) - recvresp1 = 1; diff --git a/multilib/lib32-glibc/glibc-__i686.patch b/multilib/lib32-glibc/glibc-__i686.patch deleted file mode 100644 index 28d5dd424..000000000 --- a/multilib/lib32-glibc/glibc-__i686.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -Naur glibc-old//sysdeps/i386/Makefile glibc//sysdeps/i386/Makefile ---- glibc-old//sysdeps/i386/Makefile 2010-03-18 11:52:30.000000000 +1000 -+++ glibc//sysdeps/i386/Makefile 2010-04-16 15:05:50.000000000 +1000 -@@ -1,6 +1,7 @@ - # The mpn functions need a #define for asm syntax flavor. --# Every i386 port in use uses gas syntax (I think). --asm-CPPFLAGS += -DGAS_SYNTAX -+# Every i386 port in use uses gas syntax (I think). Don't replace -+# __i686 in __i686.get_pc_thunk.bx. -+asm-CPPFLAGS += -DGAS_SYNTAX -U __i686 - - # The i386 `long double' is a distinct type we support. - long-double-fcts = yes diff --git a/multilib/lib32-glibc/lib32-glibc.conf b/multilib/lib32-glibc/lib32-glibc.conf deleted file mode 100644 index a1c8c4199..000000000 --- a/multilib/lib32-glibc/lib32-glibc.conf +++ /dev/null @@ -1,2 +0,0 @@ -/lib32 -/usr/lib32 diff --git a/multilib/lib32-gnutls/PKGBUILD b/multilib/lib32-gnutls/PKGBUILD deleted file mode 100644 index 50d5c8865..000000000 --- a/multilib/lib32-gnutls/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# $Id: PKGBUILD 45059 2011-04-15 15:10:37Z ibiru $ -# Maintainer: Biru Ionut <ionut@archlinux.ro -# Contributor: Pierre Schmitz <pierre@archlinux.de> -# Contributor: Mikko Seppälä <t-r-a-y@mbnet.fi> -_pkgbasename=gnutls -pkgname=lib32-$_pkgbasename -pkgver=2.12.2 -pkgrel=1 -pkgdesc="A library which provides a secure layer over a reliable transport layer (32-bit)" -arch=('x86_64') -license=('GPL3' 'LGPL') -url="http://www.gnu.org/software/gnutls/" -options=('!libtool') -# uses built-in libtasn1 for the moment -depends=(lib32-{gcc-libs,readline,libgcrypt,zlib}) -makedepends=('gcc-multilib') -source=(ftp://ftp.gnu.org/gnu/gnutls/${_pkgbasename}-${pkgver}.tar.bz2) -md5sums=('ca6903d99b2aca2a6a326bc8df805b61') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/${_pkgbasename}-${pkgver} - ./configure --prefix=/usr --libdir=/usr/lib32 \ - --with-zlib \ - --with-libgcrypt \ - --disable-static\ - --disable-guile - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{bin,include,share} -} diff --git a/multilib/lib32-gtk/PKGBUILD b/multilib/lib32-gtk/PKGBUILD deleted file mode 100644 index 3ae2ae7ff..000000000 --- a/multilib/lib32-gtk/PKGBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# $Id: PKGBUILD 55430 2011-09-12 10:13:10Z pschmitz $ - -_pkgbasename=gtk -pkgname=lib32-$_pkgbasename -pkgver=1.2.10 -pkgrel=12 -pkgdesc="The GTK+ toolkit (32-bit)" -arch=('x86_64') -url="http://www.gtk.org/" -license=('LGPL') -depends=('lib32-libxi' 'lib32-glib' "${_pkgbasename}") -makedepends=('gcc-multilib' 'lib32-libxt') -options=('!libtool') -source=("ftp://ftp.gtk.org/pub/gtk/v1.2/gtk+-${pkgver}.tar.gz" - 'aclocal-fixes.patch') -md5sums=('4d5cb2fc7fb7830e4af9747a36bfce20' - 'c59d4906602d99a7468f7334b6fc3b4e') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/gtk+-${pkgver} - patch -p0 -i ${srcdir}/aclocal-fixes.patch - - ./configure --prefix=/usr \ - --libdir=/usr/lib32 \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - --host=x86_64-unknown-linux-gnu \ - --target=x86_64-unknown-linux-gnu \ - --with-xinput=xfree - make -} - -package() { - cd ${srcdir}/gtk+-${pkgver} - make DESTDIR=${pkgdir} install - rm -rf "${pkgdir}/"{usr/{share,include,bin},etc} -} diff --git a/multilib/lib32-gtk/aclocal-fixes.patch b/multilib/lib32-gtk/aclocal-fixes.patch deleted file mode 100644 index dd2ffbd44..000000000 --- a/multilib/lib32-gtk/aclocal-fixes.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- gtk.m4.orig 2006-03-05 13:18:09.000000000 +0000 -+++ gtk.m4 2006-03-05 13:18:20.000000000 +0000 -@@ -4,7 +4,7 @@ - dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]]) - dnl Test for GTK, and define GTK_CFLAGS and GTK_LIBS - dnl --AC_DEFUN(AM_PATH_GTK, -+AC_DEFUN([AM_PATH_GTK], - [dnl - dnl Get the cflags and libraries from the gtk-config script - dnl diff --git a/multilib/lib32-gtk2/PKGBUILD b/multilib/lib32-gtk2/PKGBUILD deleted file mode 100644 index 9f484db2b..000000000 --- a/multilib/lib32-gtk2/PKGBUILD +++ /dev/null @@ -1,53 +0,0 @@ -# $Id: PKGBUILD 57107 2011-10-21 19:45:58Z bluewind $ -# Maintainer: Ionut Biru <ibiru@archlinux.org -# Contributor: Pierre Schmitz <pierre@archlinux.de> -# Contributor: Mikko Seppälä <t-r-a-y@mbnet.fi> - -_pkgbasename=gtk2 -pkgname=lib32-$_pkgbasename -pkgver=2.24.7 -pkgrel=1 -pkgdesc="The GTK+ Toolkit (v2) (32-bit)" -arch=('x86_64') -url="http://www.gtk.org/" -install=gtk2.install -depends=(lib32-{'atk>=1.30.0','pango>=1.28.0','cairo>=1.10.0','gnutls>=2.8.6','gdk-pixbuf2>=2.22.1'} - lib32-lib{'cups>=1.4.4',xcursor,'xrandr>=1.3','xi>=1.3',xinerama,xcomposite,xdamage} - $_pkgbasename) -makedepends=('pkgconfig' 'gcc-multilib') -options=('!libtool' '!docs') -license=('LGPL') -source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/2.24/gtk+-${pkgver}.tar.xz - xid-collision-debug.patch - gtk-modules-32.patch) -sha256sums=('1fdc7605501bd2932ef9a3c4c3c9a406e505f18667aea9e73af650da28fff994' - 'd758bb93e59df15a4ea7732cf984d1c3c19dff67c94b957575efea132b8fe558' - '2effb13404442ae266d4c663347e88cd1ca19e9a83b452da1743bac16af9c7b0') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/gtk+-${pkgver}" - patch -Np1 -i "${srcdir}/xid-collision-debug.patch" - patch -p1 -i ${srcdir}/gtk-modules-32.patch - - CXX=/bin/false ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --libdir=/usr/lib32 \ - --with-xinput=yes - make -} - -package() { - cd "${srcdir}/gtk+-${pkgver}" - make DESTDIR="${pkgdir}" install - rm -rf "${pkgdir}"/etc - rm -rf "${pkgdir}"/usr/{include,share} - - cd "${pkgdir}"/usr/bin - mv gtk-query-immodules-2.0 gtk-query-immodules-2.0-32 - rm -f gtk-builder-convert gtk-demo gtk-update-icon-cache -} diff --git a/multilib/lib32-gtk2/gtk-modules-32.patch b/multilib/lib32-gtk2/gtk-modules-32.patch deleted file mode 100644 index a2530c3bf..000000000 --- a/multilib/lib32-gtk2/gtk-modules-32.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ur gtk+-2.20.1/gtk/gtkrc.c gtk+-2.20.1-32/gtk/gtkrc.c ---- gtk+-2.20.1/gtk/gtkrc.c 2010-05-03 01:28:21.000000000 +0200 -+++ gtk+-2.20.1-32/gtk/gtkrc.c 2010-08-26 07:22:42.316920033 +0200 -@@ -450,7 +450,7 @@ - if (im_module_file) - result = g_strdup (im_module_file); - else -- result = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtk.immodules", NULL); -+ result = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtk.immodules-32", NULL); - } - - return result; diff --git a/multilib/lib32-gtk2/gtk2.install b/multilib/lib32-gtk2/gtk2.install deleted file mode 100644 index 49f86f550..000000000 --- a/multilib/lib32-gtk2/gtk2.install +++ /dev/null @@ -1,16 +0,0 @@ -post_install() { - GTK_PATH=/usr/lib32/gtk-2.0 usr/bin/gtk-query-immodules-2.0-32 > etc/gtk-2.0/gtk.immodules-32 -} - -pre_upgrade() { - pre_remove -} - -post_upgrade() { - post_install -} - -pre_remove() { - rm -f etc/gtk-2.0/gtk.immodules-32 &>/dev/null - rm -f etc/gtk-2.0/gdk-pixbuf.loaders-32 &>/dev/null -} diff --git a/multilib/lib32-gtk2/xid-collision-debug.patch b/multilib/lib32-gtk2/xid-collision-debug.patch deleted file mode 100644 index d61238c3b..000000000 --- a/multilib/lib32-gtk2/xid-collision-debug.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- gtk+-2.18.3/gdk/x11/gdkxid.c 2009-06-19 04:59:18.000000000 +0200 -+++ gtk+-2.18.3/gdk/x11/gdkxid.c.new 2009-07-22 11:30:12.000000000 +0200 -@@ -56,10 +56,10 @@ - if (!display_x11->xid_ht) - display_x11->xid_ht = g_hash_table_new ((GHashFunc) gdk_xid_hash, - (GEqualFunc) gdk_xid_equal); -- -+/* - if (g_hash_table_lookup (display_x11->xid_ht, xid)) - g_warning ("XID collision, trouble ahead"); -- -+*/ - g_hash_table_insert (display_x11->xid_ht, xid, data); - } - diff --git a/multilib/lib32-jack/PKGBUILD b/multilib/lib32-jack/PKGBUILD deleted file mode 100644 index 4b1f9b35c..000000000 --- a/multilib/lib32-jack/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# $Id: PKGBUILD 56009 2011-09-28 20:00:34Z bluewind $ -# Maintainer: tobias <tobias@archlinux.net> -# Maintainer: Ray Rashif <schivmeister@gmail.com> -# Contributor: Robert Emil Berge <robert@rebi.no> - -_pkgbasename=jack -pkgname=lib32-$_pkgbasename -_longname=jack-audio-connection-kit -pkgver=0.121.3 -pkgrel=1 -pkgdesc="A low-latency audio server (32-bit)" -arch=('x86_64') -license=('GPL' 'LGPL') -depends=('lib32-glibc' "$_pkgbasename=$pkgver") -makedepends=(gcc-multilib) -url="http://jackaudio.org/" -options=('!libtool') -source=(http://jackaudio.org/downloads/${_longname}-${pkgver}.tar.gz) -md5sums=('35f470f7422c37b33eb965033f7a42e8') - -build() { - cd ${srcdir}/${_longname}-${pkgver} - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --libdir=/usr/lib32 - make -C libjack -} - -package() { - cd ${srcdir}/${_longname}-${pkgver} - - make DESTDIR=${pkgdir} install-pkgconfigDATA - make -C libjack DESTDIR=${pkgdir} install -} - -# vim:set ts=2 sw=2 et: diff --git a/multilib/lib32-json-c/PKGBUILD b/multilib/lib32-json-c/PKGBUILD deleted file mode 100644 index 07670938e..000000000 --- a/multilib/lib32-json-c/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> -# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> -# Contributor: congyiwu <congyiwu AT gmail DOT com> - -_pkgbasename=json-c -pkgname=lib32-$_pkgbasename -pkgver=0.9 -pkgrel=1 -pkgdesc="A JSON implementation in C (32-bit)" -url="http://oss.metaparadigm.com/json-c/" -license=("MIT") -arch=('x86_64') -depends=('lib32-glibc' $_pkgbasename) -makedepends=('gcc-multilib' 'libtool-multilib') -source=(http://oss.metaparadigm.com/$_pkgbasename/$_pkgbasename-$pkgver.tar.gz) -md5sums=('3a13d264528dcbaf3931b0cede24abae') -options=(!libtool) -build() { - cd "$srcdir/$_pkgbasename-$pkgver" - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd "$srcdir/$_pkgbasename-$pkgver" - make DESTDIR="$pkgdir" install - - rm -r "$pkgdir/usr/include" - - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-keyutils/PKGBUILD b/multilib/lib32-keyutils/PKGBUILD deleted file mode 100644 index 8398edd1d..000000000 --- a/multilib/lib32-keyutils/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# $Id: PKGBUILD 116950 2011-03-26 15:07:29Z tpowa $ -# Maintainer: Tobias Powalowski <tpowa@archlinux.org> -_pkgbasename=keyutils -pkgname=lib32-$_pkgbasename -pkgver=1.5.2 -pkgrel=1 -pkgdesc="Linux Key Management Utilities (32-bit)" -arch=(x86_64) -url="http://www.kernel.org" -license=('GPL2' 'LGPL2.1') -depends=(lib32-glibc $_pkgbasename) -makedepends=(gcc-multilib) -source=(http://people.redhat.com/~dhowells/$_pkgbasename/$_pkgbasename-$pkgver.tar.bz2) -md5sums=('19811ee31f683058a9aae3e6a3a23a7f') - -build() { - cd "$srcdir/$_pkgbasename-$pkgver" - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - sed -i -e 's/^\(USR\)\?LIBDIR\s*:=.*$/\1LIBDIR=\/usr\/lib32/' Makefile - make CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" -} - -package() { - cd "$srcdir/$_pkgbasename-$pkgver" - make DESTDIR="$pkgdir" install - - rm -rf "${pkgdir}"/{usr/{include,share,bin,sbin},etc,{s,}bin} -} diff --git a/multilib/lib32-krb5/PKGBUILD b/multilib/lib32-krb5/PKGBUILD deleted file mode 100644 index 32debcbae..000000000 --- a/multilib/lib32-krb5/PKGBUILD +++ /dev/null @@ -1,61 +0,0 @@ -# $Id: PKGBUILD 122855 2011-05-06 19:36:38Z stephane $ -# Maintainer: Florian Pritz <flo@xinu.at> -# Contributor: Stéphane Gaudreault <stephane@archlinux.org> - -_pkgbasename=krb5 -pkgname=lib32-$_pkgbasename -pkgver=1.9.1 -pkgrel=1 -pkgdesc="The Kerberos network authentication system (32-bit)" -arch=('x86_64') -url="http://web.mit.edu/kerberos/" -license=('custom') -depends=('lib32-e2fsprogs' 'lib32-libldap' lib32-keyutils $_pkgbasename) -makedepends=('perl' gcc-multilib) -provides=('lib32-heimdal') -replaces=('lib32-heimdal') -conflicts=('lib32-heimdal') -source=(http://web.mit.edu/kerberos/dist/${_pkgbasename}/1.9/${_pkgbasename}-${pkgver}-signed.tar) -sha1sums=('e23a1795a237521493da9cf3443ac8b98a90c066') -options=('!emptydirs') - -build() { - tar zxvf ${_pkgbasename}-${pkgver}.tar.gz - cd "${srcdir}/${_pkgbasename}-${pkgver}/src" - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - export CFLAGS+=" -fPIC -fno-strict-aliasing -fstack-protector-all" - export CPPFLAGS+=" -I/usr/include/et" - ./configure --prefix=/usr \ - --sysconfdir=/etc/krb5 \ - --mandir=/usr/share/man \ - --localstatedir=/var/lia \ - --libdir=/usr/lib32 \ - --enable-shared \ - --with-system-et \ - --with-system-ss \ - --disable-rpath \ - --without-tcl \ - --enable-dns-for-realm \ - --with-ldap - - make -} - -check() { - # We can't do this in the build directory. - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make -C src check -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}/src" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin,sbin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-lcms/PKGBUILD b/multilib/lib32-lcms/PKGBUILD deleted file mode 100644 index 8d1c5279f..000000000 --- a/multilib/lib32-lcms/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 26566 2010-09-15 22:35:39Z bluewind $ -# Maintainer: Tobias Kieslich <neri@archlinux.org> -# Contributor: Ben <contrasutra@myrealbox.com> - -_pkgbasename=lcms -pkgname=lib32-$_pkgbasename -pkgver=1.19 -pkgrel=3 -pkgdesc="Lightweight color management development library/engine (32-bit)" -arch=(x86_64) -license=('custom') -depends=('lib32-libtiff>=3.9.4' $_pkgbasename) -makedepends=(gcc-multilib) -url="http://www.littlecms.com" -options=('!libtool') -source=(http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz) -md5sums=('8af94611baf20d9646c7c2c285859818') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/${_pkgbasename}-${pkgver} - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libao/PKGBUILD b/multilib/lib32-libao/PKGBUILD deleted file mode 100644 index 1feed2e8d..000000000 --- a/multilib/lib32-libao/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Florian Pritz <bluewind@xinu.at> -# Contributor: Alexander Rødseth <rodseth@gmail.com> -# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org> -# Contributor: dorphell <dorphell@archlinux.org> -_pkgbasename=libao -pkgname=lib32-$_pkgbasename -pkgver=1.1.0 -pkgrel=2 -pkgdesc="A cross-platform audio output library and plugins (32-bit)" -url="http://www.xiph.org/ao/" -arch=('x86_64') -license=('GPL') -depends=($_pkgbasename 'lib32-glibc' 'lib32-alsa-lib' 'lib32-libpulse') -makedepends=('gcc-multilib') -options=('!libtool') -source=("http://downloads.xiph.org/releases/ao/$_pkgbasename-$pkgver.tar.gz") -md5sums=('2b2508c29bc97e4dc218fa162cf883c8') - -build() { - cd "$srcdir/$_pkgbasename-$pkgver" - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd "$srcdir/$_pkgbasename-$pkgver" - - make DESTDIR=$pkgdir/ install - rm -rf "${pkgdir}"/usr/{include,share,bin,sbin} -} -# vim:set ts=2 sw=2 et: diff --git a/multilib/lib32-libasyncns/PKGBUILD b/multilib/lib32-libasyncns/PKGBUILD deleted file mode 100644 index 83a1aae24..000000000 --- a/multilib/lib32-libasyncns/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# $Id: PKGBUILD 26569 2010-09-15 22:36:05Z bluewind $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> -# Contributor: Corrado Primier <bardo@aur.archlinux.org> -# Contributor: Eric Belanger <belanger@astro.umontreal.ca> -# Contributor: William Rea <sillywilly@gmail.com> -# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> - -_pkgbasename=libasyncns -pkgname=lib32-$_pkgbasename -pkgver=0.8 -pkgrel=5 -pkgdesc="A C library for Linux/Unix for executing name service queries asynchronously (32-bit)" -arch=(x86_64) -url="http://0pointer.de/lennart/projects/libasyncns" -license=('LGPL') -options=('!libtool') -depends=('lib32-glibc' $_pkgbasename) -makedepends=('gcc-multilib') -source=(http://0pointer.de/lennart/projects/libasyncns/${_pkgbasename}-${pkgver}.tar.gz) -md5sums=('1f553d6ce1ad255bc83b3d8e9384f515') - -build() { - cd ${srcdir}/libasyncns-${pkgver} - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - # Fix libdir - sed -i '/^libdir=/s:/lib:/lib32:' *.pc.in - - ./configure --prefix=/usr --disable-lynx --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/libasyncns-${pkgver} - make DESTDIR=${pkgdir} install - rm -rf "${pkgdir}"/usr/{include,share} -} diff --git a/multilib/lib32-libcanberra/PKGBUILD b/multilib/lib32-libcanberra/PKGBUILD deleted file mode 100644 index 8b2bd102d..000000000 --- a/multilib/lib32-libcanberra/PKGBUILD +++ /dev/null @@ -1,60 +0,0 @@ -# $Id: PKGBUILD 46313 2011-05-05 01:10:02Z heftig $ -# Maintainer: Florian Pritz <flo@xssn.at> -# Contributor: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libcanberra -pkgbase=lib32-$_pkgbasename -pkgname=(lib32-libcanberra lib32-libcanberra-pulse) -pkgver=0.28 -pkgrel=1 -pkgdesc="A small and lightweight implementation of the XDG Sound Theme Specification (32-bit)" -arch=(x86_64) -license=('LGPL') -depends=('lib32-libvorbis' 'lib32-libtool' 'lib32-gtk2' 'lib32-alsa-lib' 'lib32-tdb' - $_pkgbasename) -makedepends=('gtk-doc' lib32-libpulse gcc-multilib libtool-multilib) -options=(!emptydirs) -url=http://0pointer.de/lennart/projects/libcanberra -source=("$url/$_pkgbasename-$pkgver.tar.gz") -md5sums=('c198b4811598c4c161ff505e4531b02c') - -build() { - cd "$srcdir/$_pkgbasename-$pkgver" - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --sysconfdir=/etc --prefix=/usr --localstatedir=/var \ - --disable-static --with-builtin=dso --enable-null --disable-oss \ - --enable-alsa --disable-gstreamer --enable-pulse --disable-udev \ - --libdir=/usr/lib32 - make -} - -package_lib32-libcanberra() { - optdepends=("$pkgbase-pulse: PulseAudio driver") - - cd "$srcdir/$_pkgbasename-$pkgver" - - make -j1 DESTDIR="${pkgdir}" install - rm -f "${pkgdir}/usr/lib32/libcanberra-gtk.la" - rm -f "${pkgdir}/usr/lib32/gtk-2.0/modules/"*.la - - - # Split libcanberra-pulse - mkdir pulse-plugin - mv "${pkgdir}"/usr/lib32/${_pkgbasename}-${pkgver}/${_pkgbasename}-pulse.* pulse-plugin - - rm -rf "${pkgdir}"/{etc,usr/{include,share,bin,lib32/gnome-settings-daemon-3.0}} -} - -package_lib32-libcanberra-pulse() { - pkgdesc="PulseAudio plugin for libcanberra (32-bit)" - depends=("$pkgbase=$pkgver-$pkgrel" 'lib32-libpulse') - - cd "$srcdir/$_pkgbasename-$pkgver" - - mkdir -p "${pkgdir}/usr/lib32/${_pkgbasename}-${pkgver}" - mv pulse-plugin/* "${pkgdir}/usr/lib32/${_pkgbasename}-${pkgver}" -} diff --git a/multilib/lib32-libcap/PKGBUILD b/multilib/lib32-libcap/PKGBUILD deleted file mode 100644 index 5846329f3..000000000 --- a/multilib/lib32-libcap/PKGBUILD +++ /dev/null @@ -1,26 +0,0 @@ -#$Id: PKGBUILD 64614 2010-01-21 11:40:53Z allan $ -# Maintainer: Hugo Doria <hugo@archlinux.org> - -_pkgbasename=libcap -pkgname=lib32-$_pkgbasename -pkgver=2.21 -pkgrel=1 -pkgdesc="POSIX 1003.1e capabilities (32-bit)" -arch=(x86_64) -url="http://www.kernel.org/pub/linux/libs/security/linux-privs/" -license=('GPL') -depends=('lib32-attr' $_pkgbasename) -makedepends=('gcc-multilib') -source=(http://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/${_pkgbasename}-${pkgver}.tar.gz) -md5sums=('61966ef40f2dee8731b69db895e4548d') - -build() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - make -C libcap CC="gcc -m32" prefix=/usr lib=lib32 DESTDIR=${pkgdir} install - chmod 755 ${pkgdir}/usr/lib32/libcap.so.${pkgver} - - rm -rf "${pkgdir}/usr/include" -} diff --git a/multilib/lib32-libcups/PKGBUILD b/multilib/lib32-libcups/PKGBUILD deleted file mode 100644 index 3d744f140..000000000 --- a/multilib/lib32-libcups/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# $Id: PKGBUILD 55132 2011-09-03 08:41:17Z bluewind $ -# Maintainer: Andreas Radke <andyrtr@archlinux.org> - -_pkgbasename=libcups -pkgname=lib32-$_pkgbasename -pkgver=1.5.0 -pkgrel=1 -pkgdesc="The CUPS Printing System - client libraries (32-bit)" -arch=('x86_64') -license=('GPL') -url="http://www.cups.org/" -depends=(lib32-krb5 lib32-libtiff lib32-libpng $_pkgbasename) -makedepends=(gcc-multilib) -source=(ftp://ftp.easysw.com/pub/cups/${pkgver}/cups-${pkgver}-source.tar.bz2) -md5sums=('e54ed09ede2340fc3014913333520fe4') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/cups-${pkgver} - - aclocal -I config-scripts - autoconf -I config-scripts - - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ - --disable-ldap --enable-raw-printing --disable-gssapi --disable-dbus \ - --enable-ssl=no --disable-gnutls --enable-threads \ - --with-optim="$CFLAGS" --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/cups-${pkgver} - make BUILDROOT=${pkgdir} install-libs -} - diff --git a/multilib/lib32-libdrm/PKGBUILD b/multilib/lib32-libdrm/PKGBUILD deleted file mode 100644 index f139d9267..000000000 --- a/multilib/lib32-libdrm/PKGBUILD +++ /dev/null @@ -1,48 +0,0 @@ -# $Id: PKGBUILD 57787 2011-11-02 16:54:51Z lcarlier $ -# Contributor: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libdrm -pkgname=lib32-$_pkgbasename -pkgver=2.4.27 -pkgrel=2 -pkgdesc="Userspace interface to kernel DRM services (32-bit)" -arch=(x86_64) -license=('custom') -depends=('lib32-libpciaccess' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool') -url="http://dri.freedesktop.org/" -source=(http://dri.freedesktop.org/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2 - no-pthread-stubs.patch) -md5sums=('0fba4f42735cd3d24dd7a8cde0023fbd' - 'c722c8406507b7e3a8da7a3030d1d9cf') - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - patch -Np1 -i "${srcdir}/no-pthread-stubs.patch" - - # libtoolize --force - autoreconf --force --install - ./configure --prefix=/usr --libdir=/usr/lib32 \ - --enable-udev \ - --enable-intel \ - --enable-radeon \ - --enable-vmwgfx-experimental-api \ - --enable-nouveau-experimental-api - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libdrm/no-pthread-stubs.patch b/multilib/lib32-libdrm/no-pthread-stubs.patch deleted file mode 100644 index 348c2a795..000000000 --- a/multilib/lib32-libdrm/no-pthread-stubs.patch +++ /dev/null @@ -1,66 +0,0 @@ -diff -ru libdrm-2.4.0/configure.ac libdrm-2.4.0-nostubs/configure.ac ---- libdrm-2.4.0/configure.ac 2008-10-09 21:57:09.000000000 +0200 -+++ libdrm-2.4.0-nostubs/configure.ac 2008-10-21 10:48:24.000000000 +0200 -@@ -47,10 +47,6 @@ - LT_INIT([disable-static]) - - --PKG_CHECK_MODULES(PTHREADSTUBS, pthread-stubs) --AC_SUBST(PTHREADSTUBS_CFLAGS) --AC_SUBST(PTHREADSTUBS_LIBS) -- - PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10]) - AC_SUBST(PCIACCESS_CFLAGS) - AC_SUBST(PCIACCESS_LIBS) ---- libdrm-2.4.16/intel/Makefile.am 2009-11-20 23:54:36.000000000 +0000 -+++ libdrm-2.4.16/intel/Makefile.am.new 2009-12-07 08:11:32.235748069 +0000 -@@ -26,14 +26,13 @@ - $(WARN_CFLAGS) \ - -I$(top_srcdir) \ - -I$(top_srcdir)/intel \ -- $(PTHREADSTUBS_CFLAGS) \ - $(PCIACCESS_CFLAGS) \ - -I$(top_srcdir)/include/drm - - libdrm_intel_la_LTLIBRARIES = libdrm_intel.la - libdrm_intel_ladir = $(libdir) - libdrm_intel_la_LDFLAGS = -version-number 1:0:0 -no-undefined --libdrm_intel_la_LIBADD = ../libdrm.la @PTHREADSTUBS_LIBS@ @PCIACCESS_LIBS@ @CLOCK_LIB@ -+libdrm_intel_la_LIBADD = ../libdrm.la @PCIACCESS_LIBS@ @CLOCK_LIB@ - - libdrm_intel_la_SOURCES = \ - intel_bufmgr.c \ ---- libdrm-2.4.16/radeon/Makefile.am 2009-11-20 23:54:36.000000000 +0000 -+++ libdrm-2.4.16/radeon/Makefile.am.new 2009-12-07 08:12:31.889075388 +0000 -@@ -26,13 +26,12 @@ - $(WARN_CFLAGS) \ - -I$(top_srcdir) \ - -I$(top_srcdir)/radeon \ -- $(PTHREADSTUBS_CFLAGS) \ - -I$(top_srcdir)/include/drm - - libdrm_radeon_la_LTLIBRARIES = libdrm_radeon.la - libdrm_radeon_ladir = $(libdir) - libdrm_radeon_la_LDFLAGS = -version-number 1:0:0 -no-undefined --libdrm_radeon_la_LIBADD = ../libdrm.la @PTHREADSTUBS_LIBS@ -+libdrm_radeon_la_LIBADD = ../libdrm.la - - libdrm_radeon_la_SOURCES = \ - radeon_bo_gem.c \ ---- libdrm-2.4.16/nouveau/Makefile.am 2009-11-20 23:54:36.000000000 +0000 -+++ libdrm-2.4.16/nouveau/Makefile.am.new 2009-12-07 08:13:01.489072320 +0000 -@@ -2,13 +2,12 @@ - $(WARN_CFLAGS) \ - -I$(top_srcdir) \ - -I$(top_srcdir)/nouveau \ -- $(PTHREADSTUBS_CFLAGS) \ - -I$(top_srcdir)/include/drm - - libdrm_nouveau_la_LTLIBRARIES = libdrm_nouveau.la - libdrm_nouveau_ladir = $(libdir) - libdrm_nouveau_la_LDFLAGS = -version-number 1:0:0 -no-undefined --libdrm_nouveau_la_LIBADD = ../libdrm.la @PTHREADSTUBS_LIBS@ -+libdrm_nouveau_la_LIBADD = ../libdrm.la - - libdrm_nouveau_la_SOURCES = \ - nouveau_device.c \ diff --git a/multilib/lib32-libffi/PKGBUILD b/multilib/lib32-libffi/PKGBUILD deleted file mode 100644 index 9d5ef76fa..000000000 --- a/multilib/lib32-libffi/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 57969 2011-11-04 23:32:00Z lcarlier $ -# Maintainer: Jan de Groot <jgc@archlinux.org> - -pkgname=lib32-libffi -pkgver=3.0.10 -pkgrel=3 -pkgdesc="A portable, high level programming interface to various calling conventions (32 bits version)" -arch=('x86_64') -license=('MIT') -url="http://sourceware.org/libffi" -depends=('lib32-glibc') -options=('!libtool') -source=(ftp://sourceware.org/pub/libffi/libffi-${pkgver}.tar.gz) -md5sums=('79390673f5d07a8fb342bc09b5055b6f') - -build() { - cd "${srcdir}/libffi-${pkgver}" - - export CC="gcc -m32" - - ./configure --prefix=/usr \ - --libdir=/usr/lib32 --libexecdir=/usr/lib32 - - make -} - -package() { - cd "${srcdir}/libffi-${pkgver}" - - make DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/" - rm -r "${pkgdir}"/usr/share/{info,man} -} diff --git a/multilib/lib32-libgcrypt/PKGBUILD b/multilib/lib32-libgcrypt/PKGBUILD deleted file mode 100644 index e266ea00c..000000000 --- a/multilib/lib32-libgcrypt/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# $Id: PKGBUILD 26587 2010-09-15 22:38:34Z bluewind $ -# Maintainer: Andreas Radke <andyrtr@archlinux.org> - -_pkgbasename=libgcrypt -pkgname=lib32-$_pkgbasename -pkgver=1.4.6 -pkgrel=3 -pkgdesc="a general purpose crypto library based on the code used (32-bit)" -arch=(x86_64) -url="http://www.gnupg.org" -license=('LGPL') -depends=('lib32-libgpg-error>=1.7' $_pkgbasename) -makedepends=(gcc-multilib libtool-multilib) -options=(!libtool) -source=(ftp://ftp.gnupg.org/gcrypt/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2 - #ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgcrypt/${_pkgbasename}-${pkgver}.tar.bz2 -) -md5sums=('dbf99425a4fe9217c84ce3a35d938634') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/${_pkgbasename}-${pkgver} - - # Use 32-bit assembler - sed 's:path="amd64":path="i586 i386":' -i mpi/config.links - - # keep static library for , needed for cryptsetup - ./configure --prefix=/usr --disable-padlock-support --libdir=/usr/lib32 --enable-shared - make -} - -package() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{include,share,bin,sbin} -} diff --git a/multilib/lib32-libglade/PKGBUILD b/multilib/lib32-libglade/PKGBUILD deleted file mode 100644 index 029d31cc8..000000000 --- a/multilib/lib32-libglade/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: $ -# Maintainer: Pierre Schmitz <pierre@archlinux.de> -# Contributor: TryA <tryagainprod {at} gmail.com> -# Contributor: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libglade -pkgname=lib32-libglade -pkgver=2.6.4 -pkgrel=4 -pkgdesc="Allows you to load glade interface files in a program at runtime (32-bit)" -arch=('x86_64') -license=('LGPL') -depends=('lib32-gtk2' 'lib32-libxml2' "${_pkgbasename}") -makedepends=('python2' 'pkgconfig' 'gcc-multilib') -options=('!libtool') -source=("http://ftp.gnome.org/pub/gnome/sources/${_pkgbasename}/2.6/${_pkgbasename}-${pkgver}.tar.bz2" - 'libglade-2.0.1-nowarning.patch') -url='http://www.gnome.org' -md5sums=('d1776b40f4e166b5e9c107f1c8fe4139' - '4f879c0ce550004905aa0fb24f25c353') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - patch -Np1 -i "${srcdir}/libglade-2.0.1-nowarning.patch" - PYTHON=python2 ./configure --sysconfdir=/etc --prefix=/usr --localstatedir=/var --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - rm -rf ${pkgdir}/usr/{bin,include,share} -} diff --git a/multilib/lib32-libglade/libglade-2.0.1-nowarning.patch b/multilib/lib32-libglade/libglade-2.0.1-nowarning.patch deleted file mode 100644 index fd071215f..000000000 --- a/multilib/lib32-libglade/libglade-2.0.1-nowarning.patch +++ /dev/null @@ -1,39 +0,0 @@ ---- libglade-2.0.1/glade/glade-gtk.c.nowarning 2003-08-29 14:50:10.000000000 -0400 -+++ libglade-2.0.1/glade/glade-gtk.c 2003-08-29 14:58:41.000000000 -0400 -@@ -639,9 +639,8 @@ - if (!strcmp (childinfo->properties[j].name, "label")) { - label = childinfo->properties[j].value; - break; -- } else { -- g_warning ("Unknown CList child property: %s", childinfo->properties[j].name); - } -+ /* Ignore all other properties */ - } - - if (label) { -@@ -683,6 +682,7 @@ - char *icon = NULL; - gboolean use_stock = FALSE, active = FALSE, new_group = FALSE; - gboolean use_underline = FALSE; -+ gboolean sensitive = TRUE; - GtkWidget *iconw = NULL; - int j; - -@@ -708,6 +708,8 @@ - group_name = value; - } else if (!strcmp (name, "new_group")) { - new_group = BOOL (value); -+ } else if (!strcmp (name, "sensitive")) { -+ sensitive = BOOL (value); - } else if (!strcmp (name, "visible")) { - /* ignore for now */ - } else if (!strcmp (name, "tooltip")) { -@@ -785,6 +787,8 @@ - gtk_label_set_use_underline (GTK_LABEL (toolbar_child->label), - TRUE); - } -+ -+ gtk_widget_set_sensitive (child, sensitive); - - glade_xml_set_common_params (xml, child, childinfo->child); - } else { diff --git a/multilib/lib32-libgpg-error/PKGBUILD b/multilib/lib32-libgpg-error/PKGBUILD deleted file mode 100644 index 6467c668a..000000000 --- a/multilib/lib32-libgpg-error/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 26590 2010-09-15 22:39:01Z bluewind $ -# Maintainer: judd <jvinet@zeroflux.org> - -_pkgbasename=libgpg-error -pkgname=lib32-$_pkgbasename -pkgver=1.9 -pkgrel=4 -pkgdesc="Support library for libgcrypt (32-bit)" -arch=(x86_64) -url="http://www.gnupg.org" -license=('LGPL') -depends=('lib32-glibc' $_pkgbasename) -makedepends=(gcc-multilib) -options=(!libtool) -source=(ftp://ftp.gnupg.org/gcrypt/libgpg-error/${_pkgbasename}-${pkgver}.tar.bz2) - #ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/libgpg-error/${pkgname}-${pkgver}.tar.bz2) -md5sums=('521b98aa9395e7eaf0ef2236233a0796') - - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}"/${_pkgbasename}-${pkgver} - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}"/${_pkgbasename}-${pkgver} - make DESTDIR="${pkgdir}/" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} -} diff --git a/multilib/lib32-libice/PKGBUILD b/multilib/lib32-libice/PKGBUILD deleted file mode 100644 index 6e65dd044..000000000 --- a/multilib/lib32-libice/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 31526 2010-11-01 23:47:50Z heftig $ -# Contributor: Alexander Baldeck <alexander@archlinux.org> -# Maintainer: Jan de Groot <jgc@archlinux.org> -_pkgbasename=libice -pkgname=lib32-$_pkgbasename -pkgver=1.0.7 -pkgrel=1 -pkgdesc="X11 Inter-Client Exchange library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -depends=('lib32-glibc' 'xproto>=7.0.18' $_pkgbasename) -makedepends=('pkgconfig' 'xtrans>=1.2.5' 'gcc-multilib') -options=('!libtool') -source=(${url}/releases/individual/lib/libICE-${pkgver}.tar.bz2) -license=('custom') -sha1sums=('c7d0f4c5b0e999385445b8be1bc89aec4e5de71d') - -build() { - cd "${srcdir}/libICE-${pkgver}" - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib32 - - make -} - -package() { - cd "${srcdir}/libICE-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share} - - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libjpeg-turbo/PKGBUILD b/multilib/lib32-libjpeg-turbo/PKGBUILD deleted file mode 100644 index 09102ad96..000000000 --- a/multilib/lib32-libjpeg-turbo/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# $Id: PKGBUILD 48100 2011-05-28 16:27:44Z bluewind $ -# Maintainer: Allan McRae <allan@archlinux.org> -# Contributor: Simone Sclavi 'Ito' <darkhado@gmail.com> - -_pkgbasename=libjpeg-turbo -pkgname=lib32-$_pkgbasename -pkgver=1.1.1 -pkgrel=1 -pkgdesc="libjpeg derivative with accelerated baseline JPEG compression and decompression (32-bit)" -arch=('x86_64') -url="http://libjpeg-turbo.virtualgl.org/" -license=('GPL' 'custom') -depends=('lib32-glibc' $_pkgbasename) -makedepends=('nasm' gcc-multilib) -provides=('lib32-libjpeg=8.0.2') -conflicts=('lib32-libjpeg') -replaces=('lib32-libjpeg') -options=('!libtool') -source=(http://sourceforge.net/projects/$_pkgbasename/files/$pkgver/$_pkgbasename-$pkgver.tar.gz) -md5sums=('03b9c1406c7bfdc204313c2917ce6962') - -build() { - cd "$srcdir/$_pkgbasename-$pkgver" - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - sed -i "s|NAFLAGS='-felf64 -DELF -D__x86_64__'|NAFLAGS='-felf32 -DELF -D__x86_64__'|" configure - ./configure --prefix=/usr --with-jpeg8 --mandir=/usr/share/man --libdir=/usr/lib32 --without-simd - make -} - -package() { - cd "$srcdir/$_pkgbasename-$pkgver" - - make DESTDIR="$pkgdir/" install - rm -rf "${pkgdir}"/usr/{include,share,bin,sbin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libldap/PKGBUILD b/multilib/lib32-libldap/PKGBUILD deleted file mode 100644 index ed848d45d..000000000 --- a/multilib/lib32-libldap/PKGBUILD +++ /dev/null @@ -1,61 +0,0 @@ -# $Id: PKGBUILD 52217 2011-07-21 16:47:02Z bluewind $ -# Maintainer: -# Contributor: Judd Vinet <jvinet@zeroflux.org> - -_pkgbasename=libldap -pkgname=lib32-$_pkgbasename -pkgver=2.4.26 -pkgrel=1 -pkgdesc="Lightweight Directory Access Protocol (LDAP) client libraries (32-bit)" -arch=('x86_64') -license=('custom') -url="http://www.openldap.org/" -depends=('lib32-openssl' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool') -source=("ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-${pkgver}.tgz" - 'ntlm.patch') -md5sums=('f36f3086031dd56ae94f722ffae8df5e' - '4258ddbef923d1f29f2843bc050f8c56') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/openldap-${pkgver} - - patch -Np1 -i ${srcdir}/ntlm.patch - - ./configure --prefix=/usr \ - --libexecdir=/usr/sbin \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --localstatedir=/var/lib/openldap \ - --enable-crypt --enable-dynamic \ - --with-threads --disable-wrappers \ - --disable-spasswd --without-cyrus-sasl \ - --disable-bdb --disable-hdb --libdir=/usr/lib32 - - cd include - make - - cd ../libraries - make depend - make - -} - -package() { - cd ${srcdir}/openldap-${pkgver} - - cd include - make DESTDIR=${pkgdir} install - - cd ../libraries - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{include,share,bin} "$pkgdir/etc" - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libldap/ntlm.patch b/multilib/lib32-libldap/ntlm.patch deleted file mode 100644 index 6804b610d..000000000 --- a/multilib/lib32-libldap/ntlm.patch +++ /dev/null @@ -1,230 +0,0 @@ -Patch from evolution-exchange (2.10.3). The ldap_ntlm_bind function is -actually called by evolution-data-server, checked at version 1.12.2. -Without this patch, the Exchange addressbook integration uses simple binds -with cleartext passwords. - -Russ checked with openldap-software for upstream's opinion on this patch -on 2007-12-21. Upstream had never received it as a patch submission and -given that it's apparently only for older Exchange servers that can't do -SASL and DIGEST-MD5, it's not very appealing. - -Bug#457374 filed against evolution-data-server asking if this support is -still required on 2007-12-21. - -Index: trunk/include/ldap.h -=================================================================== ---- trunk.orig/include/ldap.h -+++ trunk/include/ldap.h -@@ -2461,5 +2461,25 @@ - LDAPControl **ctrls, - LDAPDerefRes **drp )); - -+/* -+ * hacks for NTLM -+ */ -+#define LDAP_AUTH_NTLM_REQUEST ((ber_tag_t) 0x8aU) -+#define LDAP_AUTH_NTLM_RESPONSE ((ber_tag_t) 0x8bU) -+LDAP_F( int ) -+ldap_ntlm_bind LDAP_P(( -+ LDAP *ld, -+ LDAP_CONST char *dn, -+ ber_tag_t tag, -+ struct berval *cred, -+ LDAPControl **sctrls, -+ LDAPControl **cctrls, -+ int *msgidp )); -+LDAP_F( int ) -+ldap_parse_ntlm_bind_result LDAP_P(( -+ LDAP *ld, -+ LDAPMessage *res, -+ struct berval *challenge)); -+ - LDAP_END_DECL - #endif /* _LDAP_H */ -Index: trunk/libraries/libldap/ntlm.c -=================================================================== ---- /dev/null -+++ trunk/libraries/libldap/ntlm.c -@@ -0,0 +1,138 @@ -+/* $OpenLDAP: pkg/ldap/libraries/libldap/ntlm.c,v 1.1.4.10 2002/01/04 20:38:21 kurt Exp $ */ -+/* -+ * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved. -+ * COPYING RESTRICTIONS APPLY, see COPYRIGHT file -+ */ -+ -+/* Mostly copied from sasl.c */ -+ -+#include "portable.h" -+ -+#include <stdlib.h> -+#include <stdio.h> -+ -+#include <ac/socket.h> -+#include <ac/string.h> -+#include <ac/time.h> -+#include <ac/errno.h> -+ -+#include "ldap-int.h" -+ -+int -+ldap_ntlm_bind( -+ LDAP *ld, -+ LDAP_CONST char *dn, -+ ber_tag_t tag, -+ struct berval *cred, -+ LDAPControl **sctrls, -+ LDAPControl **cctrls, -+ int *msgidp ) -+{ -+ BerElement *ber; -+ int rc; -+ ber_int_t id; -+ -+ Debug( LDAP_DEBUG_TRACE, "ldap_ntlm_bind\n", 0, 0, 0 ); -+ -+ assert( ld != NULL ); -+ assert( LDAP_VALID( ld ) ); -+ assert( msgidp != NULL ); -+ -+ if( msgidp == NULL ) { -+ ld->ld_errno = LDAP_PARAM_ERROR; -+ return ld->ld_errno; -+ } -+ -+ /* create a message to send */ -+ if ( (ber = ldap_alloc_ber_with_options( ld )) == NULL ) { -+ ld->ld_errno = LDAP_NO_MEMORY; -+ return ld->ld_errno; -+ } -+ -+ assert( LBER_VALID( ber ) ); -+ -+ LDAP_NEXT_MSGID( ld, id ); -+ rc = ber_printf( ber, "{it{istON}" /*}*/, -+ id, LDAP_REQ_BIND, -+ ld->ld_version, dn, tag, -+ cred ); -+ -+ /* Put Server Controls */ -+ if( ldap_int_put_controls( ld, sctrls, ber ) != LDAP_SUCCESS ) { -+ ber_free( ber, 1 ); -+ return ld->ld_errno; -+ } -+ -+ if ( ber_printf( ber, /*{*/ "N}" ) == -1 ) { -+ ld->ld_errno = LDAP_ENCODING_ERROR; -+ ber_free( ber, 1 ); -+ return ld->ld_errno; -+ } -+ -+ /* send the message */ -+ *msgidp = ldap_send_initial_request( ld, LDAP_REQ_BIND, dn, ber, id ); -+ -+ if(*msgidp < 0) -+ return ld->ld_errno; -+ -+ return LDAP_SUCCESS; -+} -+ -+int -+ldap_parse_ntlm_bind_result( -+ LDAP *ld, -+ LDAPMessage *res, -+ struct berval *challenge) -+{ -+ ber_int_t errcode; -+ ber_tag_t tag; -+ BerElement *ber; -+ ber_len_t len; -+ -+ Debug( LDAP_DEBUG_TRACE, "ldap_parse_ntlm_bind_result\n", 0, 0, 0 ); -+ -+ assert( ld != NULL ); -+ assert( LDAP_VALID( ld ) ); -+ assert( res != NULL ); -+ -+ if ( ld == NULL || res == NULL ) { -+ return LDAP_PARAM_ERROR; -+ } -+ -+ if( res->lm_msgtype != LDAP_RES_BIND ) { -+ ld->ld_errno = LDAP_PARAM_ERROR; -+ return ld->ld_errno; -+ } -+ -+ if ( ld->ld_error ) { -+ LDAP_FREE( ld->ld_error ); -+ ld->ld_error = NULL; -+ } -+ if ( ld->ld_matched ) { -+ LDAP_FREE( ld->ld_matched ); -+ ld->ld_matched = NULL; -+ } -+ -+ /* parse results */ -+ -+ ber = ber_dup( res->lm_ber ); -+ -+ if( ber == NULL ) { -+ ld->ld_errno = LDAP_NO_MEMORY; -+ return ld->ld_errno; -+ } -+ -+ tag = ber_scanf( ber, "{ioa" /*}*/, -+ &errcode, challenge, &ld->ld_error ); -+ ber_free( ber, 0 ); -+ -+ if( tag == LBER_ERROR ) { -+ ld->ld_errno = LDAP_DECODING_ERROR; -+ return ld->ld_errno; -+ } -+ -+ ld->ld_errno = errcode; -+ -+ return( ld->ld_errno ); -+} -+ -Index: trunk/libraries/libldap/Makefile.in -=================================================================== ---- trunk.orig/libraries/libldap/Makefile.in -+++ trunk/libraries/libldap/Makefile.in -@@ -27,7 +27,7 @@ - init.c options.c print.c string.c util-int.c schema.c \ - charray.c os-local.c dnssrv.c utf-8.c utf-8-conv.c \ - tls2.c tls_o.c tls_g.c tls_m.c \ -- turn.c ppolicy.c dds.c txn.c ldap_sync.c stctrl.c \ -+ turn.c ppolicy.c dds.c txn.c ldap_sync.c stctrl.c ntlm.c \ - assertion.c deref.c ldif.c fetch.c - - OBJS = bind.lo open.lo result.lo error.lo compare.lo search.lo \ -@@ -40,7 +40,7 @@ - init.lo options.lo print.lo string.lo util-int.lo schema.lo \ - charray.lo os-local.lo dnssrv.lo utf-8.lo utf-8-conv.lo \ - tls2.lo tls_o.lo tls_g.lo tls_m.lo \ -- turn.lo ppolicy.lo dds.lo txn.lo ldap_sync.lo stctrl.lo \ -+ turn.lo ppolicy.lo dds.lo txn.lo ldap_sync.lo stctrl.lo ntlm.lo \ - assertion.lo deref.lo ldif.lo fetch.lo - - LDAP_INCDIR= ../../include -Index: trunk/libraries/libldap_r/Makefile.in -=================================================================== ---- trunk.orig/libraries/libldap_r/Makefile.in -+++ trunk/libraries/libldap_r/Makefile.in -@@ -29,7 +29,7 @@ - init.c options.c print.c string.c util-int.c schema.c \ - charray.c os-local.c dnssrv.c utf-8.c utf-8-conv.c \ - tls2.c tls_o.c tls_g.c tls_m.c \ -- turn.c ppolicy.c dds.c txn.c ldap_sync.c stctrl.c \ -+ turn.c ppolicy.c dds.c txn.c ldap_sync.c stctrl.c ntlm.c \ - assertion.c deref.c ldif.c fetch.c - SRCS = threads.c rdwr.c rmutex.c tpool.c rq.c \ - thr_posix.c thr_cthreads.c thr_thr.c thr_lwp.c thr_nt.c \ -@@ -47,7 +47,7 @@ - init.lo options.lo print.lo string.lo util-int.lo schema.lo \ - charray.lo os-local.lo dnssrv.lo utf-8.lo utf-8-conv.lo \ - tls2.lo tls_o.lo tls_g.lo tls_m.lo \ -- turn.lo ppolicy.lo dds.lo txn.lo ldap_sync.lo stctrl.lo \ -+ turn.lo ppolicy.lo dds.lo txn.lo ldap_sync.lo stctrl.lo ntlm.lo \ - assertion.lo deref.lo ldif.lo fetch.lo - - LDAP_INCDIR= ../../include diff --git a/multilib/lib32-libmikmod/PKGBUILD b/multilib/lib32-libmikmod/PKGBUILD deleted file mode 100644 index 4f29981ef..000000000 --- a/multilib/lib32-libmikmod/PKGBUILD +++ /dev/null @@ -1,53 +0,0 @@ -# Maintainer: Peter Lewis <plewis@aur.archlinux.org> -# Contributor: Allan McRae <allan@archlinux.org> -# Contributor: Tom Newsom <Jeepster@gmx.co.uk> -# Contributor: Jesse Juhani Jaara <jesse.jaara@gmail.com> - -pkgname=lib32-libmikmod -pkgver=3.1.12 -pkgrel=5 -pkgdesc="A portable sound library" -license=('GPL' 'LGPL') -url="http://sourceforge.net/projects/mikmod/" -arch=('x86_64') -depends=('libmikmod' 'lib32-glibc') -makedepends=('gcc-multilib') -options=('!libtool') -install= -source=(http://downloads.sourceforge.net/mikmod/libmikmod-${pkgver}.tar.gz - libmikmod-3.1.12-64bit-fix.diff - libmikmod-3.1.12-exitcrash-fix.diff - libmikmod-3.1.12-loopingvolume-fix.diff - libmikmod-3.1.12-md_sngchn-fix.diff - libmikmod-CVE-2009-0179.patch) -md5sums=('9f3c740298260d5f88981fc0d51f6f16' - 'dc7ffd8d6d355e9d6ec671b7f2b2adc7' - '03a4f5bfcecddf5f515672d6d477b7f7' - 'a837fd876cbd2ac27419b802504489db' - '076d39de19de36b880ed90297f1ee0d1' - 'fa91f4bc17164be32bec0ea7a73f2aaa') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd $srcdir/libmikmod-$pkgver - - # patches from sdl_mixer-1.2.11 source - patch -Np1 -i $srcdir/libmikmod-3.1.12-64bit-fix.diff - patch -Np1 -i $srcdir/libmikmod-3.1.12-exitcrash-fix.diff - patch -Np1 -i $srcdir/libmikmod-3.1.12-loopingvolume-fix.diff - patch -Np1 -i $srcdir/libmikmod-3.1.12-md_sngchn-fix.diff - patch -Np1 -i $srcdir/libmikmod-CVE-2009-0179.patch - - ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --libdir=/usr/lib32 - make -} - -package() { - cd $srcdir/libmikmod-$pkgver - make DESTDIR=$pkgdir install - rm -rf "${pkgdir}"/usr/{include,share,bin} -} - diff --git a/multilib/lib32-libmikmod/libmikmod-3.1.12-64bit-fix.diff b/multilib/lib32-libmikmod/libmikmod-3.1.12-64bit-fix.diff deleted file mode 100644 index cd7800881..000000000 --- a/multilib/lib32-libmikmod/libmikmod-3.1.12-64bit-fix.diff +++ /dev/null @@ -1,47 +0,0 @@ -Date: Sun, 04 Jul 2004 11:53:23 +0200 -From: Josselin Mouette -Subject: Re: sdl 64bit problem [PATCH] - -Le sam, 03/07/2004 � 18:20 +0200, Hans-Frieder Vogt a �crit : -> Hi list, -> -> I found the problem that lead to the distorted sound in tuxracer on AMD64. It -> may have also been the cause for the other reported sound problems with SDL. -> The problem is not in SDL, but in SDL-mixer. -> There, music files (*.it, and probably others as well) are incorrectly read on -> all 64 bit architectures but Alpha, due to an incorrect data type definition. -> The attached patch should solve the problem for all 64 bit architectures on -> Linux, since at least cpp defines _LP64 and __LP64__ for them. -> _LP64 indicates that long ints and pointers are 64 bits, but integers are 32 -> bits. -> I am not sure whether the usage of _LP64 is also standard for the commercial -> compilers, and for other Unixes, but at least Solaris 9 defines _LP64 in the -> 64 bit environment as well. -> -> Josselin, -> could you include this patch into your next debian packages? - -diff -ru libmikmod-3.1.12.orig/include/mikmod.h.in libmikmod-3.1.12/include/mikmod.h.in ---- libmikmod-3.1.12.orig/include/mikmod.h.in 2007-12-15 01:24:19.000000000 -0800 -+++ libmikmod-3.1.12/include/mikmod.h.in 2009-10-05 00:18:56.000000000 -0700 -@@ -85,7 +85,7 @@ - - @DOES_NOT_HAVE_SIGNED@ - --#if defined(__arch64__) || defined(__alpha) || defined(__x86_64) -+#if defined(__arch64__) || defined(__alpha) || defined(__x86_64) || defined(_LP64) - /* 64 bit architectures */ - - typedef signed char SBYTE; /* 1 byte, signed */ -diff -ru libmikmod-3.1.12.orig/include/mikmod_internals.h libmikmod-3.1.12/include/mikmod_internals.h ---- libmikmod-3.1.12.orig/include/mikmod_internals.h 2007-12-15 04:24:51.000000000 -0800 -+++ libmikmod-3.1.12/include/mikmod_internals.h 2009-10-05 00:19:15.000000000 -0700 -@@ -50,7 +50,7 @@ - /*========== More type definitions */ - - /* SLONGLONG: 64bit, signed */ --#if defined (__arch64__) || defined(__alpha) -+#if defined(__arch64__) || defined(__alpha) || defined(__x86_64) || defined(_LP64) - typedef long SLONGLONG; - #define NATIVE_64BIT_INT - #elif defined(__WATCOMC__) diff --git a/multilib/lib32-libmikmod/libmikmod-3.1.12-exitcrash-fix.diff b/multilib/lib32-libmikmod/libmikmod-3.1.12-exitcrash-fix.diff deleted file mode 100644 index fe62892b5..000000000 --- a/multilib/lib32-libmikmod/libmikmod-3.1.12-exitcrash-fix.diff +++ /dev/null @@ -1,21 +0,0 @@ -Date: 15 Apr 2002 11:01:19 +0200 -From: Guillaume Cottenceau <gc@mandrakesoft.com> - -Unfortunately, I should have double checked that the following -fix (authored by Dave Goehrig <dave@cthulhu-burger.org>, not me), -was really in the CVS... it's not, as of stable 1.2.3 at least. -Please include it, it fixes a segfault on exiting a program which -disabled MOD music during its execution. - -diff -ru libmikmod-3.1.12.orig/playercode/virtch_common.c libmikmod-3.1.12/playercode/virtch_common.c ---- libmikmod-3.1.12.orig/playercode/virtch_common.c 2007-12-15 01:26:53.000000000 -0800 -+++ libmikmod-3.1.12/playercode/virtch_common.c 2009-10-05 00:37:12.000000000 -0700 -@@ -347,7 +347,7 @@ - - void VC1_SampleUnload(SWORD handle) - { -- if (handle<MAXSAMPLEHANDLES) { -+ if (Samples && handle<MAXSAMPLEHANDLES) { - if (Samples[handle]) - free(Samples[handle]); - Samples[handle]=NULL; diff --git a/multilib/lib32-libmikmod/libmikmod-3.1.12-loopingvolume-fix.diff b/multilib/lib32-libmikmod/libmikmod-3.1.12-loopingvolume-fix.diff deleted file mode 100644 index f0ce70e34..000000000 --- a/multilib/lib32-libmikmod/libmikmod-3.1.12-loopingvolume-fix.diff +++ /dev/null @@ -1,15 +0,0 @@ -Yi-Huang Han - Wed Oct 24 21:55:47 PDT 2001 - * Fixed MOD music volume when looping - -diff -ru libmikmod-3.1.12.orig/playercode/mplayer.c libmikmod-3.1.12/playercode/mplayer.c ---- libmikmod-3.1.12.orig/playercode/mplayer.c 2009-10-05 00:19:59.000000000 -0700 -+++ libmikmod-3.1.12/playercode/mplayer.c 2009-10-05 00:44:35.000000000 -0700 -@@ -3019,7 +3019,7 @@ - { - MUTEX_LOCK(vars); - if (pf) -- pf->volume=(volume<0)?0:(volume>128)?128:volume; -+ pf->volume=pf->initvolume=(volume<0)?0:(volume>128)?128:volume; - MUTEX_UNLOCK(vars); - } - diff --git a/multilib/lib32-libmikmod/libmikmod-3.1.12-md_sngchn-fix.diff b/multilib/lib32-libmikmod/libmikmod-3.1.12-md_sngchn-fix.diff deleted file mode 100644 index 45cc355ae..000000000 --- a/multilib/lib32-libmikmod/libmikmod-3.1.12-md_sngchn-fix.diff +++ /dev/null @@ -1,112 +0,0 @@ -This patch fixes "buffer overflow due to md_numchn - ID: 1630158" - -diff -ru libmikmod-3.1.12.orig/playercode/mplayer.c libmikmod-3.1.12/playercode/mplayer.c ---- libmikmod-3.1.12.orig/playercode/mplayer.c 2007-12-15 01:26:28.000000000 -0800 -+++ libmikmod-3.1.12/playercode/mplayer.c 2009-10-04 23:48:36.000000000 -0700 -@@ -52,6 +52,8 @@ - will wait */ - /*static*/ MODULE *pf = NULL; - -+#define NUMVOICES(mod) (md_sngchn < (mod)->numvoices ? md_sngchn : (mod)->numvoices) -+ - #define HIGH_OCTAVE 2 /* number of above-range octaves */ - - static UWORD oldperiods[OCTAVE*2]={ -@@ -248,14 +250,14 @@ - MP_VOICE *a; - ULONG t,k,tvol,pp; - -- for (t=0;t<md_sngchn;t++) -+ for (t=0;t<NUMVOICES(mod);t++) - if (((mod->voice[t].main.kick==KICK_ABSENT)|| - (mod->voice[t].main.kick==KICK_ENV))&& - Voice_Stopped_internal(t)) - return t; - - tvol=0xffffffUL;t=-1;a=mod->voice; -- for (k=0;k<md_sngchn;k++,a++) { -+ for (k=0;k<NUMVOICES(mod);k++,a++) { - /* allow us to take over a nonexisting sample */ - if (!a->main.s) - return k; -@@ -2249,12 +2251,12 @@ - - switch (dat) { - case 0x0: /* past note cut */ -- for (t=0;t<md_sngchn;t++) -+ for (t=0;t<NUMVOICES(mod);t++) - if (mod->voice[t].master==a) - mod->voice[t].main.fadevol=0; - break; - case 0x1: /* past note off */ -- for (t=0;t<md_sngchn;t++) -+ for (t=0;t<NUMVOICES(mod);t++) - if (mod->voice[t].master==a) { - mod->voice[t].main.keyoff|=KEY_OFF; - if ((!(mod->voice[t].venv.flg & EF_ON))|| -@@ -2263,7 +2265,7 @@ - } - break; - case 0x2: /* past note fade */ -- for (t=0;t<md_sngchn;t++) -+ for (t=0;t<NUMVOICES(mod);t++) - if (mod->voice[t].master==a) - mod->voice[t].main.keyoff|=KEY_FADE; - break; -@@ -2318,7 +2320,7 @@ - SAMPLE *s; - - mod->totalchn=mod->realchn=0; -- for (channel=0;channel<md_sngchn;channel++) { -+ for (channel=0;channel<NUMVOICES(mod);channel++) { - aout=&mod->voice[channel]; - i=aout->main.i; - s=aout->main.s; -@@ -2736,7 +2738,7 @@ - if (a->dct!=DCT_OFF) { - int t; - -- for (t=0;t<md_sngchn;t++) -+ for (t=0;t<NUMVOICES(mod);t++) - if ((!Voice_Stopped_internal(t))&& - (mod->voice[t].masterchn==channel)&& - (a->main.sample==mod->voice[t].main.sample)) { -@@ -2978,6 +2980,11 @@ - if (!(mod->voice=(MP_VOICE*)_mm_calloc(md_sngchn,sizeof(MP_VOICE)))) - return 1; - -+ /* mod->numvoices was used during loading to clamp md_sngchn. -+ After loading it's used to remember how big mod->voice is. -+ */ -+ mod->numvoices = md_sngchn; -+ - Player_Init_internal(mod); - return 0; - } -@@ -3086,7 +3093,7 @@ - pf->patbrk=0; - pf->vbtick=pf->sngspd; - -- for (t=0;t<md_sngchn;t++) { -+ for (t=0;t<NUMVOICES(pf);t++) { - Voice_Stop_internal(t); - pf->voice[t].main.i=NULL; - pf->voice[t].main.s=NULL; -@@ -3111,7 +3118,7 @@ - pf->patbrk=0; - pf->vbtick=pf->sngspd; - -- for (t=0;t<md_sngchn;t++) { -+ for (t=0;t<NUMVOICES(pf);t++) { - Voice_Stop_internal(t); - pf->voice[t].main.i=NULL; - pf->voice[t].main.s=NULL; -@@ -3138,7 +3145,7 @@ - pf->sngpos=pos; - pf->vbtick=pf->sngspd; - -- for (t=0;t<md_sngchn;t++) { -+ for (t=0;t<NUMVOICES(pf);t++) { - Voice_Stop_internal(t); - pf->voice[t].main.i=NULL; - pf->voice[t].main.s=NULL; diff --git a/multilib/lib32-libmikmod/libmikmod-CVE-2009-0179.patch b/multilib/lib32-libmikmod/libmikmod-CVE-2009-0179.patch deleted file mode 100644 index 0c47e6545..000000000 --- a/multilib/lib32-libmikmod/libmikmod-CVE-2009-0179.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff -ur libmikmod-3.1.11.orig/loaders/load_xm.c libmikmod-3.1.11/loaders/load_xm.c ---- libmikmod-3.1.11.orig/loaders/load_xm.c 2004-01-21 18:43:53.000000000 +0100 -+++ libmikmod-3.1.11/loaders/load_xm.c 2008-04-16 04:30:45.000000000 +0200 -@@ -622,7 +622,8 @@ - /* read the remainder of the header */ - for(u=headend-_mm_ftell(modreader);u;u--) _mm_read_UBYTE(modreader); - -- if(_mm_eof(modreader)) { -+ /* last instrument is at the end of file in version 0x0104 */ -+ if(_mm_eof(modreader) && (mh->version<0x0104 || t<of.numins-1)) { - free(nextwav);free(wh); - nextwav=NULL;wh=NULL; - _mm_errno = MMERR_LOADING_SAMPLEINFO; -diff -ur libmikmod-3.1.11.orig/playercode/mloader.c libmikmod-3.1.11/playercode/mloader.c ---- libmikmod-3.1.11.orig/playercode/mloader.c 2004-01-21 18:43:53.000000000 +0100 -+++ libmikmod-3.1.11/playercode/mloader.c 2008-04-16 04:30:45.000000000 +0200 -@@ -450,10 +450,12 @@ - if (!l->Init || l->Init()) { - _mm_rewind(modreader); - ok = l->Load(curious); -- /* propagate inflags=flags for in-module samples */ -- for (t = 0; t < of.numsmp; t++) -- if (of.samples[t].inflags == 0) -- of.samples[t].inflags = of.samples[t].flags; -+ if (ok) { -+ /* propagate inflags=flags for in-module samples */ -+ for (t = 0; t < of.numsmp; t++) -+ if (of.samples[t].inflags == 0) -+ of.samples[t].inflags = of.samples[t].flags; -+ } - } else - ok = 0; - diff --git a/multilib/lib32-libmng/PKGBUILD b/multilib/lib32-libmng/PKGBUILD deleted file mode 100644 index 354ca8b16..000000000 --- a/multilib/lib32-libmng/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# $Id: PKGBUILD 58042 2011-11-05 19:32:02Z lcarlier $ -# Maintainer: Florian Pritz <flo@xssn.at> - -_pkgbasename=libmng -pkgname=lib32-$_pkgbasename -pkgver=1.0.10 -pkgrel=6 -pkgdesc="A collection of routines used to create and manipulate MNG format graphics files (32-bit)" -arch=('x86_64') -url="http://www.libmng.com/" -license=('custom') -depends=('lib32-zlib' 'lib32-libjpeg>=8' $_pkgbasename) -makedepends=(gcc-multilib) -options=(!libtool) -source=(http://downloads.sourceforge.net/sourceforge/$_pkgbasename/$_pkgbasename-$pkgver.tar.gz) -md5sums=('a464ae7d679781beebdf7440d144b7bd') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd $srcdir/$_pkgbasename-$pkgver - ln -s makefiles/configure.in . - ln -s makefiles/Makefile.am . - autoreconf --force --install - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd $srcdir/$_pkgbasename-$pkgver - - make DESTDIR=$pkgdir install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libogg/PKGBUILD b/multilib/lib32-libogg/PKGBUILD deleted file mode 100644 index ff8614b23..000000000 --- a/multilib/lib32-libogg/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# $Id: PKGBUILD 40915 2011-03-01 15:20:49Z bluewind $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> - -_pkgbasename=libogg -pkgname=lib32-$_pkgbasename -pkgver=1.2.2 -pkgrel=1 -pkgdesc="Ogg bitstream and framing library (32-bit)" -arch=('x86_64') -url="http://www.xiph.org/ogg/" -license=('BSD') -depends=('lib32-glibc' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool') -source=(http://downloads.xiph.org/releases/ogg/$_pkgbasename-$pkgver.tar.gz) -md5sums=('5a9fcabc9a1b7c6f1cd75ddc78f36c56') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd $srcdir/${_pkgbasename}-${pkgver} - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd $srcdir/${_pkgbasename}-${pkgver} - - make DESTDIR=$pkgdir install - - rm -rf "$pkgdir"/usr/{share,bin} - find "$pkgdir"/usr/include/ogg -type f -not -name config_types.h -delete - mv "$pkgdir"/usr/include/ogg/config_types{,-32}.h - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libpciaccess/PKGBUILD b/multilib/lib32-libpciaccess/PKGBUILD deleted file mode 100644 index be80aab83..000000000 --- a/multilib/lib32-libpciaccess/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 58044 2011-11-05 19:35:56Z lcarlier $ -# Maintainer: Jan de Groot <jgc@archlinux.org> -# Contributor: Alexander Baldeck <alexander@archlinux.org> - -_pkgbasename=libpciaccess -pkgname=lib32-${_pkgbasename} -pkgver=0.12.1 -pkgrel=3 -pkgdesc="X11 PCI access library (32-bit" -arch=(i686 x86_64) -license=('custom') -url="http://xorg.freedesktop.org/" -depends=('lib32-glibc' ${_pkgbasename}) -makedepends=('gcc-multilib' 'pkgconfig' 'xorg-util-macros') -options=('!libtool') -source=(${url}/releases/individual/lib/${_pkgbasename}-${pkgver}.tar.bz2) -sha1sums=('4933bda545df37395e57ff6b4bd61e17a5431770') - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --sysconfdir=/etc \ - --libdir=/usr/lib32 - make - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/include - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libpng/PKGBUILD b/multilib/lib32-libpng/PKGBUILD deleted file mode 100644 index 8900a4465..000000000 --- a/multilib/lib32-libpng/PKGBUILD +++ /dev/null @@ -1,55 +0,0 @@ -# $Id: PKGBUILD 55366 2011-09-10 11:13:13Z pschmitz $ -# Maintainer: Jan de Groot <jgc@archlinux.org> -# Contributor: dorphell <dorphell@archlinux.org> -# Contributor: Travis Willard <travis@archlinux.org> -# Contributor: Douglas Soares de Andrade <douglas@archlinux.org> - -_pkgbasename=libpng -pkgname=lib32-$_pkgbasename -pkgver=1.4.8 -_apngver=1.4.7 -pkgrel=1 -pkgdesc="A collection of routines used to create PNG format graphics files (32-bit)" -arch=('x86_64') -url="http://www.libpng.org/pub/png/libpng.html" -license=('custom') -depends=('lib32-zlib' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool') -source=("http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.xz" - "http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-${_apngver}-apng.patch.gz") -md5sums=('2ce595d571f2b06a9403ed5bcfa4ecbd' - '4842a4cba3487a64084ca0a7417ff1c7') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - # Add animated PNG (apng) support - # see http://sourceforge.net/projects/libpng-apng/ - patch -p1 -i "${srcdir}/libpng-${_apngver}-apng.patch" - -# libtoolize --force --copy -# aclocal -# autoconf -# automake --add-missing - - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - make DESTDIR="${pkgdir}" install - - cd contrib/pngminus - make PNGLIB="-L${pkgdir}/usr/lib32 -lpng" -f makefile.std png2pnm pnm2png - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libpulse/PKGBUILD b/multilib/lib32-libpulse/PKGBUILD deleted file mode 100644 index ccf45e707..000000000 --- a/multilib/lib32-libpulse/PKGBUILD +++ /dev/null @@ -1,53 +0,0 @@ -# $Id: PKGBUILD 57069 2011-10-20 15:38:49Z heftig $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> -# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> -# Contributor: Corrado Primier <bardo@aur.archlinux.org> -# Contributor: William Rea <sillywilly@gmail.com> - -_pkgbasename=libpulse -pkgname=lib32-$_pkgbasename -pkgdesc="A featureful, general-purpose sound server (32-bit client libraries)" -pkgver=1.1 -pkgrel=1 -arch=(x86_64) -url="http://pulseaudio.org/" -license=(GPL LGPL) -depends=(lib32-dbus-core lib32-xcb-util lib32-json-c - lib32-libasyncns lib32-libcap lib32-libxtst lib32-libsm lib32-libsndfile - $_pkgbasename) -makedepends=(gcc-multilib libtool-multilib intltool lib32-glib2 lib32-speex) -optdepends=('lib32-alsa-plugins: ALSA support') -provides=("lib32-pulseaudio=$pkgver") -conflicts=(lib32-pulseaudio) -replaces=(lib32-pulseaudio) -options=(!emptydirs !libtool !makeflags) -source=("http://freedesktop.org/software/pulseaudio/releases/pulseaudio-$pkgver.tar.xz") -sha256sums=('6fe531136f6ebce2d35872a2d2c914278cdc5dcdd5eea516dc52c81f9001f5ee') - -_libs="libpulsecommon-$pkgver.la libpulse.la libpulse-simple.la libpulse-mainloop-glib.la libpulsedsp.la" - -build() { - cd "$srcdir/pulseaudio-$pkgver" - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --libdir=/usr/lib32 \ - --libexecdir=/usr/lib32 \ - --localstatedir=/var \ - --disable-hal \ - --disable-tcpwrap \ - --disable-rpath \ - --disable-default-build-tests - - make -C src $_libs -} - -package() { - cd "$srcdir/pulseaudio-$pkgver" - make -C src lib_LTLIBRARIES="$_libs" DESTDIR="$pkgdir" install-libLTLIBRARIES - make DESTDIR="$pkgdir" install-pkgconfigDATA -} diff --git a/multilib/lib32-libsamplerate/PKGBUILD b/multilib/lib32-libsamplerate/PKGBUILD deleted file mode 100644 index c618d6681..000000000 --- a/multilib/lib32-libsamplerate/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 33260 2010-11-23 15:20:46Z bluewind $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> - -_pkgbasename=libsamplerate -pkgname=lib32-$_pkgbasename -pkgver=0.1.7 -pkgrel=3 -pkgdesc="Secret Rabbit Code - aka Sample Rate Converter for audio (32-bit)" -arch=('x86_64') -url="http://www.mega-nerd.com/SRC/index.html" -license=('GPL') -depends=('lib32-libsndfile' $_pkgbasename) -makedepedns=('gcc-multilib') -options=('!libtool') -source=(http://www.mega-nerd.com/SRC/libsamplerate-${pkgver}.tar.gz) -md5sums=('6731a81cb0c622c483b28c0d7f90867d') -sha1sums=('f3f803ec5feae5a3fdb0fa3937277669e854386e') - -build() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{include,share,bin} -} diff --git a/multilib/lib32-libsm/PKGBUILD b/multilib/lib32-libsm/PKGBUILD deleted file mode 100644 index 8a88d6e4e..000000000 --- a/multilib/lib32-libsm/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# $Id: PKGBUILD 31529 2010-11-01 23:52:46Z heftig $ -# Maintainer: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libsm -pkgname=lib32-$_pkgbasename -pkgver=1.2.0 -pkgrel=1 -pkgdesc="X11 Session Management library (32-bit)" -arch=(x86_64) -license=('custom') -url="http://xorg.freedesktop.org/" -depends=('lib32-libice' 'lib32-util-linux-ng' $_pkgbasename) -makedepends=('xorg-util-macros' 'xtrans' 'gcc-multilib') -options=('!libtool') -source=(${url}/releases/individual/lib/libSM-${pkgver}.tar.bz2) -sha1sums=('f78bc72f0b3ec26cbf980f84f014422ba854544d') - -build() { - cd "${srcdir}/libSM-${pkgver}" - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libSM-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share} - - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libsndfile/PKGBUILD b/multilib/lib32-libsndfile/PKGBUILD deleted file mode 100644 index 9debdca3d..000000000 --- a/multilib/lib32-libsndfile/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# $Id: PKGBUILD 53155 2011-07-31 05:20:20Z heftig $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> - -_pkgbasename=libsndfile -pkgname=lib32-$_pkgbasename -pkgver=1.0.25 -pkgrel=1 -pkgdesc="A C library for reading and writing files containing sampled sound (32-bit)" -arch=('x86_64') -url="http://www.mega-nerd.com/libsndfile" -license=('LGPL') -depends=('lib32-flac' 'lib32-libvorbis' $_pkgbasename) -makedepends=('lib32-alsa-lib' 'gcc-multilib') -options=('!libtool') -source=(http://www.mega-nerd.com/libsndfile/files/${_pkgbasename}-${pkgver}.tar.gz) -md5sums=('e2b7bb637e01022c7d20f95f9c3990a2') -sha1sums=('e95d9fca57f7ddace9f197071cbcfb92fa16748e') - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - export GETCONF="getconf -v POSIX_V7_ILP32_OFFBIG" - export GETCONF_DIR="/usr/lib32/getconf" - - ./configure --prefix=/usr --disable-sqlite --libdir=/usr/lib32 - make -C src -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make -C src DESTDIR="${pkgdir}" install - make DESTDIR="$pkgdir" install-pkgconfigDATA - - rm -rf "$pkgdir/usr/include" -} diff --git a/multilib/lib32-libssh2/PKGBUILD b/multilib/lib32-libssh2/PKGBUILD deleted file mode 100644 index 963693b7b..000000000 --- a/multilib/lib32-libssh2/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# Maintainer: Florian Pritz <flo@xssn.at> -# $Id: PKGBUILD 53557 2011-08-05 17:14:21Z bluewind $ -# Contributor: Angel Velasquez <angvp@archlinux.org> -# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Andrea Scarpino <andrea@archlinux.org> -# Contributor: ice-man <icemanf@gmail.com> - -_pkgbasename=libssh2 -pkgname=lib32-$_pkgbasename -pkgver=1.2.7 -pkgrel=2 -pkgdesc="A library implementing the SSH2 protocol as defined by Internet Drafts (32-bit)" -url="http://www.libssh2.org/" -arch=('i686' 'x86_64') -license=('BSD') -depends=('openssl' $_pkgbasename) -makedepends=('zlib' "gcc-multilib") -options=('!libtool') -source=("http://www.libssh2.org/download/${_pkgbasename}-${pkgver}.tar.gz") -md5sums=('a5d78344886f1282e4008c09bf568076') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/${_pkgbasename}-${pkgver} - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{include,share,bin,sbin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libstdc++5/PKGBUILD b/multilib/lib32-libstdc++5/PKGBUILD deleted file mode 100644 index 3d30a4b0e..000000000 --- a/multilib/lib32-libstdc++5/PKGBUILD +++ /dev/null @@ -1,46 +0,0 @@ -# $Id: PKGBUILD 26620 2010-09-15 22:43:15Z bluewind $ - -pkgname=lib32-libstdc++5 -pkgver=3.3.6 -pkgrel=5 -pkgdesc="Legacy GNU Standard C++ library version 3 (32 bit)" -arch=(x86_64) -url="http://gcc.gnu.org" -license=('GPL' 'LGPL') -depends=('lib32-gcc-libs') -makedepends=('gcc-multilib' 'binutils-multilib') -options=('!libtool' '!makeflags') -source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-{core,g++}-${pkgver}.tar.bz2 - gcc-3.4.3-no_multilib_amd64.patch) -md5sums=('18c52e6fb8966b7700665dca289d077f' - '6b3d00b8d079805be1b895f7f6ce47a0' - 'b2a96584f4cee72362695ba44c911c40') - -build(){ - export CFLAGS=$(echo $CFLAGS | sed 's|-mtune=generic||') - export CXXFLAGS=$(echo $CXXFLAGS | sed 's|-mtune=generic||') - cd ${srcdir}/gcc-${pkgver} - - patch -Np0 -i ../gcc-3.4.3-no_multilib_amd64.patch - # No fixincludes - sed -i -e 's@\./fixinc\.sh@-c true@' gcc/Makefile.in - - mkdir ../gcc-build - cd ../gcc-build - # We build the full multilib libstdc++5 here, no idea how to restrict - # the build process to the 32 bit version only. - ../gcc-${pkgver}/configure --prefix=/usr --enable-shared \ - --enable-languages=c++ --enable-threads=posix --enable-__cxa_atexit \ - --enable-multilib - make all-target-libstdc++-v3 BOOT_CFLAGS="${CFLAGS}" STAGE1_CFLAGS="-O" -} - -package() { - cd ${srcdir}/gcc-build - make DESTDIR=${pkgdir} install-target-libstdc++-v3 - - # Only install the lib32 files - rm -rf ${pkgdir}/usr/{include,share,lib} - rm -f ${pkgdir}/usr/lib32/*.a - rm -f ${pkgdir}/usr/lib32/libstdc++.so -} diff --git a/multilib/lib32-libstdc++5/gcc-3.4.3-no_multilib_amd64.patch b/multilib/lib32-libstdc++5/gcc-3.4.3-no_multilib_amd64.patch deleted file mode 100644 index 6ba6694db..000000000 --- a/multilib/lib32-libstdc++5/gcc-3.4.3-no_multilib_amd64.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- gcc/config/i386/t-linux64.orig 2003-06-28 00:19:59.000000000 +0000 -+++ gcc/config/i386/t-linux64 2003-06-28 00:20:07.000000000 +0000 -@@ -6,7 +6,7 @@ - - MULTILIB_OPTIONS = m64/m32 - MULTILIB_DIRNAMES = 64 32 --MULTILIB_OSDIRNAMES = ../lib64 ../lib -+MULTILIB_OSDIRNAMES = ../lib ../lib32 - - LIBGCC = stmp-multilib - INSTALL_LIBGCC = install-multilib diff --git a/multilib/lib32-libtiff/PKGBUILD b/multilib/lib32-libtiff/PKGBUILD deleted file mode 100644 index 92858840d..000000000 --- a/multilib/lib32-libtiff/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# $Id: PKGBUILD 26623 2010-09-15 22:43:40Z bluewind $ -# Maintainer: Eric Belanger <eric@archlinux.org> -# Contributor: dorphell <dorphell@archlinux.org> - -_pkgbasename=libtiff -pkgname=lib32-$_pkgbasename -pkgver=3.9.4 -pkgrel=3 -pkgdesc="Library for manipulation of TIFF images (32-bit)" -arch=('x86_64') -url="http://www.remotesensing.org/libtiff/" -license=('custom') -depends=('lib32-libjpeg' 'lib32-zlib' $_pkgbasename) -makedepends=('lib32-libgl' 'lib32-libxmu' 'lib32-libxi' gcc-multilib) -options=('!libtool') -source=(ftp://ftp.remotesensing.org/pub/libtiff/tiff-${pkgver}.tar.gz \ - libtiff-CVE-2009-2285.patch) -md5sums=('2006c1bdd12644dbf02956955175afd6' 'ff61077408727a82281f77a94f555e2a') -sha1sums=('a4e32d55afbbcabd0391a9c89995e8e8a19961de' 'eadce8c8bd72ea9c74f35300bf299131813b0c8b') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/tiff-${pkgver}" - patch -p1 < ../libtiff-CVE-2009-2285.patch - ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/tiff-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libtiff/libtiff-CVE-2009-2285.patch b/multilib/lib32-libtiff/libtiff-CVE-2009-2285.patch deleted file mode 100644 index 435a84b53..000000000 --- a/multilib/lib32-libtiff/libtiff-CVE-2009-2285.patch +++ /dev/null @@ -1,22 +0,0 @@ -Index: tiff-3.8.2/libtiff/tif_lzw.c -=================================================================== ---- tiff-3.8.2.orig/libtiff/tif_lzw.c -+++ tiff-3.8.2/libtiff/tif_lzw.c -@@ -421,7 +421,7 @@ LZWDecode(TIFF* tif, tidata_t op0, tsize - NextCode(tif, sp, bp, code, GetNextCode); - if (code == CODE_EOI) - break; -- if (code == CODE_CLEAR) { -+ if (code >= CODE_CLEAR) { - TIFFErrorExt(tif->tif_clientdata, tif->tif_name, - "LZWDecode: Corrupted LZW table at scanline %d", - tif->tif_row); -@@ -624,7 +624,7 @@ LZWDecodeCompat(TIFF* tif, tidata_t op0, - NextCode(tif, sp, bp, code, GetNextCodeCompat); - if (code == CODE_EOI) - break; -- if (code == CODE_CLEAR) { -+ if (code >= CODE_CLEAR) { - TIFFErrorExt(tif->tif_clientdata, tif->tif_name, - "LZWDecode: Corrupted LZW table at scanline %d", - tif->tif_row); diff --git a/multilib/lib32-libusb-compat/PKGBUILD b/multilib/lib32-libusb-compat/PKGBUILD deleted file mode 100644 index d6d74d770..000000000 --- a/multilib/lib32-libusb-compat/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# $Id: PKGBUILD 58048 2011-11-05 19:41:45Z lcarlier $ -# Maintainer: Tobias Powalowski <tpowa@archlinux.org> -# Contributor: arjan <arjan@archlinux.org> - -pkgname=lib32-libusb-compat -pkgver=0.1.3 -pkgrel=2 -pkgdesc="Library to enable user space application programs to communicate with USB devices" -arch=('x86_64') -depends=('lib32-libusb' 'libusb-compat') -makedepends=('gcc-multilib') -url="http://libusb.sourceforge.net/" -license=('LGPL') -source=(http://downloads.sourceforge.net/libusb/libusb-compat-0.1/libusb-compat-$pkgver/libusb-compat-${pkgver}.tar.bz2) -options=('!libtool') -md5sums=('570ac2ea085b80d1f74ddc7c6a93c0eb') - -build() { - cd ${srcdir}/libusb-compat-${pkgver} - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/libusb-compat-${pkgver} - - make DESTDIR=${pkgdir} install - rm -rf ${pkgdir}/usr/{bin,include} -} diff --git a/multilib/lib32-libusb/PKGBUILD b/multilib/lib32-libusb/PKGBUILD deleted file mode 100644 index 69498b604..000000000 --- a/multilib/lib32-libusb/PKGBUILD +++ /dev/null @@ -1,34 +0,0 @@ -# $Id: PKGBUILD 58046 2011-11-05 19:39:36Z lcarlier $ -# Maintainer: Jan de Groot <jgc@archlinux.org> - -pkgname=lib32-libusb -pkgver=1.0.8 -pkgrel=2 -pkgdesc="Library to enable user space application programs to communicate with USB devices. (32-bit)" -arch=('x86_64') -url="http://libusb.sourceforge.net/" -license=('LGPL') -depends=('lib32-glibc' 'libusb') -makedepends=('gcc-multilib') -source=(http://downloads.sourceforge.net/libusb/libusb-${pkgver}.tar.bz2) -options=(!libtool) -md5sums=('37d34e6eaa69a4b645a19ff4ca63ceef') - -build() { - cd "${srcdir}/libusb-${pkgver}" - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --libdir=/usr/lib32 - - make -} - -package () { - cd "${srcdir}/libusb-${pkgver}" - - make DESTDIR="${pkgdir}" install - rm -rf ${pkgdir}/usr/include -} - diff --git a/multilib/lib32-libvdpau/PKGBUILD b/multilib/lib32-libvdpau/PKGBUILD deleted file mode 100644 index 795e0f051..000000000 --- a/multilib/lib32-libvdpau/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 41886 2011-03-10 14:20:26Z ibiru $ -# Maintainer : Ionut Biru <ibiru@archlinux.org> -# Contributor: TryA <tryagainprod {at} gmail.com> - -_pkgbasename=libvdpau -pkgname=lib32-libvdpau -pkgver=0.4.1 -pkgrel=3 -pkgdesc="Nvidia VDPAU library (32-bit)" -arch=('x86_64') -url=http://cgit.freedesktop.org/~aplattner/libvdpau -depends=(${_pkgbasename}) -options=('!libtool') -license=('custom') -source=(http://people.freedesktop.org/~aplattner/vdpau/${_pkgbasename}-${pkgver}.tar.gz) -makedepends=('lib32-libx11') -sha256sums=('061b6f86c64912f79851bfefcac4f77b401e9a939dbbb7b1ec795bc7d5aaf59b') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/include - - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libvorbis/PKGBUILD b/multilib/lib32-libvorbis/PKGBUILD deleted file mode 100644 index 6f0b9fb1d..000000000 --- a/multilib/lib32-libvorbis/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# $Id: PKGBUILD 33990 2010-11-30 15:16:40Z bluewind $ -# Maintainer: Tobias Kieslich <tobias@archlinux.org> -# Contributor: dorphell <dorphell@archlinux.org> -# Contributor: John Proctor <jproctor@prium.net> - -_pkgbasename=libvorbis -pkgname=lib32-$_pkgbasename -pkgver=1.3.2 -pkgrel=1 -pkgdesc="Vorbis codec library (32-bit)" -arch=('x86_64') -license=('custom') -url="http://www.xiph.org/ogg/vorbis/" -depends=('lib32-libogg' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool') -source=(http://downloads.xiph.org/releases/vorbis/${_pkgbasename}-${pkgver}.tar.gz) -md5sums=('c870b9bd5858a0ecb5275c14486d9554') - -build() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - #-march=i686 optimizes too much, strip it out - CFLAGS=${CFLAGS/-march=$CARCH} ./configure --prefix=/usr --disable-static --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libx11/PKGBUILD b/multilib/lib32-libx11/PKGBUILD deleted file mode 100644 index f5392d36d..000000000 --- a/multilib/lib32-libx11/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 55180 2011-09-05 08:14:08Z bluewind $ -# Maintainer: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libx11 -pkgname=lib32-$_pkgbasename -pkgver=1.4.4 -pkgrel=1 -pkgdesc="X11 client-side library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -depends=('lib32-libxcb' 'xproto' 'kbproto' $_pkgbasename) -makedepends=('xorg-util-macros' 'xextproto' 'xtrans' 'inputproto' 'gcc-multilib') -options=('!libtool') -license=('custom:XFREE86') -source=(${url}/releases/individual/lib/libX11-${pkgver}.tar.bz2) -sha1sums=('2d9d38bfd7003ec60eea0b1999ab72cfd5fa3b90') - -build() { - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/libX11-${pkgver}" - ./configure --prefix=/usr --disable-static --disable-xf86bigfont \ - --libdir=/usr/lib32 --disable-specs - make - make check -} - -package() { - cd "${srcdir}/libX11-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share} - - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxau/PKGBUILD b/multilib/lib32-libxau/PKGBUILD deleted file mode 100644 index 728804d46..000000000 --- a/multilib/lib32-libxau/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 26632 2010-09-15 22:44:58Z bluewind $ -# Maintainer: Alexander Baldeck <alexander@archlinux.org> -# Contributor: Jan de Groot <jgc@archlinux.org> -_pkgbasename=libxau -pkgname=lib32-$_pkgbasename -pkgver=1.0.6 -pkgrel=2 -pkgdesc="X11 authorisation library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -depends=('lib32-glibc' $_pkgbasename) -makedepends=('pkgconfig' 'xproto>=7.0.15' 'gcc-multilib') -license=('custom') -options=('!libtool') -source=(${url}/releases/individual/lib/libXau-${pkgver}.tar.bz2) -sha1sums=('0e1ab449f98026e4599f6e0d7491810d36c8fe4d') - -build() { - cd "${srcdir}/libXau-${pkgver}" - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXau-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share} - - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxcb/PKGBUILD b/multilib/lib32-libxcb/PKGBUILD deleted file mode 100644 index fb15b6e01..000000000 --- a/multilib/lib32-libxcb/PKGBUILD +++ /dev/null @@ -1,46 +0,0 @@ -# $Id: PKGBUILD 26635 2010-09-15 22:45:22Z bluewind $ -# Maintainer: Alexander Baldeck <alexander@archlinux.org> -# Contributor: Jan de Groot <jgc@archlinux.org> -_pkgbasename=libxcb -pkgname=lib32-$_pkgbasename -pkgver=1.7 -pkgrel=2 -pkgdesc="X11 client-side library (32-bit)" -arch=(x86_64) -url="http://xcb.freedesktop.org/" -depends=('xcb-proto>=1.6' 'lib32-libxdmcp' 'lib32-libxau' - $_pkgbasename) -makedepends=('pkgconfig' 'libxslt' 'python' 'gcc-multilib' - 'autoconf') -conflicts=('libx11<1.1.99.2') -options=('!libtool') -license=('custom') -source=(${url}/dist/${_pkgbasename}-${pkgver}.tar.bz2 - libxcb-1.1-no-pthread-stubs.patch) -sha1sums=('7540f0587907bce421914f0ddb813810cb2f36f8' - '3455e84642283bc91c8313af319002a20bbcbdf4') - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - patch -Np1 -i "${srcdir}/libxcb-1.1-no-pthread-stubs.patch" - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - libtoolize --force --copy - aclocal - autoconf - automake --add-missing - ./configure --prefix=/usr --enable-xinput --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share} - - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxcb/libxcb-1.1-no-pthread-stubs.patch b/multilib/lib32-libxcb/libxcb-1.1-no-pthread-stubs.patch deleted file mode 100644 index f17de1b1d..000000000 --- a/multilib/lib32-libxcb/libxcb-1.1-no-pthread-stubs.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -up libxcb-1.1/configure.ac.pthread-stubs libxcb-1.1/configure.ac ---- libxcb-1.1/configure.ac.pthread-stubs 2007-11-04 18:17:11.000000000 -0500 -+++ libxcb-1.1/configure.ac 2007-11-12 10:27:06.000000000 -0500 -@@ -31,7 +31,7 @@ AC_SUBST(HTML_CHECK_RESULT) - - # Checks for pkg-config packages - PKG_CHECK_MODULES(XCBPROTO, xcb-proto >= 1.6) --NEEDED="pthread-stubs xau >= 0.99.2" -+NEEDED="xau >= 0.99.2" - PKG_CHECK_MODULES(NEEDED, $NEEDED) - - have_xdmcp="no" diff --git a/multilib/lib32-libxcomposite/PKGBUILD b/multilib/lib32-libxcomposite/PKGBUILD deleted file mode 100644 index 8eb4d24ab..000000000 --- a/multilib/lib32-libxcomposite/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# $Id: PKGBUILD 31532 2010-11-01 23:56:56Z heftig $ -# Maintainer: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libxcomposite -pkgname=lib32-$_pkgbasename -pkgver=0.4.3 -pkgrel=1 -pkgdesc="X11 Composite extension library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -license=('custom') -depends=('lib32-libxfixes' 'compositeproto' $_pkgbasename) -makedepends=('xorg-util-macros' gcc-multilib) -options=(!libtool) -source=(${url}/releases/individual/lib/libXcomposite-${pkgver}.tar.bz2) -sha1sums=('081b26b556d55e20d7956c80a2ea2854962aecec') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/libXcomposite-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXcomposite-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxcursor/PKGBUILD b/multilib/lib32-libxcursor/PKGBUILD deleted file mode 100644 index ee8df1005..000000000 --- a/multilib/lib32-libxcursor/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# $Id: PKGBUILD 31535 2010-11-02 00:00:15Z heftig $ -# Maintainer: Jan de Groot <jgc@archlinux.org> -# Contributor: Alexander Baldeck <alexander@archlinux.org> -_pkgbasename=libxcursor -pkgname=lib32-$_pkgbasename -pkgver=1.1.11 -pkgrel=1 -pkgdesc="X cursor management library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -license=('custom') -depends=('lib32-libxfixes' 'lib32-libxrender' $_pkgbasename) -makedepends=('xorg-util-macros' gcc-multilib) -options=('!libtool') -source=(${url}/releases/individual/lib/libXcursor-${pkgver}.tar.bz2) -sha1sums=('35491bd17cbcdda712e1a064c67ccbc523e2702c') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/libXcursor-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXcursor-${pkgver}" - - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxdamage/PKGBUILD b/multilib/lib32-libxdamage/PKGBUILD deleted file mode 100644 index 17e003925..000000000 --- a/multilib/lib32-libxdamage/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 26644 2010-09-15 22:46:36Z bluewind $ -# Maintainer: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libxdamage -pkgname=lib32-$_pkgbasename -pkgver=1.1.3 -pkgrel=3 -pkgdesc="X11 damaged region extension library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -license=('custom') -depends=('lib32-libxfixes>=4.0.4' $_pkgbasename) -makedepends=('pkg-config' 'damageproto>=1.2.0' gcc-multilib) -options=('!libtool') -source=(${url}/releases/individual/lib/libXdamage-${pkgver}.tar.bz2) -sha1sums=('7d96e8de107fede16951cb47d5e147630fbc7dee') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/libXdamage-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXdamage-${pkgver}" - - make DESTDIR="${pkgdir}" install || return 1 - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxdmcp/PKGBUILD b/multilib/lib32-libxdmcp/PKGBUILD deleted file mode 100644 index 9f8ebf468..000000000 --- a/multilib/lib32-libxdmcp/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# $Id: PKGBUILD 35270 2010-12-18 01:18:05Z heftig $ -# Contributor: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libxdmcp -pkgname=lib32-$_pkgbasename -pkgver=1.1.0 -pkgrel=1 -pkgdesc="X11 Display Manager Control Protocol library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -license=('custom') -depends=('xproto' 'lib32-glibc' $_pkgbasename) -makedepends=('xorg-util-macros' 'gcc-multilib') -options=('!libtool') -source=(${url}/releases/individual/lib/libXdmcp-${pkgver}.tar.bz2) -sha1sums=('28132db24727552f77e998e6a6798a5b9b30789f') - -build() { - cd ${srcdir}/libXdmcp-${pkgver} - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --sysconfdir=/etc --disable-static \ - --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/libXdmcp-${pkgver} - - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{include,share} - - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxext/PKGBUILD b/multilib/lib32-libxext/PKGBUILD deleted file mode 100644 index 7c6e68080..000000000 --- a/multilib/lib32-libxext/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 31542 2010-11-02 00:03:44Z heftig $ -# Maintainer: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libxext -pkgname=lib32-$_pkgbasename -pkgver=1.2.0 -pkgrel=1 -pkgdesc="X11 miscellaneous extensions library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -license=('custom') -depends=('lib32-libx11' 'xextproto' $_pkgbasename) -makedepends=('xorg-util-macros' 'gcc-multilib') -options=('!libtool') -source=(${url}/releases/individual/lib/libXext-${pkgver}.tar.bz2) -sha1sums=('090d7109c5fffde8a0063e10f22f3e2ec48cf19e') - -build() { - cd "${srcdir}/libXext-${pkgver}" - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --sysconfdir=/etc --disable-static --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXext-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share} - - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxfixes/PKGBUILD b/multilib/lib32-libxfixes/PKGBUILD deleted file mode 100644 index a8b980fa5..000000000 --- a/multilib/lib32-libxfixes/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 26653 2010-09-15 22:47:51Z bluewind $ -#Maintainer: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libxfixes -pkgname=lib32-$_pkgbasename -pkgver=4.0.5 -pkgrel=3 -pkgdesc="X11 miscellaneous 'fixes' extension library (32-bit)" -arch=('x86_64') -url="http://xorg.freedesktop.org/" -license=('custom') -depends=('lib32-libx11>=1.3.4' $_pkgbasename) -makedepends=('pkg-config' gcc-multilib "fixesproto>=4.1.1") -options=('!libtool') -source=(${url}/releases/individual/lib/libXfixes-${pkgver}.tar.bz2) -sha1sums=('255dfb9a8c50d795c60711ec4764f76cd0620cbf') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/libXfixes-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXfixes-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxft/PKGBUILD b/multilib/lib32-libxft/PKGBUILD deleted file mode 100644 index 6036674d0..000000000 --- a/multilib/lib32-libxft/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 31474 2010-10-31 22:37:35Z ibiru $ -# Maintainer: Ionut Biru <ibiru@archlinux.org> -_pkgbasename=libxft -pkgname=lib32-$_pkgbasename -pkgver=2.2.0 -pkgrel=1 -pkgdesc="FreeType-based font drawing library for X (32-bit)" -arch=('x86_64') -license=('custom') -url="http://xorg.freedesktop.org/" -depends=('lib32-fontconfig' 'lib32-libxrender') -makedepends=('gcc-multilib') -options=('!libtool') -source=(${url}/releases/individual/lib/libXft-${pkgver}.tar.bz2) -sha1sums=('ed29784259f4e26df78141035560ae8a7c62e83f') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/libXft-${pkgver} - ./configure --prefix=/usr \ - --libdir=/usr/lib32 --disable-static - make -} - -package() { - cd "${srcdir}/libXft-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{bin,include,share} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxi/PKGBUILD b/multilib/lib32-libxi/PKGBUILD deleted file mode 100644 index 4f3f85361..000000000 --- a/multilib/lib32-libxi/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 39079 2011-02-06 10:58:56Z ibiru $ -# Maintainer: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libxi -pkgname=lib32-$_pkgbasename -pkgver=1.4.1 -pkgrel=1 -pkgdesc="X11 Input extension library (32-bit)" -arch=('x86_64') -url="http://xorg.freedesktop.org" -depends=('lib32-libxext' 'inputproto' $_pkgbasename) -makedepends=('pkgconfig' 'xorg-util-macros' gcc-multilib) -options=(!libtool) -license=('custom') -source=(${url}/releases/individual/lib/libXi-${pkgver}.tar.bz2) -sha1sums=('15c9d369cc76c73b5e3833ba3b39355e6cc06636') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/libXi-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static \ - --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXi-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxinerama/PKGBUILD b/multilib/lib32-libxinerama/PKGBUILD deleted file mode 100644 index ba7920554..000000000 --- a/multilib/lib32-libxinerama/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# $Id: PKGBUILD 31546 2010-11-02 00:05:46Z heftig $ -# Maintainer: Jan de Groot <jgc@archlinux.org> -# Contributor: Alexander Baldeck <alexander@archlinux.org> -_pkgbasename=libxinerama -pkgname=lib32-$_pkgbasename -pkgver=1.1.1 -pkgrel=1 -pkgdesc="X11 Xinerama extension library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -license=('custom') -depends=('lib32-libxext' 'xineramaproto' $_pkgbasename) -makedepends=('xorg-util-macros' gcc-multilib) -options=(!libtool) -source=(${url}/releases/individual/lib/libXinerama-${pkgver}.tar.bz2) -sha1sums=('f030b0cfcce15502aac78188524f32a6f29bd0a4') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/libXinerama-${pkgver}" - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXinerama-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxml2/PKGBUILD b/multilib/lib32-libxml2/PKGBUILD deleted file mode 100644 index 94cd5c9d8..000000000 --- a/multilib/lib32-libxml2/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# $Id: PKGBUILD 33687 2010-11-27 15:36:04Z ibiru $ -# Maintainer: Jan de Groot <jgc@archlinux.org> -# Contributor: John Proctor <jproctor@prium.net> - -_pkgbasename=libxml2 -pkgname=lib32-$_pkgbasename -pkgver=2.7.8 -pkgrel=1 -pkgdesc="XML parsing library, version 2 (32-bit)" -arch=(x86_64) -license=('custom') -depends=('lib32-zlib>=1.2.4' 'lib32-readline>=6.1' 'lib32-ncurses>=5.7' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool') -url="http://www.xmlsoft.org/" -source=(ftp://ftp.xmlsoft.org/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz - shared_library_versionning.patch) -md5sums=('8127a65e8c3b08856093099b52599c86' - '84aeb7c6db023eae044e95d9211dba53') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - patch -Np1 -i "${srcdir}/shared_library_versionning.patch" - autoreconf -fi - ./configure --prefix=/usr --with-threads --with-history --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} "$pkgdir/usr/lib32/xml2Conf.sh" - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxml2/shared_library_versionning.patch b/multilib/lib32-libxml2/shared_library_versionning.patch deleted file mode 100644 index a0b62bca9..000000000 --- a/multilib/lib32-libxml2/shared_library_versionning.patch +++ /dev/null @@ -1,21 +0,0 @@ -From 00819877651b87842ed878898ba17dba489820f0 Mon Sep 17 00:00:00 2001 -From: Daniel Veillard <veillard@redhat.com> -Date: Thu, 04 Nov 2010 20:53:14 +0000 -Subject: Reactivate the shared library versionning script - ---- -diff --git a/configure.in b/configure.in -index 59d0629..a1d2c89 100644 ---- a/configure.in -+++ b/configure.in -@@ -84,7 +84,7 @@ else - esac - fi - AC_SUBST(VERSION_SCRIPT_FLAGS) --AM_CONDITIONAL([USE_VERSION_SCRIPT], [test -z "$VERSION_SCRIPT_FLAGS"]) -+AM_CONDITIONAL([USE_VERSION_SCRIPT], [test -n "$VERSION_SCRIPT_FLAGS"]) - - dnl - dnl We process the AC_ARG_WITH first so that later we can modify --- -cgit v0.8.3.1 diff --git a/multilib/lib32-libxmu/PKGBUILD b/multilib/lib32-libxmu/PKGBUILD deleted file mode 100644 index 269d698d7..000000000 --- a/multilib/lib32-libxmu/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# $Id: PKGBUILD 35276 2010-12-18 01:22:30Z heftig $ -# Contributor: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libxmu -pkgname=lib32-$_pkgbasename -pkgver=1.1.0 -pkgrel=1 -pkgdesc="X11 miscellaneous micro-utility library (32-bit)" -arch=('x86_64') -url="http://xorg.freedesktop.org/" -depends=('lib32-libxext' 'lib32-libxt' $_pkgbasename) -makedepends=('xorg-util-macros' 'gcc-multilib') -license=('custom') -options=('!libtool') -source=(${url}/releases/individual/lib/libXmu-${pkgver}.tar.bz2) -sha1sums=('81876a0848070bfc4476a2538fc16898eb6d96cd') - -build() { - cd "${srcdir}/libXmu-${pkgver}" - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --sysconfdir=/etc --disable-static \ - --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXmu-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share} - - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxpm/PKGBUILD b/multilib/lib32-libxpm/PKGBUILD deleted file mode 100644 index 4535195de..000000000 --- a/multilib/lib32-libxpm/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# $Id: PKGBUILD 35279 2010-12-18 01:24:10Z heftig $ -# Contributor: Jan de Groot <jgc@archlinux.org> -_pkgbasename=libxpm -pkgname=lib32-$_pkgbasename -pkgver=3.5.9 -pkgrel=1 -pkgdesc="X11 pixmap library (32-bit)" -arch=(x86_64) -license=('custom') -url="http://xorg.freedesktop.org/" -depends=('lib32-libxt' 'lib32-libxext' $_pkgbasename) -makedepends=('xorg-util-macros' gcc-multilib) -options=('!libtool') -source=(${url}/releases/individual/lib/libXpm-${pkgver}.tar.bz2) -sha1sums=('38258a1d589d3f157e0338d0fd13eec11bc4a39b') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/libXpm-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --disable-static \ - --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXpm-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxrandr/PKGBUILD b/multilib/lib32-libxrandr/PKGBUILD deleted file mode 100644 index 370b5cde2..000000000 --- a/multilib/lib32-libxrandr/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# $Id: PKGBUILD 31551 2010-11-02 00:08:36Z heftig $ -# Maintainer: Alexander Baldeck <alexander@archlinux.org> -# Contributor: Jan de Groot <jgc@archlinux.org> -_pkgbasename=libxrandr -pkgname=lib32-$_pkgbasename -pkgver=1.3.1 -pkgrel=1 -pkgdesc="X11 RandR extension library (32-bit)" -arch=('x86_64') -license=('custom') -url="http://xorg.freedesktop.org/" -depends=('lib32-libxext' 'lib32-libxrender' 'randrproto' $_pkgbasename) -makedepends=('xorg-util-macros' gcc-multilib) -options=('!libtool') -source=(${url}/releases/individual/lib/libXrandr-${pkgver}.tar.bz2) -sha1sums=('8e89622b0656cb2eb22c1f3c646c797dc648ead5') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/libXrandr-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXrandr-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxrender/PKGBUILD b/multilib/lib32-libxrender/PKGBUILD deleted file mode 100644 index 67dcf1678..000000000 --- a/multilib/lib32-libxrender/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 26677 2010-09-15 22:51:11Z bluewind $ -# Maintainer: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libxrender -pkgname=lib32-$_pkgbasename -pkgver=0.9.6 -pkgrel=4 -pkgdesc="X Rendering Extension client library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -license=('custom') -depends=('lib32-libx11>=1.3.4' $_pkgbasename) -makedepends=('pkgconfig' 'gcc-multilib' renderproto) -options=('!libtool') -source=(${url}/releases/individual/lib/libXrender-${pkgver}.tar.bz2) -sha1sums=('65bd96dc17da6b064f95109da02d9c9d14cb06dc') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/libXrender-${pkgver}" - ./configure --prefix=/usr --disable-static --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXrender-${pkgver}" - - make DESTDIR=${pkgdir} install - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxslt/PKGBUILD b/multilib/lib32-libxslt/PKGBUILD deleted file mode 100644 index 735c35a14..000000000 --- a/multilib/lib32-libxslt/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 26680 2010-09-15 22:51:35Z bluewind $ -# Maintainer: Eric Belanger <eric@archlinux.org> -# Contributor: John Proctor <jproctor@prium.net> - -_pkgbasename=libxslt -pkgname=lib32-$_pkgbasename -pkgver=1.1.26 -pkgrel=5 -pkgdesc="XML stylesheet transformation library (32-bit)" -arch=('x86_64') -url="http://xmlsoft.org/XSLT/" -license=('custom') -depends=('lib32-libxml2>=2.7.7' 'lib32-libgcrypt>=1.4.4' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool') -source=(ftp://xmlsoft.org/libxslt/${_pkgbasename}-${pkgver}.tar.gz) -md5sums=('e61d0364a30146aaa3001296f853b2b9') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - ./configure --prefix=/usr --libdir=/usr/lib32 --without-python - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxss/PKGBUILD b/multilib/lib32-libxss/PKGBUILD deleted file mode 100644 index b796a93a5..000000000 --- a/multilib/lib32-libxss/PKGBUILD +++ /dev/null @@ -1,39 +0,0 @@ -# $Id: PKGBUILD 35282 2010-12-18 01:28:22Z heftig $ -# Maintainer: Florian Pritz <flo@xssn.at> -# Contributor: Jan de Groot <jgc@archlinux.org> -# Contributor: Alexander Baldeck <alexander@archlinux.org> - -_pkgbasename=libxss -pkgname=lib32-$_pkgbasename -pkgver=1.2.1 -pkgrel=1 -pkgdesc="X11 Screen Saver extension library (32-bit)" -arch=(x86_64) -license=('custom') -url="http://xorg.freedesktop.org/" -depends=('lib32-libxext' 'scrnsaverproto' $_pkgbasename) -makedepends=('xorg-util-macros' gcc-multilib) -options=('!libtool') -source=(${url}/releases/individual/lib/libXScrnSaver-${pkgver}.tar.bz2) -sha1sums=('3c29e2222fd68e26e408234c51c6d8b2edf6ab19') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/libXScrnSaver-${pkgver}" - ./configure --prefix=/usr --sysconfdir=/etc \ - --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXScrnSaver-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxt/PKGBUILD b/multilib/lib32-libxt/PKGBUILD deleted file mode 100644 index 8f592db58..000000000 --- a/multilib/lib32-libxt/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 45006 2011-04-14 08:11:26Z lcarlier $ -#Maintainer: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libxt -pkgname=lib32-$_pkgbasename -pkgver=1.1.1 -pkgrel=1 -pkgdesc="X11 toolkit intrinsics library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -license=('custom') -depends=('lib32-libsm' 'lib32-libx11' $_pkgbasename) -makedepends=('xorg-util-macros' 'gcc-multilib') -options=('!libtool') -source=(${url}/releases/individual/lib/libXt-${pkgver}.tar.bz2) -sha1sums=('a29a97f8521bdc7a95364e163f0ce474de572ae5') - -build() { - cd "${srcdir}/libXt-${pkgver}" - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --sysconfdir=/etc --disable-static --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXt-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share} - - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxtst/PKGBUILD b/multilib/lib32-libxtst/PKGBUILD deleted file mode 100644 index bbddb6c40..000000000 --- a/multilib/lib32-libxtst/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# $Id: PKGBUILD 35285 2010-12-18 01:30:43Z heftig $ -# Contributor: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libxtst -pkgname=lib32-$_pkgbasename -pkgver=1.2.0 -pkgrel=1 -pkgdesc="X11 Testing -- Resource extension library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -license=('custom') -depends=('lib32-libxext' 'lib32-libxi' 'recordproto' 'inputproto' $_pkgbasename) -makedepends=('gcc-multilib' 'xorg-util-macros') -options=('!libtool') -source=(${url}/releases/individual/lib/libXtst-${pkgver}.tar.bz2) -sha1sums=('9fb06ed599caf7f9e7115cbbfadf02b47c17aa72') - -build() { - cd "${srcdir}/libXtst-${pkgver}" - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --disable-static \ - --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXtst-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share} - - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxv/PKGBUILD b/multilib/lib32-libxv/PKGBUILD deleted file mode 100644 index 317fe2281..000000000 --- a/multilib/lib32-libxv/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 35288 2010-12-18 01:31:33Z heftig $ -# Contributor: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libxv -pkgname=lib32-$_pkgbasename -pkgver=1.0.6 -pkgrel=1 -pkgdesc="X11 Video extension library (32-bit)" -arch=(x86_64) -license=('custom') -url="http://xorg.freedesktop.org/" -depends=('lib32-libxext' 'videoproto' $_pkgbasename) -makedepends=('pkgconfig' gcc-multilib) -options=('!libtool') -source=(${url}/releases/individual/lib/libXv-${pkgver}.tar.bz2) -sha1sums=('9ebb6d7936a7b247b9b0f6dc81def39a18e4214c') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${startdir}/src/libXv-${pkgver} - ./configure --prefix=/usr --disable-static \ - --libdir=/usr/lib32 - make -} - -package() { - cd ${startdir}/src/libXv-${pkgver} - - make DESTDIR=${startdir}/pkg install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxvmc/PKGBUILD b/multilib/lib32-libxvmc/PKGBUILD deleted file mode 100644 index 539b563f2..000000000 --- a/multilib/lib32-libxvmc/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 26695 2010-09-15 22:53:40Z bluewind $ -#Maintainer: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libxvmc -pkgname=lib32-$_pkgbasename -pkgver=1.0.6 -pkgrel=3 -pkgdesc="X11 Video Motion Compensation extension library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -license=('custom') -depends=('lib32-libxv>=1.0.5' $_pkgbasename) -makedepends=('pkgconfig' gcc-multilib) -options=('!libtool') -source=(${url}/releases/individual/lib/libXvMC-${pkgver}.tar.bz2) -sha1sums=('4ace7e7ce6b646b5715b2efa561affc89bc87f91') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/libXvMC-${pkgver} - ./configure --prefix=/usr --sysconfdir=/etc --disable-static --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/libXvMC-${pkgver} - - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" - -} diff --git a/multilib/lib32-libxxf86dga/PKGBUILD b/multilib/lib32-libxxf86dga/PKGBUILD deleted file mode 100644 index 3b9733151..000000000 --- a/multilib/lib32-libxxf86dga/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# $Id: PKGBUILD 35291 2010-12-18 01:33:35Z heftig $ -# Contributor: Jan de Groot <jgc@archlinux.org> -# Contributor: Alexander Baldeck <alexander@archlinux.org> - -_pkgbasename=libxxf86dga -pkgname=lib32-$_pkgbasename -pkgver=1.1.2 -pkgrel=1 -pkgdesc="X11 Direct Graphics Access extension library (32-bit)" -arch=(x86_64) -url="http://xorg.freedesktop.org/" -license=('custom') -depends=('lib32-libxext' 'xf86dgaproto' $_pkgbasename) -makedepends=('xorg-util-macros' gcc-multilib) -options=('!libtool') -source=(${url}/releases/individual/lib/libXxf86dga-${pkgver}.tar.bz2) -sha1sums=('333a9f5c61eba896f420969561606551174645cd') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/libXxf86dga-${pkgver}" - ./configure --prefix=/usr --disable-static \ - --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXxf86dga-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-libxxf86vm/PKGBUILD b/multilib/lib32-libxxf86vm/PKGBUILD deleted file mode 100644 index e455615c8..000000000 --- a/multilib/lib32-libxxf86vm/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 35294 2010-12-18 01:34:58Z heftig $ -# Contributor: Jan de Groot <jgc@archlinux.org> - -_pkgbasename=libxxf86vm -pkgname=lib32-$_pkgbasename -pkgver=1.1.1 -pkgrel=1 -pkgdesc="X11 XFree86 video mode extension library (32-bit)" -arch=('x86_64') -license=('custom') -url="http://xorg.freedesktop.org/" -depends=('lib32-libxext' 'xf86vidmodeproto' $_pkgbasename) -makedepends=('xorg-util-macros' gcc-multilib) -options=('!libtool') -source=(${url}/releases/individual/lib/libXxf86vm-${pkgver}.tar.bz2) -sha1sums=('2ff2d2b3c60a5c5c0cc4e0a18492d3b7168a03af') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/libXxf86vm-${pkgver}" - ./configure --prefix=/usr --disable-static \ - --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/libXxf86vm-${pkgver}" - - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-llvm/PKGBUILD b/multilib/lib32-llvm/PKGBUILD deleted file mode 100644 index 4b990ad39..000000000 --- a/multilib/lib32-llvm/PKGBUILD +++ /dev/null @@ -1,153 +0,0 @@ -# $Id: PKGBUILD 51447 2011-07-09 06:18:32Z lcarlier $ -# Maintainer: Evangelos Foutras <foutrelis@gmail.com> -# Contributor: Jan "heftig" Steffens <jan.steffens@gmail.com> -# Contributor: Sebastian Nowicki <sebnow@gmail.com> -# Contributor: Devin Cofer <ranguvar{AT]archlinux[DOT}us> -# Contributor: Tobias Kieslich <tobias@justdreams.de> -# Contributor: Geoffroy Carrier <geoffroy.carrier@aur.archlinux.org> -# Contributor: Tomas Lindquist Olsen <tomas@famolsen.dk> -# Contributor: Roberto Alsina <ralsina@kde.org> -# Contributor: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> - -pkgname=('lib32-llvm') -pkgver=2.9 -#_gcc_ver=4.6.1 -pkgrel=2 -arch=('x86_64') -url="http://llvm.org/" -license=('custom:University of Illinois/NCSA Open Source License') -makedepends=('lib32-libffi' 'python2' 'gcc-multilib') -source=(http://llvm.org/releases/$pkgver/llvm-$pkgver.tgz - http://llvm.org/releases/$pkgver/clang-$pkgver.tgz - ftp://ftp.archlinux.org/other/community/clang/gcc-headers-4.5.2.tar.xz - clang-plugin-loader-registry.patch - cindexer-clang-path.patch - clang-toolchains-gcc-versions.patch - clang-pure64.patch - enable-lto.patch) -md5sums=('793138412d2af2c7c7f54615f8943771' - '634de18d04b7a4ded19ec4c17d23cfca' - '70e23a3dc2b38ecb2bb4d2c48f47295d' - '02c23b4aaca3445b8bf39fddb2f9906e' - '87a7162dbe99e9ffce6c40bd09f5f4f0' - '8da236120a9a287a977b575b8b905c93' - '225ee6b531f8327f34f344a18cb4ec81' - '8f7582d7440e4a8342c3aea9ec714fb4') - -build() { - cd "$srcdir/llvm-$pkgver" - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - # Fix symbolic links from OCaml bindings to LLVM libraries - sed -i 's:\$(PROJ_libdir):/usr/lib/llvm:' bindings/ocaml/Makefile.ocaml - - # Fix installation directories, ./configure doesn't seem to set them right - sed -i -e 's:\$(PROJ_prefix)/etc/llvm:/etc/llvm:' \ - -e 's:\$(PROJ_prefix)/lib:$(PROJ_prefix)/lib32/llvm:' \ - -e 's:\$(PROJ_prefix)/docs/llvm:$(PROJ_prefix)/share/doc/llvm:' \ - Makefile.config.in - - # Fix insecure rpath (http://bugs.archlinux.org/task/14017) - sed -i 's:$(RPATH) -Wl,$(\(ToolDir\|LibDir\|ExmplDir\))::g' Makefile.rules - - # Get the correct list of symbols to export - # See http://lists.cs.uiuc.edu/pipermail/cfe-dev/2010-April/008559.html - patch -Np1 -i "$srcdir/clang-plugin-loader-registry.patch" - - # Fix clang path in CIndexer.cpp (https://bugs.archlinux.org/task/22799) - #patch -d tools/clang -Np0 -i "$srcdir/cindexer-clang-path.patch" - - # Add GCC 4.6.0 to GccVersions (FS#23631) - #patch -d tools/clang -Np1 -i "$srcdir/clang-toolchains-gcc-versions.patch" - - # Adjust lib paths - #patch -d tools/clang -Np0 -i "$srcdir/clang-pure64.patch" - - # Make -flto work - # Use gold instead of default linker, and always use the plugin - #patch -d tools/clang -Np0 -i "$srcdir/enable-lto.patch" - - # Apply strip option to configure - _optimized_switch="enable" - [[ $(check_option strip) == n ]] && _optimized_switch="disable" - - # Include location of libffi headers in CPPFLAGS - export CPPFLAGS="$CPPFLAGS $(pkg-config --cflags libffi)" - - # TODO: Uncomment when clang works with GCC 4.6+ - #_cxx_headers="/usr/include/c++/$_gcc_ver" - #if [[ ! -d $_cxx_headers ]]; then - # error "Couldn't find the C++ headers, PKGBUILD needs fixing!" - # return 1 - #fi - _cxx_headers="/usr/include/c++/clang-$pkgver" - - _32bit_headers="" - if [[ $CARCH == x86_64 ]]; then - # Important for multilib - _32bit_headers="32" - fi - - ./configure \ - --prefix=/usr \ - --libdir=/usr/lib32/llvm \ - --sysconfdir=/etc \ - --enable-shared \ - --enable-libffi \ - --enable-targets=all \ - --disable-expensive-checks \ - --disable-debug-runtime \ - --disable-assertions \ - --with-binutils-include=/usr/include \ - --with-cxx-include-root=$_cxx_headers \ - --with-cxx-include-arch=$CHOST \ - --with-cxx-include-32bit-dir=$_32bit_headers \ - --$_optimized_switch-optimized - - make REQUIRES_RTTI=1 -} - -package() { - pkgdesc="Low Level Virtual Machine (32 bits version)" - depends=('perl' 'lib32-libffi' 'llvm') - - cd "$srcdir/llvm-$pkgver" - - # We move the clang directory out of the tree so it won't get installed and - # then we bring it back in for the clang package - # mv tools/clang "$srcdir" - # -j1 is due to race conditions during the installation of the OCaml bindings - make -j1 DESTDIR="$pkgdir" install - # mv "$srcdir/clang" tools - - # OCaml bindings go to a separate package - # rm -rf "$srcdir"/{ocaml,ocamldoc} - # mv "$pkgdir"/usr/{lib/ocaml,share/doc/llvm/ocamldoc} "$srcdir" - - # Remove duplicate files installed by the OCaml bindings - # rm "$pkgdir"/usr/{lib/llvm/libllvm*,share/doc/llvm/ocamldoc.tar.gz} - - # Fix permissions of static libs - chmod -x "$pkgdir"/usr/lib32/llvm/*.a - - # Fix libdir in llvm-config (http://bugs.archlinux.org/task/14487) - #sed -i 's:\(ABS_RUN_DIR/lib\):\1/llvm:' "$pkgdir/usr/bin/llvm-config" - sed -i 's:ABS_RUN_DIR/lib:ABS_RUN_DIR/llvm:' "$pkgdir/usr/bin/llvm-config" - mv "$pkgdir/usr/bin/llvm-config" "$pkgdir/usr/lib32/llvm/llvm-config" - # Get rid of example Hello transformation - rm "$pkgdir"/usr/lib32/llvm/*LLVMHello.* - - # Symlink the gold plugin where clang expects it - ln -s llvm/LLVMgold.so "$pkgdir/usr/lib32/LLVMgold.so" - - # Add ld.so.conf.d entry - install -d "$pkgdir/etc/ld.so.conf.d" - echo /usr/lib32/llvm >"$pkgdir/etc/ld.so.conf.d/llvm32.conf" - - install -Dm644 LICENSE.TXT "$pkgdir/usr/share/licenses/$pkgname/LICENSE" - - rm -r "$pkgdir"/usr/{bin,include,share/{doc,man}} -} diff --git a/multilib/lib32-llvm/cindexer-clang-path.patch b/multilib/lib32-llvm/cindexer-clang-path.patch deleted file mode 100644 index ddaab690e..000000000 --- a/multilib/lib32-llvm/cindexer-clang-path.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- tools/libclang/CIndexer.cpp.orig 2011-04-07 13:08:24.000000000 +0300 -+++ tools/libclang/CIndexer.cpp 2011-04-07 13:11:52.224884642 +0300 -@@ -80,6 +80,7 @@ std::string CIndexer::getClangResourcesP - - // We now have the CIndex directory, locate clang relative to it. - LibClangPath.eraseComponent(); -+ LibClangPath.eraseComponent(); - #endif - - LibClangPath.appendComponent("clang"); diff --git a/multilib/lib32-llvm/clang-plugin-loader-registry.patch b/multilib/lib32-llvm/clang-plugin-loader-registry.patch deleted file mode 100644 index f46eb9fce..000000000 --- a/multilib/lib32-llvm/clang-plugin-loader-registry.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -upr llvm-2.7.orig/autoconf/ExportMap.map llvm-2.7/autoconf/ExportMap.map ---- llvm-2.7.orig/autoconf/ExportMap.map 2010-02-25 00:33:41.000000000 +0200 -+++ llvm-2.7/autoconf/ExportMap.map 2010-05-10 14:14:22.000000000 +0300 -@@ -2,6 +2,7 @@ - global: main; - __progname; - environ; -+ _ZN4llvm8RegistryIN5clang14FrontendActionENS_14RegistryTraitsIS2_EEE4HeadE; - - local: *; - }; diff --git a/multilib/lib32-llvm/clang-pure64.patch b/multilib/lib32-llvm/clang-pure64.patch deleted file mode 100644 index da6178519..000000000 --- a/multilib/lib32-llvm/clang-pure64.patch +++ /dev/null @@ -1,38 +0,0 @@ -Index: lib/Driver/Tools.cpp -=================================================================== ---- lib/Driver/Tools.cpp (revision 123373) -+++ lib/Driver/Tools.cpp (working copy) -@@ -3306,7 +3306,7 @@ - else if (ToolChain.getArch() == llvm::Triple::arm) - CmdArgs.push_back("/lib/ld-linux.so.3"); - else -- CmdArgs.push_back("/lib64/ld-linux-x86-64.so.2"); -+ CmdArgs.push_back("/lib/ld-linux-x86-64.so.2"); - } - - CmdArgs.push_back("-o"); -Index: lib/Driver/ToolChains.cpp -=================================================================== ---- lib/Driver/ToolChains.cpp (revision 123373) -+++ lib/Driver/ToolChains.cpp (working copy) -@@ -1317,18 +1317,10 @@ - if (Arch == llvm::Triple::x86) - Suffix64 = "/64"; - -- std::string Lib32 = "lib"; -- -- bool Exists; -- if (!llvm::sys::fs::exists("/lib32", Exists) && Exists) -- Lib32 = "lib32"; -- -+ std::string Lib32 = "lib32"; - std::string Lib64 = "lib"; -- bool Symlink; -- if (!llvm::sys::fs::exists("/lib64", Exists) && Exists && -- (llvm::sys::fs::is_symlink("/lib64", Symlink) || !Symlink)) -- Lib64 = "lib64"; - -+ bool Exists; - std::string GccTriple = ""; - if (Arch == llvm::Triple::arm) { - if (!llvm::sys::fs::exists("/usr/lib/gcc/arm-linux-gnueabi", Exists) && diff --git a/multilib/lib32-llvm/clang-toolchains-gcc-versions.patch b/multilib/lib32-llvm/clang-toolchains-gcc-versions.patch deleted file mode 100644 index 2e527300d..000000000 --- a/multilib/lib32-llvm/clang-toolchains-gcc-versions.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -upr clang-2.9.orig/lib/Driver/ToolChains.cpp clang-2.9/lib/Driver/ToolChains.cpp ---- clang-2.9.orig/lib/Driver/ToolChains.cpp 2011-03-21 23:29:27.000000000 +0200 -+++ clang-2.9/lib/Driver/ToolChains.cpp 2011-04-08 00:03:34.000000000 +0300 -@@ -1449,7 +1449,7 @@ Linux::Linux(const HostInfo &Host, const - GccTriple = "i586-suse-linux"; - } - -- const char* GccVersions[] = {"4.5.2", "4.5.1", "4.5", "4.4.5", "4.4.4", -+ const char* GccVersions[] = {"4.6.0", "4.5.2", "4.5.1", "4.5", "4.4.5", "4.4.4", - "4.4.3", "4.4", "4.3.4", "4.3.3", "4.3.2", - "4.3", "4.2.4", "4.2.3", "4.2.2", "4.2.1", - "4.2"}; diff --git a/multilib/lib32-llvm/enable-lto.patch b/multilib/lib32-llvm/enable-lto.patch deleted file mode 100644 index 40d93104a..000000000 --- a/multilib/lib32-llvm/enable-lto.patch +++ /dev/null @@ -1,36 +0,0 @@ -Index: lib/Driver/ToolChains.cpp -=================================================================== ---- lib/Driver/ToolChains.cpp (revision 123373) -+++ lib/Driver/ToolChains.cpp (working copy) -@@ -1398,11 +1398,11 @@ - Lib = Lib64; - } - -- llvm::sys::Path LinkerPath(Base + "/../../../../" + GccTriple + "/bin/ld"); -+ llvm::sys::Path LinkerPath(Base + "/../../../../" + GccTriple + "/bin/ld.gold"); - if (!llvm::sys::fs::exists(LinkerPath.str(), Exists) && Exists) - Linker = LinkerPath.str(); - else -- Linker = GetProgramPath("ld"); -+ Linker = GetProgramPath("ld.gold"); - - LinuxDistro Distro = DetectLinuxDistro(Arch); - -Index: lib/Driver/Tools.cpp -=================================================================== ---- lib/Driver/Tools.cpp (revision 123373) -+++ lib/Driver/Tools.cpp (working copy) -@@ -3412,11 +3412,11 @@ - } - } - -- if (Args.hasArg(options::OPT_use_gold_plugin)) { -+ // if (Args.hasArg(options::OPT_use_gold_plugin)) { - CmdArgs.push_back("-plugin"); - std::string Plugin = ToolChain.getDriver().Dir + "/../lib/LLVMgold.so"; - CmdArgs.push_back(Args.MakeArgString(Plugin)); -- } -+ // } - - C.addCommand(new Command(JA, *this, ToolChain.Linker.c_str(), CmdArgs)); - } diff --git a/multilib/lib32-mesa/PKGBUILD b/multilib/lib32-mesa/PKGBUILD deleted file mode 100644 index c98e5208b..000000000 --- a/multilib/lib32-mesa/PKGBUILD +++ /dev/null @@ -1,261 +0,0 @@ -# $Id: PKGBUILD 57652 2011-10-31 21:25:39Z lcarlier $ -# Contributor: Jan de Groot <jgc@archlinux.org> -# Contributor: Andreas Radke <andyrtr@archlinux.org> - -pkgbase=lib32-mesa -pkgname=('lib32-mesa' 'lib32-libgl' 'lib32-libglapi' 'lib32-libgles' 'lib32-libegl' 'lib32-ati-dri' 'lib32-intel-dri' 'lib32-unichrome-dri' - 'lib32-mach64-dri' 'lib32-mga-dri' 'lib32-r128-dri' 'lib32-savage-dri' 'lib32-sis-dri' 'lib32-tdfx-dri' 'lib32-nouveau-dri') -# prepare 7.12/8.0 -# pkgname=('lib32-mesa' 'lib32-libgl' 'lib32-libglapi' 'lib32-libgles' 'lib32-libegl' 'lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri') - -#_git=true -_gitdate=20111031 -_git=false - -if [ "${_git}" = "true" ]; then - #pkgver=7.10.99.git20110709 - pkgver=7.11 - else - pkgver=7.11 -fi - -pkgrel=4 -arch=(x86_64) -makedepends=('glproto>=1.4.14' 'lib32-libdrm>=2.4.26' 'lib32-libxxf86vm>=1.1.1' 'lib32-libxdamage>=1.1.3' 'lib32-expat>=2.0.1' 'lib32-libx11>=1.4.3' - 'lib32-libxt>=1.1.1' 'lib32-gcc-libs>=4.6.1' 'dri2proto>=2.6' 'python2' 'libxml2' 'gcc-multilib' imake 'lib32-udev' 'lib32-llvm' 'namcap') -url="http://mesa3d.sourceforge.net" -license=('custom') -if [ "${_git}" = "true" ]; then - # mesa git shot from 7.11 branch - see for state: http://cgit.freedesktop.org/mesa/mesa/commit/?h=7.11&id=1ae00c5960af83bea9545a18a1754bad83d5cbd0 - #source=('ftp://ftp.archlinux.org/other/mesa/mesa-1ae00c5960af83bea9545a18a1754bad83d5cbd0.tar.bz2') - source=("MesaLib-git${_gitdate}.zip"::"http://cgit.freedesktop.org/mesa/mesa/snapshot/mesa-ef9f16f6322a89fb699fbe3da868b10f9acaef98.tar.bz2") - md5sums=('817a63bb60b81f4f817ffc9ed0a3dddd') -else - #source=("ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2") - source=("MesaLib-git${_gitdate}.zip"::"http://cgit.freedesktop.org/mesa/mesa/snapshot/mesa-4464ee1a9aa3745109cee23531e3fb2323234d07.tar.bz2") - md5sums=('774eb6f30b31fa08c04e16e00ca070e1') -fi - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - # for our llvm-config for 32 bit - export LLVM_CONFIG=/usr/lib32/llvm/llvm-config - - cd ${srcdir}/?esa-* - autoreconf -vfi - - if [ "${_git}" = "true" ]; then - ./autogen.sh --prefix=/usr \ - --with-dri-driverdir=/usr/lib32/xorg/modules/dri \ - --with-gallium-drivers=r300,r600,nouveau,swrast \ - --enable-gallium-llvm \ - --enable-gallium-egl --enable-shared-glapi \ - --enable-glx-tls \ - --with-driver=dri \ - --enable-xcb \ - --disable-glut \ - --enable-gles1 \ - --enable-gles2 \ - --enable-egl \ - --enable-texture-float \ - --enable-shared-dricore \ - --enable-32-bit \ - --libdir=/usr/lib32 - # --enable-gallium-svga \ - else - ./configure --prefix=/usr \ - --with-dri-driverdir=/usr/lib32/xorg/modules/dri \ - --with-gallium-drivers=r300,r600,nouveau,swrast \ - --enable-gallium-llvm \ - --enable-gallium-egl --enable-shared-glapi \ - --enable-glx-tls \ - --with-driver=dri \ - --enable-xcb \ - --disable-glut \ - --enable-gles1 \ - --enable-gles2 \ - --enable-egl \ - --enable-texture-float \ - --enable-shared-dricore \ - --enable-32-bit \ - --libdir=/usr/lib32 - fi - - make -} - -package_lib32-libgl() { - depends=('lib32-libdrm>=2.4.26' 'lib32-libxxf86vm>=1.1.1' 'lib32-libxdamage>=1.1.3' 'lib32-expat>=2.0.1' 'lib32-libglapi' 'libgl') - pkgdesc="Mesa 3-D graphics library and DRI software rasterizer (32-bit)" - - cd ${srcdir}/?esa-* - install -m755 -d "${pkgdir}/usr/lib32" - install -m755 -d "${pkgdir}/usr/lib32/xorg/modules/extensions" - - bin/minstall lib32/libGL.so* "${pkgdir}/usr/lib32/" - bin/minstall lib32/libdricore.so* "${pkgdir}/usr/lib32/" - bin/minstall lib32/libglsl.so* "${pkgdir}/usr/lib32/" - - make -C ${srcdir}/?esa-*/src/gallium/targets/dri-swrast DESTDIR="${pkgdir}" install - ln -s swrastg_dri.so "${pkgdir}/usr/lib32/xorg/modules/dri/swrast_dri.so" - ln -s libglx.xorg "${pkgdir}/usr/lib32/xorg/modules/extensions/libglx.so" - - rm -rf "${pkgdir}"/usr/{include,share,bin} - install -m755 -d "${pkgdir}/usr/share/licenses/libgl" - ln -s libgl "$pkgdir/usr/share/licenses/libgl/lib32-libgl" -} - -package_lib32-libglapi() { - depends=('lib32-glibc' 'libglapi') - pkgdesc="free implementation of the GL API -- shared library. The Mesa GL API module is responsible for dispatching all the gl* functions (32-bits)" - - cd ${srcdir}/?esa-* - install -m755 -d "${pkgdir}/usr/lib32" - bin/minstall lib32/libglapi.so* "${pkgdir}/usr/lib32/" - - install -m755 -d "${pkgdir}/usr/share/licenses/libglapi" - ln -s libglapi "${pkgdir}/usr/share/licenses/libglapi/lib32-libglapi" -} - -package_lib32-libgles() { - depends=('lib32-libglapi' 'libgles') - pkgdesc="Mesa GLES libraries (32-bit)" - - cd ${srcdir}/?esa-* - install -m755 -d "${pkgdir}/usr/lib32" - install -m755 -d "${pkgdir}/usr/lib32/pkgconfig" - bin/minstall lib32/libGLESv* "${pkgdir}/usr/lib32/" - bin/minstall src/mapi/es1api/glesv1_cm.pc "${pkgdir}/usr/lib32/pkgconfig/" - bin/minstall src/mapi/es2api/glesv2.pc "${pkgdir}/usr/lib32/pkgconfig/" - - install -m755 -d "${pkgdir}/usr/share/licenses/libgles" - ln -s libgles "$pkgdir/usr/share/licenses/libgles/lib32-libgles" -} - -package_lib32-libegl() { - depends=('lib32-libglapi' 'lib32-libdrm' 'lib32-udev' 'lib32-libxfixes' 'lib32-libxext' 'libegl') - pkgdesc="Mesa libEGL libraries (32-bit)" - - cd ${srcdir}/?esa-* - make -C src/gallium/targets/egl-static DESTDIR="${pkgdir}" install - - install -m755 -d "${pkgdir}/usr/lib32" - install -m755 -d "${pkgdir}/usr/lib32/pkgconfig" - install -m755 -d "${pkgdir}/usr/lib32/egl" - bin/minstall lib32/libEGL.so* "${pkgdir}/usr/lib32/" - bin/minstall lib32/egl/* "${pkgdir}/usr/lib32/egl/" - bin/minstall src/egl/main/egl.pc "${pkgdir}/usr/lib32/pkgconfig/" - - install -m755 -d "${pkgdir}/usr/share/licenses/libegl" - ln -s libgles "$pkgdir/usr/share/licenses/libegl/lib32-libegl" -} - -package_lib32-mesa() { - depends=('lib32-libgl' 'lib32-libx11>=1.4.3' 'lib32-libxt>=1.1.1' 'lib32-gcc-libs>=4.6.1' 'mesa') - pkgdesc="Mesa 3-D graphics libraries and include files (32-bit)" - - cd ${srcdir}/?esa-* - make DESTDIR="${pkgdir}" install - - rm -f "${pkgdir}/usr/lib32/libGL.so"* - rm -f "${pkgdir}/usr/lib32/libglapi.so"* - rm -f "${pkgdir}/usr/lib32/libGLESv"* - rm -f "${pkgdir}/usr/lib32/libEGL"* - rm -rf "${pkgdir}/usr/lib32/egl" - rm -f ${pkgdir}/usr/lib32/pkgconfig/{glesv1_cm.pc,glesv2.pc,egl.pc} - rm -rf "$pkgdir"/{usr/include,usr/lib32/xorg} - - install -m755 -d "${pkgdir}/usr/share/licenses/mesa" - ln -s mesa "$pkgdir/usr/share/licenses/mesa/lib32-mesa" -} - -package_lib32-ati-dri() { - depends=("lib32-libgl=${pkgver}") - pkgdesc="Mesa DRI radeon/r200 + Gallium3D for r300 and later chipsets drivers for AMD/ATI Radeon (32-bit)" - conflicts=('xf86-video-ati<6.9.0-6') - - cd ${srcdir}/?esa-*/src/mesa/drivers/dri - # classic mesa drivers for radeon,r200 - make -C radeon DESTDIR="${pkgdir}" install - make -C r200 DESTDIR="${pkgdir}" install - # gallium3D driver for R300 and R600 r300_dri.so/r600_dri.so - make -C ${srcdir}/?esa-*/src/gallium/targets/dri-r300 DESTDIR="${pkgdir}" install - make -C ${srcdir}/?esa-*/src/gallium/targets/dri-r600 DESTDIR="${pkgdir}" install -} - -package_lib32-intel-dri() { - depends=("lib32-libgl=${pkgver}") - pkgdesc="Mesa DRI drivers for Intel (32-bit)" - - make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/i810 DESTDIR="${pkgdir}" install # dead in 7.12 - make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/i915 DESTDIR="${pkgdir}" install - make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/i965 DESTDIR="${pkgdir}" install -} - -package_lib32-unichrome-dri() { - depends=("lib32-libgl=${pkgver}") - pkgdesc="Mesa DRI drivers for S3 Graphics/VIA Unichrome (32-bit)" - - make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/unichrome DESTDIR="${pkgdir}" install -} - -package_lib32-mach64-dri() { - depends=("lib32-libgl=${pkgver}") - pkgdesc="Mesa DRI drivers for ATI Mach64 (32-bit)" - conflicts=('xf86-video-mach64<6.8.2') - - make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/mach64 DESTDIR="${pkgdir}" install -} - -package_lib32-mga-dri() { - depends=("lib32-libgl=${pkgver}") - pkgdesc="Mesa DRI drivers for Matrox (32-bit)" - conflicts=('xf86-video-mga<1.4.11') - - make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/mga DESTDIR="${pkgdir}" install -} - -package_lib32-r128-dri() { - depends=("lib32-libgl=${pkgver}") - pkgdesc="Mesa DRI drivers for ATI Rage128 (32-bit)" - conflicts=('xf86-video-r128<6.8.1') - - make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/r128 DESTDIR="${pkgdir}" install -} - -package_lib32-savage-dri() { - depends=("lib32-libgl=${pkgver}") - pkgdesc="Mesa DRI drivers for S3 Sraphics/VIA Savage (32-bit)" - conflicts=('xf86-video-savage<2.3.1') - - make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/savage DESTDIR="${pkgdir}" install -} - -package_lib32-sis-dri() { - depends=("lib32-libgl=${pkgver}") - pkgdesc="Mesa DRI drivers for SiS (32-bit)" - conflicts=('xf86-video-sis<0.10.2') - - make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/sis DESTDIR="${pkgdir}" install -} - -package_lib32-tdfx-dri() { - depends=("lib32-libgl=${pkgver}") - pkgdesc="Mesa DRI drivers for 3dfx (32-bit)" - conflicts=('xf86-video-tdfx<1.4.3') - - make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/tdfx DESTDIR="${pkgdir}" install -} - -package_lib32-nouveau-dri() { - depends=("lib32-libgl=${pkgver}") - pkgdesc="Mesa classic DRI + Gallium3D drivers for Nouveau (32-bit)" - - # classic mesa driver for nv10 , nv20 nouveau_vieux_dri.so - make -C ${srcdir}/?esa-*/src/mesa/drivers/dri/nouveau DESTDIR="${pkgdir}" install - # gallium3D driver for nv30 - nv40 - nv50 nouveau_dri.so - make -C ${srcdir}/?esa-*/src/gallium/targets/dri-nouveau DESTDIR="${pkgdir}" install -} - diff --git a/multilib/lib32-mpg123/PKGBUILD b/multilib/lib32-mpg123/PKGBUILD deleted file mode 100644 index ea566be0d..000000000 --- a/multilib/lib32-mpg123/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 55271 2011-09-08 08:35:25Z bluewind $ -# Maintainer: Hugo Doria <hugo@archlinux.org> -# Contributor: Giovanni Scafora <giovanni@archlinux.org> - -_pkgbasename=mpg123 -pkgname=lib32-$_pkgbasename -pkgver=1.13.4 -pkgrel=1 -pkgdesc="A console based real time MPEG Audio Player for Layer 1, 2 and 3 (32-bit)" -arch=('x86_64') -url="http://sourceforge.net/projects/mpg123" -license=('GPL2' 'LGPL2.1') -depends=('lib32-glibc' 'lib32-libtool' 'lib32-alsa-lib' $_pkgbasename) -makedepends=('lib32-sdl' gcc-multilib libtool-multilib) -optdepends=('lib32-sdl: for additional audio support') -options=('libtool') -source=(http://downloads.sourceforge.net/sourceforge/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.bz2) -md5sums=('073620b3938c4cb9c4f70e8fe3e114b8') -sha1sums=('7fe195db9fe708c487a1d47a66e6e68d9b8e7a6e') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - ./configure --prefix=/usr --with-audio="alsa sdl" --with-cpu=i586 --libdir=/usr/lib32 - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} -} diff --git a/multilib/lib32-ncurses/PKGBUILD b/multilib/lib32-ncurses/PKGBUILD deleted file mode 100644 index 31204d9c4..000000000 --- a/multilib/lib32-ncurses/PKGBUILD +++ /dev/null @@ -1,68 +0,0 @@ -# $Id: PKGBUILD 56507 2011-10-07 13:54:05Z bluewind $ -# Maintainer: Allan McRae <allan@archlinux.org> -# Contributor: judd <jvinet@zeroflux.org> - -_pkgbasename=ncurses -pkgname=lib32-${_pkgbasename} -pkgver=5.9 -pkgrel=1 -pkgdesc="System V Release 4.0 curses emulation library (32-bit)" -arch=('x86_64') -url="http://www.gnu.org/software/ncurses/" -license=('MIT') -depends=('lib32-glibc' ${_pkgbasename}) -makedepends=("gcc-multilib") -source=(ftp://ftp.gnu.org/pub/gnu/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz) -md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/ - mkdir ncurses{,w}-build - - cd ${srcdir}/ncursesw-build - ../${_pkgbasename}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \ - --with-shared --with-normal --without-debug --without-ada \ - --with-install-prefix=${pkgdir} --enable-widec --libdir=/usr/lib32 - make - - # libncurses.so.5 for external binary support - cd ${srcdir}/ncurses-build -# [ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long" - ../${_pkgbasename}-${pkgver}/configure --prefix=/usr \ - --with-shared --with-normal --without-debug --without-ada \ - --with-install-prefix=${pkgdir} $CONFIGFLAG --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/ncursesw-build - make install - - install -dm755 ${pkgdir}/usr/lib32 - - # Fool packages looking to link to non-wide-character ncurses libraries - for lib in curses ncurses form panel menu; do - rm -f ${pkgdir}/usr/lib32/lib${lib}.so - echo "INPUT(-l${lib}w)" >${pkgdir}/usr/lib32/lib${lib}.so - ln -sf lib${lib}w.a ${pkgdir}/usr/lib32/lib${lib}.a - done - ln -sf libncurses++w.a ${pkgdir}/usr/lib32/libncurses++.a - - # Some packages look for -lcurses during build - rm -f ${pkgdir}/usr/lib32/libcursesw.so - echo "INPUT(-lncursesw)" >${pkgdir}/usr/lib32/libcursesw.so - ln -sf libncurses.so ${pkgdir}/usr/lib32/libcurses.so - ln -sf libncursesw.a ${pkgdir}/usr/lib32/libcursesw.a - ln -sf libncurses.a ${pkgdir}/usr/lib32/libcurses.a - - # non-widec compatibility library - cd ${srcdir}/ncurses-build - install -Dm755 lib/libncurses.so.${pkgver} ${pkgdir}/usr/lib32/libncurses.so.${pkgver} - ln -sf libncurses.so.${pkgver} ${pkgdir}/usr/lib32/libncurses.so.5 - - rm -rf "${pkgdir}"/usr/{include,share,bin} -} diff --git a/multilib/lib32-nspr/PKGBUILD b/multilib/lib32-nspr/PKGBUILD deleted file mode 100644 index dbb4d43eb..000000000 --- a/multilib/lib32-nspr/PKGBUILD +++ /dev/null @@ -1,58 +0,0 @@ -# $Id: PKGBUILD 55627 2011-09-16 13:38:37Z bluewind $ -# Maintainer : Ionut Biru <ibiru@archlinux.org> - -_pkgbasename=nspr -pkgname=lib32-$_pkgbasename -pkgver=4.8.9 -pkgrel=1 -pkgdesc="Netscape Portable Runtime (32-bit)" -arch=('x86_64') -url="http://www.mozilla.org/projects/nspr/" -license=('MPL' 'GPL') -depends=('lib32-glibc' $_pkgbasename) -makedepends=('zip' 'gcc-multilib') -options=(!emptydirs) -source=(ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${pkgver}/src/${_pkgbasename}-${pkgver}.tar.gz - nspr.pc.in) -md5sums=('60770d45dc08c0f181b22cdfce5be3e8' - 'bce1611f3117b53fc904cab549c09967') - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - sed -e 's/\$(MKSHLIB) \$(OBJS)/\$(MKSHLIB) \$(LDFLAGS) \$(OBJS)/g' \ - -i mozilla/nsprpub/config/rules.mk - - ./mozilla/nsprpub/configure \ - --prefix=/usr \ - --libdir=/usr/lib32 \ - --includedir=/usr/include/nspr \ - --enable-optimize \ - --disable-debug ${confflags} - make - - NSPR_LIBS=`./config/nspr-config --libs` - NSPR_CFLAGS=`./config/nspr-config --cflags` - NSPR_VERSION=`./config/nspr-config --version` - install -m755 -d "${pkgdir}/usr/lib/pkgconfig" - sed "${srcdir}/nspr.pc.in" -e "s,%libdir%,/usr/lib32," \ - -e "s,%prefix%,/usr," \ - -e "s,%exec_prefix%,/usr/bin," \ - -e "s,%includedir%,/usr/include/nspr," \ - -e "s,%NSPR_VERSION%,${NSPR_VERSION}," \ - -e "s,%FULL_NSPR_LIBS%,${NSPR_LIBS}," \ - -e "s,%FULL_NSPR_CFLAGS%,${NSPR_CFLAGS}," > "${srcdir}/nspr.pc" -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - - install -m755 -D "${srcdir}/nspr.pc" "${pkgdir}"/usr/lib32/pkgconfig/nspr.pc - chmod 644 "${pkgdir}/usr/lib32/pkgconfig/nspr.pc" - ln -sf nspr.pc "${pkgdir}/usr/lib32/pkgconfig/mozilla-nspr.pc" - - chmod 644 ${pkgdir}/usr/lib32/*.a - - rm -rf "${pkgdir}"/usr/{bin,share,include} -} diff --git a/multilib/lib32-nspr/nspr.pc.in b/multilib/lib32-nspr/nspr.pc.in deleted file mode 100644 index 1d8f4a0ca..000000000 --- a/multilib/lib32-nspr/nspr.pc.in +++ /dev/null @@ -1,10 +0,0 @@ -prefix=%prefix% -exec_prefix=%exec_prefix% -libdir=%libdir% -includedir=%includedir% - -Name: NSPR -Description: The Netscape Portable Runtime -Version: %NSPR_VERSION% -Libs: %FULL_NSPR_LIBS% -Cflags: %FULL_NSPR_CFLAGS% diff --git a/multilib/lib32-nss/PKGBUILD b/multilib/lib32-nss/PKGBUILD deleted file mode 100644 index b747e1a31..000000000 --- a/multilib/lib32-nss/PKGBUILD +++ /dev/null @@ -1,82 +0,0 @@ -# $Id: PKGBUILD 55628 2011-09-16 13:40:10Z bluewind $ -# Maintainer : Ionut Biru <ibiru@archlinux.org> - -_pkgbasename=nss -pkgname=lib32-$_pkgbasename -pkgver=3.12.11 -pkgrel=1 -pkgdesc="Mozilla Network Security Services (32-bit)" -arch=('x86_64') -url="http://www.mozilla.org/projects/security/pki/nss/" -license=('MPL' 'GPL') -_nsprver=4.8.9 -depends=("lib32-nspr>=${_nsprver}" 'lib32-sqlite3>=3.6.17' "$_pkgbasename" 'lib32-zlib') -makedepends=('gcc-multilib' 'perl') -options=('!strip') -source=(ftp://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/${_pkgbasename}-${pkgver}.tar.gz - nss-no-rpath.patch - nss.pc.in - distrust-diginotar.patch - add_spi+cacert_ca_certs.patch - ssl-renegotiate-transitional.patch) -md5sums=('ca0ca058380be200cf247ea2496b5352' - 'e5c97db0c884d5f4cfda21e562dc9bba' - 'c547b030c57fe1ed8b77c73bf52b3ded' - 'bbd7d8a8e2f6ffc8b3e5f6614e5f3ccf' - 'ba2357c5b9881bfd7d54b037954ba0ff' - 'd83c7b61abb7e9f8f7bcd157183d1ade') - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}/mozilla" - # Distrust DigiNotar root CA - backported from CVS (https://bugzilla.mozilla.org/show_bug.cgi?id=682927) - patch -Np0 -i "${srcdir}/distrust-diginotar.patch" - # Adds the SPI Inc. and CAcert.org CA certificates - patch from Debian - patch -Np2 -i "${srcdir}/add_spi+cacert_ca_certs.patch" - # Adds transitional SSL renegotiate support - patch from Debian - patch -Np2 -i "${srcdir}/ssl-renegotiate-transitional.patch" - # Removes rpath - patch -Np2 -i "${srcdir}/nss-no-rpath.patch" - - # Respect LDFLAGS - sed -e 's/\$(MKSHLIB) -o/\$(MKSHLIB) \$(LDFLAGS) -o/g' \ - -i security/coreconf/rules.mk - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - export PKG_CONFIG_PATH=/usr/lib32/pkgconfig - export BUILD_OPT=1 - export PKG_CONFIG_ALLOW_SYSTEM_LIBS=1 - export PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 - export NSS_USE_SYSTEM_SQLITE=1 - export NSPR_INCLUDE_DIR=`pkg-config --cflags-only-I nspr | sed 's/-I//'` - export NSPR_LIB_DIR=`pkg-config --libs-only-L nspr | sed 's/-L.//'` - export XCFLAGS="${CFLAGS}" - - make -j 1 -C mozilla/security/coreconf - make -j 1 -C mozilla/security/dbm - make -j 1 -C mozilla/security/nss -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - install -m755 -d "${pkgdir}/usr/lib32/pkgconfig" - - sed "${srcdir}/nss.pc.in" -e "s,%libdir%,/usr/lib32,g" \ - -e "s,%prefix%,/usr,g" \ - -e "s,%exec_prefix%,/usr/bin,g" \ - -e "s,%includedir%,/usr/include/nss,g" \ - -e "s,%NSPR_VERSION%,${pkgver},g" \ - -e "s,%NSS_VERSION%,${pkgver},g" > \ - "${pkgdir}/usr/lib32/pkgconfig/nss.pc" - ln -sf nss.pc "${pkgdir}/usr/lib32/pkgconfig/mozilla-nss.pc" - chmod 644 ${pkgdir}/usr/lib32/pkgconfig/*.pc - - for file in libsoftokn3.so libfreebl3.so libnss3.so libnssutil3.so \ - libssl3.so libsmime3.so libnssckbi.so libnssdbm3.so - do - install -m755 mozilla/dist/*.OBJ/lib/${file} "${pkgdir}/usr/lib32/" - done - - install -m644 mozilla/dist/*.OBJ/lib/libcrmf.a "${pkgdir}/usr/lib32/" - install -m644 mozilla/dist/*.OBJ/lib/*.chk "${pkgdir}/usr/lib32/" - -} diff --git a/multilib/lib32-nss/add_spi+cacert_ca_certs.patch b/multilib/lib32-nss/add_spi+cacert_ca_certs.patch deleted file mode 100644 index 0af0deab7..000000000 --- a/multilib/lib32-nss/add_spi+cacert_ca_certs.patch +++ /dev/null @@ -1,1150 +0,0 @@ -## 95_add_spi+cacert_ca_certs.patch by martin f. krafft <madduck@debian.org> -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: Adds the SPI Inc. and CAcert.org CA certificates - -Index: nss/mozilla/security/nss/lib/ckfw/builtins/certdata.c -=================================================================== ---- nss.orig/mozilla/security/nss/lib/ckfw/builtins/certdata.c 2011-08-12 12:29:13.000000000 +0200 -+++ nss/mozilla/security/nss/lib/ckfw/builtins/certdata.c 2011-08-12 12:29:29.056420467 +0200 -@@ -1045,6 +1045,24 @@ - static const CK_ATTRIBUTE_TYPE nss_builtins_types_327 [] = { - CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED - }; -+static const CK_ATTRIBUTE_TYPE nss_builtins_types_328 [] = { -+ CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE -+}; -+static const CK_ATTRIBUTE_TYPE nss_builtins_types_329 [] = { -+ CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED -+}; -+static const CK_ATTRIBUTE_TYPE nss_builtins_types_330 [] = { -+ CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE -+}; -+static const CK_ATTRIBUTE_TYPE nss_builtins_types_331 [] = { -+ CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED -+}; -+static const CK_ATTRIBUTE_TYPE nss_builtins_types_332 [] = { -+ CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE -+}; -+static const CK_ATTRIBUTE_TYPE nss_builtins_types_333 [] = { -+ CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED -+}; - #ifdef DEBUG - static const NSSItem nss_builtins_items_0 [] = { - { (void *)&cko_data, (PRUint32)sizeof(CK_OBJECT_CLASS) }, -@@ -21910,6 +21928,531 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; -+static const NSSItem nss_builtins_items_328 [] = { -+ { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, -+ { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)"CAcert.org Class 1 Root CA", (PRUint32)27 }, -+ { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, -+ { (void *)"\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157" -+"\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150" -+"\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164" -+"\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103" -+"\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101" -+"\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206" -+"\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164" -+"\100\143\141\143\145\162\164\056\157\162\147" -+, (PRUint32)123 }, -+ { (void *)"0", (PRUint32)2 }, -+ { (void *)"\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157" -+"\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150" -+"\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164" -+"\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103" -+"\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101" -+"\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206" -+"\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164" -+"\100\143\141\143\145\162\164\056\157\162\147" -+, (PRUint32)123 }, -+ { (void *)"\002\001\000" -+, (PRUint32)3 }, -+ { (void *)"\060\202\007\075\060\202\005\045\240\003\002\001\002\002\001\000" -+"\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060" -+"\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157\164" -+"\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150\164" -+"\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164\056" -+"\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103\101" -+"\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101\165" -+"\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206\110" -+"\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164\100" -+"\143\141\143\145\162\164\056\157\162\147\060\036\027\015\060\063" -+"\060\063\063\060\061\062\062\071\064\071\132\027\015\063\063\060" -+"\063\062\071\061\062\062\071\064\071\132\060\171\061\020\060\016" -+"\006\003\125\004\012\023\007\122\157\157\164\040\103\101\061\036" -+"\060\034\006\003\125\004\013\023\025\150\164\164\160\072\057\057" -+"\167\167\167\056\143\141\143\145\162\164\056\157\162\147\061\042" -+"\060\040\006\003\125\004\003\023\031\103\101\040\103\145\162\164" -+"\040\123\151\147\156\151\156\147\040\101\165\164\150\157\162\151" -+"\164\171\061\041\060\037\006\011\052\206\110\206\367\015\001\011" -+"\001\026\022\163\165\160\160\157\162\164\100\143\141\143\145\162" -+"\164\056\157\162\147\060\202\002\042\060\015\006\011\052\206\110" -+"\206\367\015\001\001\001\005\000\003\202\002\017\000\060\202\002" -+"\012\002\202\002\001\000\316\042\300\342\106\175\354\066\050\007" -+"\120\226\362\240\063\100\214\113\361\073\146\077\061\345\153\002" -+"\066\333\326\174\366\361\210\217\116\167\066\005\101\225\371\011" -+"\360\022\317\106\206\163\140\267\156\176\350\300\130\144\256\315" -+"\260\255\105\027\014\143\372\147\012\350\326\322\277\076\347\230" -+"\304\360\114\372\340\003\273\065\135\154\041\336\236\040\331\272" -+"\315\146\062\067\162\372\367\010\365\307\315\130\311\216\347\016" -+"\136\352\076\376\034\241\024\012\025\154\206\204\133\144\146\052" -+"\172\251\113\123\171\365\210\242\173\356\057\012\141\053\215\262" -+"\176\115\126\245\023\354\352\332\222\236\254\104\101\036\130\140" -+"\145\005\146\370\300\104\275\313\224\367\102\176\013\367\145\150" -+"\230\121\005\360\363\005\221\004\035\033\027\202\354\310\127\273" -+"\303\153\172\210\361\260\162\314\045\133\040\221\354\026\002\022" -+"\217\062\351\027\030\110\320\307\005\056\002\060\102\270\045\234" -+"\005\153\077\252\072\247\353\123\110\367\350\322\266\007\230\334" -+"\033\306\064\177\177\311\034\202\172\005\130\053\010\133\363\070" -+"\242\253\027\135\146\311\230\327\236\020\213\242\322\335\164\232" -+"\367\161\014\162\140\337\315\157\230\063\235\226\064\166\076\044" -+"\172\222\260\016\225\036\157\346\240\105\070\107\252\327\101\355" -+"\112\267\022\366\327\033\203\212\017\056\330\011\266\131\327\252" -+"\004\377\322\223\175\150\056\335\213\113\253\130\272\057\215\352" -+"\225\247\240\303\124\211\245\373\333\213\121\042\235\262\303\276" -+"\021\276\054\221\206\213\226\170\255\040\323\212\057\032\077\306" -+"\320\121\145\207\041\261\031\001\145\177\105\034\207\365\174\320" -+"\101\114\117\051\230\041\375\063\037\165\014\004\121\372\031\167" -+"\333\324\024\034\356\201\303\035\365\230\267\151\006\221\042\335" -+"\000\120\314\201\061\254\022\007\173\070\332\150\133\346\053\324" -+"\176\311\137\255\350\353\162\114\363\001\345\113\040\277\232\246" -+"\127\312\221\000\001\213\241\165\041\067\265\143\015\147\076\106" -+"\117\160\040\147\316\305\326\131\333\002\340\360\322\313\315\272" -+"\142\267\220\101\350\335\040\344\051\274\144\051\102\310\042\334" -+"\170\232\377\103\354\230\033\011\121\113\132\132\302\161\361\304" -+"\313\163\251\345\241\013\002\003\001\000\001\243\202\001\316\060" -+"\202\001\312\060\035\006\003\125\035\016\004\026\004\024\026\265" -+"\062\033\324\307\363\340\346\216\363\275\322\260\072\356\262\071" -+"\030\321\060\201\243\006\003\125\035\043\004\201\233\060\201\230" -+"\200\024\026\265\062\033\324\307\363\340\346\216\363\275\322\260" -+"\072\356\262\071\030\321\241\175\244\173\060\171\061\020\060\016" -+"\006\003\125\004\012\023\007\122\157\157\164\040\103\101\061\036" -+"\060\034\006\003\125\004\013\023\025\150\164\164\160\072\057\057" -+"\167\167\167\056\143\141\143\145\162\164\056\157\162\147\061\042" -+"\060\040\006\003\125\004\003\023\031\103\101\040\103\145\162\164" -+"\040\123\151\147\156\151\156\147\040\101\165\164\150\157\162\151" -+"\164\171\061\041\060\037\006\011\052\206\110\206\367\015\001\011" -+"\001\026\022\163\165\160\160\157\162\164\100\143\141\143\145\162" -+"\164\056\157\162\147\202\001\000\060\017\006\003\125\035\023\001" -+"\001\377\004\005\060\003\001\001\377\060\062\006\003\125\035\037" -+"\004\053\060\051\060\047\240\045\240\043\206\041\150\164\164\160" -+"\163\072\057\057\167\167\167\056\143\141\143\145\162\164\056\157" -+"\162\147\057\162\145\166\157\153\145\056\143\162\154\060\060\006" -+"\011\140\206\110\001\206\370\102\001\004\004\043\026\041\150\164" -+"\164\160\163\072\057\057\167\167\167\056\143\141\143\145\162\164" -+"\056\157\162\147\057\162\145\166\157\153\145\056\143\162\154\060" -+"\064\006\011\140\206\110\001\206\370\102\001\010\004\047\026\045" -+"\150\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162" -+"\164\056\157\162\147\057\151\156\144\145\170\056\160\150\160\077" -+"\151\144\075\061\060\060\126\006\011\140\206\110\001\206\370\102" -+"\001\015\004\111\026\107\124\157\040\147\145\164\040\171\157\165" -+"\162\040\157\167\156\040\143\145\162\164\151\146\151\143\141\164" -+"\145\040\146\157\162\040\106\122\105\105\040\150\145\141\144\040" -+"\157\166\145\162\040\164\157\040\150\164\164\160\072\057\057\167" -+"\167\167\056\143\141\143\145\162\164\056\157\162\147\060\015\006" -+"\011\052\206\110\206\367\015\001\001\004\005\000\003\202\002\001" -+"\000\050\307\356\234\202\002\272\134\200\022\312\065\012\035\201" -+"\157\211\152\231\314\362\150\017\177\247\341\215\130\225\076\275" -+"\362\006\303\220\132\254\265\140\366\231\103\001\243\210\160\234" -+"\235\142\235\244\207\257\147\130\015\060\066\073\346\255\110\323" -+"\313\164\002\206\161\076\342\053\003\150\361\064\142\100\106\073" -+"\123\352\050\364\254\373\146\225\123\212\115\135\375\073\331\140" -+"\327\312\171\151\073\261\145\222\246\306\201\202\134\234\315\353" -+"\115\001\212\245\337\021\125\252\025\312\037\067\300\202\230\160" -+"\141\333\152\174\226\243\216\056\124\076\117\041\251\220\357\334" -+"\202\277\334\350\105\255\115\220\163\010\074\224\145\260\004\231" -+"\166\177\342\274\302\152\025\252\227\004\067\044\330\036\224\116" -+"\155\016\121\276\326\304\217\312\226\155\367\103\337\350\060\145" -+"\047\073\173\273\103\103\143\304\103\367\262\354\150\314\341\031" -+"\216\042\373\230\341\173\132\076\001\067\073\213\010\260\242\363" -+"\225\116\032\313\233\315\232\261\333\262\160\360\055\112\333\330" -+"\260\343\157\105\110\063\022\377\376\074\062\052\124\367\304\367" -+"\212\360\210\043\302\107\376\144\172\161\300\321\036\246\143\260" -+"\007\176\244\057\323\001\217\334\237\053\266\306\010\251\017\223" -+"\110\045\374\022\375\237\102\334\363\304\076\366\127\260\327\335" -+"\151\321\006\167\064\012\113\322\312\240\377\034\306\214\311\026" -+"\276\304\314\062\067\150\163\137\010\373\121\367\111\123\066\005" -+"\012\225\002\114\362\171\032\020\366\330\072\165\234\363\035\361" -+"\242\015\160\147\206\033\263\026\365\057\345\244\353\171\206\371" -+"\075\013\302\163\013\245\231\254\157\374\147\270\345\057\013\246" -+"\030\044\215\173\321\110\065\051\030\100\254\223\140\341\226\206" -+"\120\264\172\131\330\217\041\013\237\317\202\221\306\073\277\153" -+"\334\007\221\271\227\126\043\252\266\154\224\306\110\006\074\344" -+"\316\116\252\344\366\057\011\334\123\157\056\374\164\353\072\143" -+"\231\302\246\254\211\274\247\262\104\240\015\212\020\343\154\362" -+"\044\313\372\233\237\160\107\056\336\024\213\324\262\040\011\226" -+"\242\144\361\044\034\334\241\065\234\025\262\324\274\125\056\175" -+"\006\365\234\016\125\364\132\326\223\332\166\255\045\163\114\305" -+"\103" -+, (PRUint32)1857 } -+}; -+static const NSSItem nss_builtins_items_329 [] = { -+ { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, -+ { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)"CAcert.org Class 1 Root CA", (PRUint32)27 }, -+ { (void *)"\023\134\354\066\364\234\270\351\073\032\262\160\315\200\210\106" -+"\166\316\217\063" -+, (PRUint32)20 }, -+ { (void *)"\246\033\067\136\071\015\234\066\124\356\275\040\061\106\037\153" -+, (PRUint32)16 }, -+ { (void *)"\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157" -+"\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150" -+"\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164" -+"\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103" -+"\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101" -+"\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206" -+"\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164" -+"\100\143\141\143\145\162\164\056\157\162\147" -+, (PRUint32)123 }, -+ { (void *)"\002\001\000" -+, (PRUint32)3 }, -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } -+}; -+static const NSSItem nss_builtins_items_330 [] = { -+ { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, -+ { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)"CAcert.org Class 3 Root CA", (PRUint32)27 }, -+ { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, -+ { (void *)"\060\124\061\024\060\022\006\003\125\004\012\023\013\103\101\143" -+"\145\162\164\040\111\156\143\056\061\036\060\034\006\003\125\004" -+"\013\023\025\150\164\164\160\072\057\057\167\167\167\056\103\101" -+"\143\145\162\164\056\157\162\147\061\034\060\032\006\003\125\004" -+"\003\023\023\103\101\143\145\162\164\040\103\154\141\163\163\040" -+"\063\040\122\157\157\164" -+, (PRUint32)86 }, -+ { (void *)"0", (PRUint32)2 }, -+ { (void *)"\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157" -+"\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150" -+"\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164" -+"\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103" -+"\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101" -+"\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206" -+"\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164" -+"\100\143\141\143\145\162\164\056\157\162\147" -+, (PRUint32)123 }, -+ { (void *)"\002\001\001" -+, (PRUint32)3 }, -+ { (void *)"\060\202\006\010\060\202\003\360\240\003\002\001\002\002\001\001" -+"\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060" -+"\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157\164" -+"\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150\164" -+"\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164\056" -+"\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103\101" -+"\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101\165" -+"\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206\110" -+"\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164\100" -+"\143\141\143\145\162\164\056\157\162\147\060\036\027\015\060\065" -+"\061\060\061\064\060\067\063\066\065\065\132\027\015\063\063\060" -+"\063\062\070\060\067\063\066\065\065\132\060\124\061\024\060\022" -+"\006\003\125\004\012\023\013\103\101\143\145\162\164\040\111\156" -+"\143\056\061\036\060\034\006\003\125\004\013\023\025\150\164\164" -+"\160\072\057\057\167\167\167\056\103\101\143\145\162\164\056\157" -+"\162\147\061\034\060\032\006\003\125\004\003\023\023\103\101\143" -+"\145\162\164\040\103\154\141\163\163\040\063\040\122\157\157\164" -+"\060\202\002\042\060\015\006\011\052\206\110\206\367\015\001\001" -+"\001\005\000\003\202\002\017\000\060\202\002\012\002\202\002\001" -+"\000\253\111\065\021\110\174\322\046\176\123\224\317\103\251\335" -+"\050\327\102\052\213\363\207\170\031\130\174\017\236\332\211\175" -+"\341\373\353\162\220\015\164\241\226\144\253\237\240\044\231\163" -+"\332\342\125\166\307\027\173\365\004\254\106\270\303\276\177\144" -+"\215\020\154\044\363\141\234\300\362\220\372\121\346\365\151\001" -+"\143\303\017\126\342\112\102\317\342\104\214\045\050\250\305\171" -+"\011\175\106\271\212\363\351\363\064\051\010\105\344\034\237\313" -+"\224\004\034\201\250\024\263\230\145\304\103\354\116\202\215\011" -+"\321\275\252\133\215\222\320\354\336\220\305\177\012\302\343\353" -+"\346\061\132\136\164\076\227\063\131\350\303\003\075\140\063\277" -+"\367\321\157\107\304\315\356\142\203\122\156\056\010\232\244\331" -+"\025\030\221\246\205\222\107\260\256\110\353\155\267\041\354\205" -+"\032\150\162\065\253\377\360\020\135\300\364\224\247\152\325\073" -+"\222\176\114\220\005\176\223\301\054\213\244\216\142\164\025\161" -+"\156\013\161\003\352\257\025\070\232\324\322\005\162\157\214\371" -+"\053\353\132\162\045\371\071\106\343\162\033\076\004\303\144\047" -+"\042\020\052\212\117\130\247\003\255\276\264\056\023\355\135\252" -+"\110\327\325\175\324\052\173\134\372\106\004\120\344\314\016\102" -+"\133\214\355\333\362\317\374\226\223\340\333\021\066\124\142\064" -+"\070\217\014\140\233\073\227\126\070\255\363\322\133\213\240\133" -+"\352\116\226\270\174\327\325\240\206\160\100\323\221\051\267\242" -+"\074\255\365\214\273\317\032\222\212\344\064\173\300\330\154\137" -+"\351\012\302\303\247\040\232\132\337\054\135\122\134\272\107\325" -+"\233\357\044\050\160\070\040\057\325\177\051\300\262\101\003\150" -+"\222\314\340\234\314\227\113\105\357\072\020\012\253\160\072\230" -+"\225\160\255\065\261\352\205\053\244\034\200\041\061\251\256\140" -+"\172\200\046\110\000\270\001\300\223\143\125\042\221\074\126\347" -+"\257\333\072\045\363\217\061\124\352\046\213\201\131\371\241\321" -+"\123\021\305\173\235\003\366\164\021\340\155\261\054\077\054\206" -+"\221\231\161\232\246\167\213\064\140\321\024\264\054\254\235\257" -+"\214\020\323\237\304\152\370\157\023\374\163\131\367\146\102\164" -+"\036\212\343\370\334\322\157\230\234\313\107\230\225\100\005\373" -+"\351\002\003\001\000\001\243\201\277\060\201\274\060\017\006\003" -+"\125\035\023\001\001\377\004\005\060\003\001\001\377\060\135\006" -+"\010\053\006\001\005\005\007\001\001\004\121\060\117\060\043\006" -+"\010\053\006\001\005\005\007\060\001\206\027\150\164\164\160\072" -+"\057\057\157\143\163\160\056\103\101\143\145\162\164\056\157\162" -+"\147\057\060\050\006\010\053\006\001\005\005\007\060\002\206\034" -+"\150\164\164\160\072\057\057\167\167\167\056\103\101\143\145\162" -+"\164\056\157\162\147\057\143\141\056\143\162\164\060\112\006\003" -+"\125\035\040\004\103\060\101\060\077\006\010\053\006\001\004\001" -+"\201\220\112\060\063\060\061\006\010\053\006\001\005\005\007\002" -+"\001\026\045\150\164\164\160\072\057\057\167\167\167\056\103\101" -+"\143\145\162\164\056\157\162\147\057\151\156\144\145\170\056\160" -+"\150\160\077\151\144\075\061\060\060\015\006\011\052\206\110\206" -+"\367\015\001\001\004\005\000\003\202\002\001\000\177\010\210\241" -+"\332\032\120\111\332\211\373\241\010\162\363\212\367\036\304\072" -+"\264\171\133\040\060\261\105\336\302\135\323\145\151\361\302\135" -+"\124\124\074\205\137\271\173\102\221\302\231\375\033\121\233\253" -+"\106\245\241\020\123\236\155\210\254\163\156\054\063\246\360\364" -+"\236\340\165\301\076\210\105\251\341\146\103\376\126\132\321\172" -+"\101\170\367\100\332\112\072\361\013\133\245\273\026\006\346\302" -+"\347\223\271\205\115\227\117\261\036\070\103\200\357\233\015\214" -+"\357\270\247\140\000\207\127\175\036\104\034\313\043\357\233\074" -+"\231\235\257\265\051\034\105\171\026\226\115\047\155\361\034\154" -+"\303\302\125\144\263\274\024\342\363\244\037\036\062\374\047\025" -+"\005\317\335\056\256\076\202\141\173\360\041\020\030\366\104\352" -+"\123\071\371\334\320\232\040\340\306\273\340\273\132\117\304\231" -+"\310\007\275\265\275\242\333\056\142\015\102\064\101\274\377\213" -+"\212\365\121\042\252\210\060\000\342\260\324\274\276\145\272\325" -+"\003\127\171\233\350\334\310\115\370\120\355\221\245\122\050\242" -+"\254\373\066\130\076\351\224\053\221\120\207\033\326\136\326\214" -+"\314\367\017\020\014\122\116\320\026\141\345\345\012\154\277\027" -+"\307\162\106\127\234\230\365\154\140\143\172\157\136\271\116\057" -+"\310\271\271\273\152\205\274\230\015\355\371\076\227\204\064\224" -+"\256\000\257\241\345\347\222\156\116\275\363\342\331\024\213\134" -+"\322\353\001\154\240\027\245\055\020\353\234\172\112\275\275\356" -+"\316\375\355\042\100\253\160\070\210\365\012\207\152\302\253\005" -+"\140\311\110\005\332\123\301\336\104\167\152\263\363\074\074\355" -+"\200\274\246\070\112\051\044\137\376\131\073\233\045\172\126\143" -+"\000\144\271\135\244\142\175\127\066\117\255\203\357\037\222\123" -+"\240\216\167\127\335\345\141\021\075\043\000\220\114\074\372\243" -+"\140\223\004\243\257\065\366\016\152\217\117\112\140\247\205\005" -+"\154\106\241\217\364\307\166\343\241\131\127\367\161\262\304\156" -+"\024\134\155\155\101\146\337\033\223\261\324\000\303\356\313\317" -+"\074\075\041\200\251\137\143\145\374\335\340\137\244\364\053\360" -+"\205\161\101\324\147\045\373\032\261\227\256\326\231\202\023\101" -+"\322\156\245\033\231\047\200\347\013\251\250\000" -+, (PRUint32)1548 } -+}; -+static const NSSItem nss_builtins_items_331 [] = { -+ { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, -+ { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)"CAcert.org Class 3 Root CA", (PRUint32)27 }, -+ { (void *)"\333\114\102\151\007\077\351\302\243\175\211\012\134\033\030\304" -+"\030\116\052\055" -+, (PRUint32)20 }, -+ { (void *)"\163\077\065\124\035\104\311\351\132\112\357\121\255\003\006\266" -+, (PRUint32)16 }, -+ { (void *)"\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157" -+"\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150" -+"\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164" -+"\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103" -+"\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101" -+"\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206" -+"\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164" -+"\100\143\141\143\145\162\164\056\157\162\147" -+, (PRUint32)123 }, -+ { (void *)"\002\001\001" -+, (PRUint32)3 }, -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } -+}; -+static const NSSItem nss_builtins_items_332 [] = { -+ { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, -+ { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)"Software in the Public Interest, Inc. Root CA (2008)", (PRUint32)53 }, -+ { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, -+ { (void *)"\060\201\274\061\013\060\011\006\003\125\004\006\023\002\125\123" -+"\061\020\060\016\006\003\125\004\010\023\007\111\156\144\151\141" -+"\156\141\061\025\060\023\006\003\125\004\007\023\014\111\156\144" -+"\151\141\156\141\160\157\154\151\163\061\050\060\046\006\003\125" -+"\004\012\023\037\123\157\146\164\167\141\162\145\040\151\156\040" -+"\164\150\145\040\120\165\142\154\151\143\040\111\156\164\145\162" -+"\145\163\164\061\023\060\021\006\003\125\004\013\023\012\150\157" -+"\163\164\155\141\163\164\145\162\061\036\060\034\006\003\125\004" -+"\003\023\025\103\145\162\164\151\146\151\143\141\164\145\040\101" -+"\165\164\150\157\162\151\164\171\061\045\060\043\006\011\052\206" -+"\110\206\367\015\001\011\001\026\026\150\157\163\164\155\141\163" -+"\164\145\162\100\163\160\151\055\151\156\143\056\157\162\147" -+, (PRUint32)191 }, -+ { (void *)"0", (PRUint32)2 }, -+ { (void *)"\060\201\274\061\013\060\011\006\003\125\004\006\023\002\125\123" -+"\061\020\060\016\006\003\125\004\010\023\007\111\156\144\151\141" -+"\156\141\061\025\060\023\006\003\125\004\007\023\014\111\156\144" -+"\151\141\156\141\160\157\154\151\163\061\050\060\046\006\003\125" -+"\004\012\023\037\123\157\146\164\167\141\162\145\040\151\156\040" -+"\164\150\145\040\120\165\142\154\151\143\040\111\156\164\145\162" -+"\145\163\164\061\023\060\021\006\003\125\004\013\023\012\150\157" -+"\163\164\155\141\163\164\145\162\061\036\060\034\006\003\125\004" -+"\003\023\025\103\145\162\164\151\146\151\143\141\164\145\040\101" -+"\165\164\150\157\162\151\164\171\061\045\060\043\006\011\052\206" -+"\110\206\367\015\001\011\001\026\026\150\157\163\164\155\141\163" -+"\164\145\162\100\163\160\151\055\151\156\143\056\157\162\147" -+, (PRUint32)191 }, -+ { (void *)"\002\011\000\350\216\266\311\370\052\024\050" -+, (PRUint32)11 }, -+ { (void *)"\060\202\010\016\060\202\005\366\240\003\002\001\002\002\011\000" -+"\350\216\266\311\370\052\024\050\060\015\006\011\052\206\110\206" -+"\367\015\001\001\005\005\000\060\201\274\061\013\060\011\006\003" -+"\125\004\006\023\002\125\123\061\020\060\016\006\003\125\004\010" -+"\023\007\111\156\144\151\141\156\141\061\025\060\023\006\003\125" -+"\004\007\023\014\111\156\144\151\141\156\141\160\157\154\151\163" -+"\061\050\060\046\006\003\125\004\012\023\037\123\157\146\164\167" -+"\141\162\145\040\151\156\040\164\150\145\040\120\165\142\154\151" -+"\143\040\111\156\164\145\162\145\163\164\061\023\060\021\006\003" -+"\125\004\013\023\012\150\157\163\164\155\141\163\164\145\162\061" -+"\036\060\034\006\003\125\004\003\023\025\103\145\162\164\151\146" -+"\151\143\141\164\145\040\101\165\164\150\157\162\151\164\171\061" -+"\045\060\043\006\011\052\206\110\206\367\015\001\011\001\026\026" -+"\150\157\163\164\155\141\163\164\145\162\100\163\160\151\055\151" -+"\156\143\056\157\162\147\060\036\027\015\060\070\060\065\061\063" -+"\060\070\060\067\065\066\132\027\015\061\070\060\065\061\061\060" -+"\070\060\067\065\066\132\060\201\274\061\013\060\011\006\003\125" -+"\004\006\023\002\125\123\061\020\060\016\006\003\125\004\010\023" -+"\007\111\156\144\151\141\156\141\061\025\060\023\006\003\125\004" -+"\007\023\014\111\156\144\151\141\156\141\160\157\154\151\163\061" -+"\050\060\046\006\003\125\004\012\023\037\123\157\146\164\167\141" -+"\162\145\040\151\156\040\164\150\145\040\120\165\142\154\151\143" -+"\040\111\156\164\145\162\145\163\164\061\023\060\021\006\003\125" -+"\004\013\023\012\150\157\163\164\155\141\163\164\145\162\061\036" -+"\060\034\006\003\125\004\003\023\025\103\145\162\164\151\146\151" -+"\143\141\164\145\040\101\165\164\150\157\162\151\164\171\061\045" -+"\060\043\006\011\052\206\110\206\367\015\001\011\001\026\026\150" -+"\157\163\164\155\141\163\164\145\162\100\163\160\151\055\151\156" -+"\143\056\157\162\147\060\202\002\042\060\015\006\011\052\206\110" -+"\206\367\015\001\001\001\005\000\003\202\002\017\000\060\202\002" -+"\012\002\202\002\001\000\334\066\346\107\102\302\304\121\165\051" -+"\207\100\303\330\216\041\006\322\030\116\353\357\040\275\220\074" -+"\205\020\023\214\051\133\224\143\366\364\055\361\006\102\221\271" -+"\031\304\102\151\010\277\213\066\105\352\050\005\063\111\110\240" -+"\047\103\223\065\212\101\330\170\263\360\357\263\156\055\335\321" -+"\313\175\352\364\165\046\323\076\220\072\356\327\347\054\004\265" -+"\174\341\365\174\305\116\357\167\275\134\242\223\063\222\316\175" -+"\201\110\317\153\265\042\054\010\203\375\323\325\317\073\055\375" -+"\265\111\220\133\366\255\115\023\312\336\323\246\235\123\121\161" -+"\143\106\370\112\026\134\230\356\055\155\232\026\241\166\220\342" -+"\140\103\231\326\211\326\154\056\172\230\262\013\003\054\343\172" -+"\117\307\335\343\314\343\112\152\215\171\122\372\364\301\257\056" -+"\217\052\010\313\033\051\202\222\162\103\274\316\210\251\252\247" -+"\212\121\103\125\205\232\067\003\170\223\310\360\275\264\101\310" -+"\007\102\232\313\065\227\172\212\201\145\336\035\124\010\001\361" -+"\144\134\267\027\032\121\274\036\303\131\207\166\030\026\230\356" -+"\277\366\147\201\213\006\065\305\113\155\131\031\307\322\306\110" -+"\276\156\024\050\203\112\020\234\033\365\157\274\251\216\365\151" -+"\376\262\301\125\314\347\024\311\371\133\024\123\121\007\352\316" -+"\075\344\117\050\037\074\141\011\327\063\322\156\247\156\324\307" -+"\023\011\157\153\135\024\356\235\211\033\245\152\362\366\370\320" -+"\162\216\352\162\037\057\064\152\051\012\305\012\354\034\100\205" -+"\022\367\246\245\323\117\255\300\205\214\114\174\163\040\314\123" -+"\030\361\262\130\114\001\365\277\352\144\325\134\071\305\316\154" -+"\314\123\132\126\272\101\017\045\337\153\120\266\307\212\240\275" -+"\002\302\305\073\125\245\262\144\042\204\121\050\126\256\061\356" -+"\136\373\013\026\115\106\005\221\200\104\355\254\155\360\127\250" -+"\372\353\141\110\240\313\033\263\037\216\315\305\041\167\003\204" -+"\036\374\254\243\103\010\143\214\355\371\047\357\264\260\135\147" -+"\326\117\355\320\213\076\135\133\311\221\275\226\002\204\075\305" -+"\115\274\102\077\164\375\074\135\254\134\110\066\136\207\061\057" -+"\030\154\304\150\356\241\213\311\131\320\030\343\000\200\263\124" -+"\047\056\231\360\025\123\002\003\001\000\001\243\202\002\017\060" -+"\202\002\013\060\035\006\003\125\035\016\004\026\004\024\064\161" -+"\321\070\327\025\066\203\107\153\327\067\144\102\073\216\215\122" -+"\235\253\060\201\361\006\003\125\035\043\004\201\351\060\201\346" -+"\200\024\064\161\321\070\327\025\066\203\107\153\327\067\144\102" -+"\073\216\215\122\235\253\241\201\302\244\201\277\060\201\274\061" -+"\013\060\011\006\003\125\004\006\023\002\125\123\061\020\060\016" -+"\006\003\125\004\010\023\007\111\156\144\151\141\156\141\061\025" -+"\060\023\006\003\125\004\007\023\014\111\156\144\151\141\156\141" -+"\160\157\154\151\163\061\050\060\046\006\003\125\004\012\023\037" -+"\123\157\146\164\167\141\162\145\040\151\156\040\164\150\145\040" -+"\120\165\142\154\151\143\040\111\156\164\145\162\145\163\164\061" -+"\023\060\021\006\003\125\004\013\023\012\150\157\163\164\155\141" -+"\163\164\145\162\061\036\060\034\006\003\125\004\003\023\025\103" -+"\145\162\164\151\146\151\143\141\164\145\040\101\165\164\150\157" -+"\162\151\164\171\061\045\060\043\006\011\052\206\110\206\367\015" -+"\001\011\001\026\026\150\157\163\164\155\141\163\164\145\162\100" -+"\163\160\151\055\151\156\143\056\157\162\147\202\011\000\350\216" -+"\266\311\370\052\024\050\060\017\006\003\125\035\023\001\001\377" -+"\004\005\060\003\001\001\377\060\021\006\011\140\206\110\001\206" -+"\370\102\001\001\004\004\003\002\000\007\060\011\006\003\125\035" -+"\022\004\002\060\000\060\056\006\011\140\206\110\001\206\370\102" -+"\001\015\004\041\026\037\123\157\146\164\167\141\162\145\040\151" -+"\156\040\164\150\145\040\120\165\142\154\151\143\040\111\156\164" -+"\145\162\145\163\164\060\060\006\011\140\206\110\001\206\370\102" -+"\001\004\004\043\026\041\150\164\164\160\163\072\057\057\143\141" -+"\056\163\160\151\055\151\156\143\056\157\162\147\057\143\141\055" -+"\143\162\154\056\160\145\155\060\062\006\011\140\206\110\001\206" -+"\370\102\001\003\004\045\026\043\150\164\164\160\163\072\057\057" -+"\143\141\056\163\160\151\055\151\156\143\056\157\162\147\057\143" -+"\145\162\164\055\143\162\154\056\160\145\155\060\041\006\003\125" -+"\035\021\004\032\060\030\201\026\150\157\163\164\155\141\163\164" -+"\145\162\100\163\160\151\055\151\156\143\056\157\162\147\060\016" -+"\006\003\125\035\017\001\001\377\004\004\003\002\001\006\060\015" -+"\006\011\052\206\110\206\367\015\001\001\005\005\000\003\202\002" -+"\001\000\264\315\275\340\271\352\262\003\053\176\062\351\336\162" -+"\077\311\113\202\136\235\342\257\125\011\242\014\124\350\317\030" -+"\074\050\040\035\251\273\003\002\057\122\071\042\371\027\317\255" -+"\147\220\263\003\177\330\025\343\153\176\273\233\126\001\257\065" -+"\324\332\271\307\147\027\233\324\325\016\067\263\040\101\056\014" -+"\001\304\133\371\145\076\302\141\350\322\360\152\225\160\303\306" -+"\157\325\065\244\254\131\162\341\211\337\241\240\235\044\275\051" -+"\171\351\141\052\331\323\036\311\106\244\010\170\101\222\162\017" -+"\253\024\165\355\011\360\242\360\134\357\303\012\142\040\267\302" -+"\050\146\256\114\057\056\217\105\143\046\226\360\356\061\346\213" -+"\125\233\252\072\371\202\071\035\210\074\342\007\165\032\341\017" -+"\261\060\274\161\062\322\072\376\372\241\211\363\103\054\326\162" -+"\304\171\247\025\110\005\300\330\055\162\002\343\313\075\026\152" -+"\272\311\270\021\020\342\111\205\314\226\107\140\005\045\056\357" -+"\165\131\063\365\107\031\026\357\332\154\137\007\310\246\120\266" -+"\035\313\146\064\045\374\146\203\353\305\266\060\101\370\106\104" -+"\142\250\301\014\124\346\352\114\132\050\346\256\306\267\376\177" -+"\073\226\250\056\356\307\150\076\335\000\075\051\257\052\143\253" -+"\137\356\111\052\055\305\334\373\321\306\323\321\227\126\122\206" -+"\266\224\353\324\140\121\267\374\036\233\314\002\233\324\037\217" -+"\371\112\217\266\056\050\073\027\314\305\246\005\343\322\323\265" -+"\306\003\311\341\110\102\233\313\077\344\027\340\376\015\001\225" -+"\011\272\270\015\161\344\011\160\167\102\330\115\341\102\251\140" -+"\203\327\027\211\103\322\324\335\247\030\266\253\324\044\045\207" -+"\265\324\342\374\056\042\151\275\255\150\054\377\162\265\230\252" -+"\006\234\347\052\152\270\241\223\166\316\260\363\177\234\341\340" -+"\117\270\330\206\106\245\063\002\054\045\141\067\052\222\310\254" -+"\201\164\150\143\207\063\166\275\005\177\136\325\325\002\155\275" -+"\257\377\052\132\252\111\354\230\171\107\123\221\366\016\064\132" -+"\311\245\306\353\262\343\305\254\266\240\160\065\273\310\121\151" -+"\320\362\265\242\062\156\274\077\240\067\071\174\161\066\246\005" -+"\337\014\022\344\026\247\305\326\313\143\243\225\160\077\346\004" -+"\243\140" -+, (PRUint32)2066 } -+}; -+static const NSSItem nss_builtins_items_333 [] = { -+ { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, -+ { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -+ { (void *)"Software in the Public Interest, Inc. Root CA (2008)", (PRUint32)53 }, -+ { (void *)"\257\160\210\103\203\202\002\025\315\141\306\274\354\375\067\044" -+"\251\220\103\034" -+, (PRUint32)20 }, -+ { (void *)"\052\107\237\140\273\203\164\157\001\003\327\013\015\366\015\170" -+, (PRUint32)16 }, -+ { (void *)"\060\201\274\061\013\060\011\006\003\125\004\006\023\002\125\123" -+"\061\020\060\016\006\003\125\004\010\023\007\111\156\144\151\141" -+"\156\141\061\025\060\023\006\003\125\004\007\023\014\111\156\144" -+"\151\141\156\141\160\157\154\151\163\061\050\060\046\006\003\125" -+"\004\012\023\037\123\157\146\164\167\141\162\145\040\151\156\040" -+"\164\150\145\040\120\165\142\154\151\143\040\111\156\164\145\162" -+"\145\163\164\061\023\060\021\006\003\125\004\013\023\012\150\157" -+"\163\164\155\141\163\164\145\162\061\036\060\034\006\003\125\004" -+"\003\023\025\103\145\162\164\151\146\151\143\141\164\145\040\101" -+"\165\164\150\157\162\151\164\171\061\045\060\043\006\011\052\206" -+"\110\206\367\015\001\011\001\026\026\150\157\163\164\155\141\163" -+"\164\145\162\100\163\160\151\055\151\156\143\056\157\162\147" -+, (PRUint32)191 }, -+ { (void *)"\002\011\000\350\216\266\311\370\052\024\050" -+, (PRUint32)11 }, -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, -+ { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, -+ { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } -+}; - - builtinsInternalObject - nss_builtins_data[] = { -@@ -22244,11 +22787,17 @@ - { 11, nss_builtins_types_324, nss_builtins_items_324, {NULL} }, - { 13, nss_builtins_types_325, nss_builtins_items_325, {NULL} }, - { 11, nss_builtins_types_326, nss_builtins_items_326, {NULL} }, -- { 13, nss_builtins_types_327, nss_builtins_items_327, {NULL} } -+ { 13, nss_builtins_types_327, nss_builtins_items_327, {NULL} }, -+ { 11, nss_builtins_types_328, nss_builtins_items_328, {NULL} }, -+ { 13, nss_builtins_types_329, nss_builtins_items_329, {NULL} }, -+ { 11, nss_builtins_types_330, nss_builtins_items_330, {NULL} }, -+ { 13, nss_builtins_types_331, nss_builtins_items_331, {NULL} }, -+ { 11, nss_builtins_types_332, nss_builtins_items_332, {NULL} }, -+ { 13, nss_builtins_types_333, nss_builtins_items_333, {NULL} } - }; - const PRUint32 - #ifdef DEBUG -- nss_builtins_nObjects = 327+1; -+ nss_builtins_nObjects = 333+1; - #else -- nss_builtins_nObjects = 327; -+ nss_builtins_nObjects = 333; - #endif /* DEBUG */ -Index: nss/mozilla/security/nss/lib/ckfw/builtins/certdata.txt -=================================================================== ---- nss.orig/mozilla/security/nss/lib/ckfw/builtins/certdata.txt 2011-08-12 12:25:29.000000000 +0200 -+++ nss/mozilla/security/nss/lib/ckfw/builtins/certdata.txt 2011-08-12 12:29:25.460425941 +0200 -@@ -22589,3 +22589,558 @@ - CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR - CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN - CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE -+ -+# -+# Certificate "CAcert.org Class 1 Root CA" -+# -+CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE -+CKA_TOKEN CK_BBOOL CK_TRUE -+CKA_PRIVATE CK_BBOOL CK_FALSE -+CKA_MODIFIABLE CK_BBOOL CK_FALSE -+CKA_LABEL UTF8 "CAcert.org Class 1 Root CA" -+CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 -+CKA_SUBJECT MULTILINE_OCTAL -+\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157 -+\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150 -+\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164 -+\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103 -+\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101 -+\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206 -+\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164 -+\100\143\141\143\145\162\164\056\157\162\147 -+END -+CKA_ID UTF8 "0" -+CKA_ISSUER MULTILINE_OCTAL -+\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157 -+\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150 -+\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164 -+\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103 -+\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101 -+\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206 -+\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164 -+\100\143\141\143\145\162\164\056\157\162\147 -+END -+CKA_SERIAL_NUMBER MULTILINE_OCTAL -+\002\001\000 -+END -+CKA_VALUE MULTILINE_OCTAL -+\060\202\007\075\060\202\005\045\240\003\002\001\002\002\001\000 -+\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060 -+\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157\164 -+\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150\164 -+\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164\056 -+\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103\101 -+\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101\165 -+\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206\110 -+\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164\100 -+\143\141\143\145\162\164\056\157\162\147\060\036\027\015\060\063 -+\060\063\063\060\061\062\062\071\064\071\132\027\015\063\063\060 -+\063\062\071\061\062\062\071\064\071\132\060\171\061\020\060\016 -+\006\003\125\004\012\023\007\122\157\157\164\040\103\101\061\036 -+\060\034\006\003\125\004\013\023\025\150\164\164\160\072\057\057 -+\167\167\167\056\143\141\143\145\162\164\056\157\162\147\061\042 -+\060\040\006\003\125\004\003\023\031\103\101\040\103\145\162\164 -+\040\123\151\147\156\151\156\147\040\101\165\164\150\157\162\151 -+\164\171\061\041\060\037\006\011\052\206\110\206\367\015\001\011 -+\001\026\022\163\165\160\160\157\162\164\100\143\141\143\145\162 -+\164\056\157\162\147\060\202\002\042\060\015\006\011\052\206\110 -+\206\367\015\001\001\001\005\000\003\202\002\017\000\060\202\002 -+\012\002\202\002\001\000\316\042\300\342\106\175\354\066\050\007 -+\120\226\362\240\063\100\214\113\361\073\146\077\061\345\153\002 -+\066\333\326\174\366\361\210\217\116\167\066\005\101\225\371\011 -+\360\022\317\106\206\163\140\267\156\176\350\300\130\144\256\315 -+\260\255\105\027\014\143\372\147\012\350\326\322\277\076\347\230 -+\304\360\114\372\340\003\273\065\135\154\041\336\236\040\331\272 -+\315\146\062\067\162\372\367\010\365\307\315\130\311\216\347\016 -+\136\352\076\376\034\241\024\012\025\154\206\204\133\144\146\052 -+\172\251\113\123\171\365\210\242\173\356\057\012\141\053\215\262 -+\176\115\126\245\023\354\352\332\222\236\254\104\101\036\130\140 -+\145\005\146\370\300\104\275\313\224\367\102\176\013\367\145\150 -+\230\121\005\360\363\005\221\004\035\033\027\202\354\310\127\273 -+\303\153\172\210\361\260\162\314\045\133\040\221\354\026\002\022 -+\217\062\351\027\030\110\320\307\005\056\002\060\102\270\045\234 -+\005\153\077\252\072\247\353\123\110\367\350\322\266\007\230\334 -+\033\306\064\177\177\311\034\202\172\005\130\053\010\133\363\070 -+\242\253\027\135\146\311\230\327\236\020\213\242\322\335\164\232 -+\367\161\014\162\140\337\315\157\230\063\235\226\064\166\076\044 -+\172\222\260\016\225\036\157\346\240\105\070\107\252\327\101\355 -+\112\267\022\366\327\033\203\212\017\056\330\011\266\131\327\252 -+\004\377\322\223\175\150\056\335\213\113\253\130\272\057\215\352 -+\225\247\240\303\124\211\245\373\333\213\121\042\235\262\303\276 -+\021\276\054\221\206\213\226\170\255\040\323\212\057\032\077\306 -+\320\121\145\207\041\261\031\001\145\177\105\034\207\365\174\320 -+\101\114\117\051\230\041\375\063\037\165\014\004\121\372\031\167 -+\333\324\024\034\356\201\303\035\365\230\267\151\006\221\042\335 -+\000\120\314\201\061\254\022\007\173\070\332\150\133\346\053\324 -+\176\311\137\255\350\353\162\114\363\001\345\113\040\277\232\246 -+\127\312\221\000\001\213\241\165\041\067\265\143\015\147\076\106 -+\117\160\040\147\316\305\326\131\333\002\340\360\322\313\315\272 -+\142\267\220\101\350\335\040\344\051\274\144\051\102\310\042\334 -+\170\232\377\103\354\230\033\011\121\113\132\132\302\161\361\304 -+\313\163\251\345\241\013\002\003\001\000\001\243\202\001\316\060 -+\202\001\312\060\035\006\003\125\035\016\004\026\004\024\026\265 -+\062\033\324\307\363\340\346\216\363\275\322\260\072\356\262\071 -+\030\321\060\201\243\006\003\125\035\043\004\201\233\060\201\230 -+\200\024\026\265\062\033\324\307\363\340\346\216\363\275\322\260 -+\072\356\262\071\030\321\241\175\244\173\060\171\061\020\060\016 -+\006\003\125\004\012\023\007\122\157\157\164\040\103\101\061\036 -+\060\034\006\003\125\004\013\023\025\150\164\164\160\072\057\057 -+\167\167\167\056\143\141\143\145\162\164\056\157\162\147\061\042 -+\060\040\006\003\125\004\003\023\031\103\101\040\103\145\162\164 -+\040\123\151\147\156\151\156\147\040\101\165\164\150\157\162\151 -+\164\171\061\041\060\037\006\011\052\206\110\206\367\015\001\011 -+\001\026\022\163\165\160\160\157\162\164\100\143\141\143\145\162 -+\164\056\157\162\147\202\001\000\060\017\006\003\125\035\023\001 -+\001\377\004\005\060\003\001\001\377\060\062\006\003\125\035\037 -+\004\053\060\051\060\047\240\045\240\043\206\041\150\164\164\160 -+\163\072\057\057\167\167\167\056\143\141\143\145\162\164\056\157 -+\162\147\057\162\145\166\157\153\145\056\143\162\154\060\060\006 -+\011\140\206\110\001\206\370\102\001\004\004\043\026\041\150\164 -+\164\160\163\072\057\057\167\167\167\056\143\141\143\145\162\164 -+\056\157\162\147\057\162\145\166\157\153\145\056\143\162\154\060 -+\064\006\011\140\206\110\001\206\370\102\001\010\004\047\026\045 -+\150\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162 -+\164\056\157\162\147\057\151\156\144\145\170\056\160\150\160\077 -+\151\144\075\061\060\060\126\006\011\140\206\110\001\206\370\102 -+\001\015\004\111\026\107\124\157\040\147\145\164\040\171\157\165 -+\162\040\157\167\156\040\143\145\162\164\151\146\151\143\141\164 -+\145\040\146\157\162\040\106\122\105\105\040\150\145\141\144\040 -+\157\166\145\162\040\164\157\040\150\164\164\160\072\057\057\167 -+\167\167\056\143\141\143\145\162\164\056\157\162\147\060\015\006 -+\011\052\206\110\206\367\015\001\001\004\005\000\003\202\002\001 -+\000\050\307\356\234\202\002\272\134\200\022\312\065\012\035\201 -+\157\211\152\231\314\362\150\017\177\247\341\215\130\225\076\275 -+\362\006\303\220\132\254\265\140\366\231\103\001\243\210\160\234 -+\235\142\235\244\207\257\147\130\015\060\066\073\346\255\110\323 -+\313\164\002\206\161\076\342\053\003\150\361\064\142\100\106\073 -+\123\352\050\364\254\373\146\225\123\212\115\135\375\073\331\140 -+\327\312\171\151\073\261\145\222\246\306\201\202\134\234\315\353 -+\115\001\212\245\337\021\125\252\025\312\037\067\300\202\230\160 -+\141\333\152\174\226\243\216\056\124\076\117\041\251\220\357\334 -+\202\277\334\350\105\255\115\220\163\010\074\224\145\260\004\231 -+\166\177\342\274\302\152\025\252\227\004\067\044\330\036\224\116 -+\155\016\121\276\326\304\217\312\226\155\367\103\337\350\060\145 -+\047\073\173\273\103\103\143\304\103\367\262\354\150\314\341\031 -+\216\042\373\230\341\173\132\076\001\067\073\213\010\260\242\363 -+\225\116\032\313\233\315\232\261\333\262\160\360\055\112\333\330 -+\260\343\157\105\110\063\022\377\376\074\062\052\124\367\304\367 -+\212\360\210\043\302\107\376\144\172\161\300\321\036\246\143\260 -+\007\176\244\057\323\001\217\334\237\053\266\306\010\251\017\223 -+\110\045\374\022\375\237\102\334\363\304\076\366\127\260\327\335 -+\151\321\006\167\064\012\113\322\312\240\377\034\306\214\311\026 -+\276\304\314\062\067\150\163\137\010\373\121\367\111\123\066\005 -+\012\225\002\114\362\171\032\020\366\330\072\165\234\363\035\361 -+\242\015\160\147\206\033\263\026\365\057\345\244\353\171\206\371 -+\075\013\302\163\013\245\231\254\157\374\147\270\345\057\013\246 -+\030\044\215\173\321\110\065\051\030\100\254\223\140\341\226\206 -+\120\264\172\131\330\217\041\013\237\317\202\221\306\073\277\153 -+\334\007\221\271\227\126\043\252\266\154\224\306\110\006\074\344 -+\316\116\252\344\366\057\011\334\123\157\056\374\164\353\072\143 -+\231\302\246\254\211\274\247\262\104\240\015\212\020\343\154\362 -+\044\313\372\233\237\160\107\056\336\024\213\324\262\040\011\226 -+\242\144\361\044\034\334\241\065\234\025\262\324\274\125\056\175 -+\006\365\234\016\125\364\132\326\223\332\166\255\045\163\114\305 -+\103 -+END -+ -+# Trust for Certificate "CAcert.org Class 1 Root CA" -+CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST -+CKA_TOKEN CK_BBOOL CK_TRUE -+CKA_PRIVATE CK_BBOOL CK_FALSE -+CKA_MODIFIABLE CK_BBOOL CK_FALSE -+CKA_LABEL UTF8 "CAcert.org Class 1 Root CA" -+CKA_CERT_SHA1_HASH MULTILINE_OCTAL -+\023\134\354\066\364\234\270\351\073\032\262\160\315\200\210\106 -+\166\316\217\063 -+END -+CKA_CERT_MD5_HASH MULTILINE_OCTAL -+\246\033\067\136\071\015\234\066\124\356\275\040\061\106\037\153 -+END -+CKA_ISSUER MULTILINE_OCTAL -+\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157 -+\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150 -+\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164 -+\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103 -+\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101 -+\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206 -+\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164 -+\100\143\141\143\145\162\164\056\157\162\147 -+END -+CKA_SERIAL_NUMBER MULTILINE_OCTAL -+\002\001\000 -+END -+CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -+CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -+CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -+CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE -+ -+# -+# Certificate "CAcert.org Class 3 Root CA" -+# -+CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE -+CKA_TOKEN CK_BBOOL CK_TRUE -+CKA_PRIVATE CK_BBOOL CK_FALSE -+CKA_MODIFIABLE CK_BBOOL CK_FALSE -+CKA_LABEL UTF8 "CAcert.org Class 3 Root CA" -+CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 -+CKA_SUBJECT MULTILINE_OCTAL -+\060\124\061\024\060\022\006\003\125\004\012\023\013\103\101\143 -+\145\162\164\040\111\156\143\056\061\036\060\034\006\003\125\004 -+\013\023\025\150\164\164\160\072\057\057\167\167\167\056\103\101 -+\143\145\162\164\056\157\162\147\061\034\060\032\006\003\125\004 -+\003\023\023\103\101\143\145\162\164\040\103\154\141\163\163\040 -+\063\040\122\157\157\164 -+END -+CKA_ID UTF8 "0" -+CKA_ISSUER MULTILINE_OCTAL -+\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157 -+\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150 -+\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164 -+\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103 -+\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101 -+\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206 -+\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164 -+\100\143\141\143\145\162\164\056\157\162\147 -+END -+CKA_SERIAL_NUMBER MULTILINE_OCTAL -+\002\001\001 -+END -+CKA_VALUE MULTILINE_OCTAL -+\060\202\006\010\060\202\003\360\240\003\002\001\002\002\001\001 -+\060\015\006\011\052\206\110\206\367\015\001\001\004\005\000\060 -+\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157\164 -+\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150\164 -+\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164\056 -+\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103\101 -+\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101\165 -+\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206\110 -+\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164\100 -+\143\141\143\145\162\164\056\157\162\147\060\036\027\015\060\065 -+\061\060\061\064\060\067\063\066\065\065\132\027\015\063\063\060 -+\063\062\070\060\067\063\066\065\065\132\060\124\061\024\060\022 -+\006\003\125\004\012\023\013\103\101\143\145\162\164\040\111\156 -+\143\056\061\036\060\034\006\003\125\004\013\023\025\150\164\164 -+\160\072\057\057\167\167\167\056\103\101\143\145\162\164\056\157 -+\162\147\061\034\060\032\006\003\125\004\003\023\023\103\101\143 -+\145\162\164\040\103\154\141\163\163\040\063\040\122\157\157\164 -+\060\202\002\042\060\015\006\011\052\206\110\206\367\015\001\001 -+\001\005\000\003\202\002\017\000\060\202\002\012\002\202\002\001 -+\000\253\111\065\021\110\174\322\046\176\123\224\317\103\251\335 -+\050\327\102\052\213\363\207\170\031\130\174\017\236\332\211\175 -+\341\373\353\162\220\015\164\241\226\144\253\237\240\044\231\163 -+\332\342\125\166\307\027\173\365\004\254\106\270\303\276\177\144 -+\215\020\154\044\363\141\234\300\362\220\372\121\346\365\151\001 -+\143\303\017\126\342\112\102\317\342\104\214\045\050\250\305\171 -+\011\175\106\271\212\363\351\363\064\051\010\105\344\034\237\313 -+\224\004\034\201\250\024\263\230\145\304\103\354\116\202\215\011 -+\321\275\252\133\215\222\320\354\336\220\305\177\012\302\343\353 -+\346\061\132\136\164\076\227\063\131\350\303\003\075\140\063\277 -+\367\321\157\107\304\315\356\142\203\122\156\056\010\232\244\331 -+\025\030\221\246\205\222\107\260\256\110\353\155\267\041\354\205 -+\032\150\162\065\253\377\360\020\135\300\364\224\247\152\325\073 -+\222\176\114\220\005\176\223\301\054\213\244\216\142\164\025\161 -+\156\013\161\003\352\257\025\070\232\324\322\005\162\157\214\371 -+\053\353\132\162\045\371\071\106\343\162\033\076\004\303\144\047 -+\042\020\052\212\117\130\247\003\255\276\264\056\023\355\135\252 -+\110\327\325\175\324\052\173\134\372\106\004\120\344\314\016\102 -+\133\214\355\333\362\317\374\226\223\340\333\021\066\124\142\064 -+\070\217\014\140\233\073\227\126\070\255\363\322\133\213\240\133 -+\352\116\226\270\174\327\325\240\206\160\100\323\221\051\267\242 -+\074\255\365\214\273\317\032\222\212\344\064\173\300\330\154\137 -+\351\012\302\303\247\040\232\132\337\054\135\122\134\272\107\325 -+\233\357\044\050\160\070\040\057\325\177\051\300\262\101\003\150 -+\222\314\340\234\314\227\113\105\357\072\020\012\253\160\072\230 -+\225\160\255\065\261\352\205\053\244\034\200\041\061\251\256\140 -+\172\200\046\110\000\270\001\300\223\143\125\042\221\074\126\347 -+\257\333\072\045\363\217\061\124\352\046\213\201\131\371\241\321 -+\123\021\305\173\235\003\366\164\021\340\155\261\054\077\054\206 -+\221\231\161\232\246\167\213\064\140\321\024\264\054\254\235\257 -+\214\020\323\237\304\152\370\157\023\374\163\131\367\146\102\164 -+\036\212\343\370\334\322\157\230\234\313\107\230\225\100\005\373 -+\351\002\003\001\000\001\243\201\277\060\201\274\060\017\006\003 -+\125\035\023\001\001\377\004\005\060\003\001\001\377\060\135\006 -+\010\053\006\001\005\005\007\001\001\004\121\060\117\060\043\006 -+\010\053\006\001\005\005\007\060\001\206\027\150\164\164\160\072 -+\057\057\157\143\163\160\056\103\101\143\145\162\164\056\157\162 -+\147\057\060\050\006\010\053\006\001\005\005\007\060\002\206\034 -+\150\164\164\160\072\057\057\167\167\167\056\103\101\143\145\162 -+\164\056\157\162\147\057\143\141\056\143\162\164\060\112\006\003 -+\125\035\040\004\103\060\101\060\077\006\010\053\006\001\004\001 -+\201\220\112\060\063\060\061\006\010\053\006\001\005\005\007\002 -+\001\026\045\150\164\164\160\072\057\057\167\167\167\056\103\101 -+\143\145\162\164\056\157\162\147\057\151\156\144\145\170\056\160 -+\150\160\077\151\144\075\061\060\060\015\006\011\052\206\110\206 -+\367\015\001\001\004\005\000\003\202\002\001\000\177\010\210\241 -+\332\032\120\111\332\211\373\241\010\162\363\212\367\036\304\072 -+\264\171\133\040\060\261\105\336\302\135\323\145\151\361\302\135 -+\124\124\074\205\137\271\173\102\221\302\231\375\033\121\233\253 -+\106\245\241\020\123\236\155\210\254\163\156\054\063\246\360\364 -+\236\340\165\301\076\210\105\251\341\146\103\376\126\132\321\172 -+\101\170\367\100\332\112\072\361\013\133\245\273\026\006\346\302 -+\347\223\271\205\115\227\117\261\036\070\103\200\357\233\015\214 -+\357\270\247\140\000\207\127\175\036\104\034\313\043\357\233\074 -+\231\235\257\265\051\034\105\171\026\226\115\047\155\361\034\154 -+\303\302\125\144\263\274\024\342\363\244\037\036\062\374\047\025 -+\005\317\335\056\256\076\202\141\173\360\041\020\030\366\104\352 -+\123\071\371\334\320\232\040\340\306\273\340\273\132\117\304\231 -+\310\007\275\265\275\242\333\056\142\015\102\064\101\274\377\213 -+\212\365\121\042\252\210\060\000\342\260\324\274\276\145\272\325 -+\003\127\171\233\350\334\310\115\370\120\355\221\245\122\050\242 -+\254\373\066\130\076\351\224\053\221\120\207\033\326\136\326\214 -+\314\367\017\020\014\122\116\320\026\141\345\345\012\154\277\027 -+\307\162\106\127\234\230\365\154\140\143\172\157\136\271\116\057 -+\310\271\271\273\152\205\274\230\015\355\371\076\227\204\064\224 -+\256\000\257\241\345\347\222\156\116\275\363\342\331\024\213\134 -+\322\353\001\154\240\027\245\055\020\353\234\172\112\275\275\356 -+\316\375\355\042\100\253\160\070\210\365\012\207\152\302\253\005 -+\140\311\110\005\332\123\301\336\104\167\152\263\363\074\074\355 -+\200\274\246\070\112\051\044\137\376\131\073\233\045\172\126\143 -+\000\144\271\135\244\142\175\127\066\117\255\203\357\037\222\123 -+\240\216\167\127\335\345\141\021\075\043\000\220\114\074\372\243 -+\140\223\004\243\257\065\366\016\152\217\117\112\140\247\205\005 -+\154\106\241\217\364\307\166\343\241\131\127\367\161\262\304\156 -+\024\134\155\155\101\146\337\033\223\261\324\000\303\356\313\317 -+\074\075\041\200\251\137\143\145\374\335\340\137\244\364\053\360 -+\205\161\101\324\147\045\373\032\261\227\256\326\231\202\023\101 -+\322\156\245\033\231\047\200\347\013\251\250\000 -+END -+ -+# Trust for Certificate "CAcert.org Class 3 Root CA" -+CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST -+CKA_TOKEN CK_BBOOL CK_TRUE -+CKA_PRIVATE CK_BBOOL CK_FALSE -+CKA_MODIFIABLE CK_BBOOL CK_FALSE -+CKA_LABEL UTF8 "CAcert.org Class 3 Root CA" -+CKA_CERT_SHA1_HASH MULTILINE_OCTAL -+\333\114\102\151\007\077\351\302\243\175\211\012\134\033\030\304 -+\030\116\052\055 -+END -+CKA_CERT_MD5_HASH MULTILINE_OCTAL -+\163\077\065\124\035\104\311\351\132\112\357\121\255\003\006\266 -+END -+CKA_ISSUER MULTILINE_OCTAL -+\060\171\061\020\060\016\006\003\125\004\012\023\007\122\157\157 -+\164\040\103\101\061\036\060\034\006\003\125\004\013\023\025\150 -+\164\164\160\072\057\057\167\167\167\056\143\141\143\145\162\164 -+\056\157\162\147\061\042\060\040\006\003\125\004\003\023\031\103 -+\101\040\103\145\162\164\040\123\151\147\156\151\156\147\040\101 -+\165\164\150\157\162\151\164\171\061\041\060\037\006\011\052\206 -+\110\206\367\015\001\011\001\026\022\163\165\160\160\157\162\164 -+\100\143\141\143\145\162\164\056\157\162\147 -+END -+CKA_SERIAL_NUMBER MULTILINE_OCTAL -+\002\001\001 -+END -+CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -+CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -+CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -+CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE -+ -+# -+# Certificate "Software in the Public Interest, Inc. Root CA (2008)" -+# -+CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE -+CKA_TOKEN CK_BBOOL CK_TRUE -+CKA_PRIVATE CK_BBOOL CK_FALSE -+CKA_MODIFIABLE CK_BBOOL CK_FALSE -+CKA_LABEL UTF8 "Software in the Public Interest, Inc. Root CA (2008)" -+CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 -+CKA_SUBJECT MULTILINE_OCTAL -+\060\201\274\061\013\060\011\006\003\125\004\006\023\002\125\123 -+\061\020\060\016\006\003\125\004\010\023\007\111\156\144\151\141 -+\156\141\061\025\060\023\006\003\125\004\007\023\014\111\156\144 -+\151\141\156\141\160\157\154\151\163\061\050\060\046\006\003\125 -+\004\012\023\037\123\157\146\164\167\141\162\145\040\151\156\040 -+\164\150\145\040\120\165\142\154\151\143\040\111\156\164\145\162 -+\145\163\164\061\023\060\021\006\003\125\004\013\023\012\150\157 -+\163\164\155\141\163\164\145\162\061\036\060\034\006\003\125\004 -+\003\023\025\103\145\162\164\151\146\151\143\141\164\145\040\101 -+\165\164\150\157\162\151\164\171\061\045\060\043\006\011\052\206 -+\110\206\367\015\001\011\001\026\026\150\157\163\164\155\141\163 -+\164\145\162\100\163\160\151\055\151\156\143\056\157\162\147 -+END -+CKA_ID UTF8 "0" -+CKA_ISSUER MULTILINE_OCTAL -+\060\201\274\061\013\060\011\006\003\125\004\006\023\002\125\123 -+\061\020\060\016\006\003\125\004\010\023\007\111\156\144\151\141 -+\156\141\061\025\060\023\006\003\125\004\007\023\014\111\156\144 -+\151\141\156\141\160\157\154\151\163\061\050\060\046\006\003\125 -+\004\012\023\037\123\157\146\164\167\141\162\145\040\151\156\040 -+\164\150\145\040\120\165\142\154\151\143\040\111\156\164\145\162 -+\145\163\164\061\023\060\021\006\003\125\004\013\023\012\150\157 -+\163\164\155\141\163\164\145\162\061\036\060\034\006\003\125\004 -+\003\023\025\103\145\162\164\151\146\151\143\141\164\145\040\101 -+\165\164\150\157\162\151\164\171\061\045\060\043\006\011\052\206 -+\110\206\367\015\001\011\001\026\026\150\157\163\164\155\141\163 -+\164\145\162\100\163\160\151\055\151\156\143\056\157\162\147 -+END -+CKA_SERIAL_NUMBER MULTILINE_OCTAL -+\002\011\000\350\216\266\311\370\052\024\050 -+END -+CKA_VALUE MULTILINE_OCTAL -+\060\202\010\016\060\202\005\366\240\003\002\001\002\002\011\000 -+\350\216\266\311\370\052\024\050\060\015\006\011\052\206\110\206 -+\367\015\001\001\005\005\000\060\201\274\061\013\060\011\006\003 -+\125\004\006\023\002\125\123\061\020\060\016\006\003\125\004\010 -+\023\007\111\156\144\151\141\156\141\061\025\060\023\006\003\125 -+\004\007\023\014\111\156\144\151\141\156\141\160\157\154\151\163 -+\061\050\060\046\006\003\125\004\012\023\037\123\157\146\164\167 -+\141\162\145\040\151\156\040\164\150\145\040\120\165\142\154\151 -+\143\040\111\156\164\145\162\145\163\164\061\023\060\021\006\003 -+\125\004\013\023\012\150\157\163\164\155\141\163\164\145\162\061 -+\036\060\034\006\003\125\004\003\023\025\103\145\162\164\151\146 -+\151\143\141\164\145\040\101\165\164\150\157\162\151\164\171\061 -+\045\060\043\006\011\052\206\110\206\367\015\001\011\001\026\026 -+\150\157\163\164\155\141\163\164\145\162\100\163\160\151\055\151 -+\156\143\056\157\162\147\060\036\027\015\060\070\060\065\061\063 -+\060\070\060\067\065\066\132\027\015\061\070\060\065\061\061\060 -+\070\060\067\065\066\132\060\201\274\061\013\060\011\006\003\125 -+\004\006\023\002\125\123\061\020\060\016\006\003\125\004\010\023 -+\007\111\156\144\151\141\156\141\061\025\060\023\006\003\125\004 -+\007\023\014\111\156\144\151\141\156\141\160\157\154\151\163\061 -+\050\060\046\006\003\125\004\012\023\037\123\157\146\164\167\141 -+\162\145\040\151\156\040\164\150\145\040\120\165\142\154\151\143 -+\040\111\156\164\145\162\145\163\164\061\023\060\021\006\003\125 -+\004\013\023\012\150\157\163\164\155\141\163\164\145\162\061\036 -+\060\034\006\003\125\004\003\023\025\103\145\162\164\151\146\151 -+\143\141\164\145\040\101\165\164\150\157\162\151\164\171\061\045 -+\060\043\006\011\052\206\110\206\367\015\001\011\001\026\026\150 -+\157\163\164\155\141\163\164\145\162\100\163\160\151\055\151\156 -+\143\056\157\162\147\060\202\002\042\060\015\006\011\052\206\110 -+\206\367\015\001\001\001\005\000\003\202\002\017\000\060\202\002 -+\012\002\202\002\001\000\334\066\346\107\102\302\304\121\165\051 -+\207\100\303\330\216\041\006\322\030\116\353\357\040\275\220\074 -+\205\020\023\214\051\133\224\143\366\364\055\361\006\102\221\271 -+\031\304\102\151\010\277\213\066\105\352\050\005\063\111\110\240 -+\047\103\223\065\212\101\330\170\263\360\357\263\156\055\335\321 -+\313\175\352\364\165\046\323\076\220\072\356\327\347\054\004\265 -+\174\341\365\174\305\116\357\167\275\134\242\223\063\222\316\175 -+\201\110\317\153\265\042\054\010\203\375\323\325\317\073\055\375 -+\265\111\220\133\366\255\115\023\312\336\323\246\235\123\121\161 -+\143\106\370\112\026\134\230\356\055\155\232\026\241\166\220\342 -+\140\103\231\326\211\326\154\056\172\230\262\013\003\054\343\172 -+\117\307\335\343\314\343\112\152\215\171\122\372\364\301\257\056 -+\217\052\010\313\033\051\202\222\162\103\274\316\210\251\252\247 -+\212\121\103\125\205\232\067\003\170\223\310\360\275\264\101\310 -+\007\102\232\313\065\227\172\212\201\145\336\035\124\010\001\361 -+\144\134\267\027\032\121\274\036\303\131\207\166\030\026\230\356 -+\277\366\147\201\213\006\065\305\113\155\131\031\307\322\306\110 -+\276\156\024\050\203\112\020\234\033\365\157\274\251\216\365\151 -+\376\262\301\125\314\347\024\311\371\133\024\123\121\007\352\316 -+\075\344\117\050\037\074\141\011\327\063\322\156\247\156\324\307 -+\023\011\157\153\135\024\356\235\211\033\245\152\362\366\370\320 -+\162\216\352\162\037\057\064\152\051\012\305\012\354\034\100\205 -+\022\367\246\245\323\117\255\300\205\214\114\174\163\040\314\123 -+\030\361\262\130\114\001\365\277\352\144\325\134\071\305\316\154 -+\314\123\132\126\272\101\017\045\337\153\120\266\307\212\240\275 -+\002\302\305\073\125\245\262\144\042\204\121\050\126\256\061\356 -+\136\373\013\026\115\106\005\221\200\104\355\254\155\360\127\250 -+\372\353\141\110\240\313\033\263\037\216\315\305\041\167\003\204 -+\036\374\254\243\103\010\143\214\355\371\047\357\264\260\135\147 -+\326\117\355\320\213\076\135\133\311\221\275\226\002\204\075\305 -+\115\274\102\077\164\375\074\135\254\134\110\066\136\207\061\057 -+\030\154\304\150\356\241\213\311\131\320\030\343\000\200\263\124 -+\047\056\231\360\025\123\002\003\001\000\001\243\202\002\017\060 -+\202\002\013\060\035\006\003\125\035\016\004\026\004\024\064\161 -+\321\070\327\025\066\203\107\153\327\067\144\102\073\216\215\122 -+\235\253\060\201\361\006\003\125\035\043\004\201\351\060\201\346 -+\200\024\064\161\321\070\327\025\066\203\107\153\327\067\144\102 -+\073\216\215\122\235\253\241\201\302\244\201\277\060\201\274\061 -+\013\060\011\006\003\125\004\006\023\002\125\123\061\020\060\016 -+\006\003\125\004\010\023\007\111\156\144\151\141\156\141\061\025 -+\060\023\006\003\125\004\007\023\014\111\156\144\151\141\156\141 -+\160\157\154\151\163\061\050\060\046\006\003\125\004\012\023\037 -+\123\157\146\164\167\141\162\145\040\151\156\040\164\150\145\040 -+\120\165\142\154\151\143\040\111\156\164\145\162\145\163\164\061 -+\023\060\021\006\003\125\004\013\023\012\150\157\163\164\155\141 -+\163\164\145\162\061\036\060\034\006\003\125\004\003\023\025\103 -+\145\162\164\151\146\151\143\141\164\145\040\101\165\164\150\157 -+\162\151\164\171\061\045\060\043\006\011\052\206\110\206\367\015 -+\001\011\001\026\026\150\157\163\164\155\141\163\164\145\162\100 -+\163\160\151\055\151\156\143\056\157\162\147\202\011\000\350\216 -+\266\311\370\052\024\050\060\017\006\003\125\035\023\001\001\377 -+\004\005\060\003\001\001\377\060\021\006\011\140\206\110\001\206 -+\370\102\001\001\004\004\003\002\000\007\060\011\006\003\125\035 -+\022\004\002\060\000\060\056\006\011\140\206\110\001\206\370\102 -+\001\015\004\041\026\037\123\157\146\164\167\141\162\145\040\151 -+\156\040\164\150\145\040\120\165\142\154\151\143\040\111\156\164 -+\145\162\145\163\164\060\060\006\011\140\206\110\001\206\370\102 -+\001\004\004\043\026\041\150\164\164\160\163\072\057\057\143\141 -+\056\163\160\151\055\151\156\143\056\157\162\147\057\143\141\055 -+\143\162\154\056\160\145\155\060\062\006\011\140\206\110\001\206 -+\370\102\001\003\004\045\026\043\150\164\164\160\163\072\057\057 -+\143\141\056\163\160\151\055\151\156\143\056\157\162\147\057\143 -+\145\162\164\055\143\162\154\056\160\145\155\060\041\006\003\125 -+\035\021\004\032\060\030\201\026\150\157\163\164\155\141\163\164 -+\145\162\100\163\160\151\055\151\156\143\056\157\162\147\060\016 -+\006\003\125\035\017\001\001\377\004\004\003\002\001\006\060\015 -+\006\011\052\206\110\206\367\015\001\001\005\005\000\003\202\002 -+\001\000\264\315\275\340\271\352\262\003\053\176\062\351\336\162 -+\077\311\113\202\136\235\342\257\125\011\242\014\124\350\317\030 -+\074\050\040\035\251\273\003\002\057\122\071\042\371\027\317\255 -+\147\220\263\003\177\330\025\343\153\176\273\233\126\001\257\065 -+\324\332\271\307\147\027\233\324\325\016\067\263\040\101\056\014 -+\001\304\133\371\145\076\302\141\350\322\360\152\225\160\303\306 -+\157\325\065\244\254\131\162\341\211\337\241\240\235\044\275\051 -+\171\351\141\052\331\323\036\311\106\244\010\170\101\222\162\017 -+\253\024\165\355\011\360\242\360\134\357\303\012\142\040\267\302 -+\050\146\256\114\057\056\217\105\143\046\226\360\356\061\346\213 -+\125\233\252\072\371\202\071\035\210\074\342\007\165\032\341\017 -+\261\060\274\161\062\322\072\376\372\241\211\363\103\054\326\162 -+\304\171\247\025\110\005\300\330\055\162\002\343\313\075\026\152 -+\272\311\270\021\020\342\111\205\314\226\107\140\005\045\056\357 -+\165\131\063\365\107\031\026\357\332\154\137\007\310\246\120\266 -+\035\313\146\064\045\374\146\203\353\305\266\060\101\370\106\104 -+\142\250\301\014\124\346\352\114\132\050\346\256\306\267\376\177 -+\073\226\250\056\356\307\150\076\335\000\075\051\257\052\143\253 -+\137\356\111\052\055\305\334\373\321\306\323\321\227\126\122\206 -+\266\224\353\324\140\121\267\374\036\233\314\002\233\324\037\217 -+\371\112\217\266\056\050\073\027\314\305\246\005\343\322\323\265 -+\306\003\311\341\110\102\233\313\077\344\027\340\376\015\001\225 -+\011\272\270\015\161\344\011\160\167\102\330\115\341\102\251\140 -+\203\327\027\211\103\322\324\335\247\030\266\253\324\044\045\207 -+\265\324\342\374\056\042\151\275\255\150\054\377\162\265\230\252 -+\006\234\347\052\152\270\241\223\166\316\260\363\177\234\341\340 -+\117\270\330\206\106\245\063\002\054\045\141\067\052\222\310\254 -+\201\164\150\143\207\063\166\275\005\177\136\325\325\002\155\275 -+\257\377\052\132\252\111\354\230\171\107\123\221\366\016\064\132 -+\311\245\306\353\262\343\305\254\266\240\160\065\273\310\121\151 -+\320\362\265\242\062\156\274\077\240\067\071\174\161\066\246\005 -+\337\014\022\344\026\247\305\326\313\143\243\225\160\077\346\004 -+\243\140 -+END -+ -+# Trust for Certificate "Software in the Public Interest, Inc. Root CA (2008)" -+CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST -+CKA_TOKEN CK_BBOOL CK_TRUE -+CKA_PRIVATE CK_BBOOL CK_FALSE -+CKA_MODIFIABLE CK_BBOOL CK_FALSE -+CKA_LABEL UTF8 "Software in the Public Interest, Inc. Root CA (2008)" -+CKA_CERT_SHA1_HASH MULTILINE_OCTAL -+\257\160\210\103\203\202\002\025\315\141\306\274\354\375\067\044 -+\251\220\103\034 -+END -+CKA_CERT_MD5_HASH MULTILINE_OCTAL -+\052\107\237\140\273\203\164\157\001\003\327\013\015\366\015\170 -+END -+CKA_ISSUER MULTILINE_OCTAL -+\060\201\274\061\013\060\011\006\003\125\004\006\023\002\125\123 -+\061\020\060\016\006\003\125\004\010\023\007\111\156\144\151\141 -+\156\141\061\025\060\023\006\003\125\004\007\023\014\111\156\144 -+\151\141\156\141\160\157\154\151\163\061\050\060\046\006\003\125 -+\004\012\023\037\123\157\146\164\167\141\162\145\040\151\156\040 -+\164\150\145\040\120\165\142\154\151\143\040\111\156\164\145\162 -+\145\163\164\061\023\060\021\006\003\125\004\013\023\012\150\157 -+\163\164\155\141\163\164\145\162\061\036\060\034\006\003\125\004 -+\003\023\025\103\145\162\164\151\146\151\143\141\164\145\040\101 -+\165\164\150\157\162\151\164\171\061\045\060\043\006\011\052\206 -+\110\206\367\015\001\011\001\026\026\150\157\163\164\155\141\163 -+\164\145\162\100\163\160\151\055\151\156\143\056\157\162\147 -+END -+CKA_SERIAL_NUMBER MULTILINE_OCTAL -+\002\011\000\350\216\266\311\370\052\024\050 -+END -+CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -+CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -+CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR -+CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE diff --git a/multilib/lib32-nss/distrust-diginotar.patch b/multilib/lib32-nss/distrust-diginotar.patch deleted file mode 100644 index 60c63fc68..000000000 --- a/multilib/lib32-nss/distrust-diginotar.patch +++ /dev/null @@ -1,1675 +0,0 @@ -Index: security/nss/lib/ckfw/builtins/certdata.c -=================================================================== -RCS file: /cvsroot/mozilla/security/nss/lib/ckfw/builtins/certdata.c,v -retrieving revision 1.67.2.10 -retrieving revision 1.67.2.11 -diff -u -r1.67.2.10 -r1.67.2.11 ---- security/nss/lib/ckfw/builtins/certdata.c 1 Aug 2011 06:40:03 -0000 1.67.2.10 -+++ security/nss/lib/ckfw/builtins/certdata.c 30 Aug 2011 20:04:39 -0000 1.67.2.11 -@@ -35,7 +35,7 @@ - * - * ***** END LICENSE BLOCK ***** */ - #ifdef DEBUG --static const char CVS_ID[] = "@(#) $RCSfile: certdata.c,v $ $Revision: 1.67.2.10 $ $Date: 2011/08/01 06:40:03 $""; @(#) $RCSfile: certdata.c,v $ $Revision: 1.67.2.10 $ $Date: 2011/08/01 06:40:03 $"; -+static const char CVS_ID[] = "@(#) $RCSfile: certdata.c,v $ $Revision: 1.67.2.11 $ $Date: 2011/08/30 20:04:39 $""; @(#) $RCSfile: certdata.c,v $ $Revision: 1.67.2.11 $ $Date: 2011/08/30 20:04:39 $"; - #endif /* DEBUG */ - - #ifndef BUILTINS_H -@@ -1039,12 +1039,6 @@ - static const CK_ATTRIBUTE_TYPE nss_builtins_types_327 [] = { - CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED - }; --static const CK_ATTRIBUTE_TYPE nss_builtins_types_328 [] = { -- CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERTIFICATE_TYPE, CKA_SUBJECT, CKA_ID, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_VALUE --}; --static const CK_ATTRIBUTE_TYPE nss_builtins_types_329 [] = { -- CKA_CLASS, CKA_TOKEN, CKA_PRIVATE, CKA_MODIFIABLE, CKA_LABEL, CKA_CERT_SHA1_HASH, CKA_CERT_MD5_HASH, CKA_ISSUER, CKA_SERIAL_NUMBER, CKA_TRUST_SERVER_AUTH, CKA_TRUST_EMAIL_PROTECTION, CKA_TRUST_CODE_SIGNING, CKA_TRUST_STEP_UP_APPROVED --}; - #ifdef DEBUG - static const NSSItem nss_builtins_items_0 [] = { - { (void *)&cko_data, (PRUint32)sizeof(CK_OBJECT_CLASS) }, -@@ -1053,7 +1047,7 @@ - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)"CVS ID", (PRUint32)7 }, - { (void *)"NSS", (PRUint32)4 }, -- { (void *)"@(#) $RCSfile: certdata.c,v $ $Revision: 1.67.2.10 $ $Date: 2011/08/01 06:40:03 $""; @(#) $RCSfile: certdata.c,v $ $Revision: 1.67.2.10 $ $Date: 2011/08/01 06:40:03 $", (PRUint32)164 } -+ { (void *)"@(#) $RCSfile: certdata.c,v $ $Revision: 1.67.2.11 $ $Date: 2011/08/30 20:04:39 $""; @(#) $RCSfile: certdata.c,v $ $Revision: 1.67.2.11 $ $Date: 2011/08/30 20:04:39 $", (PRUint32)165 } - }; - #endif /* DEBUG */ - static const NSSItem nss_builtins_items_1 [] = { -@@ -12506,151 +12500,6 @@ - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -- { (void *)"DigiNotar Root CA", (PRUint32)18 }, -- { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, -- { (void *)"\060\137\061\013\060\011\006\003\125\004\006\023\002\116\114\061" --"\022\060\020\006\003\125\004\012\023\011\104\151\147\151\116\157" --"\164\141\162\061\032\060\030\006\003\125\004\003\023\021\104\151" --"\147\151\116\157\164\141\162\040\122\157\157\164\040\103\101\061" --"\040\060\036\006\011\052\206\110\206\367\015\001\011\001\026\021" --"\151\156\146\157\100\144\151\147\151\156\157\164\141\162\056\156" --"\154" --, (PRUint32)97 }, -- { (void *)"0", (PRUint32)2 }, -- { (void *)"\060\137\061\013\060\011\006\003\125\004\006\023\002\116\114\061" --"\022\060\020\006\003\125\004\012\023\011\104\151\147\151\116\157" --"\164\141\162\061\032\060\030\006\003\125\004\003\023\021\104\151" --"\147\151\116\157\164\141\162\040\122\157\157\164\040\103\101\061" --"\040\060\036\006\011\052\206\110\206\367\015\001\011\001\026\021" --"\151\156\146\157\100\144\151\147\151\156\157\164\141\162\056\156" --"\154" --, (PRUint32)97 }, -- { (void *)"\002\020\014\166\332\234\221\014\116\054\236\376\025\320\130\223" --"\074\114" --, (PRUint32)18 }, -- { (void *)"\060\202\005\212\060\202\003\162\240\003\002\001\002\002\020\014" --"\166\332\234\221\014\116\054\236\376\025\320\130\223\074\114\060" --"\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\137" --"\061\013\060\011\006\003\125\004\006\023\002\116\114\061\022\060" --"\020\006\003\125\004\012\023\011\104\151\147\151\116\157\164\141" --"\162\061\032\060\030\006\003\125\004\003\023\021\104\151\147\151" --"\116\157\164\141\162\040\122\157\157\164\040\103\101\061\040\060" --"\036\006\011\052\206\110\206\367\015\001\011\001\026\021\151\156" --"\146\157\100\144\151\147\151\156\157\164\141\162\056\156\154\060" --"\036\027\015\060\067\060\065\061\066\061\067\061\071\063\066\132" --"\027\015\062\065\060\063\063\061\061\070\061\071\062\061\132\060" --"\137\061\013\060\011\006\003\125\004\006\023\002\116\114\061\022" --"\060\020\006\003\125\004\012\023\011\104\151\147\151\116\157\164" --"\141\162\061\032\060\030\006\003\125\004\003\023\021\104\151\147" --"\151\116\157\164\141\162\040\122\157\157\164\040\103\101\061\040" --"\060\036\006\011\052\206\110\206\367\015\001\011\001\026\021\151" --"\156\146\157\100\144\151\147\151\156\157\164\141\162\056\156\154" --"\060\202\002\042\060\015\006\011\052\206\110\206\367\015\001\001" --"\001\005\000\003\202\002\017\000\060\202\002\012\002\202\002\001" --"\000\254\260\130\301\000\275\330\041\010\013\053\232\376\156\126" --"\060\005\237\033\167\220\020\101\134\303\015\207\021\167\216\201" --"\361\312\174\351\214\152\355\070\164\065\273\332\337\371\273\300" --"\011\067\264\226\163\201\175\063\032\230\071\367\223\157\225\177" --"\075\271\261\165\207\272\121\110\350\213\160\076\225\004\305\330" --"\266\303\026\331\210\260\261\207\035\160\332\206\264\017\024\213" --"\172\317\020\321\164\066\242\022\173\167\206\112\171\346\173\337" --"\002\021\150\245\116\206\256\064\130\233\044\023\170\126\042\045" --"\036\001\213\113\121\161\373\202\314\131\226\151\210\132\150\123" --"\305\271\015\002\067\313\113\274\146\112\220\176\052\013\005\007" --"\355\026\137\125\220\165\330\106\311\033\203\342\010\276\361\043" --"\314\231\035\326\052\017\203\040\025\130\047\202\056\372\342\042" --"\302\111\261\271\001\201\152\235\155\235\100\167\150\166\116\041" --"\052\155\204\100\205\116\166\231\174\202\363\363\267\002\131\324" --"\046\001\033\216\337\255\123\006\321\256\030\335\342\262\072\313" --"\327\210\070\216\254\133\051\271\031\323\230\371\030\003\317\110" --"\202\206\146\013\033\151\017\311\353\070\210\172\046\032\005\114" --"\222\327\044\324\226\362\254\122\055\243\107\325\122\366\077\376" --"\316\204\006\160\246\252\076\242\362\266\126\064\030\127\242\344" --"\201\155\347\312\360\152\323\307\221\153\002\203\101\174\025\357" --"\153\232\144\136\343\320\074\345\261\353\173\135\206\373\313\346" --"\167\111\315\243\145\334\367\271\234\270\344\013\137\223\317\314" --"\060\032\062\034\316\034\143\225\245\371\352\341\164\213\236\351" --"\053\251\060\173\240\030\037\016\030\013\345\133\251\323\321\154" --"\036\007\147\217\221\113\251\212\274\322\146\252\223\001\210\262" --"\221\372\061\134\325\246\301\122\010\011\315\012\143\242\323\042" --"\246\350\241\331\071\006\227\365\156\215\002\220\214\024\173\077" --"\200\315\033\234\272\304\130\162\043\257\266\126\237\306\172\102" --"\063\051\007\077\202\311\346\037\005\015\315\114\050\066\213\323" --"\310\076\034\306\210\357\136\356\211\144\351\035\353\332\211\176" --"\062\246\151\321\335\314\210\237\321\320\311\146\041\334\006\147" --"\305\224\172\232\155\142\114\175\314\340\144\200\262\236\107\216" --"\243\002\003\001\000\001\243\102\060\100\060\017\006\003\125\035" --"\023\001\001\377\004\005\060\003\001\001\377\060\016\006\003\125" --"\035\017\001\001\377\004\004\003\002\001\006\060\035\006\003\125" --"\035\016\004\026\004\024\210\150\277\340\216\065\304\073\070\153" --"\142\367\050\073\204\201\310\014\327\115\060\015\006\011\052\206" --"\110\206\367\015\001\001\005\005\000\003\202\002\001\000\073\002" --"\215\313\074\060\350\156\240\255\362\163\263\137\236\045\023\004" --"\005\323\366\343\213\273\013\171\316\123\336\344\226\305\321\257" --"\163\274\325\303\320\100\125\174\100\177\315\033\137\011\325\362" --"\174\237\150\035\273\135\316\172\071\302\214\326\230\173\305\203" --"\125\250\325\175\100\312\340\036\367\211\136\143\135\241\023\302" --"\135\212\266\212\174\000\363\043\303\355\205\137\161\166\360\150" --"\143\252\105\041\071\110\141\170\066\334\361\103\223\324\045\307" --"\362\200\145\341\123\002\165\121\374\172\072\357\067\253\204\050" --"\127\014\330\324\324\231\126\154\343\242\376\131\204\264\061\350" --"\063\370\144\224\224\121\227\253\071\305\113\355\332\335\200\013" --"\157\174\051\015\304\216\212\162\015\347\123\024\262\140\101\075" --"\204\221\061\150\075\047\104\333\345\336\364\372\143\105\310\114" --"\076\230\365\077\101\272\116\313\067\015\272\146\230\361\335\313" --"\237\134\367\124\066\202\153\054\274\023\141\227\102\370\170\273" --"\314\310\242\237\312\360\150\275\153\035\262\337\215\157\007\235" --"\332\216\147\307\107\036\312\271\277\052\102\221\267\143\123\146" --"\361\102\243\341\364\132\115\130\153\265\344\244\063\255\134\160" --"\035\334\340\362\353\163\024\221\232\003\301\352\000\145\274\007" --"\374\317\022\021\042\054\256\240\275\072\340\242\052\330\131\351" --"\051\323\030\065\244\254\021\137\031\265\265\033\377\042\112\134" --"\306\172\344\027\357\040\251\247\364\077\255\212\247\232\004\045" --"\235\016\312\067\346\120\375\214\102\051\004\232\354\271\317\113" --"\162\275\342\010\066\257\043\057\142\345\312\001\323\160\333\174" --"\202\043\054\026\061\014\306\066\007\220\172\261\037\147\130\304" --"\073\130\131\211\260\214\214\120\263\330\206\313\150\243\304\012" --"\347\151\113\040\316\301\036\126\113\225\251\043\150\330\060\330" --"\303\353\260\125\121\315\345\375\053\270\365\273\021\237\123\124" --"\366\064\031\214\171\011\066\312\141\027\045\027\013\202\230\163" --"\014\167\164\303\325\015\307\250\022\114\307\247\124\161\107\056" --"\054\032\175\311\343\053\073\110\336\047\204\247\143\066\263\175" --"\217\240\144\071\044\015\075\173\207\257\146\134\164\033\113\163" --"\262\345\214\360\206\231\270\345\305\337\204\301\267\353" --, (PRUint32)1422 } --}; --static const NSSItem nss_builtins_items_187 [] = { -- { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, -- { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, -- { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -- { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -- { (void *)"DigiNotar Root CA", (PRUint32)18 }, -- { (void *)"\300\140\355\104\313\330\201\275\016\370\154\013\242\207\335\317" --"\201\147\107\214" --, (PRUint32)20 }, -- { (void *)"\172\171\124\115\007\222\073\133\377\101\360\016\307\071\242\230" --, (PRUint32)16 }, -- { (void *)"\060\137\061\013\060\011\006\003\125\004\006\023\002\116\114\061" --"\022\060\020\006\003\125\004\012\023\011\104\151\147\151\116\157" --"\164\141\162\061\032\060\030\006\003\125\004\003\023\021\104\151" --"\147\151\116\157\164\141\162\040\122\157\157\164\040\103\101\061" --"\040\060\036\006\011\052\206\110\206\367\015\001\011\001\026\021" --"\151\156\146\157\100\144\151\147\151\156\157\164\141\162\056\156" --"\154" --, (PRUint32)97 }, -- { (void *)"\002\020\014\166\332\234\221\014\116\054\236\376\025\320\130\223" --"\074\114" --, (PRUint32)18 }, -- { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, -- { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, -- { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, -- { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } --}; --static const NSSItem nss_builtins_items_188 [] = { -- { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, -- { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, -- { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -- { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)"Network Solutions Certificate Authority", (PRUint32)40 }, - { (void *)&ckc_x_509, (PRUint32)sizeof(CK_CERTIFICATE_TYPE) }, - { (void *)"\060\142\061\013\060\011\006\003\125\004\006\023\002\125\123\061" -@@ -12738,7 +12587,7 @@ - "\244\140\114\260\125\240\240\173\127\262" - , (PRUint32)1002 } - }; --static const NSSItem nss_builtins_items_189 [] = { -+static const NSSItem nss_builtins_items_187 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -12765,7 +12614,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_190 [] = { -+static const NSSItem nss_builtins_items_188 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -12874,7 +12723,7 @@ - "\333" - , (PRUint32)1217 } - }; --static const NSSItem nss_builtins_items_191 [] = { -+static const NSSItem nss_builtins_items_189 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -12902,7 +12751,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_192 [] = { -+static const NSSItem nss_builtins_items_190 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -12976,7 +12825,7 @@ - "\334\335\363\377\035\054\072\026\127\331\222\071\326" - , (PRUint32)653 } - }; --static const NSSItem nss_builtins_items_193 [] = { -+static const NSSItem nss_builtins_items_191 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13005,7 +12854,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_194 [] = { -+static const NSSItem nss_builtins_items_192 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13097,7 +12946,7 @@ - "\321\236\164\310\166\147" - , (PRUint32)1078 } - }; --static const NSSItem nss_builtins_items_195 [] = { -+static const NSSItem nss_builtins_items_193 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13122,7 +12971,7 @@ - { (void *)&ckt_netscape_untrusted, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_196 [] = { -+static const NSSItem nss_builtins_items_194 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13219,7 +13068,7 @@ - "\253\205\322\140\126\132" - , (PRUint32)1030 } - }; --static const NSSItem nss_builtins_items_197 [] = { -+static const NSSItem nss_builtins_items_195 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13247,7 +13096,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_198 [] = { -+static const NSSItem nss_builtins_items_196 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13332,7 +13181,7 @@ - "\164" - , (PRUint32)897 } - }; --static const NSSItem nss_builtins_items_199 [] = { -+static const NSSItem nss_builtins_items_197 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13358,7 +13207,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_200 [] = { -+static const NSSItem nss_builtins_items_198 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13455,7 +13304,7 @@ - "\374\276\337\012\015" - , (PRUint32)1013 } - }; --static const NSSItem nss_builtins_items_201 [] = { -+static const NSSItem nss_builtins_items_199 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13484,7 +13333,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_202 [] = { -+static const NSSItem nss_builtins_items_200 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13595,7 +13444,7 @@ - "\241\361\017\033\037\075\236\004\203\335\226\331\035\072\224" - , (PRUint32)1151 } - }; --static const NSSItem nss_builtins_items_203 [] = { -+static const NSSItem nss_builtins_items_201 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13627,7 +13476,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_204 [] = { -+static const NSSItem nss_builtins_items_202 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13781,7 +13630,7 @@ - "\103\307\003\340\067\116\135\012\334\131\040\045" - , (PRUint32)1964 } - }; --static const NSSItem nss_builtins_items_205 [] = { -+static const NSSItem nss_builtins_items_203 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13809,7 +13658,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_206 [] = { -+static const NSSItem nss_builtins_items_204 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13890,7 +13739,7 @@ - "\300\226\130\057\352\273\106\327\273\344\331\056" - , (PRUint32)940 } - }; --static const NSSItem nss_builtins_items_207 [] = { -+static const NSSItem nss_builtins_items_205 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -13913,7 +13762,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_208 [] = { -+static const NSSItem nss_builtins_items_206 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14047,7 +13896,7 @@ - "\005\211\374\170\326\134\054\046\103\251" - , (PRUint32)1642 } - }; --static const NSSItem nss_builtins_items_209 [] = { -+static const NSSItem nss_builtins_items_207 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14075,7 +13924,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_210 [] = { -+static const NSSItem nss_builtins_items_208 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14180,7 +14029,7 @@ - "\334\144\047\027\214\132\267\332\164\050\315\227\344\275" - , (PRUint32)1198 } - }; --static const NSSItem nss_builtins_items_211 [] = { -+static const NSSItem nss_builtins_items_209 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14207,7 +14056,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_212 [] = { -+static const NSSItem nss_builtins_items_210 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14312,7 +14161,7 @@ - "\016\121\075\157\373\226\126\200\342\066\027\321\334\344" - , (PRUint32)1198 } - }; --static const NSSItem nss_builtins_items_213 [] = { -+static const NSSItem nss_builtins_items_211 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14339,7 +14188,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_214 [] = { -+static const NSSItem nss_builtins_items_212 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14432,7 +14281,7 @@ - "\230" - , (PRUint32)993 } - }; --static const NSSItem nss_builtins_items_215 [] = { -+static const NSSItem nss_builtins_items_213 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14459,7 +14308,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_216 [] = { -+static const NSSItem nss_builtins_items_214 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14548,7 +14397,7 @@ - "\126\144\127" - , (PRUint32)931 } - }; --static const NSSItem nss_builtins_items_217 [] = { -+static const NSSItem nss_builtins_items_215 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14575,7 +14424,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_218 [] = { -+static const NSSItem nss_builtins_items_216 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14656,7 +14505,7 @@ - "\000\147\240\161\000\202\110" - , (PRUint32)919 } - }; --static const NSSItem nss_builtins_items_219 [] = { -+static const NSSItem nss_builtins_items_217 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14680,7 +14529,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_220 [] = { -+static const NSSItem nss_builtins_items_218 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14762,7 +14611,7 @@ - "\316\145\006\056\135\322\052\123\164\136\323\156\047\236\217" - , (PRUint32)943 } - }; --static const NSSItem nss_builtins_items_221 [] = { -+static const NSSItem nss_builtins_items_219 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14786,7 +14635,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_222 [] = { -+static const NSSItem nss_builtins_items_220 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14867,7 +14716,7 @@ - "\246\210\070\316\125" - , (PRUint32)933 } - }; --static const NSSItem nss_builtins_items_223 [] = { -+static const NSSItem nss_builtins_items_221 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -14890,7 +14739,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_224 [] = { -+static const NSSItem nss_builtins_items_222 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15009,7 +14858,7 @@ - "\201\370\021\234" - , (PRUint32)1460 } - }; --static const NSSItem nss_builtins_items_225 [] = { -+static const NSSItem nss_builtins_items_223 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15035,7 +14884,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_226 [] = { -+static const NSSItem nss_builtins_items_224 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15169,7 +15018,7 @@ - "\311\234\220\332\354\251\102\074\255\266\002" - , (PRUint32)1307 } - }; --static const NSSItem nss_builtins_items_227 [] = { -+static const NSSItem nss_builtins_items_225 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15207,7 +15056,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_228 [] = { -+static const NSSItem nss_builtins_items_226 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15285,7 +15134,7 @@ - "\366\324\357\277\114\210\150" - , (PRUint32)855 } - }; --static const NSSItem nss_builtins_items_229 [] = { -+static const NSSItem nss_builtins_items_227 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15309,7 +15158,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_230 [] = { -+static const NSSItem nss_builtins_items_228 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15387,7 +15236,7 @@ - "\246\347\313\100\003\335\171" - , (PRUint32)855 } - }; --static const NSSItem nss_builtins_items_231 [] = { -+static const NSSItem nss_builtins_items_229 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15411,7 +15260,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_232 [] = { -+static const NSSItem nss_builtins_items_230 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15538,7 +15387,7 @@ - "\320\352\111\242\034\215\122\024\246\012\223" - , (PRUint32)1515 } - }; --static const NSSItem nss_builtins_items_233 [] = { -+static const NSSItem nss_builtins_items_231 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15566,7 +15415,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_234 [] = { -+static const NSSItem nss_builtins_items_232 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15640,7 +15489,7 @@ - "\366\356\260\132\116\111\104\124\130\137\102\203" - , (PRUint32)828 } - }; --static const NSSItem nss_builtins_items_235 [] = { -+static const NSSItem nss_builtins_items_233 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15663,7 +15512,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_236 [] = { -+static const NSSItem nss_builtins_items_234 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15739,7 +15588,7 @@ - "\011\333\212\101\202\236\146\233\021" - , (PRUint32)857 } - }; --static const NSSItem nss_builtins_items_237 [] = { -+static const NSSItem nss_builtins_items_235 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15762,7 +15611,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_238 [] = { -+static const NSSItem nss_builtins_items_236 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15845,7 +15694,7 @@ - "\262\033\211\124" - , (PRUint32)932 } - }; --static const NSSItem nss_builtins_items_239 [] = { -+static const NSSItem nss_builtins_items_237 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15869,7 +15718,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_240 [] = { -+static const NSSItem nss_builtins_items_238 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15969,7 +15818,7 @@ - "\021\055" - , (PRUint32)1026 } - }; --static const NSSItem nss_builtins_items_241 [] = { -+static const NSSItem nss_builtins_items_239 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -15999,7 +15848,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_242 [] = { -+static const NSSItem nss_builtins_items_240 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16073,7 +15922,7 @@ - "\367\130\077\056\162\002\127\243\217\241\024\056" - , (PRUint32)652 } - }; --static const NSSItem nss_builtins_items_243 [] = { -+static const NSSItem nss_builtins_items_241 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16102,7 +15951,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_244 [] = { -+static const NSSItem nss_builtins_items_242 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16208,7 +16057,7 @@ - "\061\324\100\032\142\064\066\077\065\001\256\254\143\240" - , (PRUint32)1070 } - }; --static const NSSItem nss_builtins_items_245 [] = { -+static const NSSItem nss_builtins_items_243 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16240,7 +16089,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_246 [] = { -+static const NSSItem nss_builtins_items_244 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16319,7 +16168,7 @@ - "\017\212" - , (PRUint32)690 } - }; --static const NSSItem nss_builtins_items_247 [] = { -+static const NSSItem nss_builtins_items_245 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16349,7 +16198,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_248 [] = { -+static const NSSItem nss_builtins_items_246 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16464,7 +16313,7 @@ - "\354\315\202\141\361\070\346\117\227\230\052\132\215" - , (PRUint32)1213 } - }; --static const NSSItem nss_builtins_items_249 [] = { -+static const NSSItem nss_builtins_items_247 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16496,7 +16345,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_250 [] = { -+static const NSSItem nss_builtins_items_248 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16594,7 +16443,7 @@ - "\055\247\330\206\052\335\056\020" - , (PRUint32)904 } - }; --static const NSSItem nss_builtins_items_251 [] = { -+static const NSSItem nss_builtins_items_249 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16627,7 +16476,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_252 [] = { -+static const NSSItem nss_builtins_items_250 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16729,7 +16578,7 @@ - "\330\316\304\143\165\077\131\107\261" - , (PRUint32)1049 } - }; --static const NSSItem nss_builtins_items_253 [] = { -+static const NSSItem nss_builtins_items_251 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16759,7 +16608,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_254 [] = { -+static const NSSItem nss_builtins_items_252 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16878,7 +16727,7 @@ - "\370\161\012\334\271\374\175\062\140\346\353\257\212\001" - , (PRUint32)1486 } - }; --static const NSSItem nss_builtins_items_255 [] = { -+static const NSSItem nss_builtins_items_253 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16903,7 +16752,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_256 [] = { -+static const NSSItem nss_builtins_items_254 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -16993,7 +16842,7 @@ - "\315\345\250" - , (PRUint32)1043 } - }; --static const NSSItem nss_builtins_items_257 [] = { -+static const NSSItem nss_builtins_items_255 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17017,7 +16866,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_258 [] = { -+static const NSSItem nss_builtins_items_256 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17122,7 +16971,7 @@ - "\115\273\306\104\333\066\313\052\234\216" - , (PRUint32)1258 } - }; --static const NSSItem nss_builtins_items_259 [] = { -+static const NSSItem nss_builtins_items_257 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17147,7 +16996,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_260 [] = { -+static const NSSItem nss_builtins_items_258 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17223,7 +17072,7 @@ - "\002\153\331\132" - , (PRUint32)820 } - }; --static const NSSItem nss_builtins_items_261 [] = { -+static const NSSItem nss_builtins_items_259 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17247,7 +17096,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_262 [] = { -+static const NSSItem nss_builtins_items_260 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17329,7 +17178,7 @@ - "\362" - , (PRUint32)881 } - }; --static const NSSItem nss_builtins_items_263 [] = { -+static const NSSItem nss_builtins_items_261 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17354,7 +17203,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_264 [] = { -+static const NSSItem nss_builtins_items_262 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17470,7 +17319,7 @@ - "\113\076\053\070\007\125\230\136\244" - , (PRUint32)1465 } - }; --static const NSSItem nss_builtins_items_265 [] = { -+static const NSSItem nss_builtins_items_263 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17494,7 +17343,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_266 [] = { -+static const NSSItem nss_builtins_items_264 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17559,7 +17408,7 @@ - "\375\166\004\333\142\273\220\152\003\331\106\065\331\370\174\133" - , (PRUint32)576 } - }; --static const NSSItem nss_builtins_items_267 [] = { -+static const NSSItem nss_builtins_items_265 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17586,7 +17435,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_268 [] = { -+static const NSSItem nss_builtins_items_266 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17651,7 +17500,7 @@ - "\054\163\031\110\151\116\153\174\145\277\017\374\160\316\210\220" - , (PRUint32)576 } - }; --static const NSSItem nss_builtins_items_269 [] = { -+static const NSSItem nss_builtins_items_267 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17678,7 +17527,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_270 [] = { -+static const NSSItem nss_builtins_items_268 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17775,7 +17624,7 @@ - "\202\042\055\172\124\253\160\303\175\042\145\202\160\226" - , (PRUint32)1038 } - }; --static const NSSItem nss_builtins_items_271 [] = { -+static const NSSItem nss_builtins_items_269 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17803,7 +17652,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_272 [] = { -+static const NSSItem nss_builtins_items_270 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17894,7 +17743,7 @@ - "\336\102\343\055\202\361\017\345\372\227" - , (PRUint32)954 } - }; --static const NSSItem nss_builtins_items_273 [] = { -+static const NSSItem nss_builtins_items_271 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -17922,7 +17771,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_274 [] = { -+static const NSSItem nss_builtins_items_272 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18001,7 +17850,7 @@ - "\130\077\137" - , (PRUint32)867 } - }; --static const NSSItem nss_builtins_items_275 [] = { -+static const NSSItem nss_builtins_items_273 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18025,7 +17874,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_276 [] = { -+static const NSSItem nss_builtins_items_274 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18118,7 +17967,7 @@ - "\045\361\224\264\146" - , (PRUint32)997 } - }; --static const NSSItem nss_builtins_items_277 [] = { -+static const NSSItem nss_builtins_items_275 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18145,7 +17994,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_278 [] = { -+static const NSSItem nss_builtins_items_276 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18269,7 +18118,7 @@ - "\156\117\022\176\012\074\235\225" - , (PRUint32)1560 } - }; --static const NSSItem nss_builtins_items_279 [] = { -+static const NSSItem nss_builtins_items_277 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18294,7 +18143,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_280 [] = { -+static const NSSItem nss_builtins_items_278 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18413,7 +18262,7 @@ - "\333\374\046\210\307" - , (PRUint32)1525 } - }; --static const NSSItem nss_builtins_items_281 [] = { -+static const NSSItem nss_builtins_items_279 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18437,7 +18286,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_282 [] = { -+static const NSSItem nss_builtins_items_280 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18593,7 +18442,7 @@ - "\167\110\320" - , (PRUint32)1875 } - }; --static const NSSItem nss_builtins_items_283 [] = { -+static const NSSItem nss_builtins_items_281 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18624,7 +18473,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_284 [] = { -+static const NSSItem nss_builtins_items_282 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18777,7 +18626,7 @@ - "\351\233\256\325\124\300\164\200\321\013\102\237\301" - , (PRUint32)1869 } - }; --static const NSSItem nss_builtins_items_285 [] = { -+static const NSSItem nss_builtins_items_283 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18807,7 +18656,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_286 [] = { -+static const NSSItem nss_builtins_items_284 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18943,7 +18792,7 @@ - "\242\355\264\324\265\145\103\267\223\106\212\323" - , (PRUint32)1532 } - }; --static const NSSItem nss_builtins_items_287 [] = { -+static const NSSItem nss_builtins_items_285 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -18973,7 +18822,7 @@ - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_288 [] = { -+static const NSSItem nss_builtins_items_286 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -19124,7 +18973,7 @@ - "\264" - , (PRUint32)1761 } - }; --static const NSSItem nss_builtins_items_289 [] = { -+static const NSSItem nss_builtins_items_287 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -19154,7 +19003,7 @@ - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_290 [] = { -+static const NSSItem nss_builtins_items_288 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -19290,7 +19139,7 @@ - "\111\043" - , (PRUint32)1522 } - }; --static const NSSItem nss_builtins_items_291 [] = { -+static const NSSItem nss_builtins_items_289 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -19320,7 +19169,7 @@ - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_292 [] = { -+static const NSSItem nss_builtins_items_290 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -19455,7 +19304,7 @@ - "\172\244\047\023\326\117\364\151" - , (PRUint32)1512 } - }; --static const NSSItem nss_builtins_items_293 [] = { -+static const NSSItem nss_builtins_items_291 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -19485,7 +19334,7 @@ - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_294 [] = { -+static const NSSItem nss_builtins_items_292 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -19621,7 +19470,7 @@ - "\302\021\254" - , (PRUint32)1523 } - }; --static const NSSItem nss_builtins_items_295 [] = { -+static const NSSItem nss_builtins_items_293 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -19651,7 +19500,7 @@ - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_296 [] = { -+static const NSSItem nss_builtins_items_294 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -19787,7 +19636,7 @@ - "\147\024\060" - , (PRUint32)1523 } - }; --static const NSSItem nss_builtins_items_297 [] = { -+static const NSSItem nss_builtins_items_295 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -19817,7 +19666,7 @@ - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_298 [] = { -+static const NSSItem nss_builtins_items_296 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -19951,7 +19800,7 @@ - "\217\116\235\306\066\347\134\246\253\022\017\326\317" - , (PRUint32)1501 } - }; --static const NSSItem nss_builtins_items_299 [] = { -+static const NSSItem nss_builtins_items_297 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -19981,7 +19830,7 @@ - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_300 [] = { -+static const NSSItem nss_builtins_items_298 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20115,7 +19964,7 @@ - "\130\113\161\203\237\146\346\254\171\110\376\376\107" - , (PRUint32)1501 } - }; --static const NSSItem nss_builtins_items_301 [] = { -+static const NSSItem nss_builtins_items_299 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20145,7 +19994,7 @@ - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_302 [] = { -+static const NSSItem nss_builtins_items_300 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20280,7 +20129,7 @@ - "\200\246\202\254\344\154\201\106\273\122\205\040\044\370\200\352" - , (PRUint32)1520 } - }; --static const NSSItem nss_builtins_items_303 [] = { -+static const NSSItem nss_builtins_items_301 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20310,7 +20159,7 @@ - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_304 [] = { -+static const NSSItem nss_builtins_items_302 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20438,7 +20287,7 @@ - "\154\174\107\306\327\224\021\041\354\326\132\322\335\217\177\221" - , (PRUint32)1392 } - }; --static const NSSItem nss_builtins_items_305 [] = { -+static const NSSItem nss_builtins_items_303 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20468,7 +20317,7 @@ - { (void *)&ckt_netscape_valid, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_306 [] = { -+static const NSSItem nss_builtins_items_304 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20561,7 +20410,7 @@ - "\342\342\104\276\134\367\352\034\365" - , (PRUint32)969 } - }; --static const NSSItem nss_builtins_items_307 [] = { -+static const NSSItem nss_builtins_items_305 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20589,7 +20438,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_308 [] = { -+static const NSSItem nss_builtins_items_306 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20686,7 +20535,7 @@ - "\364" - , (PRUint32)993 } - }; --static const NSSItem nss_builtins_items_309 [] = { -+static const NSSItem nss_builtins_items_307 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20715,7 +20564,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_310 [] = { -+static const NSSItem nss_builtins_items_308 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20813,7 +20662,7 @@ - "\261\050\272" - , (PRUint32)1011 } - }; --static const NSSItem nss_builtins_items_311 [] = { -+static const NSSItem nss_builtins_items_309 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20842,7 +20691,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_312 [] = { -+static const NSSItem nss_builtins_items_310 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20919,7 +20768,7 @@ - "\007\072\027\144\265\004\265\043\041\231\012\225\073\227\174\357" - , (PRUint32)848 } - }; --static const NSSItem nss_builtins_items_313 [] = { -+static const NSSItem nss_builtins_items_311 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -20943,7 +20792,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_314 [] = { -+static const NSSItem nss_builtins_items_312 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21020,7 +20869,7 @@ - "\355\132\000\124\205\034\026\066\222\014\134\372\246\255\277\333" - , (PRUint32)848 } - }; --static const NSSItem nss_builtins_items_315 [] = { -+static const NSSItem nss_builtins_items_313 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21044,7 +20893,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_316 [] = { -+static const NSSItem nss_builtins_items_314 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21153,7 +21002,7 @@ - "\051\340\266\270\011\150\031\034\030\103" - , (PRUint32)1354 } - }; --static const NSSItem nss_builtins_items_317 [] = { -+static const NSSItem nss_builtins_items_315 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21177,7 +21026,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_318 [] = { -+static const NSSItem nss_builtins_items_316 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21234,7 +21083,7 @@ - "\214\171" - , (PRUint32)514 } - }; --static const NSSItem nss_builtins_items_319 [] = { -+static const NSSItem nss_builtins_items_317 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21258,7 +21107,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_320 [] = { -+static const NSSItem nss_builtins_items_318 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21348,7 +21197,7 @@ - "\326\267\064\365\176\316\071\232\331\070\361\121\367\117\054" - , (PRUint32)959 } - }; --static const NSSItem nss_builtins_items_321 [] = { -+static const NSSItem nss_builtins_items_319 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21375,7 +21224,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_322 [] = { -+static const NSSItem nss_builtins_items_320 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21493,7 +21342,7 @@ - "\377\276\013\166\026\136\067\067\346\330\164\227\242\231\105\171" - , (PRUint32)1440 } - }; --static const NSSItem nss_builtins_items_323 [] = { -+static const NSSItem nss_builtins_items_321 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21519,7 +21368,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_324 [] = { -+static const NSSItem nss_builtins_items_322 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21652,7 +21501,7 @@ - "\304\163\304\163\030\137\120\165\026\061\237\267\350\174\303" - , (PRUint32)1679 } - }; --static const NSSItem nss_builtins_items_325 [] = { -+static const NSSItem nss_builtins_items_323 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21678,7 +21527,7 @@ - { (void *)&ckt_netscape_trusted_delegator, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_326 [] = { -+static const NSSItem nss_builtins_items_324 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21772,7 +21621,7 @@ - "\204\232\315" - , (PRUint32)979 } - }; --static const NSSItem nss_builtins_items_327 [] = { -+static const NSSItem nss_builtins_items_325 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21800,7 +21649,7 @@ - { (void *)&ckt_netscape_trust_unknown, (PRUint32)sizeof(CK_TRUST) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) } - }; --static const NSSItem nss_builtins_items_328 [] = { -+static const NSSItem nss_builtins_items_326 [] = { - { (void *)&cko_certificate, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -21884,7 +21733,7 @@ - "\274\060\376\173\016\063\220\373\355\322\024\221\037\007\257" - , (PRUint32)895 } - }; --static const NSSItem nss_builtins_items_329 [] = { -+static const NSSItem nss_builtins_items_327 [] = { - { (void *)&cko_netscape_trust, (PRUint32)sizeof(CK_OBJECT_CLASS) }, - { (void *)&ck_true, (PRUint32)sizeof(CK_BBOOL) }, - { (void *)&ck_false, (PRUint32)sizeof(CK_BBOOL) }, -@@ -22242,13 +22091,11 @@ - { 11, nss_builtins_types_324, nss_builtins_items_324, {NULL} }, - { 13, nss_builtins_types_325, nss_builtins_items_325, {NULL} }, - { 11, nss_builtins_types_326, nss_builtins_items_326, {NULL} }, -- { 13, nss_builtins_types_327, nss_builtins_items_327, {NULL} }, -- { 11, nss_builtins_types_328, nss_builtins_items_328, {NULL} }, -- { 13, nss_builtins_types_329, nss_builtins_items_329, {NULL} } -+ { 13, nss_builtins_types_327, nss_builtins_items_327, {NULL} } - }; - const PRUint32 - #ifdef DEBUG -- nss_builtins_nObjects = 329+1; -+ nss_builtins_nObjects = 327+1; - #else -- nss_builtins_nObjects = 329; -+ nss_builtins_nObjects = 327; - #endif /* DEBUG */ -Index: security/nss/lib/ckfw/builtins/certdata.txt -=================================================================== -RCS file: /cvsroot/mozilla/security/nss/lib/ckfw/builtins/certdata.txt,v -retrieving revision 1.64.2.10 -retrieving revision 1.64.2.11 -diff -u -r1.64.2.10 -r1.64.2.11 ---- security/nss/lib/ckfw/builtins/certdata.txt 1 Aug 2011 06:40:04 -0000 1.64.2.10 -+++ security/nss/lib/ckfw/builtins/certdata.txt 30 Aug 2011 20:04:39 -0000 1.64.2.11 -@@ -34,7 +34,7 @@ - # the terms of any one of the MPL, the GPL or the LGPL. - # - # ***** END LICENSE BLOCK ***** --CVS_ID "@(#) $RCSfile: certdata.txt,v $ $Revision: 1.64.2.10 $ $Date: 2011/08/01 06:40:04 $" -+CVS_ID "@(#) $RCSfile: certdata.txt,v $ $Revision: 1.64.2.11 $ $Date: 2011/08/30 20:04:39 $" - - # - # certdata.txt -@@ -12461,161 +12461,6 @@ - CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE - - # --# Certificate "DigiNotar Root CA" --# --CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE --CKA_TOKEN CK_BBOOL CK_TRUE --CKA_PRIVATE CK_BBOOL CK_FALSE --CKA_MODIFIABLE CK_BBOOL CK_FALSE --CKA_LABEL UTF8 "DigiNotar Root CA" --CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 --CKA_SUBJECT MULTILINE_OCTAL --\060\137\061\013\060\011\006\003\125\004\006\023\002\116\114\061 --\022\060\020\006\003\125\004\012\023\011\104\151\147\151\116\157 --\164\141\162\061\032\060\030\006\003\125\004\003\023\021\104\151 --\147\151\116\157\164\141\162\040\122\157\157\164\040\103\101\061 --\040\060\036\006\011\052\206\110\206\367\015\001\011\001\026\021 --\151\156\146\157\100\144\151\147\151\156\157\164\141\162\056\156 --\154 --END --CKA_ID UTF8 "0" --CKA_ISSUER MULTILINE_OCTAL --\060\137\061\013\060\011\006\003\125\004\006\023\002\116\114\061 --\022\060\020\006\003\125\004\012\023\011\104\151\147\151\116\157 --\164\141\162\061\032\060\030\006\003\125\004\003\023\021\104\151 --\147\151\116\157\164\141\162\040\122\157\157\164\040\103\101\061 --\040\060\036\006\011\052\206\110\206\367\015\001\011\001\026\021 --\151\156\146\157\100\144\151\147\151\156\157\164\141\162\056\156 --\154 --END --CKA_SERIAL_NUMBER MULTILINE_OCTAL --\002\020\014\166\332\234\221\014\116\054\236\376\025\320\130\223 --\074\114 --END --CKA_VALUE MULTILINE_OCTAL --\060\202\005\212\060\202\003\162\240\003\002\001\002\002\020\014 --\166\332\234\221\014\116\054\236\376\025\320\130\223\074\114\060 --\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\137 --\061\013\060\011\006\003\125\004\006\023\002\116\114\061\022\060 --\020\006\003\125\004\012\023\011\104\151\147\151\116\157\164\141 --\162\061\032\060\030\006\003\125\004\003\023\021\104\151\147\151 --\116\157\164\141\162\040\122\157\157\164\040\103\101\061\040\060 --\036\006\011\052\206\110\206\367\015\001\011\001\026\021\151\156 --\146\157\100\144\151\147\151\156\157\164\141\162\056\156\154\060 --\036\027\015\060\067\060\065\061\066\061\067\061\071\063\066\132 --\027\015\062\065\060\063\063\061\061\070\061\071\062\061\132\060 --\137\061\013\060\011\006\003\125\004\006\023\002\116\114\061\022 --\060\020\006\003\125\004\012\023\011\104\151\147\151\116\157\164 --\141\162\061\032\060\030\006\003\125\004\003\023\021\104\151\147 --\151\116\157\164\141\162\040\122\157\157\164\040\103\101\061\040 --\060\036\006\011\052\206\110\206\367\015\001\011\001\026\021\151 --\156\146\157\100\144\151\147\151\156\157\164\141\162\056\156\154 --\060\202\002\042\060\015\006\011\052\206\110\206\367\015\001\001 --\001\005\000\003\202\002\017\000\060\202\002\012\002\202\002\001 --\000\254\260\130\301\000\275\330\041\010\013\053\232\376\156\126 --\060\005\237\033\167\220\020\101\134\303\015\207\021\167\216\201 --\361\312\174\351\214\152\355\070\164\065\273\332\337\371\273\300 --\011\067\264\226\163\201\175\063\032\230\071\367\223\157\225\177 --\075\271\261\165\207\272\121\110\350\213\160\076\225\004\305\330 --\266\303\026\331\210\260\261\207\035\160\332\206\264\017\024\213 --\172\317\020\321\164\066\242\022\173\167\206\112\171\346\173\337 --\002\021\150\245\116\206\256\064\130\233\044\023\170\126\042\045 --\036\001\213\113\121\161\373\202\314\131\226\151\210\132\150\123 --\305\271\015\002\067\313\113\274\146\112\220\176\052\013\005\007 --\355\026\137\125\220\165\330\106\311\033\203\342\010\276\361\043 --\314\231\035\326\052\017\203\040\025\130\047\202\056\372\342\042 --\302\111\261\271\001\201\152\235\155\235\100\167\150\166\116\041 --\052\155\204\100\205\116\166\231\174\202\363\363\267\002\131\324 --\046\001\033\216\337\255\123\006\321\256\030\335\342\262\072\313 --\327\210\070\216\254\133\051\271\031\323\230\371\030\003\317\110 --\202\206\146\013\033\151\017\311\353\070\210\172\046\032\005\114 --\222\327\044\324\226\362\254\122\055\243\107\325\122\366\077\376 --\316\204\006\160\246\252\076\242\362\266\126\064\030\127\242\344 --\201\155\347\312\360\152\323\307\221\153\002\203\101\174\025\357 --\153\232\144\136\343\320\074\345\261\353\173\135\206\373\313\346 --\167\111\315\243\145\334\367\271\234\270\344\013\137\223\317\314 --\060\032\062\034\316\034\143\225\245\371\352\341\164\213\236\351 --\053\251\060\173\240\030\037\016\030\013\345\133\251\323\321\154 --\036\007\147\217\221\113\251\212\274\322\146\252\223\001\210\262 --\221\372\061\134\325\246\301\122\010\011\315\012\143\242\323\042 --\246\350\241\331\071\006\227\365\156\215\002\220\214\024\173\077 --\200\315\033\234\272\304\130\162\043\257\266\126\237\306\172\102 --\063\051\007\077\202\311\346\037\005\015\315\114\050\066\213\323 --\310\076\034\306\210\357\136\356\211\144\351\035\353\332\211\176 --\062\246\151\321\335\314\210\237\321\320\311\146\041\334\006\147 --\305\224\172\232\155\142\114\175\314\340\144\200\262\236\107\216 --\243\002\003\001\000\001\243\102\060\100\060\017\006\003\125\035 --\023\001\001\377\004\005\060\003\001\001\377\060\016\006\003\125 --\035\017\001\001\377\004\004\003\002\001\006\060\035\006\003\125 --\035\016\004\026\004\024\210\150\277\340\216\065\304\073\070\153 --\142\367\050\073\204\201\310\014\327\115\060\015\006\011\052\206 --\110\206\367\015\001\001\005\005\000\003\202\002\001\000\073\002 --\215\313\074\060\350\156\240\255\362\163\263\137\236\045\023\004 --\005\323\366\343\213\273\013\171\316\123\336\344\226\305\321\257 --\163\274\325\303\320\100\125\174\100\177\315\033\137\011\325\362 --\174\237\150\035\273\135\316\172\071\302\214\326\230\173\305\203 --\125\250\325\175\100\312\340\036\367\211\136\143\135\241\023\302 --\135\212\266\212\174\000\363\043\303\355\205\137\161\166\360\150 --\143\252\105\041\071\110\141\170\066\334\361\103\223\324\045\307 --\362\200\145\341\123\002\165\121\374\172\072\357\067\253\204\050 --\127\014\330\324\324\231\126\154\343\242\376\131\204\264\061\350 --\063\370\144\224\224\121\227\253\071\305\113\355\332\335\200\013 --\157\174\051\015\304\216\212\162\015\347\123\024\262\140\101\075 --\204\221\061\150\075\047\104\333\345\336\364\372\143\105\310\114 --\076\230\365\077\101\272\116\313\067\015\272\146\230\361\335\313 --\237\134\367\124\066\202\153\054\274\023\141\227\102\370\170\273 --\314\310\242\237\312\360\150\275\153\035\262\337\215\157\007\235 --\332\216\147\307\107\036\312\271\277\052\102\221\267\143\123\146 --\361\102\243\341\364\132\115\130\153\265\344\244\063\255\134\160 --\035\334\340\362\353\163\024\221\232\003\301\352\000\145\274\007 --\374\317\022\021\042\054\256\240\275\072\340\242\052\330\131\351 --\051\323\030\065\244\254\021\137\031\265\265\033\377\042\112\134 --\306\172\344\027\357\040\251\247\364\077\255\212\247\232\004\045 --\235\016\312\067\346\120\375\214\102\051\004\232\354\271\317\113 --\162\275\342\010\066\257\043\057\142\345\312\001\323\160\333\174 --\202\043\054\026\061\014\306\066\007\220\172\261\037\147\130\304 --\073\130\131\211\260\214\214\120\263\330\206\313\150\243\304\012 --\347\151\113\040\316\301\036\126\113\225\251\043\150\330\060\330 --\303\353\260\125\121\315\345\375\053\270\365\273\021\237\123\124 --\366\064\031\214\171\011\066\312\141\027\045\027\013\202\230\163 --\014\167\164\303\325\015\307\250\022\114\307\247\124\161\107\056 --\054\032\175\311\343\053\073\110\336\047\204\247\143\066\263\175 --\217\240\144\071\044\015\075\173\207\257\146\134\164\033\113\163 --\262\345\214\360\206\231\270\345\305\337\204\301\267\353 --END -- --# Trust for Certificate "DigiNotar Root CA" --CKA_CLASS CK_OBJECT_CLASS CKO_NETSCAPE_TRUST --CKA_TOKEN CK_BBOOL CK_TRUE --CKA_PRIVATE CK_BBOOL CK_FALSE --CKA_MODIFIABLE CK_BBOOL CK_FALSE --CKA_LABEL UTF8 "DigiNotar Root CA" --CKA_CERT_SHA1_HASH MULTILINE_OCTAL --\300\140\355\104\313\330\201\275\016\370\154\013\242\207\335\317 --\201\147\107\214 --END --CKA_CERT_MD5_HASH MULTILINE_OCTAL --\172\171\124\115\007\222\073\133\377\101\360\016\307\071\242\230 --END --CKA_ISSUER MULTILINE_OCTAL --\060\137\061\013\060\011\006\003\125\004\006\023\002\116\114\061 --\022\060\020\006\003\125\004\012\023\011\104\151\147\151\116\157 --\164\141\162\061\032\060\030\006\003\125\004\003\023\021\104\151 --\147\151\116\157\164\141\162\040\122\157\157\164\040\103\101\061 --\040\060\036\006\011\052\206\110\206\367\015\001\011\001\026\021 --\151\156\146\157\100\144\151\147\151\156\157\164\141\162\056\156 --\154 --END --CKA_SERIAL_NUMBER MULTILINE_OCTAL --\002\020\014\166\332\234\221\014\116\054\236\376\025\320\130\223 --\074\114 --END --CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR --CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NETSCAPE_TRUST_UNKNOWN --CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NETSCAPE_TRUSTED_DELEGATOR --CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE -- --# - # Certificate "Network Solutions Certificate Authority" - # - CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE -Index: security/nss/lib/ckfw/builtins/nssckbi.h -=================================================================== -RCS file: /cvsroot/mozilla/security/nss/lib/ckfw/builtins/nssckbi.h,v -retrieving revision 1.24.2.5 -retrieving revision 1.24.2.6 -diff -u -r1.24.2.5 -r1.24.2.6 ---- security/nss/lib/ckfw/builtins/nssckbi.h 1 Aug 2011 06:40:04 -0000 1.24.2.5 -+++ security/nss/lib/ckfw/builtins/nssckbi.h 30 Aug 2011 20:04:40 -0000 1.24.2.6 -@@ -77,8 +77,8 @@ - * of the comment in the CK_VERSION type definition. - */ - #define NSS_BUILTINS_LIBRARY_VERSION_MAJOR 1 --#define NSS_BUILTINS_LIBRARY_VERSION_MINOR 84 --#define NSS_BUILTINS_LIBRARY_VERSION "1.84" -+#define NSS_BUILTINS_LIBRARY_VERSION_MINOR 85 -+#define NSS_BUILTINS_LIBRARY_VERSION "1.85" - - /* These version numbers detail the semantic changes to the ckfw engine. */ - #define NSS_BUILTINS_HARDWARE_VERSION_MAJOR 1 diff --git a/multilib/lib32-nss/nss-no-rpath.patch b/multilib/lib32-nss/nss-no-rpath.patch deleted file mode 100644 index 35ea57315..000000000 --- a/multilib/lib32-nss/nss-no-rpath.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- ./mozilla/security/nss/cmd/platlibs.mk.withrpath 2007-02-19 07:17:06.000000000 +0100 -+++ ./mozilla/security/nss/cmd/platlibs.mk 2007-02-19 07:18:07.000000000 +0100 -@@ -52,9 +52,9 @@ - - ifeq ($(OS_ARCH), Linux) - ifeq ($(USE_64), 1) --EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib64:$$ORIGIN/../lib' -+#EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib64:$$ORIGIN/../lib' - else --EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib' -+#EXTRA_SHARED_LIBS += -Wl,-rpath,'$$ORIGIN/../lib' - endif - endif - diff --git a/multilib/lib32-nss/nss-nolocalsql.patch b/multilib/lib32-nss/nss-nolocalsql.patch deleted file mode 100644 index dc75a223f..000000000 --- a/multilib/lib32-nss/nss-nolocalsql.patch +++ /dev/null @@ -1,52 +0,0 @@ -diff -up ./mozilla/security/nss/lib/Makefile.nolocalsql ./mozilla/security/nss/lib/Makefile ---- ./mozilla/security/nss/lib/Makefile.nolocalsql 2010-02-27 16:40:25.891777537 -0800 -+++ ./mozilla/security/nss/lib/Makefile 2010-02-27 16:41:59.175902327 -0800 -@@ -62,11 +62,11 @@ ifndef USE_SYSTEM_ZLIB - ZLIB_SRCDIR = zlib # Add the zlib directory to DIRS. - endif - --ifndef MOZILLA_CLIENT --ifndef NSS_USE_SYSTEM_SQLITE --SQLITE_SRCDIR = sqlite # Add the sqlite directory to DIRS. --endif --endif -+#ifndef MOZILLA_CLIENT -+#ifndef NSS_USE_SYSTEM_SQLITE -+#SQLITE_SRCDIR = sqlite # Add the sqlite directory to DIRS. -+#endif -+#endif - - ifndef MOZILLA_CLIENT - ifeq ($(OS_ARCH),Linux) -diff -up ./mozilla/security/nss/lib/softoken/legacydb/manifest.mn.nolocalsql ./mozilla/security/nss/lib/softoken/legacydb/manifest.mn ---- ./mozilla/security/nss/lib/softoken/legacydb/manifest.mn.nolocalsql 2010-02-27 16:44:24.998777709 -0800 -+++ ./mozilla/security/nss/lib/softoken/legacydb/manifest.mn 2010-02-27 16:45:08.533803472 -0800 -@@ -46,9 +46,9 @@ MAPFILE = $(OBJDIR)/nssdbm.def - - DEFINES += -DSHLIB_SUFFIX=\"$(DLL_SUFFIX)\" -DSHLIB_PREFIX=\"$(DLL_PREFIX)\" -DSOFTOKEN_LIB_NAME=\"$(notdir $(SHARED_LIBRARY))\" - --ifdef MOZILLA_CLIENT --INCLUDES += -I$(DIST)/include/sqlite3 --endif -+#ifdef MOZILLA_CLIENT -+#INCLUDES += -I$(DIST)/include/sqlite3 -+#endif - - CSRCS = \ - dbmshim.c \ -diff -up ./mozilla/security/nss/lib/softoken/manifest.mn.nolocalsql ./mozilla/security/nss/lib/softoken/manifest.mn ---- ./mozilla/security/nss/lib/softoken/manifest.mn.nolocalsql 2010-02-27 16:42:52.213902231 -0800 -+++ ./mozilla/security/nss/lib/softoken/manifest.mn 2010-02-27 16:43:34.040776788 -0800 -@@ -47,9 +47,9 @@ MAPFILE = $(OBJDIR)/softokn.def - - DEFINES += -DSHLIB_SUFFIX=\"$(DLL_SUFFIX)\" -DSHLIB_PREFIX=\"$(DLL_PREFIX)\" -DSOFTOKEN_LIB_NAME=\"$(notdir $(SHARED_LIBRARY))\" -DSHLIB_VERSION=\"$(LIBRARY_VERSION)\" - --ifdef MOZILLA_CLIENT --INCLUDES += -I$(DIST)/include/sqlite3 --endif -+#ifdef MOZILLA_CLIENT -+#INCLUDES += -I$(DIST)/include/sqlite3 -+#endif - - EXPORTS = \ - secmodt.h \ diff --git a/multilib/lib32-nss/nss.pc.in b/multilib/lib32-nss/nss.pc.in deleted file mode 100644 index d47b9e146..000000000 --- a/multilib/lib32-nss/nss.pc.in +++ /dev/null @@ -1,11 +0,0 @@ -prefix=%prefix% -exec_prefix=%exec_prefix% -libdir=%libdir% -includedir=%includedir% - -Name: NSS -Description: Network Security Services -Version: %NSS_VERSION% -Requires: nspr >= %NSPR_VERSION% -Libs: -lssl3 -lsmime3 -lnss3 -lnssutil3 -Cflags: -I${includedir} diff --git a/multilib/lib32-nss/ssl-renegotiate-transitional.patch b/multilib/lib32-nss/ssl-renegotiate-transitional.patch deleted file mode 100644 index f457c5551..000000000 --- a/multilib/lib32-nss/ssl-renegotiate-transitional.patch +++ /dev/null @@ -1,21 +0,0 @@ -Enable transitional scheme for ssl renegotiation: - -(from mozilla/security/nss/lib/ssl/ssl.h) -Disallow unsafe renegotiation in server sockets only, but allow clients -to continue to renegotiate with vulnerable servers. -This value should only be used during the transition period when few -servers have been upgraded. - -diff --git a/mozilla/security/nss/lib/ssl/sslsock.c b/mozilla/security/nss/lib/ssl/sslsock.c -index f1d1921..c074360 100644 ---- a/mozilla/security/nss/lib/ssl/sslsock.c -+++ b/mozilla/security/nss/lib/ssl/sslsock.c -@@ -181,7 +181,7 @@ static sslOptions ssl_defaults = { - PR_FALSE, /* noLocks */ - PR_FALSE, /* enableSessionTickets */ - PR_FALSE, /* enableDeflate */ -- 2, /* enableRenegotiation (default: requires extension) */ -+ 3, /* enableRenegotiation (default: transitional) */ - PR_FALSE, /* requireSafeNegotiation */ - }; - diff --git a/multilib/lib32-openal/PKGBUILD b/multilib/lib32-openal/PKGBUILD deleted file mode 100644 index 6201cdf24..000000000 --- a/multilib/lib32-openal/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 42890 2011-03-22 08:03:47Z heftig $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> -# Contributor: Allan McRae <allan@archlinux.org> -# Contributor: Jason Chu <jchu@xentac.net> - -_pkgbasename=openal -pkgname=lib32-$_pkgbasename -pkgver=1.13 -pkgrel=2 -pkgdesc="OpenAL audio library for use with opengl (32-bit)" -arch=('x86_64') -url="http://www.openal.org/" -license=('LGPL') -depends=('lib32-glibc' $_pkgbasename) -makedepends=('lib32-alsa-lib' 'lib32-sdl' 'lib32-libpulse' 'pkgconfig' 'cmake' gcc-multilib) -options=('!libtool') -source=(http://kcat.strangesoft.net/openal-releases/openal-soft-${pkgver}.tar.bz2) -md5sums=('58b7d2809790c70681b825644c5f3614') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/${_pkgbasename}-soft-${pkgver}/build - cmake -D CMAKE_INSTALL_PREFIX=/usr -D CMAKE_BUILD_TYPE=Release -D LIB_SUFFIX=32 .. - make -} - -package() { - cd ${srcdir}/${_pkgbasename}-soft-${pkgver}/build - make DESTDIR=${pkgdir}/ install - - rm -rf "${pkgdir}"/usr/{include,share,bin} -} diff --git a/multilib/lib32-openssl/PKGBUILD b/multilib/lib32-openssl/PKGBUILD deleted file mode 100644 index 17fb9e475..000000000 --- a/multilib/lib32-openssl/PKGBUILD +++ /dev/null @@ -1,56 +0,0 @@ -# $Id: PKGBUILD 56738 2011-10-11 15:33:53Z svenstaro $ -# Maintainer: Pierre Schmitz <pierre@archlinux.de> - -_pkgbasename=openssl -pkgname=lib32-$_pkgbasename -_ver=1.0.0d -# use a pacman compatible version scheme -pkgver=1.0.0.e -pkgrel=2 -pkgdesc='The Open Source toolkit for Secure Sockets Layer and Transport Layer Security (32-bit)' -arch=('x86_64') -url='https://www.openssl.org' -license=('custom:BSD') -depends=(lib32-zlib $_pkgbasename) -optdepends=('ca-certificates' perl gcc-multilib) -options=('!makeflags') -source=("https://www.openssl.org/source/${_pkgbasename}-${_ver}.tar.gz" - 'no-rpath.patch' - 'ca-dir.patch') -md5sums=('40b6ea380cc8a5bf9734c2f8bf7e701e' - 'dc78d3d06baffc16217519242ce92478' - '3bf51be3a1bbd262be46dc619f92aa90') - - -build() { - export CC="gcc -m32 -mstackrealign" - export CXX="g++ -m32 -mstackrealign" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd $srcdir/$_pkgbasename-$_ver - - # remove rpath: http://bugs.archlinux.org/task/14367 - patch -p0 -i $srcdir/no-rpath.patch - # set ca dir to /etc/ssl by default - patch -p0 -i $srcdir/ca-dir.patch - # mark stack as non-executable: http://bugs.archlinux.org/task/12434 - ./Configure linux-elf --prefix=/usr --openssldir=/etc/ssl --libdir=lib32 \ - shared zlib enable-md2 -Wa,--noexecstack - - make - - # the test fails due to missing write permissions in /etc/ssl - # revert this patch for make test - #patch -p0 -R -i $srcdir/ca-dir.patch - #make test - #patch -p0 -i $srcdir/ca-dir.patch -} - -package() { - cd $srcdir/$_pkgbasename-$_ver - make INSTALL_PREFIX=$pkgdir install - - rm -rf "${pkgdir}"/usr/{include,share,bin} "$pkgdir/etc" - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-openssl/ca-dir.patch b/multilib/lib32-openssl/ca-dir.patch deleted file mode 100644 index 41d1386d3..000000000 --- a/multilib/lib32-openssl/ca-dir.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- apps/CA.pl.in 2006-04-28 02:30:49.000000000 +0200 -+++ apps/CA.pl.in 2010-04-01 00:35:02.600553509 +0200 -@@ -53,7 +53,7 @@ - $X509="$openssl x509"; - $PKCS12="$openssl pkcs12"; - --$CATOP="./demoCA"; -+$CATOP="/etc/ssl"; - $CAKEY="cakey.pem"; - $CAREQ="careq.pem"; - $CACERT="cacert.pem"; ---- apps/CA.sh 2009-10-15 19:27:47.000000000 +0200 -+++ apps/CA.sh 2010-04-01 00:35:02.600553509 +0200 -@@ -68,7 +68,7 @@ - X509="$OPENSSL x509" - PKCS12="openssl pkcs12" - --if [ -z "$CATOP" ] ; then CATOP=./demoCA ; fi -+if [ -z "$CATOP" ] ; then CATOP=/etc/ssl ; fi - CAKEY=./cakey.pem - CAREQ=./careq.pem - CACERT=./cacert.pem ---- apps/openssl.cnf 2009-04-04 20:09:43.000000000 +0200 -+++ apps/openssl.cnf 2010-04-01 00:35:02.607220681 +0200 -@@ -39,7 +39,7 @@ - #################################################################### - [ CA_default ] - --dir = ./demoCA # Where everything is kept -+dir = /etc/ssl # Where everything is kept - certs = $dir/certs # Where the issued certs are kept - crl_dir = $dir/crl # Where the issued crl are kept - database = $dir/index.txt # database index file. diff --git a/multilib/lib32-openssl/no-rpath.patch b/multilib/lib32-openssl/no-rpath.patch deleted file mode 100644 index ebd95e23d..000000000 --- a/multilib/lib32-openssl/no-rpath.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.shared.no-rpath 2005-06-23 22:47:54.000000000 +0200 -+++ Makefile.shared 2005-11-16 22:35:37.000000000 +0100 -@@ -153,7 +153,7 @@ - NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \ - SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-Bsymbolic -Wl,-soname=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX" - --DO_GNU_APP=LDFLAGS="$(CFLAGS) -Wl,-rpath,$(LIBRPATH)" -+DO_GNU_APP=LDFLAGS="$(CFLAGS)" - - #This is rather special. It's a special target with which one can link - #applications without bothering with any features that have anything to diff --git a/multilib/lib32-pango/PKGBUILD b/multilib/lib32-pango/PKGBUILD deleted file mode 100644 index ccb80357b..000000000 --- a/multilib/lib32-pango/PKGBUILD +++ /dev/null @@ -1,44 +0,0 @@ -# $Id: PKGBUILD 56312 2011-10-05 14:35:52Z bluewind $ -# Contributor: Pierre Schmitz <pierre@archlinux.de> -# Contributor: Mikko Seppälä <t-r-a-y@mbnet.fi> -# Maintainer: Biru Ionut <ionut@archlinux.ro> -_pkgbasename=pango -pkgname=lib32-$_pkgbasename -pkgver=1.29.4 -pkgrel=1 -pkgdesc="A library for layout and rendering of text (32-bit)" -arch=('x86_64') -license=('LGPL') -depends=('lib32-glib2>=2.25.15' 'lib32-cairo>=1.10.0' 'lib32-libxft>=2.1.14' - 'lib32-freetype2>=2.4.2' $_pkgbasename) -makedepends=("gcc-multilib") -options=('!libtool' '!emptydirs') -install=pango.install -source=(http://ftp.gnome.org/pub/gnome/sources/${_pkgbasename}/1.29/${_pkgbasename}-${pkgver}.tar.xz - pango-modules-conffile.patch) -url="http://www.pango.org/" -sha256sums=('7ae8d1953e6098a2706df58c1f84555c06ace7006bb34c0e54ab9acd98c1127f' - '4a178b60dd420ae53baeabbecfaaeca4070a4b777b2b3f36d137cd70b5a270c3') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - patch -p0 < ${srcdir}/pango-modules-conffile.patch - # No libthai support yet - ./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc \ - --localstatedir=/var --with-included-modules=basic-fc \ - --with-dynamic-modules=arabic-fc,arabic-lang,basic-fc,basic-win32,basic-x,basic-atsui,hangul-fc,hebrew-fc,indic-fc,indic-lang,khmer-fc,syriac-fc,tibetan-fc \ - --disable-introspection - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - rm -rf "$pkgdir"/etc - rm -rf "$pkgdir"/usr/{bin/pango-view,share,include} - mv "$pkgdir"/usr/bin/pango-querymodules "$pkgdir"/usr/bin/pango-querymodules-32 -} diff --git a/multilib/lib32-pango/pango-modules-conffile.patch b/multilib/lib32-pango/pango-modules-conffile.patch deleted file mode 100644 index a959cf1c8..000000000 --- a/multilib/lib32-pango/pango-modules-conffile.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- pango/modules.c.orig 2010-08-26 06:45:49.329259966 +0200 -+++ pango/modules.c 2010-08-26 06:46:13.786685177 +0200 -@@ -529,7 +529,7 @@ - - if (!file_str) - file_str = g_build_filename (pango_get_sysconf_subdirectory (), -- "pango.modules", -+ "pango.modules-32", - NULL); - - files = pango_split_file_list (file_str); -@@ -640,7 +640,7 @@ - if (!no_module_warning) - { - gchar *filename = g_build_filename (pango_get_sysconf_subdirectory (), -- "pango.modules", -+ "pango.modules-32", - NULL); - g_critical ("No modules found:\n" - "No builtin or dynamically loaded modules were found.\n" diff --git a/multilib/lib32-pango/pango.install b/multilib/lib32-pango/pango.install deleted file mode 100644 index 173b6820f..000000000 --- a/multilib/lib32-pango/pango.install +++ /dev/null @@ -1,21 +0,0 @@ -# arg 1: the new package version -post_install() { - # we need to ldconfig first, in case xfree86's libs aren't - # in ld.so.cache yet - sbin/ldconfig -r . - usr/bin/pango-querymodules-32 >etc/pango/pango.modules-32 -} - -# arg 1: the new package version -# arg 2: the old package version -post_upgrade() { - if [ -f etc/pango/pango.modules-32 ]; then - rm etc/pango/pango.modules-32 - fi - post_install $1 -} - -# arg 1: the old package version -pre_remove() { - rm etc/pango/pango.modules-32 -} diff --git a/multilib/lib32-pcre/PKGBUILD b/multilib/lib32-pcre/PKGBUILD deleted file mode 100644 index 63bc0da22..000000000 --- a/multilib/lib32-pcre/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# $Id: PKGBUILD 57529 2011-10-30 08:00:24Z bluewind $ -# Maintainer: Ionut Biru <ibiru@archlinux.org> - -_pkgbasename=pcre -pkgname=lib32-$_pkgbasename -pkgver=8.20 -pkgrel=1 -pkgdesc="A library that implements Perl 5-style regular expressions (32-bit)" -arch=('x86_64') -url="http://pcre.sourceforge.net" -license=('custom') -depends=('lib32-gcc-libs' $_pkgbasename) -makedepends=('gcc-multilib') -options=('!libtool') -source=(ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${_pkgbasename}-${pkgver}.tar.bz2) -md5sums=('a1931c70e1273e3450d5036fe273d25c') - -build() { - cd "${srcdir}"/${_pkgbasename}-${pkgver} - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --libdir=/usr/lib32 \ - --enable-utf8 --enable-unicode-properties - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-pixman/PKGBUILD b/multilib/lib32-pixman/PKGBUILD deleted file mode 100644 index b2e57ee93..000000000 --- a/multilib/lib32-pixman/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# $Id: PKGBUILD 38980 2011-02-04 14:53:22Z ibiru $ -# Maintainer : Ionut Biru <ibiru@archlinux.org> -_pkgbasename=pixman -pkgname=lib32-$_pkgbasename -pkgver=0.20.2 -pkgrel=1 -pkgdesc="Pixman library (32-bit)" -arch=('x86_64') -url="http://xorg.freedesktop.org" -license=('custom') -depends=('lib32-glibc' $_pkgbasename) -makedepends=('gcc-multilib') -options=('!libtool') -source=(http://xorg.freedesktop.org/releases/individual/lib/${_pkgbasename}-${pkgver}.tar.bz2) -sha1sums=('9972c8f8ce484f7649d9f588168cd29f61c05c63') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - ./configure --prefix=/usr --libdir=/usr/lib32 --disable-static - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - rm -rf "${pkgdir}"/usr/include - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-qt/PKGBUILD b/multilib/lib32-qt/PKGBUILD deleted file mode 100644 index 90518ecf5..000000000 --- a/multilib/lib32-qt/PKGBUILD +++ /dev/null @@ -1,94 +0,0 @@ -# $Id: PKGBUILD 55134 2011-09-03 13:56:53Z bluewind $ -# Maintainer: Florian Pritz <flo@xssn.at> -# Contributor: Andrea Scarpino <andrea@archlinux.org> -# Contributor: Pierre Schmitz <pierre@archlinux.de> - -_pkgbasename=qt -pkgname=lib32-$_pkgbasename -pkgver=4.7.4 -pkgrel=1 -pkgdesc='A cross-platform application and UI framework (32-bit)' -arch=('x86_64') -url='http://qt.nokia.com/' -license=('GPL3' 'LGPL') -depends=(lib32-{fontconfig,sqlite3,alsa-lib,glib2,dbus-core,openssl} - lib32-lib{png,tiff,mng,gl,sm,xrandr,xv,xi} $_pkgbasename) -optdepends=('lib32-libxinerama: Xinerama support' - 'lib32-libxcursor: Xcursor support' - 'lib32-libxfixes: Xfixes support') -makedepends=(cups gcc-multilib lib32-{mesa,libcups,libxfixes,gtk2}) -options=('!libtool') -_pkgfqn="qt-everywhere-opensource-src-${pkgver}" -source=("ftp://ftp.qt.nokia.com/qt/source/${_pkgfqn}.tar.gz") -md5sums=('ddf7d83f912cf1283aa066368464fa22') - -build() { - unset QMAKESPEC - export QT4DIR=$srcdir/$_pkgfqn - export PATH=${QT4DIR}/bin:${PATH} - export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH} - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd $srcdir/$_pkgfqn - - sed -e "s|-O2|$CXXFLAGS -m32|" \ - -e "/^QMAKE_RPATH/s| -Wl,-rpath,||g" \ - -e "/^QMAKE_LINK\s/s|g++|g++ -m32|g" \ - -e "/^QMAKE_LFLAGS\s/s|+=|+= $LDFLAGS|g" \ - -i mkspecs/common/g++.conf - - ./configure -confirm-license -opensource -v -platform linux-g++-32 \ - -prefix /usr \ - -libdir /usr/lib32 \ - -plugindir /usr/lib32/qt/plugins \ - -importdir /usr/lib32/qt/imports \ - -datadir /usr/share/qt \ - -translationdir /usr/share/qt/translations \ - -sysconfdir /etc \ - -largefile \ - -system-sqlite \ - -xmlpatterns \ - -no-phonon \ - -no-phonon-backend \ - -svg \ - -webkit \ - -script \ - -scripttools \ - -system-zlib \ - -system-libtiff \ - -system-libpng \ - -system-libmng \ - -system-libjpeg \ - -nomake demos \ - -nomake examples \ - -nomake docs \ - -nomake tools \ - -no-rpath \ - -openssl-linked \ - -optimized-qmake \ - -dbus \ - -reduce-relocations \ - -no-separate-debug-info \ - -gtkstyle \ - -opengl \ - -no-openvg \ - -glib - - make -} - -package() { - cd $srcdir/$_pkgfqn - make INSTALL_ROOT=$pkgdir install - - # Fix wrong path in pkgconfig files - find ${pkgdir}/usr/lib32/pkgconfig -type f -name '*.pc' \ - -exec perl -pi -e "s, -L${srcdir}/?\S+,,g" {} \; - # Fix wrong path in prl files - find ${pkgdir}/usr/lib32 -type f -name '*.prl' \ - -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d;s/\(QMAKE_PRL_LIBS =\).*/\1/' {} \; - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-readline/PKGBUILD b/multilib/lib32-readline/PKGBUILD deleted file mode 100644 index ea951db7b..000000000 --- a/multilib/lib32-readline/PKGBUILD +++ /dev/null @@ -1,51 +0,0 @@ -# $Id: PKGBUILD 57756 2011-11-02 09:06:48Z bluewind $ -# Contributor: Allan McRae <allan@archlinux.org> -# Contributor: judd <jvinet@zeroflux.org> - -_pkgbasename=readline -pkgname=lib32-$_pkgbasename -_basever=6.2 -_patchlevel=001 #prepare for some patches -pkgver=$_basever.$_patchlevel -pkgrel=1 -pkgdesc="GNU readline library (32-bit)" -arch=(x86_64) -url="http://tiswww.case.edu/php/chet/readline/rltop.html" -license=('GPL') -depends=('lib32-glibc' 'lib32-ncurses' $_pkgbasename) -makedepends=('gcc-multilib') -source=(http://ftp.gnu.org/gnu/readline/readline-$_basever.tar.gz) -if [ $_patchlevel -gt 00 ]; then - for (( p=1; p<=$((10#${_patchlevel})); p++ )); do - source=(${source[@]} http://ftp.gnu.org/gnu/readline/readline-$_basever-patches/readline${_basever//./}-$(printf "%03d" $p)) - done -fi -md5sums=('67948acb2ca081f23359d0256e9a271c' - '83287d52a482f790dfb30ec0a8746669') - -build() { - cd ${srcdir}/${_pkgbasename}-$_basever - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - for p in ../readline61-*; do - [ -e "$p" ] || continue - msg "applying patch ${p}" - patch -Np0 -i ${p} - done - - # Remove RPATH from shared objects (FS#14366) - sed -i 's|-Wl,-rpath,$(libdir) ||g' support/shobj-conf - - ./configure --prefix=/usr --libdir=/usr/lib32 - make SHLIB_LIBS=-lncurses -} - -package() { - cd ${srcdir}/${_pkgbasename}-$_basever - - make DESTDIR=${pkgdir} install - rm -rf "${pkgdir}"/usr/{include,share,bin} -} diff --git a/multilib/lib32-sdl/PKGBUILD b/multilib/lib32-sdl/PKGBUILD deleted file mode 100644 index 51eda45e5..000000000 --- a/multilib/lib32-sdl/PKGBUILD +++ /dev/null @@ -1,44 +0,0 @@ -# $Id: PKGBUILD 33692 2010-11-27 16:54:21Z heftig $ -# Maintainer: Allan McRae <allan@archlinux.org> -# Contributor: dorphell <dorphell@archlinux.org> - -_pkgbasename=sdl -pkgname=lib32-$_pkgbasename -pkgver=1.2.14 -pkgrel=8 -pkgdesc="A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard (32-bit)" -arch=('x86_64') -url="http://www.libsdl.org" -license=('LGPL') -depends=('lib32-libxext' 'lib32-libxrender' 'lib32-libx11' $_pkgbasename) -makedepends=('lib32-alsa-lib' 'lib32-mesa' 'lib32-libpulse' gcc-multilib) -options=('!libtool') -source=(http://www.libsdl.org/release/SDL-${pkgver}.tar.gz - sdl-1.2.14-joystick-crash.diff - sdl-1.2.14-fix-mouse-clicking.patch - sdl-1.2.14-fix-disappearing-cursor.patch) -md5sums=('e52086d1b508fa0b76c52ee30b55bec4' - '9d8890b3817736a5d365f7497f096634' - '04d8c179f125e04bcd4c9d60e013c2d7' - 'a6cf3e71b653aa97d0d8ae6c0a789807') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/SDL-${pkgver} - patch -Np1 -i $srcdir/sdl-1.2.14-joystick-crash.diff - patch -Np1 -i $srcdir/sdl-1.2.14-fix-mouse-clicking.patch - patch -Np1 -i $srcdir/sdl-1.2.14-fix-disappearing-cursor.patch - ./configure --prefix=/usr --disable-nasm --enable-alsa \ - --with-x --disable-rpath --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/SDL-${pkgver} - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{include,share,bin} -} diff --git a/multilib/lib32-sdl/sdl-1.2.14-fix-disappearing-cursor.patch b/multilib/lib32-sdl/sdl-1.2.14-fix-disappearing-cursor.patch deleted file mode 100644 index fcd3c314d..000000000 --- a/multilib/lib32-sdl/sdl-1.2.14-fix-disappearing-cursor.patch +++ /dev/null @@ -1,17 +0,0 @@ -Index: SDL-1.2.14/src/video/x11/SDL_x11events.c -=================================================================== ---- SDL-1.2.14.orig/src/video/x11/SDL_x11events.c 2010-04-30 09:16:35.000000000 -0400 -+++ SDL-1.2.14/src/video/x11/SDL_x11events.c 2010-04-30 09:16:35.000000000 -0400 -@@ -444,8 +444,10 @@ - if ( xevent.xcrossing.mode == NotifyUngrab ) - printf("Mode: NotifyUngrab\n"); - #endif -- if ( xevent.xcrossing.detail != NotifyInferior ) { -- if ( this->input_grab == SDL_GRAB_OFF ) { -+ if ( (xevent.xcrossing.mode != NotifyGrab) && -+ (xevent.xcrossing.mode != NotifyUngrab) && -+ (xevent.xcrossing.detail != NotifyInferior) ) { -+ if ( this->input_grab == SDL_GRAB_OFF ) { - posted = SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS); - } else { - posted = SDL_PrivateMouseMotion(0, 0, diff --git a/multilib/lib32-sdl/sdl-1.2.14-fix-mouse-clicking.patch b/multilib/lib32-sdl/sdl-1.2.14-fix-mouse-clicking.patch deleted file mode 100644 index 7d3e5acfc..000000000 --- a/multilib/lib32-sdl/sdl-1.2.14-fix-mouse-clicking.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- SDL-1.2.14/src/video/x11/SDL_x11events.c.orig 2010-04-08 11:57:05.003169834 -0700 -+++ SDL-1.2.14/src/video/x11/SDL_x11events.c 2010-04-08 12:33:51.690926340 -0700 -@@ -423,12 +423,15 @@ - if ( xevent.xcrossing.mode == NotifyUngrab ) - printf("Mode: NotifyUngrab\n"); - #endif -- if ( this->input_grab == SDL_GRAB_OFF ) { -- posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS); -+ if ( (xevent.xcrossing.mode != NotifyGrab) && -+ (xevent.xcrossing.mode != NotifyUngrab) ) { -+ if ( this->input_grab == SDL_GRAB_OFF ) { -+ posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS); -+ } -+ posted = SDL_PrivateMouseMotion(0, 0, -+ xevent.xcrossing.x, -+ xevent.xcrossing.y); - } -- posted = SDL_PrivateMouseMotion(0, 0, -- xevent.xcrossing.x, -- xevent.xcrossing.y); - } - break; - diff --git a/multilib/lib32-sdl/sdl-1.2.14-joystick-crash.diff b/multilib/lib32-sdl/sdl-1.2.14-joystick-crash.diff deleted file mode 100644 index 949e18b96..000000000 --- a/multilib/lib32-sdl/sdl-1.2.14-joystick-crash.diff +++ /dev/null @@ -1,14 +0,0 @@ -Description: Fix crash with joystick detection. -Index: libsdl1.2-1.2.14/src/joystick/linux/SDL_sysjoystick.c -=================================================================== ---- libsdl1.2-1.2.14.orig/src/joystick/linux/SDL_sysjoystick.c 2010-01-12 12:37:36.000000000 -0500 -+++ libsdl1.2-1.2.14/src/joystick/linux/SDL_sysjoystick.c 2010-01-12 12:38:27.000000000 -0500 -@@ -700,7 +700,7 @@ - continue; - } - if ( test_bit(i, absbit) ) { -- int values[5]; -+ int values[6]; - - if ( ioctl(fd, EVIOCGABS(i), values) < 0 ) - continue; diff --git a/multilib/lib32-sdl_image/PKGBUILD b/multilib/lib32-sdl_image/PKGBUILD deleted file mode 100644 index 70ccc252f..000000000 --- a/multilib/lib32-sdl_image/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# $Id: PKGBUILD 29403 2010-10-14 00:20:35Z svenstaro $ -# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> -# Contributor: SpepS <dreamspepser at yahoo dot it> - -_pkgbasename=sdl_image -pkgname=lib32-$_pkgbasename -pkgver=1.2.10 -pkgrel=3 -pkgdesc="A simple library to load images of various formats as SDL surfaces (32-bit)" -arch=('x86_64') -url="http://www.libsdl.org/projects/SDL_image/" -license=('LGPL') -depends=('lib32-sdl' 'lib32-libpng' 'lib32-libjpeg' 'lib32-libtiff' 'lib32-zlib' "$_pkgbasename") -makedepends=('gcc-multilib') -options=('!libtool') -source=(http://www.libsdl.org/projects/SDL_image/release/SDL_image-${pkgver}.tar.gz) -md5sums=('6c06584b31559e2b59f2b982d0d1f628') - -build() { - export CC='gcc -m32' - export PKG_CONFIG_PATH='/usr/lib32/pkgconfig' - - cd ${srcdir}/SDL_image-${pkgver} - - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -package() { - cd ${srcdir}/SDL_image-${pkgver} - - make DESTDIR=$pkgdir install - rm -rf $pkgdir/usr/include -} - -# vim: sw=2:ts=2 et: diff --git a/multilib/lib32-sdl_ttf/PKGBUILD b/multilib/lib32-sdl_ttf/PKGBUILD deleted file mode 100644 index 19f3f0014..000000000 --- a/multilib/lib32-sdl_ttf/PKGBUILD +++ /dev/null @@ -1,31 +0,0 @@ -# $Id: PKGBUILD 35154 2010-12-16 21:15:47Z heftig $ -# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> -# Contributor: Esa lakaniemi <esalaka@gmail.com> - -_pkgbasename=sdl_ttf -pkgname=lib32-$_pkgbasename -pkgver=2.0.10 -pkgrel=3 -pkgdesc="A library that allows you to use TrueType fonts in your SDL applications (32-bit)" -arch=('x86_64') -url="http://www.libsdl.org/projects/SDL_ttf/" -license=('LGPL') -options=('!libtool') -depends=('lib32-sdl' 'lib32-freetype2' $_pkgbasename) -makedepends=('gcc-multilib') -source=(http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-$pkgver.tar.gz) -sha256sums=('7d38704bcc7c34029c2dcb73b2d4857e8ad76341c6e0faed279eb9f743c66c6a') - -build() { - cd "${srcdir}"/SDL_ttf-${pkgver} - ./configure --prefix=/usr --libdir=/usr/lib32 CC="gcc -m32" PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - make -} - -package() { - cd "${srcdir}"/SDL_ttf-${pkgver} - make DESTDIR=${pkgdir} install - rm -rf "${pkgdir}"/usr/include -} - -# vim: sw=2:ts=2 et: diff --git a/multilib/lib32-speex/PKGBUILD b/multilib/lib32-speex/PKGBUILD deleted file mode 100644 index d6f1ea20d..000000000 --- a/multilib/lib32-speex/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# $Id: PKGBUILD 26746 2010-09-15 23:03:23Z bluewind $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> - -_pkgbasename=speex -pkgname=lib32-$_pkgbasename -pkgver=1.2rc1 -pkgrel=3 -pkgdesc="A free codec for free speech (32-bit)" -arch=(x86_64) -license=('BSD') -depends=('lib32-libogg' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!libtool') -source=(http://downloads.us.xiph.org/releases/$_pkgbasename/$_pkgbasename-$pkgver.tar.gz) -md5sums=('c4438b22c08e5811ff10e2b06ee9b9ae') -url="http://www.speex.org/" - -build() { - cd $srcdir/speex-$pkgver - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ - --libdir=/usr/lib32 - make -} - -package() { - cd $srcdir/speex-$pkgver - make DESTDIR=$pkgdir install - rm -rf "${pkgdir}"/usr/{include,share,bin} -} diff --git a/multilib/lib32-sqlite3/PKGBUILD b/multilib/lib32-sqlite3/PKGBUILD deleted file mode 100644 index a1e3d8fec..000000000 --- a/multilib/lib32-sqlite3/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# Maintainer: Biru Ionut <ionut@archlinux.ro> -# Contributor: Mikko Seppälä <t-r-a-y@mbnet.fi> -# Contributor: Kaos < gianlucaatlas dot gmail dot com > - -_pkgbasename=sqlite3 -pkgname=lib32-sqlite3 -_amalgamationver=3070400 -pkgver=3.7.4 -pkgrel=1 -pkgdesc="A C library that implements an SQL database engine (32-bit)" -arch=('x86_64') -license=('custom') -url="http://www.sqlite.org/" -depends=(lib32-glibc $_pkgbasename) -makedepends=('tcl' 'gcc-multilib' 'lib32-readline') -source=(http://www.sqlite.org/sqlite-src-${_amalgamationver}.zip) -options=(!libtool) -md5sums=('2b5c53328505893599de6e2055996d7a') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/sqlite-src-${_amalgamationver} - export LTLINK_EXTRAS="-ldl" - export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE" - ./configure --prefix=/usr --libdir=/usr/lib32 \ - --enable-threadsafe \ - --enable-threads-override-locks \ - --enable-cross-thread-connections \ - --disable-static --disable-tcl \ - --enable-load-extension - - # rpath removal - sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool - sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool - - make -} - - -package() { - cd ${srcdir}/sqlite-src-${_amalgamationver} - make DESTDIR=${pkgdir} install - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-talloc/PKGBUILD b/multilib/lib32-talloc/PKGBUILD deleted file mode 100644 index 16eabebd2..000000000 --- a/multilib/lib32-talloc/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# $Id: PKGBUILD 56759 2011-10-11 21:04:58Z lcarlier $ -# Maintainer: Tobias Powalowski <tpowa@archlinux.org> - -_pkgbasename=talloc -pkgname=lib32-$_pkgbasename -pkgver=2.0.5 -pkgrel=1 -pkgdesc="A hierarchical pool based memory allocator with destructors (32-bit)" -arch=(x86_64) -license=('GPL3') -url="http://talloc.samba.org/" -source=(http://samba.org/ftp/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz) -depends=('lib32-glibc' $_pkgbasename) -makedepends=(gcc-multilib python2) -md5sums=('6e3fdfbc43dde8ccba27b6af894b8fb2') - -build() { - export CC="gcc -m32" - - cd ${srcdir}/${_pkgbasename}-${pkgver} - - sed -i -e 's#python#python2#g' buildtools/bin/waf - - ./configure --prefix=/usr \ - --disable-python \ - --sysconfdir=/etc/samba \ - --localstatedir=/var \ - --enable-talloc-compat1 \ - --libdir=/usr/lib32 - - make -} - -package() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - - make DESTDIR=$pkgdir/ install - - rm -rf $pkgdir/usr/include -} - diff --git a/multilib/lib32-tdb/PKGBUILD b/multilib/lib32-tdb/PKGBUILD deleted file mode 100644 index db639ad6e..000000000 --- a/multilib/lib32-tdb/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# Maintainer: Florian Pritz <flo@xssn.at> - -_pkgbasename=tdb -pkgname=lib32-$_pkgbasename -pkgver=1.2.1 -pkgrel=3 -pkgdesc="A Trivia Database similar to GDBM but allows simultaneous commits (32-bit)" -arch=(x86_64) -license=('GPL3') -url="http://tdb.samba.org/" -depends=(lib32-glibc $_pkgbasename) -makedepends=(gcc-multilib libxslt) -options=(force) -source=(http://samba.org/ftp/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz) -md5sums=('73ea81282a82e5c959d9c082af2d0215') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - ./configure --prefix=/usr \ - --localstatedir=/var \ - --sysconfdir=/etc/samba \ - --libdir=/usr/lib32 \ - --disable-python - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make -j1 DESTDIR="$pkgdir" install - rm -rf "${pkgdir}"/usr/{include,share,bin} -} diff --git a/multilib/lib32-udev/PKGBUILD b/multilib/lib32-udev/PKGBUILD deleted file mode 100644 index a507e3e60..000000000 --- a/multilib/lib32-udev/PKGBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# $Id$ -# Maintainer: Aaron Griffin <aaron@archlinux.org> -# Maintainer: Tobias Powalowski <tpowa@archlinux.org> -# Maintainer: Thomas Bächler <thomas@archlinux.org> - -pkgname=('lib32-udev') -pkgver=173 -pkgrel=1 -arch=('x86_64') -pkgdesc="The userspace dev tools (udev) (32-bit)" -url="http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html" -license=('GPL') -options=(!makeflags !libtool) -depends=('lib32-glibc' 'lib32-glib2' 'lib32-acl' 'lib32-libusb-compat' 'udev') -makedepends=('gcc-multilib' 'gperf' 'gobject-introspection') -source=(http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev-$pkgver.tar.bz2) -md5sums=('91a88a359b60bbd074b024883cc0dbde') - -build() { - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd $srcdir/udev-$pkgver - - ./configure --libdir=/usr/lib32 - make -} - -package() { - - cd $srcdir/udev-$pkgver - - make DESTDIR=${pkgdir} install - rm -rf ${pkgdir}/usr/{etc,include,lib,libexec,sbin,share} - rm -rf ${pkgdir}/usr/lib32/girepository* -} diff --git a/multilib/lib32-util-linux/PKGBUILD b/multilib/lib32-util-linux/PKGBUILD deleted file mode 100644 index 026d52a1b..000000000 --- a/multilib/lib32-util-linux/PKGBUILD +++ /dev/null @@ -1,52 +0,0 @@ -# $Id: PKGBUILD 41742 2011-03-08 19:17:58Z dreisner $ -# Maintainer: judd <jvinet@zeroflux.org> - -_pkgbasename=util-linux -pkgname=lib32-$_pkgbasename -pkgver=2.19 -pkgrel=1 -pkgdesc="Miscellaneous system utilities for Linux (32-bit)" -url="http://userweb.kernel.org/~kzak/util-linux-ng/" -arch=('x86_64') -depends=('lib32-glibc' $_pkgbasename) -makedepends=('gcc-multilib') -provides=('lib32-util-linux-ng') -conflicts=('lib32-util-linux-ng') -replaces=('lib32-util-linux-ng') -license=('GPL2') -options=('!libtool' '!emptydirs') -source=(ftp://ftp.kernel.org/pub/linux/utils/${_pkgbasename}/v2.19/${_pkgbasename}-${pkgver}.tar.bz2) -md5sums=('590ca71aad0b254e2631d84401f28255') - -shopt -s extglob - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - # hardware clock - sed -e 's%etc/adjtime%var/lib/hwclock/adjtime%' -i hwclock/hwclock.c - mkdir -p "${pkgdir}/var/lib/hwclock" - - export CC="gcc -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - ./autogen.sh - ./configure --without-ncurses --libdir=/usr/lib32 - - cd shlibs - for lib in *; do - make -C $lib - done -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - make DESTDIR="$pkgdir" install - - # remove unnecessary files - cd "$pkgdir" - rm -rf !(usr) - cd usr - rm -rf !(lib32) -} diff --git a/multilib/lib32-v4l-utils/PKGBUILD b/multilib/lib32-v4l-utils/PKGBUILD deleted file mode 100644 index 2729e8528..000000000 --- a/multilib/lib32-v4l-utils/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 88966 2010-08-26 18:32:27Z thomas $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> -_pkgbasename=v4l-utils -pkgname=lib32-$_pkgbasename -pkgver=0.8.4 -pkgrel=1 -pkgdesc="Userspace tools and conversion library for Video 4 Linux (32-bit)" -arch=('x86_64') -url="http://freshmeat.net/projects/libv4l" -provides=("lib32-libv4l=$pkgver") -replaces=('lib32-libv4l') -conflicts=('lib32-libv4l') -license=('LGPL') -makedepends=('gcc-multilib') -depends=('lib32-gcc-libs' $_pkgbasename lib32-libjpeg-turbo) -source=(http://linuxtv.org/downloads/v4l-utils/${_pkgbasename}-${pkgver}.tar.bz2) -sha256sums=('20bf73b0c2255dfc6ae82806ec8a663e00ab039df9ee6eadae633466841c0dd7') - -build() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - - sed -i 's|CFLAGS :=|CFLAGS ?=|' Make.rules - - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - make PREFIX=/usr LIBDIR=/usr/lib32 -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make install PREFIX=/usr LIBDIR=/usr/lib32 DESTDIR="${pkgdir}/" - rm -rf "${pkgdir}"/{usr/{include,share,bin,sbin},etc,lib} -} diff --git a/multilib/lib32-xcb-util/PKGBUILD b/multilib/lib32-xcb-util/PKGBUILD deleted file mode 100644 index 85ea8751c..000000000 --- a/multilib/lib32-xcb-util/PKGBUILD +++ /dev/null @@ -1,35 +0,0 @@ -# $Id: PKGBUILD 26758 2010-09-15 23:05:03Z bluewind $ -# Maintainer : Ionut Biru <ibiru@archlinux.org> - -_pkgbasename=xcb-util -pkgname=lib32-xcb-util -pkgver=0.3.6 -pkgrel=3 -pkgdesc="Utility libraries for XC Binding (32-bit)" -arch=('x86_64') -url="http://xcb.freedesktop.org" -license=('custom') -depends=('lib32-glibc' 'lib32-libxcb' $_pkgbasename) -makedepends=('gperf' 'gcc-multilib') -options=('!libtool') -source=(http://xcb.freedesktop.org/dist/${_pkgbasename}-${pkgver}.tar.bz2) -md5sums=('dd8968b8ee613cb027a8ef1fcbdc8fc9') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd "${srcdir}/${_pkgbasename}-${pkgver}" - ./configure --prefix=/usr --libdir=/usr/lib32 --disable-static - make -} - -package() { - cd "${srcdir}/${_pkgbasename}-${pkgver}" - make DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}"/usr/{include,share} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-zlib/PKGBUILD b/multilib/lib32-zlib/PKGBUILD deleted file mode 100644 index a72223ae3..000000000 --- a/multilib/lib32-zlib/PKGBUILD +++ /dev/null @@ -1,44 +0,0 @@ -# $Id: PKGBUILD 35298 2010-12-18 01:45:49Z heftig $ -# Maintainer: Ionut Biru <ibiru@archlinux.org> -# Contributor: Pierre Schmitz <pierre@archlinux.de> - -_pkgbasename=zlib -pkgname=lib32-$_pkgbasename -pkgver=1.2.5 -pkgrel=6 -pkgdesc='Compression library implementing the deflate compression method found in gzip and PKZIP (32-bit)' -arch=('x86_64') -license=('custom') -url="http://www.zlib.net/" -depends=('lib32-glibc' $_pkgbasename) -makedepends=(gcc-multilib) -options=('!makeflags') -source=("http://zlib.net/zlib-${pkgver}.tar.gz" - 'zlib-1.2.5-lfs-decls.patch') -md5sums=('c735eab2d659a96e5a594c9e8541ad63' - '4cb279ea3beab621f3526bf7b7ab99e5') - -build() { - export CC="gcc -m32" - export CXX="g++ -m32" - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - - cd ${srcdir}/zlib-$pkgver - # see http://bugs.archlinux.org/task/19280 - patch -p1 -i ${srcdir}/zlib-1.2.5-lfs-decls.patch - # work around gcc bug; see https://bugs.archlinux.org/task/20647 - export CFLAGS="${CFLAGS/-O2/-O3} -fno-tree-vectorize -DUNALIGNED_OK" - ./configure --prefix=/usr \ - --libdir=/usr/lib32 - make - make check -} - -package() { - cd ${srcdir}/zlib-$pkgver - make install DESTDIR=${pkgdir} - - rm -rf "${pkgdir}"/usr/{include,share,bin} - mkdir -p "$pkgdir/usr/share/licenses" - ln -s $_pkgbasename "$pkgdir/usr/share/licenses/$pkgname" -} diff --git a/multilib/lib32-zlib/zlib-1.2.5-lfs-decls.patch b/multilib/lib32-zlib/zlib-1.2.5-lfs-decls.patch deleted file mode 100644 index 36e26af03..000000000 --- a/multilib/lib32-zlib/zlib-1.2.5-lfs-decls.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: zlib-1.2.5/zlib.h -=================================================================== ---- zlib-1.2.5.orig/zlib.h -+++ zlib-1.2.5/zlib.h -@@ -1578,7 +1578,7 @@ ZEXTERN int ZEXPORT inflateBackInit_ OF( - # define gzoffset gzoffset64 - # define adler32_combine adler32_combine64 - # define crc32_combine crc32_combine64 --# ifdef _LARGEFILE64_SOURCE -+# ifndef _LARGEFILE64_SOURCE - ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); - ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int)); - ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile)); diff --git a/multilib/libtool-multilib/PKGBUILD b/multilib/libtool-multilib/PKGBUILD deleted file mode 100644 index 0ab524cef..000000000 --- a/multilib/libtool-multilib/PKGBUILD +++ /dev/null @@ -1,73 +0,0 @@ -# $Id: PKGBUILD 57527 2011-10-30 06:49:05Z allan $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> -# Contributor: Allan McRae <allan@archlinux.org> -# Contributor: judd <jvinet@zeroflux.org> - -# NOTE: requires rebuild with each new gcc version - -pkgbase=libtool-multilib -pkgname=(libtool-multilib lib32-libltdl) -pkgver=2.4.2 -pkgrel=2 -pkgdesc="A generic library support script for multilib" -arch=('x86_64') -url="http://www.gnu.org/software/libtool" -license=('GPL') -_gccver=4.6.2 -makedepends=("gcc-multilib=$_gccver") -options=('!libtool') -source=(ftp://ftp.gnu.org/pub/gnu/libtool/libtool-${pkgver}.tar.xz{,.sig}) -md5sums=('2ec8997e0c07249eb4cbd072417d70fe' - '1e6ba57420c82c663c85e745d11c7eed') - -build() { - cd "$srcdir" - - rm -rf libtool-64 libtool-32 - mv libtool-$pkgver libtool-64 - cp -a libtool-64 libtool-32 - - msg2 "Building libtool-64..." - cd "$srcdir/libtool-64" - ./configure --prefix=/usr - make - - msg2 "Building libtool-32..." - export CC="gcc -m32" - export CXX="g++ -m32" - - cd "$srcdir/libtool-32" - ./configure --prefix=/usr --libdir=/usr/lib32 - make -} - -check() { - cd "$srcdir/libtool-64" - make check - cd "$srcdir/libtool-32" - make check -} - -package_libtool-multilib() { - depends=('sh' "libltdl=$pkgver" 'tar' "gcc-multilib=$_gccver" "lib32-libltdl=$pkgver") - groups=('multilib-devel') - install=libtool.install - provides=("libtool=$pkgver-$pkgrel") - conflicts=(libtool) - - cd "$srcdir/libtool-64" - make DESTDIR=${pkgdir} install-binSCRIPTS install-man install-info \ - install-data-local - rm -rf ${pkgdir}/usr/share/libtool/libltdl/ -} - -package_lib32-libltdl() { - pkgdesc="A system independent dlopen wrapper for GNU libtool (32-bit)" - depends=(lib32-glibc libltdl) - replaces=(lib32-libtool) - provides=("lib32-libtool=$pkgver-$pkgrel") - conflicts=(lib32-libtool) - - cd "$srcdir/libtool-32" - make DESTDIR="$pkgdir" install-libLTLIBRARIES -} diff --git a/multilib/libtool-multilib/libtool.install b/multilib/libtool-multilib/libtool.install deleted file mode 100644 index 424c8cb88..000000000 --- a/multilib/libtool-multilib/libtool.install +++ /dev/null @@ -1,22 +0,0 @@ -infodir=/usr/share/info -filelist=(libtool.info libtool.info-1 libtool.info-2) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -# vim:set ts=2 sw=2 et: diff --git a/multilib/nspluginwrapper/PKGBUILD b/multilib/nspluginwrapper/PKGBUILD deleted file mode 100644 index e9328f90f..000000000 --- a/multilib/nspluginwrapper/PKGBUILD +++ /dev/null @@ -1,28 +0,0 @@ -# $Id: PKGBUILD 50786 2011-07-01 07:38:37Z bluewind $ -# Maintainer: Thomas Bächler <thomas@archlinux.org> -pkgname=nspluginwrapper -pkgver=1.4.4 -pkgrel=1 -pkgdesc="Cross-platform NPAPI compatible plugin viewer" -arch=('x86_64') -url="http://nspluginwrapper.davidben.net/" -license=('GPL') -depends=('curl' 'lib32-libxt' 'lib32-gcc-libs' 'gtk2' 'lib32-gtk2') -makedepends=('gcc-multilib') -install="install" -source=(http://nspluginwrapper.davidben.net/download/$pkgname-$pkgver.tar.gz) -md5sums=('36f3e290fc4ce56f65ee695078961188') -build() { - cd "$srcdir/$pkgname-$pkgver" - - ./configure --with-lib32=lib32 --with-lib64=lib - make -j1 -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - - make -j1 DESTDIR="$pkgdir/" install -} - -# vim:set ts=2 sw=2 et: diff --git a/multilib/nspluginwrapper/install b/multilib/nspluginwrapper/install deleted file mode 100644 index 78e196fdb..000000000 --- a/multilib/nspluginwrapper/install +++ /dev/null @@ -1,5 +0,0 @@ -post_upgrade() { - for i in `nspluginwrapper -l | grep -v "^ "`; do - /usr/bin/nspluginwrapper -u "$i" - done -} diff --git a/multilib/q4wine/PKGBUILD b/multilib/q4wine/PKGBUILD deleted file mode 100644 index 150554ce3..000000000 --- a/multilib/q4wine/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# $Id: PKGBUILD 49318 2011-06-14 11:07:14Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Chris Giles <Chris.G.27 (at) Gmail.com> - -pkgname=q4wine -pkgver=0.121 -pkgrel=2 -pkgdesc="A Qt4 GUI for Wine" -arch=("i686" "x86_64") -url="http://sourceforge.net/projects/${pkgname}/" -license=("GPL3") -depends=("qt" "wine" "sqlite3" "which" "icoutils") -makedepends=("cmake") -optdepends=("winetricks") -options=('!emptydirs') -source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver/_/-}.tar.bz2) -md5sums=('2de5de62f57ba6b26247198df339d81a') - -build() { - cd ${srcdir}/${pkgname}-${pkgver/_/-} - cmake \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DWITH_WINETRIKS=ON \ - -DLIBS_ENTRY_PATH=/usr/lib/$pkgname . - make -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver/_/-} - make DESTDIR=${pkgdir} install -# install -D ${srcdir}/${pkgname}.desktop ${pkgdir}/usr/share/applications/${pkgname}.desktop -} diff --git a/multilib/q4wine/q4wine.desktop b/multilib/q4wine/q4wine.desktop deleted file mode 100644 index 2b1415848..000000000 --- a/multilib/q4wine/q4wine.desktop +++ /dev/null @@ -1,18 +0,0 @@ -[Desktop Entry] -Name=Q4Wine -GenericName=A Qt4 GUI for Wine -Comment=A Qt4 GUI for Wine -#Version=0.1 -Type=Application -Categories=KDE;Qt;Settings -Terminal=false -Encoding=UTF-8 -Icon=wine -Exec=q4wine -#ServiceTypes=inode/directory -#Actions=Create; -#X-KDE-Submenu= -#X-KDE-Priority=TopLevel -#X-KDE-Icon=tgz -X-KDE-StartupNotify=true -#X-DCOP-ServiceType=Unique diff --git a/multilib/wine/PKGBUILD b/multilib/wine/PKGBUILD deleted file mode 100644 index 2075a2eb3..000000000 --- a/multilib/wine/PKGBUILD +++ /dev/null @@ -1,144 +0,0 @@ -# $Id: PKGBUILD 57956 2011-11-04 21:20:50Z bluewind $ -# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> -# Contributor: Jan "heftig" Steffens <jan.steffens@gmail.com> -# Contributor: Eduardo Romero <eduardo@archlinux.org> -# Contributor: Giovanni Scafora <giovanni@archlinux.org> - -pkgname=wine -pkgver=1.3.32 -pkgrel=1 - -_pkgbasever=${pkgver/rc/-rc} - -source=(http://ibiblio.org/pub/linux/system/emulators/$pkgname/$pkgname-$_pkgbasever.tar.bz2) -md5sums=('2f8655434711b0ef11247f1bf7c28d13') - -pkgdesc="A compatibility layer for running Windows programs" -url="http://www.winehq.com" -arch=(i686 x86_64) -license=(LGPL) -install=wine.install - -depends=( - fontconfig lib32-fontconfig - mesa lib32-mesa - libxcursor lib32-libxcursor - libxrandr lib32-libxrandr - libxdamage lib32-libxdamage - libxi lib32-libxi - alsa-lib lib32-alsa-lib - desktop-file-utils -) - -makedepends=(autoconf ncurses bison perl fontforge flex prelink - 'gcc>=4.5.0-2' 'gcc-multilib>=4.5.0-2' - giflib lib32-giflib - libxpm lib32-libxpm - libpng lib32-libpng - libxinerama lib32-libxinerama - libxcomposite lib32-libxcomposite - libxmu lib32-libxmu - libxxf86vm lib32-libxxf86vm - libxml2 lib32-libxml2 - libxslt lib32-libxslt - libldap lib32-libldap - lcms lib32-lcms - mpg123 lib32-mpg123 - openal lib32-openal - libcups lib32-libcups - gnutls lib32-gnutls - v4l-utils lib32-v4l-utils - oss -) - -optdepends=( - giflib lib32-giflib - libpng lib32-libpng - libldap lib32-libldap - lcms lib32-lcms - libxml2 lib32-libxml2 - mpg123 lib32-mpg123 - openal lib32-openal - libcups lib32-libcups - gnutls lib32-gnutls - v4l-utils lib32-v4l-utils - libpulse lib32-libpulse - alsa-plugins lib32-alsa-plugins - oss -) - -if [[ $CARCH == i686 ]]; then - # Strip lib32 etc. on i686 - depends=(${depends[@]/*32-*/}) - makedepends=(${makedepends[@]/*32-*/}) - makedepends=(${makedepends[@]/*-multilib*/}) - optdepends=(${optdepends[@]/*32-*/}) -else - provides=("bin32-wine=$pkgver" "wine-wow64=$pkgver") - conflicts=('bin32-wine' 'wine-wow64') - replaces=('bin32-wine') -fi - -build() { - cd "$srcdir" - - # Allow ccache to work - mv $pkgname-$_pkgbasever $pkgname - - # Get rid of old build dirs - rm -rf $pkgname-{32,64}-build - mkdir $pkgname-32-build - - if [[ $CARCH == x86_64 ]]; then - msg2 "Building Wine-64..." - - mkdir $pkgname-64-build - cd "$srcdir/$pkgname-64-build" - ../$pkgname/configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --libdir=/usr/lib \ - --with-x \ - --enable-win64 - - make - - _wine32opts=( - --libdir=/usr/lib32 - --with-wine64="$srcdir/$pkgname-64-build" - ) - - export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" - fi - - msg2 "Building Wine-32..." - cd "$srcdir/$pkgname-32-build" - ../$pkgname/configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --with-x \ - "${_wine32opts[@]}" - - make -} - -package() { - msg2 "Packaging Wine-32..." - cd "$srcdir/$pkgname-32-build" - - if [[ $CARCH == i686 ]]; then - make prefix="$pkgdir/usr" install - else - make prefix="$pkgdir/usr" \ - libdir="$pkgdir/usr/lib32" \ - dlldir="$pkgdir/usr/lib32/wine" install - - msg2 "Packaging Wine-64..." - cd "$srcdir/$pkgname-64-build" - make prefix="$pkgdir/usr" \ - libdir="$pkgdir/usr/lib" \ - dlldir="$pkgdir/usr/lib/wine" install - fi -} - -# vim:set ts=8 sts=2 sw=2 et: diff --git a/multilib/wine/wine.install b/multilib/wine/wine.install deleted file mode 100644 index 0548b7ffd..000000000 --- a/multilib/wine/wine.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - update-desktop-database -q - #echo "This wine package is wow64 enabled. This means it can run 32bit/64bit Windows apps on x86_64." - #echo "If you are on x86_64, the default WINEARCH will be win64." - #echo "This will cause a lot of Windows applications to malfunction even if they usually work in wine." - #echo "Please create your ~/.wine with 'WINEARCH=win32 winecfg' if you are unsure and on x86_64." - #echo "See the Arch wiki on wine for more information." -} - -post_remove() { - update-desktop-database -q -} diff --git a/multilib/wine_gecko/PKGBUILD b/multilib/wine_gecko/PKGBUILD deleted file mode 100644 index dba21f215..000000000 --- a/multilib/wine_gecko/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# $Id: PKGBUILD 54881 2011-08-27 02:39:49Z heftig $ -# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com> -# Contributor: Nicky726 (Nicky726 <at> gmail <dot> com) -# Contributor: Allan McRae (allan <at> archlinux <dot> org) -# Contributor: Alexander 'bas' Brovikov (bas <at> it-core <dot> org) - -pkgname=wine_gecko -pkgver=1.3 -pkgrel=1 -pkgdesc="Wine's built-in replacement for Microsoft's Internet Explorer" -arch=(i686 x86_64) -url="http://wiki.winehq.org/Gecko" -license=(MPL) -depends=('wine>=1.3.16') -source=(http://downloads.sourceforge.net/project/wine/Wine%20Gecko/$pkgver/$pkgname-$pkgver-x86{,_64}.msi) -md5sums=('9e21684bb68d016b837744d53abb2fde' - '49a1155adca77cda4321e4fd40062373') - -if [[ $CARCH == i686 ]]; then - # Strip x86_64 msi - source=(${source[0]}) - md5sums=(${md5sums[0]}) -fi - -package() { - cd "$srcdir" - _geckodir="$pkgdir/usr/share/wine/gecko" - install -Dm644 $pkgname-$pkgver-x86.msi "$_geckodir/$pkgname-$pkgver-x86.msi" - if [[ $CARCH == x86_64 ]]; then - install -m644 $pkgname-$pkgver-x86_64.msi "$_geckodir/" - fi -} diff --git a/social/bitcoin-daemon/PKGBUILD b/social/bitcoin-daemon/PKGBUILD index 39a0b22b1..dee3f8daa 100644 --- a/social/bitcoin-daemon/PKGBUILD +++ b/social/bitcoin-daemon/PKGBUILD @@ -9,7 +9,7 @@ _pkgname=bitcoin pkgver=0.4.0 pkgrel=1 pkgdesc="Bitcoin is a peer-to-peer network based digital currency (daemon with JSON-RPC interface)." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.bitcoin.org/" depends=('expat' 'boost-libs>=1.46' 'miniupnpc>=1.6') makedepends=('boost') diff --git a/social/diaspora-git/PKGBUILD b/social/diaspora-git/PKGBUILD index b15f66916..61c62ceea 100644 --- a/social/diaspora-git/PKGBUILD +++ b/social/diaspora-git/PKGBUILD @@ -9,7 +9,7 @@ pkgname=diaspora-git pkgver=20110623 pkgrel=1 pkgdesc="A privacy aware, personally controlled, do-it-all, open source social network" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.joindiaspora.com/" license=('AGPL3') depends=('ruby' 'mysql-ruby' 'redis' 'imagemagick' 'libxslt') diff --git a/social/haveged/PKGBUILD b/social/haveged/PKGBUILD index b5f2e680a..74d53a602 100644 --- a/social/haveged/PKGBUILD +++ b/social/haveged/PKGBUILD @@ -5,7 +5,7 @@ pkgname=haveged pkgver=1.1 pkgrel=1 pkgdesc="A simple entropy daemon." -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.issihosts.com/haveged" license="GPL" source=(${url}/${pkgname}-${pkgver}.tar.gz diff --git a/social/inadyn-opendns/PKGBUILD b/social/inadyn-opendns/PKGBUILD index 75e8dc1ae..e75e25aca 100644 --- a/social/inadyn-opendns/PKGBUILD +++ b/social/inadyn-opendns/PKGBUILD @@ -4,7 +4,7 @@ pkgname=inadyn-opendns pkgver=1.99 pkgrel=3 pkgdesc="Simple dynamic DNS client with SSL support" -arch=('i686') +arch=('i686' 'mips64el') url="http://www.opendns.com/account/dynamic_dns/downloads" license=('GPL') makedepends=('unzip') diff --git a/social/liblockfile/PKGBUILD b/social/liblockfile/PKGBUILD index e3428763c..ef18a4109 100644 --- a/social/liblockfile/PKGBUILD +++ b/social/liblockfile/PKGBUILD @@ -4,7 +4,7 @@ pkgname=liblockfile pkgver=1.08_4 pkgrel=1 pkgdesc="a library with NFS-safe locking functions" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://packages.debian.org/unstable/libs/liblockfile1" depends=('glibc') diff --git a/social/lockfile-progs/PKGBUILD b/social/lockfile-progs/PKGBUILD index 57d833952..5bf4ec95b 100644 --- a/social/lockfile-progs/PKGBUILD +++ b/social/lockfile-progs/PKGBUILD @@ -4,7 +4,7 @@ pkgname=lockfile-progs pkgver=0.1.15 pkgrel=1 pkgdesc="programs for locking and unlocking files and mailboxes" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('GPL') url="http://packages.debian.org/unstable/misc/lockfile-progs" depends=('glibc') diff --git a/social/miniupnpc/PKGBUILD b/social/miniupnpc/PKGBUILD index 4d139afdc..eb11f384b 100644 --- a/social/miniupnpc/PKGBUILD +++ b/social/miniupnpc/PKGBUILD @@ -3,7 +3,7 @@ pkgname=miniupnpc pkgver=1.6 pkgrel=2 pkgdesc='A small UPnP client library/tool to access Internet Gateway Devices' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://miniupnp.free.fr" license=('BSD') depends=('sh') diff --git a/social/monkeysphere/PKGBUILD b/social/monkeysphere/PKGBUILD index ba869598e..60e4d0b8e 100644 --- a/social/monkeysphere/PKGBUILD +++ b/social/monkeysphere/PKGBUILD @@ -6,7 +6,7 @@ pkgname=monkeysphere pkgver=0.35 pkgrel=2 pkgdesc="Leverage the OpenPGP web of trust for OpenSSH and Web authentication" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://web.monkeysphere.info/" license=('GPL3') depends=('gnupg' 'lockfile-progs' 'perl-crypt-openssl-rsa' 'perl-digest-sha1') diff --git a/social/olsrd/PKGBUILD b/social/olsrd/PKGBUILD index dea029844..8fce985f6 100644 --- a/social/olsrd/PKGBUILD +++ b/social/olsrd/PKGBUILD @@ -4,7 +4,7 @@ pkgname=olsrd pkgver="0.6.1" pkgrel=1 pkgdesc="OLSR routing daemon (RFC 3626)" -arch=(i686 x86_64 ppc) +arch=(i686 x86_64 ppc mips64el) url="http://www.olsr.org" license=('BSD') depends=('glibc') diff --git a/social/tinc/PKGBUILD b/social/tinc/PKGBUILD index 72c1a8186..fdf89a41c 100644 --- a/social/tinc/PKGBUILD +++ b/social/tinc/PKGBUILD @@ -2,7 +2,7 @@ pkgname=tinc pkgver=1.0.16 pkgrel=1 pkgdesc="VPN (Virtual Private Network) daemon" -arch=(i686 x86_64) +arch=(i686 x86_64 mips64el) url="http://www.tinc-vpn.org/" license=('GPL') depends=('lzo2' 'zlib' 'openssl') diff --git a/social/tomoyo-tools/PKGBUILD b/social/tomoyo-tools/PKGBUILD index aacd1dbe4..9ca0e3181 100644 --- a/social/tomoyo-tools/PKGBUILD +++ b/social/tomoyo-tools/PKGBUILD @@ -6,7 +6,7 @@ _timestamp=20110211 pkgver=${_basever}.${_timestamp} pkgrel=4 pkgdesc='TOMOYO Linux 2.3.x userspace tools for Linux kernel 2.6.36 and later' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url='http://tomoyo.sourceforge.jp' license=('GPL') depends=('ncurses') diff --git a/~fauno/distccd-zeroconf/PKGBUILD b/~fauno/distccd-zeroconf/PKGBUILD index 2faf6acb3..1690daad9 100644 --- a/~fauno/distccd-zeroconf/PKGBUILD +++ b/~fauno/distccd-zeroconf/PKGBUILD @@ -7,7 +7,7 @@ _pkgname=distcc pkgver=3.1 pkgrel=1 pkgdesc="A distributed C, C++, Obj C compiler with zeroconf support" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/distcc/" license=('GPL') depends=('gcc' 'popt' 'avahi') diff --git a/~mtjm/zbar/PKGBUILD b/~mtjm/zbar/PKGBUILD index 64b47b5dc..7e21561e6 100644 --- a/~mtjm/zbar/PKGBUILD +++ b/~mtjm/zbar/PKGBUILD @@ -5,7 +5,7 @@ pkgname=zbar pkgver=0.10 pkgrel=1 pkgdesc="A library for reading bar codes from various sources" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://zbar.sourceforge.net/" license=('LGPL') depends=('glibc') diff --git a/~xihh/blast/PKGBUILD b/~xihh/blast/PKGBUILD new file mode 100644 index 000000000..22052163f --- /dev/null +++ b/~xihh/blast/PKGBUILD @@ -0,0 +1,32 @@ +# Maintainer: Joshua Haase <hahj87@gmail.com> + +pkgname='blast' +pkgver=2.2.25 +pkgrel=1 +pkgdesc="Basic Local Alignment Search Tool: BLAST finds regions of similarity between biological sequences" +arch=('i686' 'x86_64' 'mips64el') +url="http://blast.ncbi.nlm.nih.gov/Blast.cgi?CMD=Web&PAGE_TYPE=BlastHome" +license=('custom:Public_Domain') +makedepends=() +depends=() +optdepends=() +source=("ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/$pkgver/ncbi-blast-$pkgver+-src.tar.gz") +md5sums=('01256b808e3af49a5087945b6a8c8293') + +build() { + cd "$srcdir/ncbi-blast-${pkgver}+-src/c++" + ./configure --prefix=/usr + make +} + +check() { + cd "$srcdir/ncbi-blast-${pkgver}+-src/c++" + make -k check +} + +package() { + cd "$srcdir/ncbi-blast-${pkgver}+-src/c++" + make DESTDIR="$pkgdir/" install +} + +# vim:set ts=2 sw=2 et: diff --git a/~xihh/libtre/PKGBUILD b/~xihh/libtre/PKGBUILD new file mode 100644 index 000000000..ad111c45d --- /dev/null +++ b/~xihh/libtre/PKGBUILD @@ -0,0 +1,47 @@ +# $Id: pkgbuild-mode.el,v 1.23 2007/10/20 16:02:14 juergen Exp $ +# Maintainer: Joshua Ismael Haase Hernandez <joshpar@stravy> +pkgbase='libtre' +pkgname=('libtre' 'python2-tre') +pkgver=0.8.0 +pkgrel=1 +pkgdesc="The free and portable approximate regex matching library." +arch=('i686' 'x86_64' 'mips64el') +url="http://laurikari.net/tre/download/" +license=('custom:BSD2') +groups=() +depends=() +makedepends=('python' 'python2') +checkdepends=() +optdepends=() +provides=() +conflicts=() +replaces=() +backup=() +options=() +install= +changelog= +source=("http://laurikari.net/tre/tre-${pkgver}.tar.bz2") +md5sums=('b4d3232593dadf6746f4727bdda20b41') +noextract=() + +build() { + cd "$srcdir/tre-$pkgver" + ./configure --prefix=/usr + make +} + +check() { + cd "$srcdir/tre-$pkgver" + make -k check || true # some errors expected +} + +package_libtre() { + cd "$srcdir/tre-$pkgver" + make DESTDIR="$pkgdir/" install +} + +package_python2-tre() { + depends=('libtre') + cd "$srcdir/tre-$pkgver/python" + python2 setup.py install --root="$pkgdir/" --optimize=1 +} diff --git a/~xihh/muscle/LICENSE b/~xihh/muscle/LICENSE new file mode 100644 index 000000000..e48f525fe --- /dev/null +++ b/~xihh/muscle/LICENSE @@ -0,0 +1,10 @@ +MUSCLE is public domain software + +The MUSCLE software, including object and source code and +documentation, is hereby donated to the public domain. + +Disclaimer of warranty + +THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER +EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. diff --git a/~xihh/muscle/PKGBUILD b/~xihh/muscle/PKGBUILD new file mode 100644 index 000000000..101e2e312 --- /dev/null +++ b/~xihh/muscle/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: pkgbuild-mode.el,v 1.23 2007/10/20 16:02:14 juergen Exp $ +# Maintainer: Joshua Ismael Haase Hernandez <joshpar@stravy> +pkgname=muscle +pkgver=3.8.31 +pkgrel=1 +epoch= +pkgdesc="multiple sequence comparison by log-expectation" +arch=('i686' 'x86_64' 'mips64el') +url="http://www.drive5.com/muscle/" +license=('custom:PublicDomain') +groups=() +depends=() +makedepends=('gcc-libs') +checkdepends=() +optdepends=() +provides=() +conflicts=() +replaces=() +backup=() +options=() +install= +changelog= +source=(http://www.drive5.com/muscle/downloads${pkgver}/muscle${pkgver}_src.tar.gz LICENSE) +md5sums=('f767f00fd15f0c5db944d41936779e10' + '57cfb6975987af93c89977f084d53b72') +noextract=() + +build() { + cd "$srcdir/$pkgname$pkgver/src" + sed -i 's/ -msse2 -mfpmath=sse//' mk + make +} + +package() { + cd "$srcdir/$pkgname$pkgver/src" + install -D -m755 muscle "$pkgdir/usr/bin/muscle" + install -D -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} diff --git a/~xihh/ugene/PKGBUILD b/~xihh/ugene/PKGBUILD new file mode 100644 index 000000000..38cd578f6 --- /dev/null +++ b/~xihh/ugene/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: bmpvieira <mail AT bmpvieira DOT com> +pkgname=ugene +pkgver=1.9.3 +pkgrel=1 +pkgdesc="A free cross-platform genome analysis suite." +arch=('i686' 'x86_64' 'mips64el') +url="http://ugene.unipro.ru/" +license=('GPL') +depends=('qt' 'mesa') +source=(${url}downloads/$pkgname-$pkgver.tar.gz) +md5sums=('6ba5ff1bed47d928feb04ec15565c2b6') + +build() { + cd "$srcdir/$pkgname-$pkgver" + case "$CARCH" in + "i686") + qmake PREFIX=/usr -r ;; + "x86_64"|"mips64el") + qmake CONFIG+=x64 PREFIX=/usr -r ;; + esac + make release || return 1 +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make INSTALL_ROOT="$pkgdir" install || return 1 +} + +# vim:set ts=2 sw=2 et: |