From 8917cf5e44af1562114fe0d243dcea7d187c8047 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 2 Jul 2013 01:15:53 -0700 Subject: Tue Jul 2 01:15:53 PDT 2013 --- community/libvirt/PKGBUILD | 8 +-- community/marisa/ChangeLog | 10 ++++ community/marisa/PKGBUILD | 109 ++++++++++++++++++++++++++++++++++++++++ community/recorditnow/PKGBUILD | 13 ++--- community/rekonq/PKGBUILD | 6 +-- community/sakura/PKGBUILD | 6 +-- community/xjadeo/PKGBUILD | 42 ++++++++++++++++ community/xjadeo/qjadeo.desktop | 8 +++ community/xjadeo/xjadeo.install | 11 ++++ 9 files changed, 197 insertions(+), 16 deletions(-) create mode 100644 community/marisa/ChangeLog create mode 100644 community/marisa/PKGBUILD create mode 100644 community/xjadeo/PKGBUILD create mode 100644 community/xjadeo/qjadeo.desktop create mode 100644 community/xjadeo/xjadeo.install (limited to 'community') diff --git a/community/libvirt/PKGBUILD b/community/libvirt/PKGBUILD index 8e2bb92fe..3e4c3b6f8 100644 --- a/community/libvirt/PKGBUILD +++ b/community/libvirt/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 92992 2013-06-21 11:27:42Z spupykin $ +# $Id: PKGBUILD 93317 2013-07-01 14:35:45Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Jonathan Wiersma pkgname=libvirt -pkgver=1.0.6 -pkgrel=3 +pkgver=1.1.0 +pkgrel=1 pkgdesc="API for controlling virtualization engines (openvz,kvm,qemu,virtualbox,xen,etc)" arch=('i686' 'x86_64') url="http://libvirt.org/" @@ -34,7 +34,7 @@ source=("http://libvirt.org/sources/$pkgname-$pkgver.tar.gz" libvirtd.conf.d libvirtd-guests.conf.d libvirt.tmpfiles.d) -md5sums=('a4a09a981f902c4d6aa5138c753d64fd' +md5sums=('f980a84719033e9efca01048da505dfb' '3ed0e24f5b5e25bf553f5427d64915e6' '0a96ed876ffb1fcb9dff5a9b3a609c1e' '020971887442ebbf1b6949e031c8dd3f') diff --git a/community/marisa/ChangeLog b/community/marisa/ChangeLog new file mode 100644 index 000000000..b7f4b062d --- /dev/null +++ b/community/marisa/ChangeLog @@ -0,0 +1,10 @@ +2013-05-28 ponsfoot + + * marisa 0.2.4-2 + - Separate bindings to another packages + +2013-05-27 ponsfoot + + * marisa 0.2.4-1 + - Initial release on AUR + diff --git a/community/marisa/PKGBUILD b/community/marisa/PKGBUILD new file mode 100644 index 000000000..9d4effbc3 --- /dev/null +++ b/community/marisa/PKGBUILD @@ -0,0 +1,109 @@ +# Maintainer: Felix Yan +# Contributor: ponsfoot + +pkgbase=marisa +pkgname=('marisa' 'perl-marisa' 'python2-marisa' 'ruby-marisa') +pkgver=0.2.4 +pkgrel=2 +arch=('i686' 'x86_64') +url="https://code.google.com/p/marisa-trie/" +license=('BSD' 'LGPL') +options=(!libtool) +makedepends=('python2' 'ruby' 'perl') +changelog=ChangeLog +source=(https://marisa-trie.googlecode.com/files/$pkgbase-$pkgver.tar.gz) +sha1sums=('fb0ed7d993e84dff32ec456a79bd36a00022629d') + +build() { + cd "${pkgname}-${pkgver}" + ./configure --prefix=/usr --disable-static \ + # --enable-popcnt + # --enable-sse2 + # --enable-sse3 + # --enable-ssse3 + # --enable-sse4.1 + # --enable-sse4.2 + # --enable-sse4 + # --enable-sse4a + + 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 + + # Perl bindings + cd "${srcdir}/${pkgbase}-${pkgver}/bindings/perl" + perl Makefile.PL \ + INC="-I${srcdir}/${pkgbase}-${pkgver}/lib" \ + LIBS="-L${srcdir}/${pkgbase}-${pkgver}/lib/.libs" + make + + # Python bindings + cd "${srcdir}/${pkgbase}-${pkgver}/bindings/python" + python2 setup.py build_ext \ + --include-dirs="${srcdir}/${pkgbase}-${pkgver}/lib" \ + --library-dirs="${srcdir}/${pkgbase}-${pkgver}/lib/.libs" + python2 setup.py build + + # Ruby bindings + cd "${srcdir}/${pkgbase}-${pkgver}/bindings/ruby" + ruby extconf.rb \ + --with-opt-include="${srcdir}/${pkgbase}-${pkgver}/lib" \ + --with-opt-lib="${srcdir}/${pkgbase}-${pkgver}/lib/.libs" \ + --vendor + make +} + +package_marisa() { + pkgdesc="Static and space-efficient trie data structure library" + depends=('gcc-libs') + + cd "${pkgbase}-${pkgver}" + make DESTDIR="$pkgdir" install + + install -d "${pkgdir}/usr/share/doc/${pkgbase}-${pkgver}" + install -m 644 docs/* README "${pkgdir}/usr/share/doc/${pkgbase}-${pkgver}/" + + install -d "${pkgdir}/usr/share/licenses/$pkgname" + install -m 644 AUTHORS COPYING "${pkgdir}/usr/share/licenses/$pkgname/" +} + +package_perl-marisa() { + pkgdesc="Perl language binding for marisa" + depends=('perl' 'marisa') + + cd "${pkgbase}-${pkgver}/bindings/perl" + make DESTDIR="$pkgdir" install + + cd ../.. + install -d "${pkgdir}/usr/share/licenses/$pkgname" + install -m 644 AUTHORS COPYING "${pkgdir}/usr/share/licenses/$pkgname/" +} + +package_python2-marisa() { + pkgdesc="Python 2.x language binding for marisa" + depends=('python2' 'marisa') + + cd "${pkgbase}-${pkgver}/bindings/python" + python2 setup.py install --root="$pkgdir" + + cd ../.. + install -d "${pkgdir}/usr/share/licenses/$pkgname" + install -m 644 AUTHORS COPYING "${pkgdir}/usr/share/licenses/$pkgname/" +} + +package_ruby-marisa() { + pkgdesc="Ruby language binding for marisa" + depends=('ruby' 'marisa') + + cd "${pkgbase}-${pkgver}/bindings/ruby" + _hdrdir=`pkg-config --variable=rubyhdrdir ruby-2.0` + _arch=`pkg-config --variable=arch ruby-2.0` + make DESTDIR="$pkgdir" install \ + hdrdir="$_hdrdir" \ + arch_hdrdir="${_hdrdir}/${_arch}" \ + rubyhdrdir="$_hdrdir" + + cd ../.. + install -d "${pkgdir}/usr/share/licenses/$pkgname" + install -m 644 AUTHORS COPYING "${pkgdir}/usr/share/licenses/$pkgname/" +} diff --git a/community/recorditnow/PKGBUILD b/community/recorditnow/PKGBUILD index c50ff5d41..f3c003518 100644 --- a/community/recorditnow/PKGBUILD +++ b/community/recorditnow/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 81949 2013-01-04 08:45:38Z fyan $ +# $Id: PKGBUILD 93279 2013-07-01 05:44:50Z fyan $ # Maintainer: Felix Yan # Contributor: Yichao Yu # Contributor: Weng Xuetian @@ -7,15 +7,16 @@ pkgname=recorditnow pkgver=0.8.1 -pkgrel=4 +pkgrel=5 pkgdesc="A plugin based desktop recorder for KDE SC 4" arch=('i686' 'x86_64') url="http://kde-apps.org/content/show.php/RecordItNow?content=114610" license=('GPL') -depends=('kdebase-runtime' 'recordmydesktop' 'ffmpeg' 'xdg-utils') -makedepends=('cmake' 'automoc4') -optdepends=('mencoder: for mencoder encoder plugin') -provides=('recorditnow' 'joschy') +depends=('kdebase-runtime' 'ffmpeg' 'xdg-utils') +makedepends=('cmake' 'automoc4' 'recordmydesktop') +optdepends=('mencoder: for mencoder encoder plugin' + 'recordmydesktop') +provides=('joschy') conflicts=('joschy-git') install=recorditnow.install source=("http://downloads.sourceforge.net/project/recorditnow/${pkgname}-${pkgver}.tar.bz2" diff --git a/community/rekonq/PKGBUILD b/community/rekonq/PKGBUILD index 884a97be5..114d1669d 100644 --- a/community/rekonq/PKGBUILD +++ b/community/rekonq/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 93061 2013-06-23 17:21:00Z andrea $ +# $Id: PKGBUILD 93287 2013-07-01 06:22:40Z andrea $ # Maintainer: Peter Lewis # Maintainer: Andrea Scarpino # Contributor: Panagiotis Papadopoulos pkgname=rekonq -pkgver=2.3.1 +pkgver=2.3.2 pkgrel=1 pkgdesc='A WebKit based web browser for KDE' arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ optdepends=('kdebase-konqueror: search engines support' 'qca-ossl: to use the sync handler') install=${pkgname}.install source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2") -sha256sums=('1c552bad65c640bcd1a7550d45ad37ad93e16e75f14cf71685363e04f4c2a658') +sha256sums=('9cfdb7e02a08ad4d2b5dd6e8bd1c85c11013f41a3186c8c5c22454093722bc74') build(){ mkdir build diff --git a/community/sakura/PKGBUILD b/community/sakura/PKGBUILD index f1981a49c..4aff8641e 100644 --- a/community/sakura/PKGBUILD +++ b/community/sakura/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 71005 2012-05-21 18:31:37Z rvanharen $ +# $Id: PKGBUILD 93276 2013-07-01 04:10:57Z angvp $ # Maintainer: Ronald van Haren # Contributor: Dmitry N. Shilov pkgname=sakura -pkgver=3.0.4 +pkgver=3.1.0 pkgrel=1 pkgdesc="A terminal emulator based on GTK and VTE" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('vte3' 'libxft' 'desktop-file-utils') makedepends=('cmake') source=("https://launchpad.net/sakura/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2") install=sakura.install -sha1sums=('e4d3a7fce9600cbdec9fda1e6fd20f38ebb4655e') +sha1sums=('159abc2f83e912da1bfb35c9b239b092e78a044f') build() { cd $srcdir/${pkgname}-${pkgver} diff --git a/community/xjadeo/PKGBUILD b/community/xjadeo/PKGBUILD new file mode 100644 index 000000000..f90e2f9b7 --- /dev/null +++ b/community/xjadeo/PKGBUILD @@ -0,0 +1,42 @@ +# $Id: PKGBUILD 93274 2013-07-01 02:54:17Z speps $ +# Maintainer : speps + +pkgname=xjadeo +pkgver=0.7.3 +pkgrel=1 +pkgdesc="A simple video player that is synchronized to jack transport." +arch=('i686' 'x86_64') +url="http://xjadeo.sourceforge.net" +license=('GPL') +depends=('ffmpeg' 'imlib2' 'jack' 'liblo' 'libxpm' 'libxv' 'portmidi') +makedepends=('qt4') +optdepends=('qt4: for the GUI (qjadeo)') +source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" + "qjadeo.desktop") +install="$pkgname.install" +md5sums=('b5a67f7a8a8279f37ac681f40d6cbc10' + '315e2ab44ce3edf4068ff6db48942908') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr \ + --enable-qtgui \ + --with-qt4prefix=/usr/lib/qt4 + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install + + # rc file + install -Dm644 doc/xjadeorc "$pkgdir/etc/xjadeorc" + + # desktop file + install -Dm644 ../qjadeo.desktop \ + "$pkgdir/usr/share/applications/qjadeo.desktop" + + # icon + install -Dm644 doc/xjadeo.png \ + "$pkgdir/usr/share/pixmaps/qjadeo.png" +} diff --git a/community/xjadeo/qjadeo.desktop b/community/xjadeo/qjadeo.desktop new file mode 100644 index 000000000..4d68949f6 --- /dev/null +++ b/community/xjadeo/qjadeo.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Exec=qjadeo +Type=Application +Terminal=false +Name=QJadeo +Comment=QJadeo Jack Video Player +Categories=AudioVideo; +Icon=qjadeo \ No newline at end of file diff --git a/community/xjadeo/xjadeo.install b/community/xjadeo/xjadeo.install new file mode 100644 index 000000000..29a708b66 --- /dev/null +++ b/community/xjadeo/xjadeo.install @@ -0,0 +1,11 @@ +post_install() { + update-desktop-database -q +} + +post_install() { + post_install +} + +post_remove() { + post_install +} -- cgit v1.2.3-54-g00ecf