diff options
author | root <root@rshg054.dnsready.net> | 2013-02-17 00:45:16 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-02-17 00:45:16 -0800 |
commit | c6f4cd18ab706868be0eff10327a0dcd58cecdf3 (patch) | |
tree | de3914332965ed3485e383ba0da41ef1b1c8c427 /community | |
parent | 4a4f6be8604aa35bdc81ae29d86b07dc8aea0c5c (diff) |
Sun Feb 17 00:45:00 PST 2013
Diffstat (limited to 'community')
28 files changed, 404 insertions, 161 deletions
diff --git a/community/cantata/PKGBUILD b/community/cantata/PKGBUILD index 7f8b7c820..72b8df7c7 100644 --- a/community/cantata/PKGBUILD +++ b/community/cantata/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 82406 2013-01-16 22:11:37Z andrea $ +# $Id: PKGBUILD 84345 2013-02-16 22:50:24Z ioni $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Mcder3 <mcder3[at]gmail[dot]com> # Contributor: MisterFred <mister.fred[at]free[dot]fr> @@ -6,7 +6,7 @@ pkgname=cantata pkgver=0.9.2 pkgdesc="A KDE client for the music player daemon (MPD)" -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64') url="http://kde-apps.org/content/show.php/Cantata?content=147733" license=('GPL') diff --git a/community/cinnamon/PKGBUILD b/community/cinnamon/PKGBUILD index ab7686196..20e4f3d2f 100644 --- a/community/cinnamon/PKGBUILD +++ b/community/cinnamon/PKGBUILD @@ -1,37 +1,45 @@ -# $Id: PKGBUILD 83983 2013-02-07 22:10:55Z bgyorgy $ +# $Id: PKGBUILD 84329 2013-02-16 17:25:27Z bgyorgy $ # Contributor: M0Rf30 # Contributor: unifiedlinux # Contributor: CReimer pkgname=cinnamon pkgver=1.6.7 -pkgrel=6 +pkgrel=7 pkgdesc="Linux desktop which provides advanced innovative features and a traditional user experience" arch=('i686' 'x86_64') url="http://cinnamon.linuxmint.com/" license=('GPL2') depends=('accountsservice' 'caribou' 'gjs' 'gnome-bluetooth' 'gnome-icon-theme' 'gnome-menus' 'gnome-settings-daemon' 'gnome-session' 'gnome-themes-standard' - 'gstreamer0.10' 'libgnomekbd' 'networkmanager' 'muffin' 'python2-dbus' + 'gstreamer0.10' 'networkmanager' 'muffin' 'python2-dbus' 'python2-gconf' 'python2-imaging' 'python2-lxml') makedepends=('gnome-common' 'intltool') optdepends=('gnome-control-center: open settings from various applets' 'gnome-screensaver: lock screen' + 'gucharmap: show character table from Keyboard applet' + 'libgnomekbd: show keyboard layout from Keyboard applet' 'nautilus: the official Gnome file manager') options=('!libtool' '!emptydirs') install=${pkgname}.install source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/tarball/$pkgver" "cinnamon-screensaver.desktop" "cinnamon2d-screensaver.desktop" - "gnome-autogen.sh") + "gnome-autogen.sh" + "keyboard_applet.patch") md5sums=('ea73c6367d43d82c61f977477bf0c08c' 'd55c079cdc8bec606f510f87b2a6f776' '5c6af851ab1cf7e9219f11d86353196a' - 'a925691c9b57a6a884dcf07da057fd1f') + 'a925691c9b57a6a884dcf07da057fd1f' + '2b1ece84416c3e4de030be15f1774d82') build() { cd ${srcdir}/linuxmint-Cinnamon* + # Fix Keyboard applet + # https://github.com/linuxmint/Cinnamon/issues/1337 + patch -Np1 -i ${srcdir}/keyboard_applet.patch + cp ${srcdir}/gnome-autogen.sh . sed -i 's/\ --warn-all\ --warn-error//' src/Makefile.am sed -i 's/gnome-autogen.sh/.\/gnome-autogen.sh/g' autogen.sh diff --git a/community/cinnamon/keyboard_applet.patch b/community/cinnamon/keyboard_applet.patch new file mode 100644 index 000000000..6b3694086 --- /dev/null +++ b/community/cinnamon/keyboard_applet.patch @@ -0,0 +1,142 @@ +diff --git a/applet.js b/applet.js +--- a/files/usr/share/cinnamon/applets/keyboard@cinnamon.org/applet.js ++++ b/files/usr/share/cinnamon/applets/keyboard@cinnamon.org/applet.js +@@ -1,9 +1,10 @@ + const Applet = imports.ui.applet; +-const Gkbd = imports.gi.Gkbd; + const Lang = imports.lang; +-const Cinnamon = imports.gi.Cinnamon; ++const Gio = imports.gi.Gio; ++const GLib = imports.gi.GLib; + const St = imports.gi.St; + const Gtk = imports.gi.Gtk; ++const GnomeDesktop = imports.gi.GnomeDesktop; + const Main = imports.ui.main; + const PopupMenu = imports.ui.popupMenu; + const Util = imports.misc.util; +@@ -15,11 +16,12 @@ + LayoutMenuItem.prototype = { + __proto__: PopupMenu.PopupBaseMenuItem.prototype, + +- _init: function(config, id, indicator, long_name) { ++ _init: function(ipsettings, id, index, indicator, long_name) { + PopupMenu.PopupBaseMenuItem.prototype._init.call(this); + +- this._config = config; ++ this._ipsettings = ipsettings; + this._id = id; ++ this._index = index; + this.label = new St.Label({ text: long_name }); + this.indicator = indicator; + this.addActor(this.label); +@@ -28,7 +30,7 @@ + + activate: function(event) { + PopupMenu.PopupBaseMenuItem.prototype.activate.call(this); +- this._config.lock_group(this._id); ++ this._ipsettings.set_value('current', GLib.Variant.new_uint32(this._index)); + } + }; + +@@ -54,18 +56,18 @@ + this._layoutItems = [ ]; + + this._showFlags = global.settings.get_boolean("keyboard-applet-use-flags"); +- this._config = Gkbd.Configuration.get(); +- this._config.connect('changed', Lang.bind(this, this._syncConfig)); +- this._config.connect('group-changed', Lang.bind(this, this._syncGroup)); ++ this._xkbInfo = new GnomeDesktop.XkbInfo(); ++ this._ipsettings = new Gio.Settings({ schema: 'org.gnome.desktop.input-sources' }); ++ this._ipsettings.connect('changed::sources', Lang.bind(this, this._syncConfig)); ++ this._ipsettings.connect('changed::current', Lang.bind(this, this._syncGroup)); + global.settings.connect('changed::keyboard-applet-use-flags', Lang.bind(this, this._reload_settings)); +- this._config.start_listen(); + + this._syncConfig(); + + this.menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); + this.menu.addAction(_("Show Keyboard Layout"), Lang.bind(this, function() { + Main.overview.hide(); +- Util.spawn(['gkbd-keyboard-display', '-g', String(this._config.get_current_group() + 1)]); ++ Util.spawn(['gkbd-keyboard-display', '-l', this._selectedLayout._id]); + })); + this.menu.addAction(_("Show Character Table"), Lang.bind(this, function() { + Main.overview.hide(); +@@ -98,7 +100,6 @@ + }, + + _reload_settings: function() { +- this._showFlags = global.settings.get_boolean("keyboard-applet-use-flags"); + this._syncConfig(); + }, + +@@ -127,8 +128,8 @@ + _syncConfig: function() { + this._showFlags = global.settings.get_boolean("keyboard-applet-use-flags"); + +- let groups = this._config.get_group_names(); +- if (groups.length > 1) { ++ let sources = this._ipsettings.get_value('sources'); ++ if (sources.n_children() > 1) { + this.actor.show(); + } else { + this.menu.close(); +@@ -141,25 +142,29 @@ + for (let i = 0; i < this._labelActors.length; i++) + this._labelActors[i].destroy(); + +- let short_names = this._adjustGroupNames(this._config.get_short_group_names()); +- + this._selectedLayout = null; + this._layoutItems = [ ]; + this._labelActors = [ ]; +- for (let i = 0; i < groups.length; i++) { +- let icon_name = this._config.get_group_name(i); ++ for (let i = 0; i < sources.n_children(); i++) { ++ let [type, id] = sources.get_child_value(i).deep_unpack(); ++ let displayName = id; ++ let shortName = id; ++ let xkbLayout = id; ++ if (type == 'xkb') { ++ [_exists, displayName, shortName, xkbLayout, _xkbVariant] = this._xkbInfo.get_layout_info(id); ++ } // TODO: errorhandling, handle 'ibus' ++ let icon_name = xkbLayout; // FIXME: Really? + let actor; + if (this._showFlags) + actor = new St.Icon({ icon_name: icon_name, icon_type: St.IconType.FULLCOLOR, style_class: 'popup-menu-icon' }); + else +- actor = new St.Label({ text: short_names[i] }); +- let item = new LayoutMenuItem(this._config, i, actor, groups[i]); +- item._short_group_name = short_names[i]; ++ actor = new St.Label({ text: shortName }); ++ let item = new LayoutMenuItem(this._ipsettings, id, i, actor, displayName); + item._icon_name = icon_name; + this._layoutItems.push(item); + this.menu.addMenuItem(item, i); + +- let shortLabel = new St.Label({ text: short_names[i] }); ++ let shortLabel = new St.Label({ text: shortName }); + this._labelActors.push(shortLabel); + } + +@@ -167,17 +172,17 @@ + }, + + _syncGroup: function() { +- let selected = this._config.get_current_group(); ++ let current = this._ipsettings.get_uint('current'); + + if (this._selectedLayout) { + this._selectedLayout.setShowDot(false); + this._selectedLayout = null; + } + +- let item = this._layoutItems[selected]; ++ let item = this._layoutItems[current]; + item.setShowDot(true); + +- let selectedLabel = this._labelActors[selected]; ++ let selectedLabel = this._labelActors[current]; + + if (this._showFlags) { + this.set_applet_icon_name(item._icon_name); diff --git a/community/electricsheep/PKGBUILD b/community/electricsheep/PKGBUILD index 95ccd687a..d976c50ce 100644 --- a/community/electricsheep/PKGBUILD +++ b/community/electricsheep/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 83245 2013-01-28 16:49:31Z stephane $ +# $Id: PKGBUILD 84347 2013-02-16 22:50:26Z ioni $ # Maintainer: Eric Bélanger <eric@archlinux.org> pkgname=electricsheep pkgver=2.7b33 -pkgrel=5 +pkgrel=6 pkgdesc="A screensaver that realize the collective dream of sleeping computers from all over the internet" arch=('i686' 'x86_64') url="http://community.electricsheep.org/" diff --git a/community/ffmpeg-compat/PKGBUILD b/community/ffmpeg-compat/PKGBUILD index 5291e8d0a..232814f05 100644 --- a/community/ffmpeg-compat/PKGBUILD +++ b/community/ffmpeg-compat/PKGBUILD @@ -6,7 +6,7 @@ pkgname=ffmpeg-compat pkgver=20120509 -pkgrel=2 +pkgrel=3 pkgdesc="Complete and free Internet live audio and video broadcasting solution for Linux/Unix" arch=('i686' 'x86_64') url="http://ffmpeg.org/" diff --git a/community/ffmpeg2theora/PKGBUILD b/community/ffmpeg2theora/PKGBUILD index 7d1cf16c1..99810e7b9 100644 --- a/community/ffmpeg2theora/PKGBUILD +++ b/community/ffmpeg2theora/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 76759 2012-09-29 12:51:22Z ibiru $ +# $Id: PKGBUILD 84348 2013-02-16 22:50:27Z ioni $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Eric Belanger <eric@archlinux.org> # Contributor: Angelo Theodorou <encelo@users.sourceforge.net> # Contributor: Alexander Rødseth <rodseth@gmail.com> pkgname=ffmpeg2theora pkgver=0.29 -pkgrel=2 +pkgrel=3 pkgdesc="Simple converter to create Ogg Theora files" arch=('x86_64' 'i686') url="http://www.v2v.cc/~j/ffmpeg2theora/" diff --git a/community/fish/PKGBUILD b/community/fish/PKGBUILD index fdfdabd1c..a237a17e3 100644 --- a/community/fish/PKGBUILD +++ b/community/fish/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 75266 2012-08-17 10:28:57Z bpiotrowski $ +# $Id: PKGBUILD 84315 2013-02-16 11:41:49Z bpiotrowski $ # Maintainer: Kaiting Chen <kaitocracy@gmail.com> # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: Abhishek Dasgupta <abhidg@gmail.com> @@ -7,7 +7,7 @@ pkgname=fish pkgver=2.0b2 -pkgrel=3 +pkgrel=4 pkgdesc='Smart and user friendly shell intended mostly for interactive use' arch=('i686' 'x86_64') url='http://ridiculousfish.com/shell/' @@ -31,9 +31,6 @@ package() { cd "$srcdir"/fishfish make DESTDIR="$pkgdir" install - # compress man pages - find "$pkgdir"/usr/share/fish/man/ -type f | xargs gzip -9 - # use python2 find "$pkgdir"/usr/share/fish/tools/ -type f -exec sed -e "1s|python|python2|" -i {} \; } diff --git a/community/freeorion/PKGBUILD b/community/freeorion/PKGBUILD index 09b6154c9..726cd7ec1 100644 --- a/community/freeorion/PKGBUILD +++ b/community/freeorion/PKGBUILD @@ -1,13 +1,14 @@ -# $Id: PKGBUILD 83429 2013-01-31 23:07:12Z arodseth $ +# $Id: PKGBUILD 84326 2013-02-16 16:16:27Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Elmo Todurov <todurov@gmail.com> # Contributor: guini <sidtrun@googlemail.com> -# Contributor: Forrest Loomis <cybercyst _ at _ gmail dot com> +# Contributor: Forrest Loomis <cybercyst@gmail.com> # Contributor: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: fana-m <geminin@gmx.net> pkgname=freeorion pkgver=0.4.1 -pkgrel=6 +pkgrel=7 pkgdesc='Turn-based galactic conquest game inspired by Master of Orion' arch=('x86_64' 'i686') url='http://www.freeorion.org/' @@ -40,43 +41,43 @@ build() { #msg2 'Looking up revision from version number...' #_releaserevision=`curl --progress-bar -o- ${url}index.php/Compile | grep "$pkgver" | cut -d':' -f2 | cut -d' ' -f10 | tail -1` - #msg2 "The revision for the latest official release is $_releaserevision" + #msg2 'The revision for the latest official release is $_releaserevision" ## _revision=$_releaserevision - msg2 "Compiling with revision $_revision" + msg2 'Compiling with revision $_revision' - msg2 "Checking out svn revision $_revision..." + msg2 'Checking out svn revision $_revision...' if [[ -d "$pkgname/.svn" ]]; then (cd "$pkgname" && svn up -r "$_revision") else svn co "$_svnrepo" --config-dir ./ -r "$_revision" "$pkgname" fi - msg2 "Setting up build directory..." + msg2 'Setting up build directory...' rm -rf "$srcdir/$pkgname-build" cp -r "$srcdir/$pkgname" "$srcdir/$pkgname-build" cd "$srcdir/$pkgname-build" - msg2 "CMake/Python fix..." + msg2 'CMake/Python fix...' patch -N -p1 -i "$srcdir/cmake_python.patch" - msg2 "Generating makefiles..." + msg2 'Generating makefiles...' cmake \ -DPYTHON_INCLUDE_DIR:PATH="/usr/include/python$_pyversion" \ -DPYTHON_LIBRARY:FILEPATH="/usr/lib/libpython$_pyversion.so" \ -G "Unix Makefiles" - msg2 "GLU fix..." + msg2 'GLU fix...' setconf CMakeCache.txt CMAKE_CXX_FLAGS:STRING \ "'-march=x86-64 -mtune=generic -O2 -fno-var-tracking -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -lGL -lGLU '" - #msg2 "Boost fix..." + #msg2 'Boost fix...' #sed -i 's:TIME_UTC:TIME_UTC_:' util/MultiplayerCommon.cpp - msg2 "Compiling..." + msg2 'Compiling...' make -j1 - msg2 "OGRE fix..." + msg2 'OGRE fix...' sed -i 's:PluginFolder=.:PluginFolder=/usr/lib/OGRE/:g' \ "$srcdir/$pkgname-build/ogre_plugins.cfg" } @@ -84,38 +85,38 @@ build() { package() { cd "$srcdir/$pkgname-build" - msg2 "Packaging documentation..." + msg2 'Packaging documentation...' install -Dm644 loki_setup/README.txt \ "$pkgdir/usr/share/doc/$pkgname/README.txt" - msg2 "Packaging binaries..." + msg2 'Packaging binaries...' install -Dm 755 "$srcdir/$pkgname.sh" "$pkgdir/usr/bin/freeorion" install -Dm 755 freeorion "$pkgdir/usr/bin/freeorion.elf" install -Dm 755 freeorionca "$pkgdir/usr/bin/freeorionca" install -Dm 755 freeoriond "$pkgdir/usr/bin/freeoriond" - msg2 "Packaging data..." + msg2 'Packaging data...' mkdir -p "$pkgdir/usr/share/$pkgname" "$pkgdir/usr/lib/$pkgname" cp -r default "$pkgdir/usr/share/$pkgname" - install -Dm 644 OISInput.cfg "$pkgdir/usr/share/OISInput.cfg" + install -Dm 644 OISInput.cfg "$pkgdir/usr/share/$pkgname/OISInput.cfg" - msg2 "Packaging license..." + msg2 'Packaging license...' install -Dm 644 default/COPYING \ "$pkgdir/usr/share/licenses/$pkgname/COPYING" cd "$srcdir" - msg2 "Packaging icon and shortcut..." + msg2 'Packaging icon and shortcut...' install -Dm 644 "$pkgname.png" \ "$pkgdir/usr/share/pixmaps/freeorion.png" install -Dm 644 "$pkgname.desktop" \ "$pkgdir/usr/share/applications/freeorion.desktop" - msg2 "Packaging OGRE plugins configuration..." + msg2 'Packaging OGRE plugins configuration...' install -Dm 644 "$srcdir/$pkgname-build/ogre_plugins.cfg" \ "$pkgdir/usr/share/freeorion/ogre_plugins.cfg" - msg2 "Cleaning up..." + msg2 'Cleaning up...' find "$pkgdir" -name ".svn" -print0 | xargs -0 rm -rf } diff --git a/community/freerdp/PKGBUILD b/community/freerdp/PKGBUILD index a341880e9..9bedb4759 100644 --- a/community/freerdp/PKGBUILD +++ b/community/freerdp/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 81895 2013-01-03 10:03:44Z spupykin $ +# $Id: PKGBUILD 84350 2013-02-16 22:50:28Z ioni $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Stijn Segers <francesco dot borromini at gmail dot com> pkgname=freerdp pkgver=1.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="Free RDP client" arch=('i686' 'x86_64') url="http://freerdp.sourceforge.net" diff --git a/community/guvcview/PKGBUILD b/community/guvcview/PKGBUILD index d70407130..8ef3c1f61 100644 --- a/community/guvcview/PKGBUILD +++ b/community/guvcview/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 81531 2012-12-23 08:58:59Z giovanni $ +# $Id: PKGBUILD 84351 2013-02-16 22:50:29Z ioni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Maxwell Pray a.k.a. Synthead <synthead@gmail.com> pkgname=guvcview pkgver=1.6.1 -pkgrel=2 +pkgrel=3 pkgdesc="A video viewer and capturer for the linux uvc driver" arch=('i686' 'x86_64') url="http://guvcview.sourceforge.net/" diff --git a/community/kid3/PKGBUILD b/community/kid3/PKGBUILD index a68228b58..239bd6b55 100644 --- a/community/kid3/PKGBUILD +++ b/community/kid3/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 81297 2012-12-16 18:48:19Z jlichtblau $ +# $Id: PKGBUILD 84352 2013-02-16 22:50:30Z ioni $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Alois Nespor <alois.nespor@gmail.com> pkgname=kid3 pkgver=2.2.1 -pkgrel=1 +pkgrel=2 pkgdesc="An MP3, Ogg/Vorbis and FLAC tag editor for KDE" arch=('i686' 'x86_64') url="http://kid3.sourceforge.net/" diff --git a/community/libaccounts-glib/PKGBUILD b/community/libaccounts-glib/PKGBUILD index f44f6c6ce..8012d8425 100644 --- a/community/libaccounts-glib/PKGBUILD +++ b/community/libaccounts-glib/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 83007 2013-01-26 14:48:10Z bgyorgy $ +# $Id: PKGBUILD 84335 2013-02-16 20:11:59Z bgyorgy $ # Maintainer: Balló György <ballogyor+arch at gmail dot com> pkgname=libaccounts-glib -pkgver=1.6 +pkgver=1.7 pkgrel=1 pkgdesc="Glib-based client library for accessing the online accounts database" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ depends=('dbus-glib' 'libxml2' 'sqlite3') makedepends=('python2-gobject') options=('!libtool') source=(http://accounts-sso.googlecode.com/files/$pkgname-$pkgver.tar.gz) -sha1sums=('56a876c15558b894c687c4a0b6fedfc9318f8cd1') +sha1sums=('b81a86ee1f66c592dab573334a1a564c8c497858') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/libpinyin/PKGBUILD b/community/libpinyin/PKGBUILD index 5fa6043b9..27e115ca6 100644 --- a/community/libpinyin/PKGBUILD +++ b/community/libpinyin/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 80277 2012-11-19 05:28:17Z fyan $ +# $Id: PKGBUILD 84313 2013-02-16 09:44:07Z fyan $ # Maintainer: Felix Yan <felixonmars@gmail.com> # Contributor: Yangtse <yangtsesu@gmail.com> # Contributor: WU Jun <quark at lihdd dot net> pkgname=libpinyin -pkgver=0.8.0 +pkgver=0.8.1 pkgrel=1 pkgdesc="Library to deal with pinyin." arch=('i686' 'x86_64') @@ -12,8 +12,8 @@ url="https://github.com/libpinyin/libpinyin" license=('GPL') depends=('db' 'glib2') options=(!libtool) -source=("https://github.com/downloads/libpinyin/libpinyin/${pkgname}-lite-${pkgver}.tar.gz" - 'https://github.com/downloads/libpinyin/libpinyin/model.text.tar.gz') +source=("https://github.com/libpinyin/libpinyin/archive/${pkgver}.tar.gz" + "http://downloads.sourceforge.net/libpinyin/model.text.tar.gz") noextract=("model.text.tar.gz") build() { @@ -29,5 +29,5 @@ package() { cd "${srcdir}/libpinyin-$pkgver" make DESTDIR="${pkgdir}" install } -md5sums=('e53cc51355a79acf187d768befbfcff8' +md5sums=('5127f673efe08dd27dc96ef8a7953956' '59be0e37b0834e41be9786d3b2fcc129') diff --git a/community/libsignon-glib/PKGBUILD b/community/libsignon-glib/PKGBUILD index ff348042c..11e80c101 100644 --- a/community/libsignon-glib/PKGBUILD +++ b/community/libsignon-glib/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 83004 2013-01-26 14:44:32Z bgyorgy $ +# $Id: PKGBUILD 84337 2013-02-16 20:27:53Z bgyorgy $ # Maintainer: Balló György <ballogyor+arch at gmail dot com> pkgname=libsignon-glib -pkgver=1.8 +pkgver=1.9 pkgrel=1 pkgdesc="GLib-based client library for applications handling account authentication through the Online Accounts Single Sign-On service" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ depends=('signon') makedepends=('python2-gobject') options=('!libtool') source=(http://accounts-sso.googlecode.com/files/$pkgname-$pkgver.tar.gz) -sha1sums=('74c2718ea5423747c68b47e52b85a6e273cac085') +sha1sums=('09e0b8da14f4ea9450e33eb5f6808afeefdbbe03') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/libsignon-glib/fix-docdir.patch b/community/libsignon-glib/fix-docdir.patch deleted file mode 100644 index b42c7faf8..000000000 --- a/community/libsignon-glib/fix-docdir.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur libsignon-glib-1.6.orig/Makefile.am libsignon-glib-1.6/Makefile.am ---- libsignon-glib-1.6.orig/Makefile.am 2012-08-13 10:09:23.000000000 +0200 -+++ libsignon-glib-1.6/Makefile.am 2012-10-16 22:04:28.805736477 +0200 -@@ -11,7 +11,7 @@ - pkgconfigdir = $(libdir)/pkgconfig - pkgconfig_DATA = libsignon-glib.pc - --libsignondocdir = ${prefix}/doc/reference -+libsignondocdir = ${docdir} - libsignondoc_DATA= README COPYING AUTHORS ChangeLog INSTALL NEWS - - EXTRA_DIST = \ diff --git a/community/libsignon-glib/make-tests-optional.patch b/community/libsignon-glib/make-tests-optional.patch deleted file mode 100644 index cc1e72848..000000000 --- a/community/libsignon-glib/make-tests-optional.patch +++ /dev/null @@ -1,61 +0,0 @@ -commit 65e1948097695f26aa13f4104336a8a76a678b87 -Author: David King <david.king@canonical.com> -Date: Tue Oct 30 09:24:27 2012 +0000 - - Make tests optional at configure time - - http://code.google.com/p/accounts-sso/issues/detail?id=124 - -diff --git a/Makefile.am b/Makefile.am -index 86b3a55..5740d45 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -2,12 +2,16 @@ ACLOCAL_AMFLAGS = -I m4 - DISTCHECK_CONFIGURE_FLAGS = \ - --enable-gtk-doc \ - --enable-introspection=yes --SUBDIRS = libsignon-glib docs tests -+SUBDIRS = libsignon-glib docs - - if ENABLE_PYTHON - SUBDIRS += pygobject - endif - -+if ENABLE_TESTS -+SUBDIRS += tests -+endif -+ - pkgconfigdir = $(libdir)/pkgconfig - pkgconfig_DATA = libsignon-glib.pc - -diff --git a/configure.ac b/configure.ac -index af5e663..d09661e 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -19,7 +19,25 @@ PKG_CHECK_MODULES( - AC_SUBST(DEPS_CFLAGS) - AC_SUBST(DEPS_LIBS) - --PKG_CHECK_MODULES([CHECK], [check >= 0.9.4]) -+# Build tests. -+ -+CHECK_REQUIRED="check >= 0.9.4" -+ -+AC_ARG_ENABLE([tests], -+ [AS_HELP_STRING([--disable-tests], [build with testing support disabled])]) -+ -+AS_IF([test "x$enable_tests" != "xno"], -+ [PKG_CHECK_EXISTS([$CHECK_REQUIRED], [have_check=yes], [have_check=no])], -+ [have_check=no]) -+ -+AS_IF([test "x$have_check" = "xyes"], -+ [PKG_CHECK_MODULES([CHECK], [$CHECK_REQUIRED]) -+ AC_SUBST([CHECK_CFLAGS]) -+ AC_SUBST([CHECK_LIBS])], -+ [AS_IF([test "x$enable_tests" = "xyes"], -+ [AC_MSG_ERROR([tests enabled but required dependencies were not found])])]) -+ -+AM_CONDITIONAL([ENABLE_TESTS], [test "x$have_check" = "xyes"]) - - AC_ISC_POSIX - AC_PROG_CC diff --git a/community/minidlna/PKGBUILD b/community/minidlna/PKGBUILD index d9cd1809b..8d9a7075b 100644 --- a/community/minidlna/PKGBUILD +++ b/community/minidlna/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 79502 2012-11-06 11:19:57Z spupykin $ +# $Id: PKGBUILD 84354 2013-02-16 22:50:32Z ioni $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer:Biginoz < biginoz AT free point fr> # Contributor: Ignacio Galmarino <igalmarino@gmail.com> @@ -7,7 +7,7 @@ pkgname=minidlna pkgver=1.0.25 -pkgrel=4 +pkgrel=5 pkgdesc="A DLNA/UPnP-AV Media server (aka ReadyDLNA)" arch=('i686' 'x86_64') url="http://sourceforge.net/projects/minidlna/" diff --git a/community/mlt/PKGBUILD b/community/mlt/PKGBUILD index 4eb4cd9b2..29a7f0241 100644 --- a/community/mlt/PKGBUILD +++ b/community/mlt/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 83305 2013-01-29 09:44:40Z spupykin $ +# $Id: PKGBUILD 84355 2013-02-16 22:50:33Z ioni $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Fabian Schoelzel <myfirstname.mylastname@googlemail.com> # Contributor: funkyou <spamopfer@nickname.berlin.de> @@ -8,7 +8,7 @@ pkgbase=mlt pkgname=('mlt' 'mlt-python-bindings') pkgver=0.8.8 -pkgrel=1 +pkgrel=2 pkgdesc="An open source multimedia framework" arch=('i686' 'x86_64') url="http://www.mltframework.org" diff --git a/community/motion/PKGBUILD b/community/motion/PKGBUILD index bc727a0e4..7eb15220f 100644 --- a/community/motion/PKGBUILD +++ b/community/motion/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 76588 2012-09-24 09:58:09Z spupykin $ +# $Id: PKGBUILD 84356 2013-02-16 22:50:34Z ioni $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=motion pkgver=3.2.12 -pkgrel=7 +pkgrel=8 pkgdesc="A software motion detector which grabs images from video4linux devices and/or from webcams" arch=('i686' 'x86_64') license=('GPL') diff --git a/community/mplayer2/PKGBUILD b/community/mplayer2/PKGBUILD index 6a929a08e..f76002d37 100644 --- a/community/mplayer2/PKGBUILD +++ b/community/mplayer2/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 82332 2013-01-15 11:35:04Z allan $ +# $Id: PKGBUILD 84357 2013-02-16 22:50:35Z ioni $ # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: Martin Panter <vadmium+aur@gmail.com> # Contributor: Stéphane Gaudreault <stephane@archlinux.org> pkgname=mplayer2 pkgver=20121128 -pkgrel=2 +pkgrel=3 pkgdesc='Advanced general-purpose media player. A fork of the original MPlayer project' arch=('i686' 'x86_64') license=('GPL') diff --git a/community/mythtv/PKGBUILD b/community/mythtv/PKGBUILD index 0a345b8fb..a5587a7c2 100644 --- a/community/mythtv/PKGBUILD +++ b/community/mythtv/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 83332 2013-01-29 17:35:51Z spupykin $ +# $Id: PKGBUILD 84359 2013-02-16 22:50:37Z ioni $ # Maintainer: Jonathan Conder <jonno.conder@gmail.com> # Contributor: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Juergen Hoetzel <juergen@archlinux.org> @@ -7,7 +7,7 @@ pkgname=mythtv pkgver=0.26.0 -pkgrel=5 +pkgrel=6 epoch=1 pkgdesc="A Homebrew PVR project" arch=('i686' 'x86_64') diff --git a/community/openscenegraph/PKGBUILD b/community/openscenegraph/PKGBUILD index 2cc27e414..a4626f38c 100644 --- a/community/openscenegraph/PKGBUILD +++ b/community/openscenegraph/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 75758 2012-08-30 21:03:09Z spupykin $ +# $Id: PKGBUILD 84360 2013-02-16 22:50:38Z ioni $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Hans Janssen <janserv@gmail.com> # Contributor: my64 <packages@obordes.com> @@ -6,13 +6,13 @@ pkgname=openscenegraph pkgver=3.0.1 -pkgrel=7 +pkgrel=8 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' 'qt' 'ffmpeg-compat') +makedepends=('cmake' 'libvncserver' 'qt' 'ffmpeg-compat' 'mesa') optdepends=('libvncserver' 'gdal' 'openexr' 'poppler-glib' 'qt') conflicts=('openthreads') provides=('openthreads') diff --git a/community/performous/PKGBUILD b/community/performous/PKGBUILD index 64e5b04ff..ce57e7121 100644 --- a/community/performous/PKGBUILD +++ b/community/performous/PKGBUILD @@ -1,22 +1,26 @@ -# $Id: PKGBUILD 83265 2013-01-28 16:49:52Z stephane $ +# $Id: PKGBUILD 84361 2013-02-16 22:50:39Z ioni $ # Maintainer : Laurent Carlier <lordheavym@gmail.com> # Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org> pkgname=performous pkgver=0.7.0 -pkgrel=3 +pkgrel=4 pkgdesc='A free game like "Singstar", "Rockband" or "Stepmania"' arch=('i686' 'x86_64') url="http://performous.org/" license=('GPL') depends=('boost-libs' 'imagemagick' 'glew' 'libxml++' 'portaudio' 'portmidi' 'librsvg' 'ffmpeg') # opencv -makedepends=('cmake' 'pkgconfig' 'help2man' 'boost>=1.50' 'mesa') +makedepends=('cmake' 'pkgconfig' 'help2man' 'boost' 'mesa') optdepends=('performous-freesongs: free songs for performous') -source=(http://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/performous-$pkgver.tar.bz2) -md5sums=('60f3f72b51a630a4aa996484aedb9526') +source=(http://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/performous-$pkgver.tar.bz2 + performous-0.7.0-cmake.patch) +md5sums=('60f3f72b51a630a4aa996484aedb9526' + '7da8aef3f4dd28e19f95957ae9ac2bb1') build() { - cd ${srcdir}/performous-${pkgver} + cd performous-${pkgver} + + patch -Np0 -i ../performous-0.7.0-cmake.patch mkdir -p build cd build @@ -28,7 +32,7 @@ build() { } package() { - cd ${srcdir}/performous-${pkgver}/build + cd performous-${pkgver}/build make DESTDIR="$pkgdir" install } diff --git a/community/performous/performous-0.7.0-cmake.patch b/community/performous/performous-0.7.0-cmake.patch new file mode 100644 index 000000000..4c6f47b63 --- /dev/null +++ b/community/performous/performous-0.7.0-cmake.patch @@ -0,0 +1,155 @@ +From: Julian Ospald <hasufell@gentoo.org> +Date: Thu Jan 24 13:13:50 UTC 2013 +Subject: build system + + - fix opencv module to prefer pkg-config results + - fix some module and macro names and try to use + system modules as much as possible (ALSA Boost Gettext Jpeg Png Tiff Z) + +--- cmake/Modules/FindOpenCV.cmake ++++ cmake/Modules/FindOpenCV.cmake +@@ -57,13 +57,21 @@ + include(FindPkgConfig) + if(PKG_CONFIG_FOUND) + pkg_check_modules(OPENCV_PKGCONF opencv) +- set(OpenCV_DIR ${OPENCV_PKGCONF_PREFIX}) +- if(EXISTS "${OpenCV_DIR}") +- set(OpenCV_configScript_DIR "${OpenCV_DIR}/share/opencv") +- if(EXISTS "${OpenCV_configScript_DIR}") +- set(OpenCV_configScript "${OpenCV_configScript_DIR}/OpenCVConfig.cmake") +- endif(EXISTS "${OpenCV_configScript_DIR}") +- endif(EXISTS "${OpenCV_DIR}") ++ # prefer pkg-config values ++ if(OPENCV_PKGCONF_FOUND) ++ set(OpenCV_LIBS ${OPENCV_PKGCONF_LDFLAGS}) ++ set(OpenCV_FOUND true) ++ set(OpenCV_INCLUDE_DIR ${OPENCV_PKGCONF_INCLUDE_DIRS}) ++ set(OpenCV_VERSION ${OPENCV_PKGCONF_VERSION}) ++ else(OPENCV_PKGCONF_FOUND) ++ set(OpenCV_DIR ${OPENCV_PKGCONF_PREFIX}) ++ if(EXISTS "${OpenCV_DIR}") ++ set(OpenCV_configScript_DIR "${OpenCV_DIR}/share/opencv") ++ if(EXISTS "${OpenCV_configScript_DIR}") ++ set(OpenCV_configScript "${OpenCV_configScript_DIR}/OpenCVConfig.cmake") ++ endif(EXISTS "${OpenCV_configScript_DIR}") ++ endif(EXISTS "${OpenCV_DIR}") ++ endif(OPENCV_PKGCONF_FOUND) + endif(PKG_CONFIG_FOUND) + endif(NOT WIN32) + endif(NOT EXISTS "${OpenCV_DIR}") +@@ -72,7 +80,7 @@ + ##==================================================== + ## Find OpenCV libraries + ##---------------------------------------------------- +-if(EXISTS "${OpenCV_DIR}") ++if(EXISTS "${OpenCV_DIR}" AND NOT OpenCV_FOUND) + + #When its possible to use the Config script use it. + if(EXISTS "${OpenCV_configScript}") +@@ -257,9 +265,9 @@ + endif(${OpenCV_VERSION} VERSION_GREATER 2.1.0) + + +-else(EXISTS "${OpenCV_DIR}") ++else(EXISTS "${OpenCV_DIR}" AND NOT OpenCV_FOUND) + set(ERR_MSG "Please specify OpenCV directory using OpenCV_DIR env. variable") +-endif(EXISTS "${OpenCV_DIR}") ++endif(EXISTS "${OpenCV_DIR}" AND NOT OpenCV_FOUND) + ##==================================================== + + ##==================================================== +--- CMakeLists.txt ++++ CMakeLists.txt +@@ -33,7 +33,7 @@ + + #need to put here do setting LOCALE_DIR variable + find_package(Gettext) +-if(Gettext_FOUND) ++if(GETTEXT_FOUND) + if(NOT LOCALE_DIR) + if(WIN32) + SET(LOCALE_DIR "bin/locale") +@@ -55,7 +55,7 @@ + message(STATUS "Cannot find msgfmt to convert language file. Translation won't be enabled") + endif() + endif(NOT LOCALE_DIR) +-endif(Gettext_FOUND) ++endif(GETTEXT_FOUND) + add_subdirectory(themes) + add_subdirectory(data) + add_subdirectory(game) +--- game/CMakeLists.txt ++++ game/CMakeLists.txt +@@ -71,7 +71,7 @@ + list(APPEND LIBS ${Boost_LIBRARIES}) + + # Find all the libs that don't require extra parameters +-foreach(lib ${OUR_LIBS} SDL PangoCairo LibRSVG LibXML++ GLEW AVFormat SWScale OpenGL Z Jpeg Png PortAudio) ++foreach(lib ${OUR_LIBS} SDL PangoCairo LibRSVG LibXML++ GLEW AVFormat SWScale OpenGL ZLIB JPEG PNG PortAudio) + find_package(${lib} REQUIRED) + include_directories(${${lib}_INCLUDE_DIRS}) + list(APPEND LIBS ${${lib}_LIBRARIES}) +@@ -79,7 +79,7 @@ + endforeach(lib) + + find_package(Gettext) +-if(Gettext_FOUND) ++if(GETTEXT_FOUND) + include_directories(${Gettext_INCLUDE_DIRS}) + list(APPEND LIBS ${Gettext_LIBRARIES}) + add_definitions("-DUSE_GETTEXT") +--- tools/CMakeLists.txt ++++ tools/CMakeLists.txt +@@ -6,7 +6,7 @@ + include_directories(${Boost_INCLUDE_DIRS}) + + # Find all the libs that don't require extra parameters +-foreach(lib LibXML++ Magick++ Z Jpeg Tiff Png Freetype Z) ++foreach(lib LibXML++ Magick++ ZLIB JPEG TIFF PNG Freetype ZLIB) + find_package(${lib}) + if (${lib}_FOUND) + include_directories(${${lib}_INCLUDE_DIRS}) +@@ -24,13 +24,13 @@ + if (LibXML++_FOUND) + if (Boost_FOUND) + if (Magick++_FOUND) +- if (Z_FOUND) ++ if (ZLIB_FOUND) + add_executable(ss_extract ss_extract.cpp pak.cpp ipu_conv.cpp ss_cover.cpp) +- target_link_libraries(ss_extract ${LibXML++_LIBRARIES} ${Boost_LIBRARIES} ${Magick++_LIBRARIES} ${Z_LIBRARIES} ${Jpeg_LIBRARIES} ${Tiff_LIBRARIES} ${Png_LIBRARIES} ${Freetype_LIBRARY} ${Magick++_LIBRARIES}) ++ target_link_libraries(ss_extract ${LibXML++_LIBRARIES} ${Boost_LIBRARIES} ${Magick++_LIBRARIES} ${ZLIB_LIBRARIES} ${JPEG_LIBRARIES} ${TIFF_LIBRARIES} ${PNG_LIBRARIES} ${Freetype_LIBRARY} ${Magick++_LIBRARIES}) + set(targets ${targets} ss_extract) +- else (Z_FOUND) ++ else (ZLIB_FOUND) + message("No zlib found, not building ss_extract") +- endif (Z_FOUND) ++ endif (ZLIB_FOUND) + else (Magick++_FOUND) + message("No Magick++ found, not building ss_extract") + endif (Magick++_FOUND) +@@ -40,7 +40,7 @@ + + if (Magick++_FOUND) + add_executable(ss_cover_conv cover_conv.cpp pak.cpp ss_cover.cpp) +- target_link_libraries(ss_cover_conv ${Magick++_LIBRARIES} ${LibXML++_LIBRARIES} ${Z_LIBRARIES} ${Jpeg_LIBRARIES} ${Tiff_LIBRARIES} ${Png_LIBRARIES} ${Freetype_LIBRARY} ${Magick++_LIBRARIES}) ++ target_link_libraries(ss_cover_conv ${Magick++_LIBRARIES} ${LibXML++_LIBRARIES} ${ZLIB_LIBRARIES} ${JPEG_LIBRARIES} ${TIFF_LIBRARIES} ${PNG_LIBRARIES} ${Freetype_LIBRARY} ${Magick++_LIBRARIES}) + set(targets ${targets} ss_cover_conv) + else (Magick++_FOUND) + message("No Magick++ found, not building ss_cover_conv") +@@ -58,13 +58,13 @@ + target_link_libraries(ss_archive_extract ${Boost_LIBRARIES}) + set(targets ${targets} ss_archive_extract) + +- if (Z_FOUND) ++ if (ZLIB_FOUND) + add_executable(itg_pck itg_pck.cc) +- target_link_libraries(itg_pck ${Boost_LIBRARIES} ${Z_LIBRARIES}) ++ target_link_libraries(itg_pck ${Boost_LIBRARIES} ${ZLIB_LIBRARIES}) + set(targets ${targets} itg_pck) + + add_executable(ss_chc_decode ss_chc_decode.cpp) +- target_link_libraries(ss_chc_decode ${Boost_LIBRARIES} ${Z_LIBRARIES}) ++ target_link_libraries(ss_chc_decode ${Boost_LIBRARIES} ${ZLIB_LIBRARIES}) + set(targets ${targets} ss_chc_decode) + endif() + endif (Boost_FOUND) diff --git a/community/qmmp/PKGBUILD b/community/qmmp/PKGBUILD index 3b45257bf..b56faa08c 100644 --- a/community/qmmp/PKGBUILD +++ b/community/qmmp/PKGBUILD @@ -1,9 +1,9 @@ -#$Id: PKGBUILD 82337 2013-01-15 11:35:09Z allan $ +#$Id: PKGBUILD 84362 2013-02-16 22:50:40Z ioni $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> pkgname=qmmp pkgver=0.6.6 -pkgrel=2 +pkgrel=5 pkgdesc="Qt4 based audio-player" arch=('i686' 'x86_64') url="http://qmmp.ylsoftware.com/" @@ -14,7 +14,7 @@ optdepends=('flac: native FLAC support' 'jack: JACK sound output' 'libmpcdec: Musepack support' 'pulseaudio: PulseAudio output' - 'libcdio: Compact Disc input and control support' + 'libcdio-paranoia: Compact Disc input and control support' 'libcddb: CDDB server support' 'libmms: MMS stream protocol support' 'libmodplug: MOD playing library' @@ -32,12 +32,16 @@ build() { patch -Np1 -i ${srcdir}/cdio-includes.patch - cmake . -DCMAKE_INSTALL_PREFIX=/usr + cmake . -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=/usr/lib make } package() { cd ${srcdir}/$pkgname-$pkgver - make DESTDIR=${pkgdir} install + + if [[ $CARCH == 'x86_64' ]]; then + mv $pkgdir/usr/lib64 $pkgdir/usr/lib + fi } diff --git a/community/signon-plugin-oauth2/PKGBUILD b/community/signon-plugin-oauth2/PKGBUILD index 0344743f9..9016f2a42 100644 --- a/community/signon-plugin-oauth2/PKGBUILD +++ b/community/signon-plugin-oauth2/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 81732 2012-12-27 21:40:51Z bgyorgy $ +# $Id: PKGBUILD 84333 2013-02-16 20:09:04Z bgyorgy $ # Maintainer: Balló György <ballogyor+arch at gmail dot com> pkgname=signon-plugin-oauth2 _pkgname=signon-oauth2 -pkgver=0.14 +pkgver=0.15 pkgrel=1 pkgdesc="OAuth 2 plugin for signon" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('LGPL') depends=('signon-ui' 'qjson') makedepends=('signon') source=(http://accounts-sso.googlecode.com/files/$_pkgname-$pkgver.tar.bz2) -sha1sums=('348c59af181c28ab3ac7b5fc76cd6758fc6b63e6') +sha1sums=('31f63f73eca2c8341ab41ec0d63650c9a0b4820a') build() { cd "$srcdir/$_pkgname-$pkgver" diff --git a/community/v8/PKGBUILD b/community/v8/PKGBUILD index be4399a1d..fac71067a 100644 --- a/community/v8/PKGBUILD +++ b/community/v8/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 82550 2013-01-20 16:42:36Z bpiotrowski $ +# $Id: PKGBUILD 84319 2013-02-16 12:46:17Z bpiotrowski $ # Maintainer: Kaiting Chen <kaitocracy@gmail.com> # Contributor: tocer <tocer.deng@gmail.com> pkgname=v8 pkgver=3.16.4.1 -pkgrel=1 -pkgdesc='A fast and modern javascript engine' +pkgrel=2 +pkgdesc='Fast and modern Javascript engine' arch=('i686' 'x86_64') url='http://code.google.com/p/v8' license=('BSD') @@ -33,12 +33,17 @@ build() { sed -i 's/python /python2 /' Makefile make $ARCH.release library=shared console=readline + + cd $srcdir && cp -r $pkgname-$pkgver d8-static-$pkgver + cd d8-static-$pkgver + make $ARCH.release library=static console=readline } package() { cd $srcdir/$pkgname-$pkgver install -Dm755 out/$ARCH.release/d8 $pkgdir/usr/bin/d8 + install -Dm755 $srcdir/d8-static-$pkgver/out/$ARCH.release/d8 $pkgdir/usr/bin/d8-static install -Dm755 out/$ARCH.release/lib.target/libv8.so $pkgdir/usr/lib/libv8.so install -d $pkgdir/usr/include diff --git a/community/vtk/PKGBUILD b/community/vtk/PKGBUILD index d107e8eda..ae80d0613 100644 --- a/community/vtk/PKGBUILD +++ b/community/vtk/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 83521 2013-02-02 12:57:08Z aginiewicz $ +# $Id: PKGBUILD 84363 2013-02-16 22:50:41Z ioni $ # Maintainer: Andrzej Giniewicz <gginiu@gmail.com> # Contributor: Thomas Dziedzic < gostrc at gmail > # Contributor: Christofer Bertonha <christoferbertonha at gmail dot com> @@ -10,7 +10,7 @@ pkgname=vtk pkgver=5.10.1 -pkgrel=3 +pkgrel=4 pkgdesc='A software system for 3D computer graphics, image processing, and visualization.' arch=('i686' 'x86_64') url='http://www.vtk.org/' |