diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-02-24 14:50:00 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-02-24 14:50:00 +0100 |
commit | 82e1a8e4caf3318dbb60adda8c2649ae7ac15661 (patch) | |
tree | bc42529997fa58fc26481c8ba7524560f3baa5af | |
parent | f87cdf22eb712b5b1c118f768d4ff710fc839403 (diff) | |
parent | d466ef49f224a9347fe0375eac8126725e10a0a4 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/arpack/PKGBUILD
community/flac123/PKGBUILD
community/flashrom/PKGBUILD
community/liblockfile/PKGBUILD
community/python-cjson/PKGBUILD
community/tcpflow/PKGBUILD
extra/vlc/PKGBUILD
multilib/lib32-gnutls/PKGBUILD
multilib/lib32-libssh2/PKGBUILD
112 files changed, 753 insertions, 394 deletions
diff --git a/community/arpack/PKGBUILD b/community/arpack/PKGBUILD index 988f4ab62..e8750b029 100644 --- a/community/arpack/PKGBUILD +++ b/community/arpack/PKGBUILD @@ -1,29 +1,30 @@ -# $Id: PKGBUILD 62905 2012-01-29 00:58:19Z arodseth $ +# $Id: PKGBUILD 66078 2012-02-22 22:46:10Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: William Rea <sillywilly@gmail.com> # Contributor: Stefan Husmann <stefan-husmann@t-online.de> + pkgname=arpack -pkgver=3.0.2 -pkgrel=1 -pkgdesc="Collection of Fortran77 subroutines designed to solve large scale eigenvalue problems" +pkgver=3.1.0 +pkgrel=2 arch=('x86_64' 'i686' 'mips64el') -provides=('arpack-ng') -options=(!libtool) +pkgdesc="Fortran77 subroutines designed to solve large scale eigenvalue problems" url="http://forge.scilab.org/index.php/p/arpack-ng/" license=('BSD') -depends=('glibc' 'gcc-fortran' 'lapack') -source=("http://forge.scilab.org/upload/arpack-ng/files/arpack_3.0.2.tar.gz") -sha256sums=('4add769386e0f6b0484491bcff129c6f5234190dbf58e07cc068fbd5dc7278bf') +depends=('glibc' 'gcc-fortran' 'lapack' 'openmpi>=1.5.4-4') +provides=('arpack-ng') +options=('!libtool') +source=("http://forge.scilab.org/upload/$pkgname-ng/files/$pkgname-ng_$pkgver.tar.gz") +sha256sums=('65b7856126f06ecbf9ec450d50df92ca9260d4b0d21baf02497554ac230d6feb') build() { - cd "$srcdir/$pkgname-ng-$pkgver" + cd "$srcdir/$pkgname-ng_$pkgver" - ./configure --prefix=/usr - make + ./configure --prefix=/usr --enable-mpi + make F77="gfortran" LIBS+=" `pkg-config --libs ompi` " } package() { - cd "$srcdir/$pkgname-ng-$pkgver" + cd "$srcdir/$pkgname-ng_$pkgver" make DESTDIR="$pkgdir/" install install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" diff --git a/community/flac123/PKGBUILD b/community/flac123/PKGBUILD index 1e1e98153..3c1e21b46 100644 --- a/community/flac123/PKGBUILD +++ b/community/flac123/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 15382 2010-04-11 02:08:54Z andrea $ -# Maintainer: Chris Brannon +# $Id: PKGBUILD 66067 2012-02-22 17:27:23Z cbrannon $ +# Maintainer: Chris Brannon <chris@the-brannons.com> # Contributor: Corrado Primier <bardo@aur.archlinux.org> # Contributor: Patrick Burroughs <celticmadman@gmail.com> pkgname=flac123 pkgver=0.0.11 -pkgrel=3.1 +pkgrel=4 arch=('i686' 'x86_64' 'mips64el') license=('GPL2') pkgdesc="A command-line program for playing FLAC audio files" @@ -17,7 +17,11 @@ md5sums=('60204986d3556330255b87aa42a4c9d1') build() { cd ${srcdir}/${pkgname}-${pkgver} ./configure --prefix=/usr - make || return 1 + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} make DESTDIR=${pkgdir} install } diff --git a/community/flashrom/PKGBUILD b/community/flashrom/PKGBUILD index 628c47250..8cf1daafd 100644 --- a/community/flashrom/PKGBUILD +++ b/community/flashrom/PKGBUILD @@ -1,20 +1,20 @@ -# $Id: PKGBUILD 59589 2011-11-28 18:14:47Z giovanni $ +# $Id: PKGBUILD 65775 2012-02-22 12:26:09Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Cilyan Olowen <gaknar@gmail.com> # Contributor: fill <mailbox@fillo.ru> # Contributor: Anton Shestakov <engored*ya.ru> pkgname=flashrom -pkgver=0.9.4 -pkgrel=2 +pkgver=0.9.5 +pkgrel=1 pkgdesc="Utility for reading, writing, erasing and verifying flash ROM chips" -url="http://www.coreboot.org/Flashrom/" +url="http://www.coreboot.org/Flashrom" arch=('i686' 'x86_64' 'mips64el') license=('GPL') depends=('libftdi') makedepends=('zlib' 'pciutils') source=("http://download.flashrom.org/releases/${pkgname}-${pkgver}.tar.bz2") -md5sums=('d739a91aece12cc1e622038bb199541c') +md5sums=('6ec5ef19c92e4dc761de9486eee2b30d') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/community/gobby/PKGBUILD b/community/gobby/PKGBUILD index 96045e177..be3e5564a 100644 --- a/community/gobby/PKGBUILD +++ b/community/gobby/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 65534 2012-02-21 08:46:26Z spupykin $ +# $Id: PKGBUILD 65710 2012-02-22 10:19:25Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: William Rea <sillywilly@gmail.com> # Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> pkgname=gobby -pkgver=0.4.12 -pkgrel=3 +pkgver=0.4.13 +pkgrel=1 pkgdesc="A collaborative text editor" arch=('i686' 'x86_64' 'mips64el') url="http://gobby.0x539.de" @@ -17,7 +17,7 @@ depends=('obby' 'libxml++' 'gtkmm' 'gnome-vfs' 'libbonobo' 'libgtksourceviewmm2' makedepends=('gettext' 'intltool') source=(http://releases.0x539.de/gobby/gobby-$pkgver.tar.gz) -md5sums=('835cc48f5177196e4a18610c2cb013bf') +md5sums=('3848687159dbc649587857543b8d7b85') build() { cd $srcdir/gobby-$pkgver diff --git a/community/libgalago-gtk/PKGBUILD b/community/libgalago-gtk/PKGBUILD index 97b6966a4..ac572d64a 100644 --- a/community/libgalago-gtk/PKGBUILD +++ b/community/libgalago-gtk/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 8991 2010-01-23 02:17:26Z dgriffiths $ +# $Id: PKGBUILD 66197 2012-02-23 03:08:10Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: William Rea <sillywilly@gmail.com> pkgname=libgalago-gtk pkgver=0.5.0 -pkgrel=3 +pkgrel=4 pkgdesc="GTK+ widgets for the Galago presence framework" arch=(i686 x86_64 'mips64el') url="http://www.galago-project.org" @@ -15,9 +15,9 @@ source=(http://www.galago-project.org/files/releases/source/libgalago-gtk/libgal md5sums=('810f7922ac37ca87d61a0fb0cd830b8b') build() { - cd $startdir/src/$pkgname-$pkgver + cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr - make || return 1 - make DESTDIR=$startdir/pkg install - rm -rf $startdir/pkg/usr/share/autopackage + make + make DESTDIR=$pkgdir install + rm -rf $pkgdir/usr/share/autopackage } diff --git a/community/libgalago/PKGBUILD b/community/libgalago/PKGBUILD index 6e0fd95f9..10e899497 100644 --- a/community/libgalago/PKGBUILD +++ b/community/libgalago/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 21389 2010-07-16 11:55:53Z spupykin $ +# $Id: PKGBUILD 66196 2012-02-23 03:07:22Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: William Rea <sillywilly@gmail.com> pkgname=libgalago pkgver=0.5.2 -pkgrel=3 +pkgrel=4 pkgdesc="The Galago presence library" arch=(i686 x86_64 'mips64el') url="http://www.galago-project.org" @@ -18,9 +18,9 @@ md5sums=('7ec92f2ecba1309ac4b71b4b4d8d0a0d' build() { cd $srcdir/libgalago-$pkgver - patch -p0 -i ../libgalago-mkinstalldirs.patch || return 1 + patch -p0 -i ../libgalago-mkinstalldirs.patch ./configure --prefix=/usr --disable-tests - make || return 1 + make make DESTDIR=$pkgdir install rm -rf $pkgdir/usr/share/autopackage } diff --git a/community/libgoom2/PKGBUILD b/community/libgoom2/PKGBUILD new file mode 100644 index 000000000..d1264bd43 --- /dev/null +++ b/community/libgoom2/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 66115 2012-02-23 01:28:54Z giovanni $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: danitool + +pkgname=libgoom2 +pkgver=2k4 +pkgrel=2 +pkgdesc="Shared library part of the Goom visualization plugin" +arch=('i686' 'x86_64') +url="http://www.fovea.cc/?page=details_produits&id=goom" +license=('LGPL') +depends=('glibc') +options=('!libtool' '!emptydirs') +source=("http://downloads.sourceforge.net/project/goom/goom2k4/0/goom-2k4-0-src.tar.gz") +md5sums=('8100dd07e0c6784fdf079eeaa53a5c7f') + +build() { + cd "${srcdir}/goom2k4-0" + + ./configure --prefix=/usr \ + --without-xmms \ + --without-sdl + make +} + +package() { + cd "${srcdir}/goom2k4-0" + + make DESTDIR="${pkgdir}" install +} diff --git a/community/libharu/PKGBUILD b/community/libharu/PKGBUILD index 75928feae..6100ef2aa 100644 --- a/community/libharu/PKGBUILD +++ b/community/libharu/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 63644 2012-02-05 12:03:04Z ibiru $ +# $Id: PKGBUILD 66215 2012-02-23 03:29:40Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer : SpepS <dreamspepser at yahoo dot it> # Contributor: Auguste <auguste@gmail.com> @@ -6,7 +6,7 @@ pkgname=libharu pkgver=2.2.1 -pkgrel=2 +pkgrel=3 pkgdesc="C/C++ library for generating PDF documents" url="http://libharu.org/wiki/Main_Page" arch=('i686' 'x86_64' 'mips64el') @@ -16,7 +16,7 @@ options=(!libtool) source=("http://libharu.org/files/$pkgname-$pkgver.tar.gz" libpng15.patch) md5sums=('63da8e087744f1d6cf16f9501b1cb766' - '3793dd30017474bcd277af3b419bc0f6') + '01ead345fba55e6374fe2dbf9be0db3e') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/libharu/libpng15.patch b/community/libharu/libpng15.patch index 05a8d39fc..210c5c29a 100644 --- a/community/libharu/libpng15.patch +++ b/community/libharu/libpng15.patch @@ -6,15 +6,15 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p png_uint_32 len = png_get_rowbytes(png_ptr, info_ptr); png_bytep* row_pointers = HPDF_GetMem (image->mmgr, - info_ptr->height * sizeof (png_bytep)); -+ png_image_height(png_ptr, info_ptr) * sizeof (png_bytep)); ++ png_get_image_height(png_ptr, info_ptr) * sizeof (png_bytep)); if (row_pointers) { HPDF_UINT i; - HPDF_MemSet (row_pointers, 0, info_ptr->height * sizeof (png_bytep)); - for (i = 0; i < (HPDF_UINT)info_ptr->height; i++) { -+ HPDF_MemSet (row_pointers, 0, png_image_height(png_ptr, info_ptr) * sizeof (png_bytep)); -+ for (i = 0; i < (HPDF_UINT)png_image_height(png_ptr, info_ptr); i++) { ++ HPDF_MemSet (row_pointers, 0, png_get_image_height(png_ptr, info_ptr) * sizeof (png_bytep)); ++ for (i = 0; i < (HPDF_UINT)png_get_image_height(png_ptr, info_ptr); i++) { row_pointers[i] = HPDF_GetMem (image->mmgr, len); if (image->error->error_no != HPDF_OK) @@ -23,7 +23,7 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p png_read_image(png_ptr, row_pointers); if (image->error->error_no == HPDF_OK) { /* add this line */ - for (i = 0; i < (HPDF_UINT)info_ptr->height; i++) { -+ for (i = 0; i < (HPDF_UINT)png_image_height(png_ptr, info_ptr); i++) { ++ for (i = 0; i < (HPDF_UINT)png_get_image_height(png_ptr, info_ptr); i++) { if (HPDF_Stream_Write (image->stream, row_pointers[i], len) != HPDF_OK) break; @@ -32,7 +32,7 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p /* clean up */ - for (i = 0; i < (HPDF_UINT)info_ptr->height; i++) { -+ for (i = 0; i < (HPDF_UINT)png_image_height(png_ptr, info_ptr); i++) { ++ for (i = 0; i < (HPDF_UINT)png_get_image_height(png_ptr, info_ptr); i++) { HPDF_FreeMem (image->mmgr, row_pointers[i]); } @@ -41,7 +41,7 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p HPDF_UINT i; - for (i = 0; i < (HPDF_UINT)info_ptr->height; i++) { -+ for (i = 0; i < (HPDF_UINT)png_image_height(png_ptr, info_ptr); i++) { ++ for (i = 0; i < (HPDF_UINT)png_get_image_height(png_ptr, info_ptr); i++) { png_read_rows(png_ptr, (png_byte**)&buf_ptr, NULL, 1); if (image->error->error_no != HPDF_OK) break; @@ -50,14 +50,14 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p png_bytep *row_ptr; - row_ptr = HPDF_GetMem (image->mmgr, info_ptr->height * sizeof(png_bytep)); -+ row_ptr = HPDF_GetMem (image->mmgr, png_image_height(png_ptr, info_ptr) * sizeof(png_bytep)); ++ row_ptr = HPDF_GetMem (image->mmgr, png_get_image_height(png_ptr, info_ptr) * sizeof(png_bytep)); if (!row_ptr) { return HPDF_FAILD_TO_ALLOC_MEM; } else { png_uint_32 len = png_get_rowbytes(png_ptr, info_ptr); - for (i = 0; i < (HPDF_UINT)info_ptr->height; i++) { -+ for (i = 0; i < (HPDF_UINT)png_image_height(png_ptr, info_ptr); i++) { ++ for (i = 0; i < (HPDF_UINT)png_get_image_height(png_ptr, info_ptr); i++) { row_ptr[i] = HPDF_GetMem(image->mmgr, len); if (!row_ptr[i]) { for (; i >= 0; i--) { @@ -68,13 +68,13 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p - for (j = 0; j < info_ptr->height; j++) { - for (i = 0; i < info_ptr->width; i++) { - smask_data[info_ptr->width * j + i] = (row_ptr[j][i] < num_trans) ? trans[row_ptr[j][i]] : 0xFF; -+ for (j = 0; j < png_image_height(png_ptr, info_ptr); j++) { -+ for (i = 0; i < png_image_width(png_ptr, info_ptr); i++) { -+ smask_data[png_image_width(png_ptr, info_ptr) * j + i] = (row_ptr[j][i] < num_trans) ? trans[row_ptr[j][i]] : 0xFF; ++ for (j = 0; j < png_get_image_height(png_ptr, info_ptr); j++) { ++ for (i = 0; i < png_get_image_width(png_ptr, info_ptr); i++) { ++ smask_data[png_get_image_width(png_ptr, info_ptr) * j + i] = (row_ptr[j][i] < num_trans) ? trans[row_ptr[j][i]] : 0xFF; } - if (HPDF_Stream_Write (image->stream, row_ptr[j], info_ptr->width) != HPDF_OK) { -+ if (HPDF_Stream_Write (image->stream, row_ptr[j], png_image_width(png_ptr, info_ptr)) != HPDF_OK) { ++ if (HPDF_Stream_Write (image->stream, row_ptr[j], png_get_image_width(png_ptr, info_ptr)) != HPDF_OK) { ret = HPDF_FILE_IO_ERROR; goto Error; } @@ -82,7 +82,7 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p Error: - for (i = 0; i < (HPDF_UINT)info_ptr->height; i++) { -+ for (i = 0; i < (HPDF_UINT)png_image_height(png_ptr, info_ptr); i++) { ++ for (i = 0; i < (HPDF_UINT)png_get_image_height(png_ptr, info_ptr); i++) { HPDF_FreeMem (image->mmgr, row_ptr[i]); } @@ -91,14 +91,14 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p } - row_ptr = HPDF_GetMem (image->mmgr, info_ptr->height * sizeof(png_bytep)); -+ row_ptr = HPDF_GetMem (image->mmgr, png_image_height(png_ptr, info_ptr) * sizeof(png_bytep)); ++ row_ptr = HPDF_GetMem (image->mmgr, png_get_image_height(png_ptr, info_ptr) * sizeof(png_bytep)); if (!row_ptr) { return HPDF_FAILD_TO_ALLOC_MEM; } else { png_uint_32 len = png_get_rowbytes(png_ptr, info_ptr); - for (i = 0; i < (HPDF_UINT)info_ptr->height; i++) { -+ for (i = 0; i < (HPDF_UINT)png_image_height(png_ptr, info_ptr); i++) { ++ for (i = 0; i < (HPDF_UINT)png_get_image_height(png_ptr, info_ptr); i++) { row_ptr[i] = HPDF_GetMem(image->mmgr, len); if (!row_ptr[i]) { for (; i >= 0; i--) { @@ -109,13 +109,13 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p - row_len = 3 * info_ptr->width * sizeof(png_byte); - for (j = 0; j < info_ptr->height; j++) { - for (i = 0; i < info_ptr->width; i++) { -+ row_len = 3 * png_image_width(png_ptr, info_ptr) * sizeof(png_byte); -+ for (j = 0; j < png_image_height(png_ptr, info_ptr); j++) { -+ for (i = 0; i < png_image_width(png_ptr, info_ptr); i++) { ++ row_len = 3 * png_get_image_width(png_ptr, info_ptr) * sizeof(png_byte); ++ for (j = 0; j < png_get_image_height(png_ptr, info_ptr); j++) { ++ for (i = 0; i < png_get_image_width(png_ptr, info_ptr); i++) { row = row_ptr[j]; memmove(row + (3 * i), row + (4*i), 3); - smask_data[info_ptr->width * j + i] = row[4 * i + 3]; -+ smask_data[png_image_width(png_ptr, info_ptr) * j + i] = row[4 * i + 3]; ++ smask_data[png_get_image_width(png_ptr, info_ptr) * j + i] = row[4 * i + 3]; } if (HPDF_Stream_Write (image->stream, row, row_len) != HPDF_OK) { @@ -126,13 +126,13 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p - row_len = info_ptr->width * sizeof(png_byte); - for (j = 0; j < info_ptr->height; j++) { - for (i = 0; i < info_ptr->width; i++) { -+ row_len = png_image_width(png_ptr, info_ptr) * sizeof(png_byte); -+ for (j = 0; j < png_image_height(png_ptr, info_ptr); j++) { -+ for (i = 0; i < png_image_width(png_ptr, info_ptr); i++) { ++ row_len = png_get_image_width(png_ptr, info_ptr) * sizeof(png_byte); ++ for (j = 0; j < png_get_image_height(png_ptr, info_ptr); j++) { ++ for (i = 0; i < png_get_image_width(png_ptr, info_ptr); i++) { row = row_ptr[j]; row[i] = row[2 * i]; - smask_data[info_ptr->width * j + i] = row[2 * i + 1]; -+ smask_data[png_image_width(png_ptr, info_ptr) * j + i] = row[2 * i + 1]; ++ smask_data[png_get_image_width(png_ptr, info_ptr) * j + i] = row[2 * i + 1]; } if (HPDF_Stream_Write (image->stream, row, row_len) != HPDF_OK) { @@ -141,7 +141,7 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p Error: - for (i = 0; i < (HPDF_UINT)info_ptr->height; i++) { -+ for (i = 0; i < (HPDF_UINT)png_image_height(png_ptr, info_ptr); i++) { ++ for (i = 0; i < (HPDF_UINT)png_get_image_height(png_ptr, info_ptr); i++) { HPDF_FreeMem (image->mmgr, row_ptr[i]); } @@ -169,8 +169,8 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p ret += HPDF_Dict_AddName (smask, "Subtype", "Image"); - ret += HPDF_Dict_AddNumber (smask, "Width", (HPDF_UINT)info_ptr->width); - ret += HPDF_Dict_AddNumber (smask, "Height", (HPDF_UINT)info_ptr->height); -+ ret += HPDF_Dict_AddNumber (smask, "Width", (HPDF_UINT)png_image_width(png_ptr, info_ptr)); -+ ret += HPDF_Dict_AddNumber (smask, "Height", (HPDF_UINT)png_image_height(png_ptr, info_ptr)); ++ ret += HPDF_Dict_AddNumber (smask, "Width", (HPDF_UINT)png_get_image_width(png_ptr, info_ptr)); ++ ret += HPDF_Dict_AddNumber (smask, "Height", (HPDF_UINT)png_get_image_height(png_ptr, info_ptr)); ret += HPDF_Dict_AddName (smask, "ColorSpace", "DeviceGray"); - ret += HPDF_Dict_AddNumber (smask, "BitsPerComponent", (HPDF_UINT)info_ptr->bit_depth); + ret += HPDF_Dict_AddNumber (smask, "BitsPerComponent", (HPDF_UINT)png_get_bit_depth(png_ptr, info_ptr)); @@ -182,7 +182,7 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p } - smask_data = HPDF_GetMem(image->mmgr, info_ptr->width * info_ptr->height); -+ smask_data = HPDF_GetMem(image->mmgr, png_image_width(png_ptr, info_ptr) * png_image_height(png_ptr, info_ptr)); ++ smask_data = HPDF_GetMem(image->mmgr, png_get_image_width(png_ptr, info_ptr) * png_get_image_height(png_ptr, info_ptr)); if (!smask_data) { HPDF_Dict_Free(smask); ret = HPDF_FAILD_TO_ALLOC_MEM; @@ -191,7 +191,7 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p } - if (HPDF_Stream_Write(smask->stream, smask_data, info_ptr->width * info_ptr->height) != HPDF_OK) { -+ if (HPDF_Stream_Write(smask->stream, smask_data, png_image_width(png_ptr, info_ptr) * png_image_height(png_ptr, info_ptr)) != HPDF_OK) { ++ if (HPDF_Stream_Write(smask->stream, smask_data, png_get_image_width(png_ptr, info_ptr) * png_get_image_height(png_ptr, info_ptr)) != HPDF_OK) { HPDF_FreeMem(image->mmgr, smask_data); HPDF_Dict_Free(smask); ret = HPDF_FILE_IO_ERROR; @@ -202,8 +202,8 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p - ret += HPDF_Dict_AddNumber (image, "Width", (HPDF_UINT)info_ptr->width); - ret += HPDF_Dict_AddNumber (image, "Height", (HPDF_UINT)info_ptr->height); - ret += HPDF_Dict_AddNumber (image, "BitsPerComponent", (HPDF_UINT)info_ptr->bit_depth); -+ ret += HPDF_Dict_AddNumber (image, "Width", (HPDF_UINT)png_image_width(png_ptr, info_ptr)); -+ ret += HPDF_Dict_AddNumber (image, "Height", (HPDF_UINT)png_image_height(png_ptr, info_ptr)); ++ ret += HPDF_Dict_AddNumber (image, "Width", (HPDF_UINT)png_get_image_width(png_ptr, info_ptr)); ++ ret += HPDF_Dict_AddNumber (image, "Height", (HPDF_UINT)png_get_image_height(png_ptr, info_ptr)); + ret += HPDF_Dict_AddNumber (image, "BitsPerComponent", (HPDF_UINT)png_get_bit_depth(png_ptr, info_ptr)); ret += HPDF_Dict_Add (image, "SMask", smask); @@ -223,8 +223,8 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p ret += HPDF_Dict_AddName (smask, "Subtype", "Image"); - ret += HPDF_Dict_AddNumber (smask, "Width", (HPDF_UINT)info_ptr->width); - ret += HPDF_Dict_AddNumber (smask, "Height", (HPDF_UINT)info_ptr->height); -+ ret += HPDF_Dict_AddNumber (smask, "Width", (HPDF_UINT)png_image_width(png_ptr, info_ptr)); -+ ret += HPDF_Dict_AddNumber (smask, "Height", (HPDF_UINT)png_image_height(png_ptr, info_ptr)); ++ ret += HPDF_Dict_AddNumber (smask, "Width", (HPDF_UINT)png_get_image_width(png_ptr, info_ptr)); ++ ret += HPDF_Dict_AddNumber (smask, "Height", (HPDF_UINT)png_get_image_height(png_ptr, info_ptr)); ret += HPDF_Dict_AddName (smask, "ColorSpace", "DeviceGray"); - ret += HPDF_Dict_AddNumber (smask, "BitsPerComponent", (HPDF_UINT)info_ptr->bit_depth); + ret += HPDF_Dict_AddNumber (smask, "BitsPerComponent", (HPDF_UINT)png_get_bit_depth(png_ptr, info_ptr)); @@ -236,7 +236,7 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p } - smask_data = HPDF_GetMem(image->mmgr, info_ptr->width * info_ptr->height); -+ smask_data = HPDF_GetMem(image->mmgr, png_image_width(png_ptr, info_ptr) * png_image_height(png_ptr, info_ptr)); ++ smask_data = HPDF_GetMem(image->mmgr, png_get_image_width(png_ptr, info_ptr) * png_get_image_height(png_ptr, info_ptr)); if (!smask_data) { HPDF_Dict_Free(smask); ret = HPDF_FAILD_TO_ALLOC_MEM; @@ -245,7 +245,7 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p } - if (HPDF_Stream_Write(smask->stream, smask_data, info_ptr->width * info_ptr->height) != HPDF_OK) { -+ if (HPDF_Stream_Write(smask->stream, smask_data, png_image_width(png_ptr, info_ptr) * png_image_height(png_ptr, info_ptr)) != HPDF_OK) { ++ if (HPDF_Stream_Write(smask->stream, smask_data, png_get_image_width(png_ptr, info_ptr) * png_get_image_height(png_ptr, info_ptr)) != HPDF_OK) { HPDF_FreeMem(image->mmgr, smask_data); HPDF_Dict_Free(smask); ret = HPDF_FILE_IO_ERROR; @@ -262,8 +262,8 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p - ret += HPDF_Dict_AddNumber (image, "Width", (HPDF_UINT)info_ptr->width); - ret += HPDF_Dict_AddNumber (image, "Height", (HPDF_UINT)info_ptr->height); - ret += HPDF_Dict_AddNumber (image, "BitsPerComponent", (HPDF_UINT)info_ptr->bit_depth); -+ ret += HPDF_Dict_AddNumber (image, "Width", (HPDF_UINT)png_image_width(png_ptr, info_ptr)); -+ ret += HPDF_Dict_AddNumber (image, "Height", (HPDF_UINT)png_image_height(png_ptr, info_ptr)); ++ ret += HPDF_Dict_AddNumber (image, "Width", (HPDF_UINT)png_get_image_width(png_ptr, info_ptr)); ++ ret += HPDF_Dict_AddNumber (image, "Height", (HPDF_UINT)png_get_image_height(png_ptr, info_ptr)); + ret += HPDF_Dict_AddNumber (image, "BitsPerComponent", (HPDF_UINT)png_get_bit_depth(png_ptr, info_ptr)); ret += HPDF_Dict_Add (image, "SMask", smask); @@ -285,12 +285,12 @@ diff -wbBur libharu-2.2.1/src/hpdf_image_png.c libharu-2.2.1.my/src/hpdf_image_p /* setting the info of the image. */ - if (HPDF_Dict_AddNumber (image, "Width", (HPDF_UINT)info_ptr->width) -+ if (HPDF_Dict_AddNumber (image, "Width", (HPDF_UINT)png_image_width(png_ptr, info_ptr)) ++ if (HPDF_Dict_AddNumber (image, "Width", (HPDF_UINT)png_get_image_width(png_ptr, info_ptr)) != HPDF_OK) goto Exit; - if (HPDF_Dict_AddNumber (image, "Height", (HPDF_UINT)info_ptr->height) -+ if (HPDF_Dict_AddNumber (image, "Height", (HPDF_UINT)png_image_height(png_ptr, info_ptr)) ++ if (HPDF_Dict_AddNumber (image, "Height", (HPDF_UINT)png_get_image_height(png_ptr, info_ptr)) != HPDF_OK) goto Exit; diff --git a/community/libkate/PKGBUILD b/community/libkate/PKGBUILD new file mode 100644 index 000000000..3bd121d24 --- /dev/null +++ b/community/libkate/PKGBUILD @@ -0,0 +1,40 @@ +# $Id: PKGBUILD 66073 2012-02-22 22:19:27Z giovanni $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: N30N <archlinux@alunamation.com> +# Contributor: linkmauve <linkmauve@linkmauve.fr> +# Contributor: mokkurkalve <xenofil@gmail.com> + +pkgname=libkate +pkgver=0.4.1 +pkgrel=2 +pkgdesc="A karaoke and text codec for embedding in ogg" +url="http://libkate.googlecode.com/" +license=('BSD') +arch=('i686' 'x86_64') +depends=('libpng' 'libogg' 'python2') +makedepends=('pkg-config') +optdepends=('wxpython: for KateDJ' + 'liboggz: for KateDJ') +options=('!libtool') +source=("http://libkate.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") +md5sums=('1dfdbdeb2fa5d07063cf5b8261111fca') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + export PYTHON="/usr/bin/python2" + sed "1s/python$/python2/" -i tools/KateDJ/KateDJ + + ./configure --prefix=/usr \ + --disable-static \ + --disable-doc + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install + # install BSD license + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} diff --git a/community/liblinebreak/PKGBUILD b/community/liblinebreak/PKGBUILD index 06400e82c..0a3d47a39 100644 --- a/community/liblinebreak/PKGBUILD +++ b/community/liblinebreak/PKGBUILD @@ -1,7 +1,10 @@ +# $Id: PKGBUILD 66198 2012-02-23 03:08:54Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Orivej Desh <smpuj@bk.ru> + pkgname=liblinebreak pkgver=2.0 -pkgrel=1 +pkgrel=2 pkgdesc="An implementation of the line breaking algorithm as described in Unicode 5.2.0 Standard Annex 14, Revision 24" arch=("i686" "x86_64" 'mips64el') url="http://vimgadgets.sourceforge.net/liblinebreak/" @@ -15,7 +18,7 @@ md5sums=('c4ac2052b9e1883822662ecee483c542') build() { cd "$srcdir/liblinebreak-$pkgver" ./configure --prefix=/usr - make || return 1 + make make DESTDIR="$pkgdir" install install -Dm644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } diff --git a/community/liblockfile/PKGBUILD b/community/liblockfile/PKGBUILD index 6493172c0..9429a7d50 100644 --- a/community/liblockfile/PKGBUILD +++ b/community/liblockfile/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 50818 2011-07-01 16:29:42Z spupykin $ +# $Id: PKGBUILD 66217 2012-02-23 03:31:35Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Andreas Wagner <Andreas dot Wagner at em dot uni-frankfurt dot de> pkgname=liblockfile pkgver=1.08_4 _basever=1.08 -pkgrel=1.1 +pkgrel=2 pkgdesc="a library with NFS-safe locking functions" arch=('i686' 'x86_64' 'mips64el') license=('GPL') @@ -29,5 +29,5 @@ build() { package() { cd $srcdir/$pkgname-${_basever} mkdir -p $pkgdir/usr/{lib,bin,include,share/man/man1,share/man/man3} - make install prefix=$pkgdir/usr mandir=$startdir/pkg/usr/share/man + make install prefix=$pkgdir/usr mandir=$pkgdir/usr/share/man } diff --git a/community/libnetfilter_conntrack/PKGBUILD b/community/libnetfilter_conntrack/PKGBUILD index a62461fe3..c8cbf59fa 100644 --- a/community/libnetfilter_conntrack/PKGBUILD +++ b/community/libnetfilter_conntrack/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 43115 2011-03-24 07:48:06Z spupykin $ +# $Id: PKGBUILD 66200 2012-02-23 03:12:17Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Alessandro Sagratini <ale_sagra@hotmail.com> # Contributor: Kevin Edmonds <edmondskevin@hotmail.com> pkgname=libnetfilter_conntrack pkgver=0.9.1 -pkgrel=1 +pkgrel=2 pkgdesc="userspace library providing a programming interface (API) to the in-kernel connection tracking state table" arch=('i686' 'x86_64' 'mips64el') depends=(libnfnetlink) diff --git a/community/libnetfilter_queue/PKGBUILD b/community/libnetfilter_queue/PKGBUILD index e8622ab11..2617cb561 100644 --- a/community/libnetfilter_queue/PKGBUILD +++ b/community/libnetfilter_queue/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 21392 2010-07-16 11:56:31Z spupykin $ +# $Id: PKGBUILD 66195 2012-02-23 03:06:28Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Kevin Edmonds <edmondskevin@hotmail.com> # Maintainer: Filip Wojciechowski, filip at loka dot pl pkgname=libnetfilter_queue pkgver=1.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="userspace library providing an API to packets that have been queued by the kernel packet filter" arch=('i686' 'x86_64' 'mips64el') url="http://www.netfilter.org/projects/libnetfilter_queue/index.html" @@ -19,6 +19,6 @@ md5sums=('af6a9ea350f63a13609bc3b47b5c395c') build() { cd $srcdir/$pkgname-$pkgver ./configure --prefix=/usr - make || return 1 + make make DESTDIR=$pkgdir install } diff --git a/community/liboggz/PKGBUILD b/community/liboggz/PKGBUILD new file mode 100644 index 000000000..a59a76743 --- /dev/null +++ b/community/liboggz/PKGBUILD @@ -0,0 +1,36 @@ +# $Id: PKGBUILD 66071 2012-02-22 22:11:00Z giovanni $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: Vincent Cappe <vcappe at gmail dot com> +# Contributor: Jeff Bailes <thepizzaking at gmail dot com> +# Contributor: SpepS <dreamspepser at yahoo dot it> + +pkgname=liboggz +pkgver=1.1.1 +pkgrel=2 +pkgdesc="A simple programming interface for reading and writing Ogg files and streams" +arch=('i686' 'x86_64') +url="http://www.xiph.org/oggz/" +license=('custom:BSD') +depends=('libogg' 'sh') +makedepends=('doxygen' 'pkg-config') +options=('!libtool') +source=("http://downloads.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('3649a657f8e368b881ba8b1b57381ff7') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr \ + --enable-static=no + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install + # license + install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + # bash completion + install -Dm644 bash-completion/oggz "${pkgdir}/etc/bash_completion.d/oggz" +} diff --git a/community/libopensync/PKGBUILD b/community/libopensync/PKGBUILD index 8e2ff03b8..92565954f 100644 --- a/community/libopensync/PKGBUILD +++ b/community/libopensync/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: $ +# $Id: PKGBUILD 66195 2012-02-23 03:06:28Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Hauke Wesselmann <hauke@h-dawg.de> # Contributor: Laurie Clark-Michalek <bluepeppers@archlinux.us> pkgname=libopensync pkgver=0.39 -pkgrel=3 +pkgrel=4 pkgdesc='Stable version of the opensync synchronisation framework' url='http://www.opensync.org' license=('LGPL') diff --git a/community/librcd/PKGBUILD b/community/librcd/PKGBUILD index 03f8adcbf..61d787d4e 100644 --- a/community/librcd/PKGBUILD +++ b/community/librcd/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 21395 2010-07-16 11:57:07Z spupykin $ +# $Id: PKGBUILD 66203 2012-02-23 03:17:12Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=librcd pkgver=0.1.11 -pkgrel=2 +pkgrel=3 pkgdesc="Charset Detection Library" arch=(i686 x86_64 'mips64el') url="http://rusxmms.sourceforge.net/" @@ -17,6 +17,6 @@ md5sums=('17fcea35961f85c21c58a233d54a508c') build() { cd $srcdir/$pkgname-${pkgver} ./configure --prefix=/usr - make || return 1 + make make DESTDIR=$pkgdir install } diff --git a/community/librtfcomp/PKGBUILD b/community/librtfcomp/PKGBUILD index af1efdc99..eecc73f66 100644 --- a/community/librtfcomp/PKGBUILD +++ b/community/librtfcomp/PKGBUILD @@ -1,8 +1,9 @@ +# $Id: PKGBUILD 66204 2012-02-23 03:18:55Z spupykin $ # Contributor: Bartek Iwaniec <hash87 [at] gmail [dot] com> pkgname=librtfcomp pkgver=1.1 -pkgrel=4 +pkgrel=5 pkgdesc="SynCE librtfcomp library" arch=(i686 x86_64 'mips64el') license=('GPL') diff --git a/community/libsieve/PKGBUILD b/community/libsieve/PKGBUILD index e24061ba2..bcdc8933f 100644 --- a/community/libsieve/PKGBUILD +++ b/community/libsieve/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 21398 2010-07-16 11:57:45Z spupykin $ +# $Id: PKGBUILD 66205 2012-02-23 03:19:36Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=libsieve pkgver=2.2.7 -pkgrel=2 +pkgrel=3 pkgdesc="sieve interpretator lib" arch=(i686 x86_64 'mips64el') url="http://libsieve.sourceforge.net/" @@ -15,6 +15,6 @@ md5sums=('7415e7cfe40cfc6cf43ae26efb5f0fb7') build() { cd "$srcdir/$pkgname-$pkgver/src" ./configure --prefix=/usr - make || return 1 + make make DESTDIR="$pkgdir/" install } diff --git a/community/libsynaptics/PKGBUILD b/community/libsynaptics/PKGBUILD index 9422a9a01..33a07cf8c 100644 --- a/community/libsynaptics/PKGBUILD +++ b/community/libsynaptics/PKGBUILD @@ -1,15 +1,16 @@ -# $Id: PKGBUILD 21469 2010-07-16 12:30:12Z spupykin $ +# $Id: PKGBUILD 66206 2012-02-23 03:20:15Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Giovanni Scafora <giovanni@archlinux.org> pkgname=libsynaptics pkgver=0.14.6c -pkgrel=4 +pkgrel=5 pkgdesc="Library for accessing synaptics touchpads" arch=('i686' 'x86_64' 'mips64el') url="http://qsynaptics.sourceforge.net" license=('GPL') depends=('gcc-libs') +makedepends=('xproto') options=('!libtool') source=(http://qsynaptics.sourceforge.net/$pkgname-$pkgver.tar.bz2 libsynaptics-gcc433.patch) md5sums=('fedf8b31171d288954ff2e83b251de44' @@ -20,6 +21,6 @@ build() { patch -Np0 -i ../libsynaptics-gcc433.patch sed -i '1,1i#include <stdio.h>' pad.cpp ./configure --prefix=/usr - make || return 1 + make make DESTDIR=$pkgdir install } diff --git a/community/libtiger/PKGBUILD b/community/libtiger/PKGBUILD new file mode 100644 index 000000000..4fff8f708 --- /dev/null +++ b/community/libtiger/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 66081 2012-02-22 23:05:43Z giovanni $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> + +pkgname=libtiger +pkgver=0.3.4 +pkgrel=2 +pkgdesc="A rendering library for Kate streams using Pango and Cairo" +url="http://libtiger.googlecode.com/" +license=('LGPL') +arch=('i686' 'x86_64') +depends=('pango' 'libkate') +makedepends=('pkg-config') +options=('!libtool') +source=("http://libtiger.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") +md5sums=("dc1dbeb658c95485ba10b9b2897b4ae2") + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure --prefix=/usr \ + --enable-static=no \ + --disable-doc + + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install +} diff --git a/community/libview/PKGBUILD b/community/libview/PKGBUILD index 1137d4e78..8cedfcc3b 100644 --- a/community/libview/PKGBUILD +++ b/community/libview/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 21404 2010-07-16 11:58:58Z spupykin $ +# $Id: PKGBUILD 66207 2012-02-23 03:21:57Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: William Rea <sillywilly@gmail.com> pkgname=libview pkgver=0.6.6 -pkgrel=1 +pkgrel=2 pkgdesc="A collection of widgets that were developed at VMware" arch=('i686' 'x86_64' 'mips64el') url="http://view.sourceforge.net" @@ -17,7 +17,7 @@ md5sums=('f50f7cb04a4918e52a1707014dde47d2') build() { cd $srcdir/libview-$pkgver ./autogen.sh --prefix=/usr - make || return 1 + make make DESTDIR=$pkgdir install install -D COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING } diff --git a/community/libyaml/PKGBUILD b/community/libyaml/PKGBUILD index cce92abf4..40ed21c74 100644 --- a/community/libyaml/PKGBUILD +++ b/community/libyaml/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 4881 2009-11-02 10:41:05Z spupykin $ +# $Id: PKGBUILD 66208 2012-02-23 03:22:37Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Michal Bozon <michal.bozon__at__gmail.com> pkgname=libyaml pkgver=0.1.4 -pkgrel=1 +pkgrel=2 pkgdesc="YAML 1.1 library" arch=('i686' 'x86_64' 'mips64el') url="http://pyyaml.org/wiki/LibYAML" diff --git a/community/libzrtpcpp/PKGBUILD b/community/libzrtpcpp/PKGBUILD index 415edc81a..2166c1919 100644 --- a/community/libzrtpcpp/PKGBUILD +++ b/community/libzrtpcpp/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 47218 2011-05-19 07:44:23Z andrea $ +# $Id: PKGBUILD 66224 2012-02-23 03:37:26Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: # Contributor: Jeff Mickey <jeff@archlinux.org> @@ -6,7 +6,7 @@ pkgname=libzrtpcpp pkgver=1.4.2 -pkgrel=5 +pkgrel=6 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' 'mips64el') url="http://zfoneproject.com" diff --git a/community/linphone/PKGBUILD b/community/linphone/PKGBUILD index ec27ab915..838c1ce36 100644 --- a/community/linphone/PKGBUILD +++ b/community/linphone/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 61352 2011-12-28 15:43:45Z spupykin $ +# $Id: PKGBUILD 66218 2012-02-23 03:32:14Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Darwin Bautista <djclue917@gmail.com> pkgname=linphone -pkgver=3.5.0 -pkgrel=3 +pkgver=3.5.2 +pkgrel=1 pkgdesc="A Voice-over-IP phone" arch=('i686' 'x86_64' 'mips64el') url="http://www.linphone.org/index.php/eng" @@ -15,7 +15,7 @@ makedepends=('pkgconfig' 'perlxml' 'intltool' 'sgmltools-lite') optdepends=('pulseaudio') options=('!libtool' '!emptydirs') source=("http://download-mirror.savannah.gnu.org/releases/linphone/3.5.x/sources/linphone-$pkgver.tar.gz") -md5sums=('ad89cd6030a131f2b17ea50eb6f4c6f2') +md5sums=('4be6e940372dba1f6793aef849c1ff0d') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/linux-tools/PKGBUILD b/community/linux-tools/PKGBUILD index 026c0aa1d..dc318cecf 100644 --- a/community/linux-tools/PKGBUILD +++ b/community/linux-tools/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 62053 2012-01-15 02:27:29Z seblu $ +# $Id: PKGBUILD 65741 2012-02-22 12:12:10Z seblu $ # Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org> pkgbase=linux-tools pkgname=('perf' 'cpupower') pkgver=3.2 -kernver=${pkgver}.1 +kernver=${pkgver}.7 [[ ${kernver##*rc} != $kernver ]] && testing='testing' -pkgrel=2 +pkgrel=3 license=('GPL2') arch=('i686' 'x86_64') url='http://www.kernel.org' @@ -18,7 +18,7 @@ source=("http://ftp.kernel.org/pub/linux/kernel/v3.0/$testing/linux-$kernver.tar 'cpupower.rc' 'cpupower.conf' 'cpupower.service') -md5sums=('cd2f8b7752c85c337af809391f4afb94' +md5sums=('66966f6c1c4b0279c5563eabdafbb044' '26af384ca282bc0dc38ff65acc7bb4b9' '857ccdd0598511e3bf4b63522754dc48' '20870541e88109d2f153be3c58a277f1') diff --git a/community/lockfile-progs/PKGBUILD b/community/lockfile-progs/PKGBUILD index 70dee143a..8d2b6c30f 100644 --- a/community/lockfile-progs/PKGBUILD +++ b/community/lockfile-progs/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 50822 2011-07-01 16:45:18Z spupykin $ +# $Id: PKGBUILD 66210 2012-02-23 03:23:57Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Andreas Wagner <Andreas dot Wagner at em dot uni-frankfurt dot de> pkgname=lockfile-progs pkgver=0.1.15 -pkgrel=1 +pkgrel=2 pkgdesc="programs for locking and unlocking files and mailboxes" arch=('i686' 'x86_64' 'mips64el') license=('GPL') diff --git a/community/lrzsz/PKGBUILD b/community/lrzsz/PKGBUILD index 66a420ebc..48d636366 100644 --- a/community/lrzsz/PKGBUILD +++ b/community/lrzsz/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 19892 2010-06-30 13:19:34Z spupykin $ +# $Id: PKGBUILD 66212 2012-02-23 03:25:05Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Jeremie Dimino <jeremie@dimino.org> # Contributor: bender02 at gmx dot com pkgname=lrzsz pkgver=0.12.20 -pkgrel=3 +pkgrel=4 pkgdesc="xmodem, ymodem and zmodem file transfer protocols" url="http://www.ohse.de/uwe/software/lrzsz.html" license=('GPL2') @@ -17,12 +17,10 @@ md5sums=('b5ce6a74abc9b9eb2af94dffdfd372a4' build() { cd $srcdir/$pkgname-$pkgver - - patch -Np1 -i ../lrzsz.patch || return 1 - + patch -Np1 -i ../lrzsz.patch # Rename file so they can be used with minicom ./configure --prefix=/usr --mandir=/usr/share/man \ --program-transform-name=s/l// - make -j1 || return 1 - make -j1 DESTDIR=$pkgdir install || return 1 + make -j1 + make -j1 DESTDIR=$pkgdir install } diff --git a/community/lua-zlib/PKGBUILD b/community/lua-zlib/PKGBUILD index 971baccb9..a2ad97c2c 100644 --- a/community/lua-zlib/PKGBUILD +++ b/community/lua-zlib/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 54197 2011-08-14 19:29:58Z spupykin $ +# $Id: PKGBUILD 66222 2012-02-23 03:34:22Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=lua-zlib pkgver=0.2 -pkgrel=1 +pkgrel=2 _gitver=8d07669 _luaver=5.1 url="http://github.com/brimworks/lua-zlib" diff --git a/community/luaexpat/PKGBUILD b/community/luaexpat/PKGBUILD index 4d4a35193..1ee938ed0 100644 --- a/community/luaexpat/PKGBUILD +++ b/community/luaexpat/PKGBUILD @@ -1,8 +1,10 @@ +# $Id: PKGBUILD 66195 2012-02-23 03:06:28Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Lucas Hermann Negri <kkndrox@gmail.com> pkgname=luaexpat pkgver=1.2.0 -pkgrel=1 +pkgrel=2 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' 'mips64el') url='http://code.matthewwild.co.uk/lua-expat' @@ -14,15 +16,15 @@ source=("http://matthewwild.co.uk/projects/luaexpat/luaexpat-$pkgver.tar.gz" md5sums=('03efe50c7f30a34580701e6527d7bfee' 'b89a09379d3e46e6496255e44cecc316') -build() { - cd $startdir/src/ +build() { + cd $srcdir/ mv newconfig $pkgname-$pkgver/config cd $pkgname-$pkgver make } package() { - cd $startdir/src/$pkgname-$pkgver - make DESTDIR=$startdir/pkg install - mv usr $startdir/pkg + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install + mv usr $pkgdir } diff --git a/community/luafilesystem/PKGBUILD b/community/luafilesystem/PKGBUILD index ebfdd18b6..189f3305a 100644 --- a/community/luafilesystem/PKGBUILD +++ b/community/luafilesystem/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 15894 2010-04-17 20:42:12Z cbrannon $ +# $Id: PKGBUILD 66063 2012-02-22 17:23:57Z cbrannon $ # Maintainer: Chris Brannon <cmbrannon79@gmail.com> # Contributor: Paulo Matias <matiasΘarchlinux-br·org> # Contributor: Anders Bergh <anders1@gmail.com> pkgname=luafilesystem pkgver=1.5.0 -pkgrel=1 +pkgrel=2 pkgdesc="File System Library for the Lua Programming Language" arch=('i686' 'x86_64' 'mips64el') url="http://www.keplerproject.org/luafilesystem/" @@ -14,12 +14,15 @@ source=(http://github.com/downloads/keplerproject/$pkgname/$pkgname-$pkgver.tar. LICENSE) build() { - install -Dm644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" || return 1 - cd "$srcdir/$pkgname-$pkgver" + make +} - make || return 1 - install -Dm755 src/lfs.so "$pkgdir/usr/lib/lua/5.1/lfs.so" || return 1 +package() { + cd "$srcdir/$pkgname-$pkgver" + install -Dm644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + install -Dm755 src/lfs.so "$pkgdir/usr/lib/lua/5.1/lfs.so" } + md5sums=('3cf4882bbce956e7a0b010f148f194a3' 'beb2b58c4b5c2782304a5b0267a5651b') diff --git a/community/luasec/PKGBUILD b/community/luasec/PKGBUILD index fcb9d5451..50ecd0af9 100644 --- a/community/luasec/PKGBUILD +++ b/community/luasec/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 59126 2011-11-21 11:54:45Z spupykin $ +# $Id: PKGBUILD 66219 2012-02-23 03:33:12Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Dwayne Bent <dbb.1@liqd.org> # Contributor: Paul-Sebastian Manole <brokenthorn@gmail.com> pkgname=luasec pkgver=0.4 -pkgrel=2 +pkgrel=3 pkgdesc="Lua bindings for OpenSSL library to provide TLS/SSL communication." arch=('i686' 'x86_64' 'mips64el') url="http://luasec.luaforge.net/" diff --git a/community/lwp/PKGBUILD b/community/lwp/PKGBUILD index 6c70d064b..8035e127b 100644 --- a/community/lwp/PKGBUILD +++ b/community/lwp/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 19149 2010-06-21 08:42:08Z spupykin $ +# $Id: PKGBUILD 66195 2012-02-23 03:06:28Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: William Rea <sillywilly@gmail.com> pkgname=lwp pkgver=2.6 -pkgrel=1 +pkgrel=2 pkgdesc="Light weight process library" arch=(i686 x86_64 'mips64el') url="http://www.coda.cs.cmu.edu" @@ -17,6 +17,6 @@ md5sums=('65ba6faddf2c9741d4a481b0e9661a34') build() { cd $srcdir/lwp-$pkgver ./configure --prefix=/usr - make || return 1 + make make DESTDIR=$pkgdir install } diff --git a/community/obby/PKGBUILD b/community/obby/PKGBUILD index ea0103504..6cd651e87 100644 --- a/community/obby/PKGBUILD +++ b/community/obby/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 20481 2010-07-08 11:26:17Z spupykin $ +# $Id: PKGBUILD 65712 2012-02-22 10:21:10Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: William Rea <sillywilly@gmail.com> # Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> pkgname=obby -pkgver=0.4.7 -pkgrel=2 +pkgver=0.4.8 +pkgrel=1 pkgdesc="A library which provides synced document buffers" url="http://gobby.0x539.de" options=('!libtool') @@ -13,11 +13,11 @@ license=('GPL') arch=('i686' 'x86_64' 'mips64el') depends=('net6' 'avahi' 'libsigc++') source=(http://releases.0x539.de/obby/obby-$pkgver.tar.gz) -md5sums=('33fac4228c1efc1a1635bacf6480dc31') +md5sums=('5d4cd4e77f87b092e5ed21b104d8ad33') build() { cd $srcdir/obby-$pkgver ./configure --prefix=/usr --with-zeroconf --enable-ipv6 - make || return 1 + make make DESTDIR=$pkgdir install } diff --git a/community/oolite/PKGBUILD b/community/oolite/PKGBUILD index 08f9e0d71..5035aa055 100644 --- a/community/oolite/PKGBUILD +++ b/community/oolite/PKGBUILD @@ -1,9 +1,9 @@ -# $Id$ +# $Id: PKGBUILD 66069 2012-02-22 19:31:51Z svenstaro $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: Lone_Wolf <lonewolf@xs4all.nl> pkgname=oolite pkgver=1.76 -pkgrel=1 +pkgrel=2 pkgdesc="A space-sim based on the classic Elite" arch=('i686' 'x86_64' 'mips64el') url="http://oolite-linux.berlios.de" diff --git a/community/openttd/PKGBUILD b/community/openttd/PKGBUILD index 0c878b2bd..29d554111 100644 --- a/community/openttd/PKGBUILD +++ b/community/openttd/PKGBUILD @@ -1,20 +1,20 @@ -# $Id: PKGBUILD 64046 2012-02-08 23:19:32Z lcarlier $ +# $Id: PKGBUILD 65701 2012-02-22 08:49:10Z lcarlier $ # Maintainer: Vesa Kaihlavirta <vegai@iki.fi> pkgname=openttd -pkgver=1.2.0beta4 -_realpkgver=1.2.0-beta4 +pkgver=1.2.0rc1 +_realpkgver=1.2.0-RC1 pkgrel=1 pkgdesc='An engine for running Transport Tycoon Deluxe.' arch=('i686' 'x86_64' 'mips64el') url='http://www.openttd.org' license=('GPL') -depends=('libpng' 'sdl' 'icu' 'fontconfig' 'lzo2' 'hicolor-icon-theme' 'desktop-file-utils') +depends=('libpng' 'sdl' 'icu' 'fontconfig' 'lzo2' 'hicolor-icon-theme' 'desktop-file-utils' 'xz') install=openttd.install optdepends=('openttd-opengfx: free graphics' 'openttd-opensfx: free soundset') source=("http://binaries.openttd.org/releases/${_realpkgver}/${pkgname}-${_realpkgver}-source.tar.xz") -md5sums=('41c18120a3f0d77c8f3ca11e2b6730e7') +md5sums=('e2b32c0623a884e43e6d8b29cbb1febf') build() { cd ${pkgname}-${_realpkgver} diff --git a/community/p2c/PKGBUILD b/community/p2c/PKGBUILD index ddac30ed1..c55a1276d 100644 --- a/community/p2c/PKGBUILD +++ b/community/p2c/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 33428 2010-11-24 16:22:35Z spupykin $ +# $Id: PKGBUILD 66145 2012-02-23 02:13:19Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: tardo <tardo@nagi-fanboi.net> # Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=p2c pkgver=1.21alpha2 -pkgrel=9 +pkgrel=10 pkgdesc="pascal to c/c++ converter" arch=('i686' 'x86_64' 'mips64el') url="http://packages.debian.org/sid/p2c" diff --git a/community/paco/PKGBUILD b/community/paco/PKGBUILD index cbecb9018..1d02f5eba 100644 --- a/community/paco/PKGBUILD +++ b/community/paco/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 35428 2010-12-20 11:44:14Z spupykin $ +# $Id: PKGBUILD 66147 2012-02-23 02:14:05Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=paco pkgver=2.0.9 -pkgrel=1 +pkgrel=2 pkgdesc="LFS packet manager" arch=('i686' 'x86_64' 'mips64el') url="http://paco.sourceforge.net/index.html" diff --git a/community/pawm/PKGBUILD b/community/pawm/PKGBUILD index 7e452bd3b..c2ba3afe9 100644 --- a/community/pawm/PKGBUILD +++ b/community/pawm/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 59172 2011-11-21 13:08:19Z spupykin $ +# $Id: PKGBUILD 66194 2012-02-23 02:43:04Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=pawm pkgver=2.3.0 -pkgrel=1 +pkgrel=2 pkgdesc="Puto Amo Window Manager is a full featured window manager, but without useless bells and whistles" arch=('i686' 'x86_64' 'mips64el') url="http://www.pleyades.net/pawm/" @@ -15,6 +15,7 @@ md5sums=('cc004865f5b5d8118e68154857b913a2') build() { cd $srcdir/$pkgname-$pkgver + export LDFLAGS="-lXrender -lXext -lX11" cmake -DCMAKE_INSTALL_PREFIX=/usr make make install DESTDIR=$pkgdir diff --git a/community/perl-class-data-inheritable/PKGBUILD b/community/perl-class-data-inheritable/PKGBUILD index 31173e5b0..5724a1ec4 100644 --- a/community/perl-class-data-inheritable/PKGBUILD +++ b/community/perl-class-data-inheritable/PKGBUILD @@ -3,7 +3,7 @@ pkgname=perl-class-data-inheritable pkgver=0.08 -pkgrel=4 +pkgrel=5 pkgdesc="Inheritable, overridable class data " arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Class-Data-Inheritable" diff --git a/community/perl-class-factory-util/PKGBUILD b/community/perl-class-factory-util/PKGBUILD index e42ba31e7..2e7fe0ca1 100644 --- a/community/perl-class-factory-util/PKGBUILD +++ b/community/perl-class-factory-util/PKGBUILD @@ -1,9 +1,9 @@ -# $Id:$ +# $Id: PKGBUILD 65743 2012-02-22 12:12:49Z spupykin $ pkgname=perl-class-factory-util _realname=Class-Factory-Util pkgver=1.7 -pkgrel=3 +pkgrel=4 pkgdesc="Provide utility methods for factory classes" arch=(i686 x86_64 'mips64el') license=('GPL' 'Artistic') diff --git a/community/perl-class-methodmaker/PKGBUILD b/community/perl-class-methodmaker/PKGBUILD index def16e65f..5c1b948be 100644 --- a/community/perl-class-methodmaker/PKGBUILD +++ b/community/perl-class-methodmaker/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47471 2011-05-23 15:46:41Z tdziedzic $ +# $Id: PKGBUILD 65745 2012-02-22 12:13:32Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: François Charette <firmicus ατ gmx δοτ net> pkgname=perl-class-methodmaker pkgver=2.18 -pkgrel=4 +pkgrel=5 pkgdesc="Create generic class methods" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Class-MethodMaker" diff --git a/community/perl-clone/PKGBUILD b/community/perl-clone/PKGBUILD index a2ae2b1a7..81f39c762 100644 --- a/community/perl-clone/PKGBUILD +++ b/community/perl-clone/PKGBUILD @@ -4,7 +4,7 @@ pkgname=perl-clone pkgver=0.31 -pkgrel=3 +pkgrel=4 pkgdesc='Recursive copy of nested objects.' arch=('i686' 'x86_64' 'mips64el') url='http://search.cpan.org/~RDF/Clone' diff --git a/community/perl-crypt-blowfish/PKGBUILD b/community/perl-crypt-blowfish/PKGBUILD index a45d200e7..37b2f3262 100644 --- a/community/perl-crypt-blowfish/PKGBUILD +++ b/community/perl-crypt-blowfish/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47477 2011-05-23 15:51:28Z tdziedzic $ +# $Id: PKGBUILD 65753 2012-02-22 12:15:58Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Charles Mauch <cmauch@gmail.com> pkgname=perl-crypt-blowfish pkgver=2.12 -pkgrel=3 +pkgrel=4 pkgdesc="Perl/CPAN Module Crypt::Blowfish : XSbased implementation of Blowfish" arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Crypt-Blowfish" diff --git a/community/perl-crypt-des/PKGBUILD b/community/perl-crypt-des/PKGBUILD index 43982fb94..83d626568 100644 --- a/community/perl-crypt-des/PKGBUILD +++ b/community/perl-crypt-des/PKGBUILD @@ -1,7 +1,9 @@ +# $Id: PKGBUILD 66020 2012-02-22 14:38:55Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> #Contributor: Pete Morris <pete dot morris at gmail dot com> pkgname=perl-crypt-des pkgver=2.05 -pkgrel=3 +pkgrel=4 pkgdesc="Perl DES encryption module" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/~dparis/Crypt-DES" @@ -11,9 +13,9 @@ source=("http://www.cpan.org/authors/id/D/DP/DPARIS/Crypt-DES-$pkgver.tar.gz") md5sums=('a8a0bea7064e11d2af434f3e468c17bb') build() { cd Crypt-DES-$pkgver - PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor make make pure_install doc_install DESTDIR=${pkgdir} - find $startdir/pkg -name '.packlist' -delete - find $startdir/pkg -name '*.pod' -delete + find $pkgdir -name '.packlist' -delete + find $pkgdir -name '*.pod' -delete } diff --git a/community/perl-curses/PKGBUILD b/community/perl-curses/PKGBUILD index fb82f9368..a5a0b6657 100644 --- a/community/perl-curses/PKGBUILD +++ b/community/perl-curses/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 47492 2011-05-23 15:58:40Z tdziedzic $ +# $Id: PKGBUILD 66022 2012-02-22 14:40:14Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Charles Mauch <cmauch@gmail.com> # Contributor: Francois Charette <firmicus@gmx.net> pkgname=perl-curses pkgver=1.28 -pkgrel=3 +pkgrel=4 pkgdesc="Character screen handling and windowing" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Curses" diff --git a/community/perl-data-structure-util/PKGBUILD b/community/perl-data-structure-util/PKGBUILD index 840da26ba..960bcf37e 100644 --- a/community/perl-data-structure-util/PKGBUILD +++ b/community/perl-data-structure-util/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47495 2011-05-23 16:00:16Z tdziedzic $ +# $Id: PKGBUILD 65768 2012-02-22 12:24:05Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Charles Mauch <cmauch@gmail.com> pkgname=perl-data-structure-util pkgver=0.15 -pkgrel=4 +pkgrel=5 pkgdesc="Perl/CPAN Module Data::Structure::Util" arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Data-Structure-Util" diff --git a/community/perl-datetime-format-builder/PKGBUILD b/community/perl-datetime-format-builder/PKGBUILD index 940d700a3..c385d6c93 100644 --- a/community/perl-datetime-format-builder/PKGBUILD +++ b/community/perl-datetime-format-builder/PKGBUILD @@ -1,9 +1,9 @@ -# $Id$ +# $Id: PKGBUILD 65778 2012-02-22 12:27:49Z spupykin $ # Contributor: Caleb Cushing <xenoterracide@gmail.com> pkgname=perl-datetime-format-builder pkgver=0.8000 -pkgrel=5 +pkgrel=6 pkgdesc="Create DateTime parser classes and objects" arch=('i686' 'x86_64' 'mips64el') license=('PerlArtistic' 'GPL') diff --git a/community/perl-datetime-format-mail/PKGBUILD b/community/perl-datetime-format-mail/PKGBUILD index c2e9758d1..f03909ce7 100644 --- a/community/perl-datetime-format-mail/PKGBUILD +++ b/community/perl-datetime-format-mail/PKGBUILD @@ -3,7 +3,7 @@ pkgname=perl-datetime-format-mail pkgver=0.3001 -pkgrel=7 +pkgrel=8 pkgdesc="Convert between DateTime and RFC2822/822 formats " arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/DateTime-Format-Mail" diff --git a/community/perl-dbd-pg/PKGBUILD b/community/perl-dbd-pg/PKGBUILD index d2e9c663b..e508ac3ee 100644 --- a/community/perl-dbd-pg/PKGBUILD +++ b/community/perl-dbd-pg/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47753 2011-05-25 13:27:50Z tdziedzic $ +# $Id: PKGBUILD 66028 2012-02-22 14:46:24Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: François Charette <firmicus ατ gmx δοτ net> pkgname=perl-dbd-pg pkgver=2.18.1 -pkgrel=1 +pkgrel=2 pkgdesc="Postgres Driver for DBI" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/DBD-Pg" diff --git a/community/perl-dbd-sqlite2/PKGBUILD b/community/perl-dbd-sqlite2/PKGBUILD index 35e26ee90..e29423c6a 100644 --- a/community/perl-dbd-sqlite2/PKGBUILD +++ b/community/perl-dbd-sqlite2/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47756 2011-05-25 13:30:12Z tdziedzic $ +# $Id: PKGBUILD 65789 2012-02-22 12:35:40Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Charles Mauch <cmauch@gmail.com> pkgname=perl-dbd-sqlite2 pkgver=0.33 -pkgrel=7 +pkgrel=8 pkgdesc="Perl/CPAN Module DBD::SQLite2" arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/DBD-SQLite2" diff --git a/community/perl-gd/PKGBUILD b/community/perl-gd/PKGBUILD index 225151d7c..af5243308 100644 --- a/community/perl-gd/PKGBUILD +++ b/community/perl-gd/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 51555 2011-07-11 14:02:13Z spupykin $ +# $Id: PKGBUILD 65825 2012-02-22 12:50:52Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Sergej Pupykin <pupykin.s+aur@gmail.com> pkgname=perl-gd pkgver=2.46 -pkgrel=1 +pkgrel=2 pkgdesc="Interface to Gd Graphics Library" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/GD" diff --git a/community/perl-gssapi/PKGBUILD b/community/perl-gssapi/PKGBUILD index 85dac1dc7..a6f081de8 100644 --- a/community/perl-gssapi/PKGBUILD +++ b/community/perl-gssapi/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47705 2011-05-25 02:18:24Z tdziedzic $ +# $Id: PKGBUILD 65837 2012-02-22 12:55:08Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Charles Mauch <cmauch@gmail.com> pkgname=perl-gssapi pkgver=0.28 -pkgrel=4 +pkgrel=5 pkgdesc="Perl/CPAN Module GSSAPI" arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/GSSAPI" diff --git a/community/perl-gstreamer-interfaces/PKGBUILD b/community/perl-gstreamer-interfaces/PKGBUILD index fc1e2f160..e425809bc 100644 --- a/community/perl-gstreamer-interfaces/PKGBUILD +++ b/community/perl-gstreamer-interfaces/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47709 2011-05-25 02:21:42Z tdziedzic $ +# $Id: PKGBUILD 66039 2012-02-22 14:59:49Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Corrado Primier <bardo@aur.archlinux.org> pkgname=perl-gstreamer-interfaces pkgver=0.06 -pkgrel=3 +pkgrel=4 pkgdesc="GStreamer::Interfaces" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/GStreamer-Interfaces" diff --git a/community/perl-gstreamer/PKGBUILD b/community/perl-gstreamer/PKGBUILD index 4273c6903..88ded9977 100644 --- a/community/perl-gstreamer/PKGBUILD +++ b/community/perl-gstreamer/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47702 2011-05-25 01:05:10Z tdziedzic $ +# $Id: PKGBUILD 66034 2012-02-22 14:54:14Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Corrado Primier <bardo@aur.archlinux.org> pkgname=perl-gstreamer pkgver=0.16 -pkgrel=1 +pkgrel=2 pkgdesc="Interface to the GStreamer library" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/GStreamer" diff --git a/community/perl-html-strip/PKGBUILD b/community/perl-html-strip/PKGBUILD index 3177e4998..812c57183 100644 --- a/community/perl-html-strip/PKGBUILD +++ b/community/perl-html-strip/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47534 2011-05-23 18:42:18Z jelle $ +# $Id: PKGBUILD 66047 2012-02-22 15:16:05Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Charles Mauch <cmauch@gmail.com> pkgname=perl-html-strip pkgver=1.06 -pkgrel=6 +pkgrel=7 pkgdesc="Perl/CPAN Module HTML::Strip" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/~kilinrax/HTML-Strip/" diff --git a/community/perl-inline-java/PKGBUILD b/community/perl-inline-java/PKGBUILD index af57cf739..a98b54073 100644 --- a/community/perl-inline-java/PKGBUILD +++ b/community/perl-inline-java/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47531 2011-05-23 18:37:03Z jelle $ +# $Id: PKGBUILD 65861 2012-02-22 13:08:58Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Wael Nasreddine <gandalf@siemens-mobiles.org> pkgname=perl-inline-java pkgver=0.53 -pkgrel=2 +pkgrel=3 pkgdesc="The Inline::Java module allows you to put Java source code directly inline in a Perl script or module." arch=('i686' 'x86_64' 'mips64el') depends=('perl' 'perl-inline' 'java-runtime') diff --git a/community/perl-io-string/PKGBUILD b/community/perl-io-string/PKGBUILD index f51133495..7aaa52442 100644 --- a/community/perl-io-string/PKGBUILD +++ b/community/perl-io-string/PKGBUILD @@ -1,23 +1,25 @@ +# $Id: PKGBUILD 65867 2012-02-22 13:10:41Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # This PKGBUILD was generated by cpan4pacman via CPANPLUS::Dist::Pacman # Contributor: François Charette <firmicus ατ gmx δοτ net> pkgname=perl-io-string pkgver=1.08 -pkgrel=7 +pkgrel=8 pkgdesc="IO::File interface for in-core strings" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/IO-String" license=('GPL' 'PerlArtistic') depends=('perl>=5.10.0') options=('!emptydirs') -source=(http://www.cpan.org/authors/id/G/GA/GAAS/IO-String-$pkgver.tar.gz) +source=(http://www.cpan.org/authors/id/G/GA/GAAS/IO-String-$pkgver.tar.gz) md5sums=('250e5424f290299fc3d6b5d1e9da3835') build() { - cd $startdir/src/IO-String-$pkgver - PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + cd $srcdir/IO-String-$pkgver + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor make - make install DESTDIR=$startdir/pkg - find $startdir/pkg -name '.packlist' -delete - find $startdir/pkg -name '*.pod' -delete + make install DESTDIR=$pkgdir + find $pkgdir -name '.packlist' -delete + find $pkgdir -name '*.pod' -delete } diff --git a/community/perl-libapreq2/PKGBUILD b/community/perl-libapreq2/PKGBUILD index 85081460b..4843beba5 100644 --- a/community/perl-libapreq2/PKGBUILD +++ b/community/perl-libapreq2/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 51414 2011-07-08 20:33:33Z spupykin $ +# $Id: PKGBUILD 65875 2012-02-22 13:14:51Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Tom K <tomk@runbox.com> pkgname=perl-libapreq2 pkgver=2.13 -pkgrel=1 +pkgrel=2 pkgdesc="A safe, standards-compliant, high-performance library used for parsing HTTP cookies, query-strings and POST data." arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/libapreq2" diff --git a/community/perl-mail-box-parser-c/PKGBUILD b/community/perl-mail-box-parser-c/PKGBUILD index 0b498a844..66ef4e2ee 100644 --- a/community/perl-mail-box-parser-c/PKGBUILD +++ b/community/perl-mail-box-parser-c/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47593 2011-05-23 20:41:57Z tdziedzic $ +# $Id: PKGBUILD 65883 2012-02-22 13:18:05Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Charles Mauch <cmauch@gmail.com> pkgname=perl-mail-box-parser-c pkgver=3.006 -pkgrel=6 +pkgrel=7 pkgdesc="Perl/CPAN Module Mail::Box::Parser::C : extends MailBox with the speed of C" arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Mail-Box-Parser-C" diff --git a/community/perl-mail-transport-dbx/PKGBUILD b/community/perl-mail-transport-dbx/PKGBUILD index c9995475f..02a43412e 100644 --- a/community/perl-mail-transport-dbx/PKGBUILD +++ b/community/perl-mail-transport-dbx/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47596 2011-05-23 20:45:10Z tdziedzic $ +# $Id: PKGBUILD 65888 2012-02-22 13:20:21Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Charles Mauch <cmauch@gmail.com> pkgname=perl-mail-transport-dbx pkgver=0.07 -pkgrel=6 +pkgrel=7 pkgdesc="Perl/CPAN Module Mail::Transport::Dbx : Parse Outlook Express mailboxes" arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Mail-Transport-Dbx" diff --git a/community/perl-net-libidn/PKGBUILD b/community/perl-net-libidn/PKGBUILD index 313cd913d..acc9018f2 100644 --- a/community/perl-net-libidn/PKGBUILD +++ b/community/perl-net-libidn/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 47590 2011-05-23 20:30:08Z tdziedzic $ +# $Id: PKGBUILD 65896 2012-02-22 13:28:05Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=perl-net-libidn pkgver=0.12 -pkgrel=4 +pkgrel=5 pkgdesc="Perl/CPAN Module Net::LibIDN" arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Net-LibIDN/" diff --git a/community/perl-params-validate/PKGBUILD b/community/perl-params-validate/PKGBUILD index def2a8d1b..b6c6e74d7 100644 --- a/community/perl-params-validate/PKGBUILD +++ b/community/perl-params-validate/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 56454 2011-10-07 10:03:49Z spupykin $ +# $Id: PKGBUILD 66100 2012-02-23 01:04:43Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: François Charette <firmicus ατ gmx δοτ net> pkgname=perl-params-validate -pkgver=1.00 +pkgver=1.06 pkgrel=1 pkgdesc="Validate sub params against a spec" arch=('i686' 'x86_64' 'mips64el') @@ -12,7 +12,7 @@ license=('GPL' 'PerlArtistic') depends=('perl') options=('!emptydirs') source=("http://www.cpan.org/authors/id/D/DR/DROLSKY/Params-Validate-${pkgver}.tar.gz") -md5sums=('e8989f5686de4cd916cd973ccf097625') +md5sums=('4f7a281269cd30d7c3994ba5acb50857') build() { cd Params-Validate-${pkgver} diff --git a/community/perl-string-crc32/PKGBUILD b/community/perl-string-crc32/PKGBUILD index 9c3f6ee44..fbe2d4975 100644 --- a/community/perl-string-crc32/PKGBUILD +++ b/community/perl-string-crc32/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47584 2011-05-23 20:23:28Z tdziedzic $ +# $Id: PKGBUILD 65923 2012-02-22 13:42:55Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Charles Mauch <cmauch@gmail.com> pkgname=perl-string-crc32 pkgver=1.4 -pkgrel=6 +pkgrel=7 pkgdesc="Perl/CPAN Module String::CRC32 : ZMODEMlike CRC32 generation" arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/String-CRC32" diff --git a/community/perl-text-charwidth/PKGBUILD b/community/perl-text-charwidth/PKGBUILD index 580f8b640..62e1b6f65 100644 --- a/community/perl-text-charwidth/PKGBUILD +++ b/community/perl-text-charwidth/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47581 2011-05-23 20:20:00Z tdziedzic $ +# $Id: PKGBUILD 65951 2012-02-22 13:55:21Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Charles Mauch <cmauch@gmail.com> pkgname=perl-text-charwidth pkgver=0.04 -pkgrel=6 +pkgrel=7 pkgdesc="Perl/CPAN Module Text::CharWidth" arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Text-CharWidth" diff --git a/community/perl-text-kakasi/PKGBUILD b/community/perl-text-kakasi/PKGBUILD index 21e704403..dc2b68135 100644 --- a/community/perl-text-kakasi/PKGBUILD +++ b/community/perl-text-kakasi/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 47575 2011-05-23 20:14:17Z tdziedzic $ +# $Id: PKGBUILD 65954 2012-02-22 13:55:56Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Allan McRae <mcrae_allan@hotmail.com> # Contributor: François Charette <firmicus ατ gmx δοτ net> pkgname=perl-text-kakasi pkgver=2.04 -pkgrel=7 +pkgrel=8 pkgdesc="Perl frontend to kakasi" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Text-Kakasi" diff --git a/community/perl-tie-hash-indexed/PKGBUILD b/community/perl-tie-hash-indexed/PKGBUILD index be3eaab4d..9b1af0d23 100644 --- a/community/perl-tie-hash-indexed/PKGBUILD +++ b/community/perl-tie-hash-indexed/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47578 2011-05-23 20:16:48Z tdziedzic $ +# $Id: PKGBUILD 65962 2012-02-22 14:01:53Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Francois Charette <firmicus@gmx.net> pkgname=perl-tie-hash-indexed pkgver=0.05 -pkgrel=6 +pkgrel=7 pkgdesc="Ordered hashes for Perl" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/Tie-Hash-Indexed" diff --git a/community/perl-tk-tablematrix/PKGBUILD b/community/perl-tk-tablematrix/PKGBUILD index 3d66d05a7..7c58c4a8f 100644 --- a/community/perl-tk-tablematrix/PKGBUILD +++ b/community/perl-tk-tablematrix/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47698 2011-05-24 20:28:40Z tdziedzic $ +# $Id: PKGBUILD 65972 2012-02-22 14:05:41Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Charles Mauch <cmauch@gmail.com> pkgname=perl-tk-tablematrix pkgver=1.23 -pkgrel=7 +pkgrel=8 pkgdesc="Display data in TableSpreadsheet format" arch=("i686" "x86_64" 'mips64el') url="http://search.cpan.org/dist/Tk-TableMatrix" diff --git a/community/perl-www-curl/PKGBUILD b/community/perl-www-curl/PKGBUILD index 66468ec54..aa75770ab 100644 --- a/community/perl-www-curl/PKGBUILD +++ b/community/perl-www-curl/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47564 2011-05-23 19:59:27Z tdziedzic $ +# $Id: PKGBUILD 65982 2012-02-22 14:11:32Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Charles Mauch <cmauch@gmail.com> pkgname=perl-www-curl pkgver=4.15 -pkgrel=1 +pkgrel=2 pkgdesc="Perl/CPAN Module WWW::Curl" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/dist/WWW-Curl/" diff --git a/community/perl-xmms/PKGBUILD b/community/perl-xmms/PKGBUILD index 4490b6b3a..ff1d77232 100644 --- a/community/perl-xmms/PKGBUILD +++ b/community/perl-xmms/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 47561 2011-05-23 19:55:02Z tdziedzic $ +# $Id: PKGBUILD 66002 2012-02-22 14:17:37Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Georg Grabler <ggrabler@gmail.com> pkgname=perl-xmms pkgver=0.12 -pkgrel=6 +pkgrel=7 pkgdesc="Bundle::Xmms - Bundle for xmms remote control shell" arch=('i686' 'x86_64' 'mips64el') url="http://search.cpan.org/~dougm/Xmms-Perl/" diff --git a/community/plib/PKGBUILD b/community/plib/PKGBUILD index 9964fe277..4cea1e6b0 100644 --- a/community/plib/PKGBUILD +++ b/community/plib/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 21103 2010-07-14 07:20:33Z lcarlier $ +# $Id: PKGBUILD 65697 2012-02-22 08:25:07Z lcarlier $ # Maintainer: Eric Belanger <eric@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> pkgname=plib pkgver=1.8.5 -pkgrel=2 +pkgrel=3 pkgdesc="Set of libraries to write games and other realtime interactive applications" arch=('i686' 'x86_64' 'mips64el') url="http://plib.sourceforge.net/" diff --git a/community/pmtools/PKGBUILD b/community/pmtools/PKGBUILD index 8acabff31..df01eb04e 100644 --- a/community/pmtools/PKGBUILD +++ b/community/pmtools/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 59227 2011-11-21 15:25:11Z spupykin $ +# $Id: PKGBUILD 66151 2012-02-23 02:17:26Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Sebastian Pohle <naitsabes@imapmail.org> pkgname=pmtools pkgver=20101124 -pkgrel=1 +pkgrel=2 pkgdesc="A small collection of ACPI power management test and investigation tools" arch=('i686' 'x86_64' 'mips64el') url="http://acpi.sourceforge.net/dsdt/index.php" diff --git a/community/pppd-ldap-simple/PKGBUILD b/community/pppd-ldap-simple/PKGBUILD index 13c0986a2..bfb9451fb 100644 --- a/community/pppd-ldap-simple/PKGBUILD +++ b/community/pppd-ldap-simple/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 33063 2010-11-22 11:07:15Z spupykin $ +# $Id: PKGBUILD 66158 2012-02-23 02:19:12Z spupykin $ pkgname=pppd-ldap-simple pkgver=0.12b -pkgrel=5 +pkgrel=6 pkgdesc="pppd ldap simple plugin (based on pppd ldap, without radius, etc. Just search by uid and userPassword)" arch=('i686' 'x86_64' 'mips64el') url="http://sourceforge.net/projects/pppd-ldap/" diff --git a/community/pptpd/PKGBUILD b/community/pptpd/PKGBUILD index d97a6d95d..aa739feed 100644 --- a/community/pptpd/PKGBUILD +++ b/community/pptpd/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 48323 2011-05-31 10:24:11Z spupykin $ +# $Id: PKGBUILD 66163 2012-02-23 02:22:57Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=pptpd pkgver=1.3.4 -pkgrel=4 +pkgrel=5 pkgdesc="Poptop server" arch=(i686 x86_64 'mips64el') url="http://poptop.sourceforge.net/" diff --git a/community/procstatd/PKGBUILD b/community/procstatd/PKGBUILD index 0123c6a68..6f782dd90 100644 --- a/community/procstatd/PKGBUILD +++ b/community/procstatd/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 58686 2011-11-17 15:41:14Z spupykin $ +# $Id: PKGBUILD 66164 2012-02-23 02:23:03Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> # Maintainer: Jason Chu <jason@archlinux.org> pkgname=procstatd pkgver=1.4.2 -pkgrel=5 +pkgrel=6 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' 'mips64el') license=('GPL') diff --git a/community/prosody/PKGBUILD b/community/prosody/PKGBUILD index 0d6a57414..994cf84fa 100644 --- a/community/prosody/PKGBUILD +++ b/community/prosody/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 49803 2011-06-21 09:01:01Z spupykin $ +# $Id: PKGBUILD 66166 2012-02-23 02:25:30Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Dwayne Bent <dbb.0@liqd.org> # Contributor: Paul-Sebastian Manole <brokenthorn@gmail.com> pkgname=prosody pkgver=0.8.2 -pkgrel=1 +pkgrel=2 pkgdesc="Lightweight and extensible Jabber/XMPP server written in Lua." arch=('i686' 'x86_64' 'mips64el') url="http://prosody.im/" diff --git a/community/proxytunnel/PKGBUILD b/community/proxytunnel/PKGBUILD index 8ae8cc023..19eed56f3 100644 --- a/community/proxytunnel/PKGBUILD +++ b/community/proxytunnel/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 14239 2010-04-02 09:44:01Z spupykin $ +# $Id: PKGBUILD 66169 2012-02-23 02:28:14Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Georg Grabler (STiAT) <ggrabler@gmail.com> pkgname=proxytunnel pkgver=1.9.0 -pkgrel=2 +pkgrel=3 pkgdesc="a program that connects stdin and stdout to a server somewhere on the network, through a standard HTTPS proxy" arch=('i686' 'x86_64' 'mips64el') url="http://proxytunnel.sourceforge.net" @@ -14,8 +14,8 @@ source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.t md5sums=('d74472b89c3f3b3b0abf6bd809ae34c2') build() { - cd $startdir/src/$pkgname-$pkgver + cd $srcdir/$pkgname-$pkgver sed -i 's|PREFIX =/usr/local|PREFIX =/usr|g' Makefile - make || return 1 - make DESTDIR=$startdir/pkg install + make + make DESTDIR=$pkgdir install } diff --git a/community/psimedia/PKGBUILD b/community/psimedia/PKGBUILD index baff02667..6e8733da7 100644 --- a/community/psimedia/PKGBUILD +++ b/community/psimedia/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 49833 2011-06-21 09:57:22Z spupykin $ +# $Id: PKGBUILD 66171 2012-02-23 02:29:02Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Vladimir Kutyavin <vlkut-at-bk-dot-ru> pkgname=psimedia pkgver=1.0.3 -pkgrel=7 +pkgrel=8 pkgdesc="Voice and video chat plugin for Psi-like IM clients. The implementation is based on GStreamer." arch=('i686' 'x86_64' 'mips64el') license=('GPL2') diff --git a/community/pwsafe/PKGBUILD b/community/pwsafe/PKGBUILD index ee1fb1011..9ce2a6cf1 100644 --- a/community/pwsafe/PKGBUILD +++ b/community/pwsafe/PKGBUILD @@ -1,8 +1,10 @@ -# $Id: PKGBUILD 14237 2010-04-02 09:42:35Z spupykin $ +# $Id: PKGBUILD 66173 2012-02-23 02:29:46Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Vesa Kaihlavirta <vegai@iki.fi> + pkgname=pwsafe pkgver=0.2.0 -pkgrel=6 +pkgrel=7 pkgdesc="A commandline program for managing encrypted password databases" arch=('i686' 'x86_64' 'mips64el') url="http://nsd.dyndns.org/pwsafe/" @@ -14,9 +16,8 @@ md5sums=('4bb36538a2772ecbf1a542bc7d4746c0') build() { cd ${srcdir}/${pkgname}-${pkgver} ./configure --prefix=/usr --mandir=/usr/share/man - make || return 1 + make make DESTDIR=${pkgdir} install - # Make pwsafe suid root so it can seed rng as a user chmod +s ${pkgdir}/usr/bin/pwsafe } diff --git a/community/pyid3lib/PKGBUILD b/community/pyid3lib/PKGBUILD index 40f1cc6b0..d8725b9d3 100644 --- a/community/pyid3lib/PKGBUILD +++ b/community/pyid3lib/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 27121 2010-09-17 15:17:17Z schuay $ +# $Id: PKGBUILD 66183 2012-02-23 02:32:37Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Hugo Ideler <hugoideler@dse.nl> # Maintainer: Jens Persson <xerxes2 at gmail.com> pkgname=pyid3lib pkgver=0.5.1 -pkgrel=6 +pkgrel=7 pkgdesc="A Python module for editing ID3v2 tags of MP3 audio files" arch=('i686' 'x86_64' 'mips64el') url="http://pyid3lib.sourceforge.net/" diff --git a/community/python-cjson/PKGBUILD b/community/python-cjson/PKGBUILD index 0979021c3..6c92e760c 100644 --- a/community/python-cjson/PKGBUILD +++ b/community/python-cjson/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 26256 2010-09-14 13:39:01Z schuay $ +# $Id: PKGBUILD 66126 2012-02-23 01:35:30Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Lincoln de Sousa <lincoln@archlinux-br.org> pkgname=python-cjson pkgver=1.0.5 -pkgrel=3 +pkgrel=4 arch=('i686' 'x86_64' 'mips64el') license=('LGPL') pkgdesc="Fast JSON encoder/decoder for Python" diff --git a/community/python-galago/PKGBUILD b/community/python-galago/PKGBUILD index d2e1e07ab..b9d89f76d 100644 --- a/community/python-galago/PKGBUILD +++ b/community/python-galago/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 26275 2010-09-14 14:29:54Z schuay $ +# $Id: PKGBUILD 66142 2012-02-23 01:46:58Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: William Rea <sillywilly@gmail.com> pkgname=python-galago pkgver=0.5.0 -pkgrel=4 +pkgrel=5 pkgdesc="A library of simple functions that are optimized for various CPUs" arch=('i686' 'x86_64' 'mips64el') url="http://galago-project.org" diff --git a/community/python-lcms/PKGBUILD b/community/python-lcms/PKGBUILD index e5cd1d251..0b406bd65 100644 --- a/community/python-lcms/PKGBUILD +++ b/community/python-lcms/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 58889 2011-11-19 16:52:42Z andrea $ +# $Id: PKGBUILD 66131 2012-02-23 01:40:31Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Connor Behan <connor.behan@gmail.com> pkgname=python-lcms pkgver=1.19 _mver=1.19 -pkgrel=2 +pkgrel=3 pkgdesc="LittleCMS Python bindings" arch=(i686 x86_64 'mips64el') license=('CUSTOM') @@ -17,16 +17,13 @@ md5sums=('8af94611baf20d9646c7c2c285859818') build() { cd $srcdir/lcms-${_mver} - ./configure --prefix=/usr --with-python make } package() { cd $srcdir/lcms-${_mver} - make DESTDIR=$pkgdir install - - install -D -m0644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING && \ + install -D -m0644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING rm -rf $pkgdir/usr/bin \ $pkgdir/usr/include \ $pkgdir/usr/lib/pkgconfig \ diff --git a/community/python-pybluez/PKGBUILD b/community/python-pybluez/PKGBUILD index df7d0dcb7..de53afe0e 100644 --- a/community/python-pybluez/PKGBUILD +++ b/community/python-pybluez/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 26298 2010-09-14 17:18:19Z schuay $ +# $Id: PKGBUILD 66133 2012-02-23 01:41:16Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: cs-cam - me.at.camdaniel.com pkgname=python-pybluez pkgver=0.18 -pkgrel=2 +pkgrel=3 pkgdesc="Python wrapper for the BlueZ Bluetooth stack" arch=('i686' 'x86_64' 'mips64el') url="http://code.google.com/p/pybluez/" diff --git a/community/python-vorbissimple/PKGBUILD b/community/python-vorbissimple/PKGBUILD index ed4ae8b8d..3c51f9996 100644 --- a/community/python-vorbissimple/PKGBUILD +++ b/community/python-vorbissimple/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 26332 2010-09-14 17:43:16Z schuay $ +# $Id: PKGBUILD 66137 2012-02-23 01:44:22Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: William Rea <sillywilly@gmail.com> pkgname=python-vorbissimple pkgver=0.0.2 -pkgrel=4 +pkgrel=5 pkgdesc="Python bindings for vorbissimple" arch=('i686' 'x86_64' 'mips64el') url="http://kamaelia.sourceforge.net" diff --git a/community/python-yaml/PKGBUILD b/community/python-yaml/PKGBUILD index fb2af475a..571362e94 100644 --- a/community/python-yaml/PKGBUILD +++ b/community/python-yaml/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 49808 2011-06-21 09:01:51Z spupykin $ +# $Id: PKGBUILD 66141 2012-02-23 01:45:30Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Michal Bozon <michal.bozon__at__gmail.com> pkgbase=python-yaml pkgname=(python2-yaml python-yaml) pkgver=3.10 -pkgrel=1 +pkgrel=2 pkgdesc="Python bindings for YAML, using fast libYAML library" arch=('i686' 'x86_64' 'mips64el') url="http://pyyaml.org" diff --git a/community/qtcurve-gtk2/PKGBUILD b/community/qtcurve-gtk2/PKGBUILD new file mode 100644 index 000000000..f6dde224d --- /dev/null +++ b/community/qtcurve-gtk2/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 65720 2012-02-22 11:50:01Z svenstaro $ +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +# Contributor: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Pierre Schmitz <pierre@archlinux.de> + +pkgname=qtcurve-gtk2 +pkgver=1.8.13 +pkgrel=1 +pkgdesc="A configurable set of widget styles for KDE and Gtk" +arch=('i686' 'x86_64') +url="http://www.kde-look.org/content/show.php?content=40492" +license=('GPL') +depends=('gtk2') +makedepends=('cmake') +groups=('qtcurve') +options=('!libtool') +source=("http://craigd.wikispaces.com/file/view/QtCurve-Gtk2-${pkgver}.tar.bz2") +md5sums=('11cee806fd3f78d375498d5bd304799e') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../QtCurve-Gtk2-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} diff --git a/community/qtcurve-kde3/PKGBUILD b/community/qtcurve-kde3/PKGBUILD new file mode 100644 index 000000000..f5e057cfb --- /dev/null +++ b/community/qtcurve-kde3/PKGBUILD @@ -0,0 +1,50 @@ +# $Id: PKGBUILD 65718 2012-02-22 11:48:53Z andrea $ +# Maintainer: +# Contributor: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Pierre Schmitz <pierre@archlinux.de> + +pkgname=qtcurve-kde3 +pkgver=1.8.5 +pkgrel=3 +arch=('i686' 'x86_64') +groups=('qtcurve') +license=('GPL') +pkgdesc='A configurable set of widget styles for KDE and Gtk' +url='http://www.kde-look.org/content/show.php?content=40492' +depends=('kdelibs3') +makedepends=('cmake' 'kdelibs') +source=("http://craigd.wikispaces.com/file/view/QtCurve-KDE3-${pkgver}.tar.bz2" + 'kdeglobals' + 'bypass-kde-config.patch') +md5sums=('d9cca99526079782f9fc7bd7ba432582' + '05a6294c7f0e239e698e7e5224fc8e7f' + 'e1ab2c0995e412b2cbfe804fba75517e') + +build() { + . /etc/profile.d/qt3.sh + . /etc/profile.d/kde3.sh + + cd ${srcdir}/QtCurve-KDE3-${pkgver} + # Bypass KDE prefix detection by kde4-config, see: + # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=541667 + patch -Np1 -i ${srcdir}/bypass-kde-config.patch + + cd ${srcdir} + mkdir build + cd build + cmake ../QtCurve-KDE3-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/opt/kde + make +} + +package() { + cd $srcdir/build + make DESTDIR=$pkgdir install + + # remove kcontrol plugins + rm -f $pkgdir/opt/kde/lib/kde3/kstyle_qtcurve_config.* + + # set default theme + install -D -m644 $srcdir/kdeglobals $pkgdir/opt/kde/share/config/kdeglobals +} diff --git a/community/qtcurve-kde3/bypass-kde-config.patch b/community/qtcurve-kde3/bypass-kde-config.patch new file mode 100644 index 000000000..113fb93b8 --- /dev/null +++ b/community/qtcurve-kde3/bypass-kde-config.patch @@ -0,0 +1,24 @@ +--- QtCurve-KDE3-1.6.0/CMakeLists.txt~ 2010-09-14 16:19:36.543333337 +0200 ++++ QtCurve-KDE3-1.6.0/CMakeLists.txt 2010-09-14 16:22:18.160000003 +0200 +@@ -44,6 +44,12 @@ + endif (QT_PLUGINS_DIR MATCHES NOTFOUND) + endif (NOT QTC_QT_ONLY) + ++# Comment the kde3/kde4 prefix detection as a whole as it wants to run ++# kde-config and kde4-config, which in turn can create stuff in ~/.kde. ++# This cannot work on read-only homes. ++# So, the "fallback" prefixes ("/usr" for both) will be used. ++if (BRAINDEAD_DETECTION) ++ + if (NOT QTC_QT_ONLY) + exec_program(kde-config + ARGS --prefix --expandvars +@@ -71,6 +77,8 @@ + OUTPUT_VARIABLE KDE4PREFIX) + endif(KDE4_KDECONFIG_EXECUTABLE) + ++endif (BRAINDEAD_DETECTION) ++ + if(NOT KDE4PREFIX) + set(KDE4PREFIX ${KDE3PREFIX}) + endif(NOT KDE4PREFIX) diff --git a/community/qtcurve-kde3/kdeglobals b/community/qtcurve-kde3/kdeglobals new file mode 100644 index 000000000..ffbe26579 --- /dev/null +++ b/community/qtcurve-kde3/kdeglobals @@ -0,0 +1,2 @@ +[General] +widgetStyle=qtcurve diff --git a/community/qtcurve-kde4/PKGBUILD b/community/qtcurve-kde4/PKGBUILD new file mode 100644 index 000000000..34e5651ab --- /dev/null +++ b/community/qtcurve-kde4/PKGBUILD @@ -0,0 +1,39 @@ +# $Id: PKGBUILD 65722 2012-02-22 11:58:14Z svenstaro $ +# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> +# Contributor: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Pierre Schmitz <pierre@archlinux.de> + +pkgname=qtcurve-kde4 +pkgver=1.8.10 +pkgrel=1 +arch=('i686' 'x86_64') +groups=('qtcurve') +license=('GPL') +pkgdesc='A configurable set of widget styles for KDE and Gtk' +url='http://www.kde-look.org/content/show.php?content=40492' +depends=('kdebase-workspace') +makedepends=('cmake' 'automoc4') +source=("http://craigd.wikispaces.com/file/view/QtCurve-KDE4-${pkgver}.tar.bz2" + 'bypass-kde-config.patch') +md5sums=('b77e9a176a6324652a637edc10d051aa' + '3f6681147cc361bd2bfd4d7477f2a8d0') + +build() { + cd "${srcdir}"/QtCurve-KDE4-${pkgver} + # Bypass KDE prefix detection by kde4-config, see: + # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=541667 + patch -p1 -i "${srcdir}"/bypass-kde-config.patch + + cd "${srcdir}" + mkdir build + cd build + cmake ../QtCurve-KDE4-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} diff --git a/community/qtcurve-kde4/bypass-kde-config.patch b/community/qtcurve-kde4/bypass-kde-config.patch new file mode 100644 index 000000000..d09e5ead5 --- /dev/null +++ b/community/qtcurve-kde4/bypass-kde-config.patch @@ -0,0 +1,32 @@ +From: Pino Toscano <pino@kde.org> +Description: Disable braindead KDE3/4 prefix detection + The current detection of the KDE 3 and KDE 4 prefixes is done running + kde-config and kde4-config, resp. + This can be problematic, as these two could create files in ~/.kde, + thus breaking when the home of the current user (eg in buildds) is read-only. + Given the build system sets anyway "/usr" as prefix of KDE 3 and KDE 4 + if they were not detected, then just let it to. +Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=541667 + +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -16,6 +16,11 @@ set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CM + set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${QTCURVE_VERSION_FULL}") + include(CPack) + ++# Comment the kde3/kde4 prefix detection as a whole as it wants to run ++# kde-config and kde4-config, which in turn can create stuff in ~/.kde. ++# This cannot work on read-only homes. ++# So, the "fallback" prefixes ("/usr" for both) will be used. ++if (BRAINDEAD_DETECTION) + set(OLD_CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX}) + + # Try to find kde4-config... +@@ -48,6 +53,7 @@ if (KDE4_KDECONFIG_EXECUTABLE) + ARGS --prefix + OUTPUT_VARIABLE KDE4PREFIX) + endif (KDE4_KDECONFIG_EXECUTABLE) ++endif (BRAINDEAD_DETECTION) + + if(NOT KDE3PREFIX) + if(KDE4PREFIX) diff --git a/community/soundkonverter/PKGBUILD b/community/soundkonverter/PKGBUILD index 113f78180..fa3ec0c57 100644 --- a/community/soundkonverter/PKGBUILD +++ b/community/soundkonverter/PKGBUILD @@ -1,10 +1,11 @@ -# $Id: PKGBUILD 58635 2011-11-16 22:07:30Z andrea $ -# Maintainer: Mateusz Herych <heniekk@gmail.com> +# $Id: PKGBUILD 66120 2012-02-23 01:34:13Z andrea $ +# Maintainer: +# Contributor: Mateusz Herych <heniekk@gmail.com> # Contributor: Eric Belanger <eric@archlinux.org> # Contributor: Darwin Bautista <djclue917@gmail.com> pkgname=soundkonverter -pkgver=1.2.0 +pkgver=1.3.3 pkgrel=1 pkgdesc="Front-end to various audio converters" arch=('i686' 'x86_64' 'mips64el') @@ -24,8 +25,8 @@ optdepends=('cdrkit: cdda2wav backend' 'vorbisgain: vorbisgain backend' ) install=$pkgname.install -source=("https://gitorious.org/soundkonverter/soundkonverter/blobs/raw/180e777aa3d91456ac386868a1e324ca28649e2e/release/${pkgname}-${pkgver}.tar.gz") -md5sums=('e4c4ccf1f7f93f758c3d440f67f61a64') +source=("http://kde-apps.org/CONTENT/content-files/29024-${pkgname}-${pkgver}.tar.gz") +md5sums=('cb61ee363f78f9dfaf807780ef65095d') build() { cd "${srcdir}" diff --git a/community/subtitleeditor/PKGBUILD b/community/subtitleeditor/PKGBUILD index e0d167b0d..e5abd0bc4 100644 --- a/community/subtitleeditor/PKGBUILD +++ b/community/subtitleeditor/PKGBUILD @@ -1,14 +1,15 @@ -# $Id: PKGBUILD 55853 2011-09-23 20:07:37Z lcarlier $ +# $Id: PKGBUILD 66079 2012-02-22 22:47:22Z jlichtblau $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> pkgname=subtitleeditor -pkgver=0.39.0 +pkgver=0.40.0 pkgrel=1 pkgdesc="A GTK+2 tool to edit subtitles for GNU/Linux/*BSD" 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') +depends=('desktop-file-utils' 'enchant' 'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' + 'gstreamermm' 'gtk2' 'gtkmm' 'hicolor-icon-theme' 'libsigc++' 'libxml++' 'xdg-utils') makedepends=('intltool') optdepends=('gstreamer0.10-ffmpeg: to be able to view movies inside the subtitleeditor' 'gstreamer0.10-ugly-plugins: to be able to view movies inside the subtitleeditor' @@ -16,22 +17,22 @@ optdepends=('gstreamer0.10-ffmpeg: to be able to view movies inside the subtitle options=('!libtool') install=$pkgname.install changelog=$pkgname.changelog -source=(http://download.gna.org/$pkgname/0.39/$pkgname-$pkgver.tar.gz - fix-taking-address-of-temporary-error.patch) -md5sums=('17666e652edd27abfd3104a82385f6a8' - '13e4fde005a9017da9fd24a5c2b928ed') +source=(http://download.gna.org/$pkgname/0.40/$pkgname-$pkgver.tar.gz) +sha256sums=('b8d948f3e770524bf63fe632600aa94fcbd4edba772cad2aec4fdb3b3335b02d') build() { cd ${srcdir}/$pkgname-$pkgver - # fix building with gcc-4.6.0, taken from upstream - patch -Np1 -i "../fix-taking-address-of-temporary-error.patch" - ./configure --prefix=/usr make } package() { cd ${srcdir}/$pkgname-$pkgver +} + +package () { + cd ${srcdir}/$pkgname-$pkgver + make DESTDIR=${pkgdir} install } diff --git a/community/subtitleeditor/subtitleeditor.changelog b/community/subtitleeditor/subtitleeditor.changelog index d43a5264b..9362e3c99 100644 --- a/community/subtitleeditor/subtitleeditor.changelog +++ b/community/subtitleeditor/subtitleeditor.changelog @@ -1,3 +1,12 @@ +2012-02-22 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * subtitleeditor 0.40.0-1 + +2011-08-28 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * subtitleeditor 0.39.0-1 + +2011-07-20 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * subtitleeditor 0.38.0-1 + 2010-07-12 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> * Update to major release v0.37.1 diff --git a/community/subtitleeditor/subtitleeditor.install b/community/subtitleeditor/subtitleeditor.install index b711352cb..dcc06de40 100644 --- a/community/subtitleeditor/subtitleeditor.install +++ b/community/subtitleeditor/subtitleeditor.install @@ -1,5 +1,6 @@ post_install() { - which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + update-desktop-database -q } post_upgrade() { diff --git a/community/tcpflow/PKGBUILD b/community/tcpflow/PKGBUILD index f80f53699..701eb0ff5 100644 --- a/community/tcpflow/PKGBUILD +++ b/community/tcpflow/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 65663 2012-02-21 20:26:43Z cbrannon $ +# $Id: PKGBUILD 65859 2012-02-22 13:07:30Z cbrannon $ # Maintainer: Chris Brannon <cmbrannon79@gmail.com> # Contributor: Jeff Mickey <jeff@archlinux.org> pkgname=tcpflow -pkgver=0.21 -pkgrel=5 +pkgver=1.1.0 +pkgrel=1 pkgdesc="Captures data transmitted as part of TCP connections then stores the data conveniently" arch=('i686' 'x86_64' 'mips64el') -url="http://www.circlemud.org/~jelson/software/tcpflow/" +url="http://afflib.org/software/tcpflow" license=('GPL') -depends=('libpcap') -source=(http://www.circlemud.org/pub/jelson/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('45a5aef6f043312315b7f342afc4a9c5') +depends=('gcc-libs' 'libpcap') +source=("http://afflib.org/downloads/$pkgname.tar.gz") +md5sums=('9b836b16575679e9d10f39ac7a98efbe') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/vamps/PKGBUILD b/community/vamps/PKGBUILD index a0be01624..5ab1a28d0 100644 --- a/community/vamps/PKGBUILD +++ b/community/vamps/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 21356 2010-07-16 05:25:17Z tdziedzic $ +# $Id: PKGBUILD 65699 2012-02-22 08:30:07Z lcarlier $ # Contributor: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Stefano Zamprogno <stefano.zamprogno@gmail.com> # Maintainer: Stefan Husmann <stefan-husmann@t-online.de> pkgname=vamps pkgver=0.99.2 -pkgrel=8 +pkgrel=9 pkgdesc='Very fast requantisizing tool for backup DVDs' arch=('i686' 'x86_64' 'mips64el') url='http://vamps.sourceforge.net' @@ -20,7 +20,6 @@ build() { make install -D play_cell/play_cell ${pkgdir}/usr/bin/play_cell - install ${pkgname}/${pkgname} ${pkgdir}/usr/bin/ } diff --git a/community/webfs/PKGBUILD b/community/webfs/PKGBUILD index 0b9cf4994..b67886f5c 100644 --- a/community/webfs/PKGBUILD +++ b/community/webfs/PKGBUILD @@ -1,11 +1,12 @@ -# $Id: PKGBUILD 14331 2010-04-02 23:04:21Z foutrelis $ +# $Id: PKGBUILD 66065 2012-02-22 17:25:28Z cbrannon $ # Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com> # Contributor: Mark Rosenstand <mark@archlinux.org> -# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> +# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> +# Maintainer: Chris Brannon <chris@the-brannons.com> pkgname=webfs pkgver=1.21 -pkgrel=5 +pkgrel=6 pkgdesc="Simple http server for mostly static content." arch=(i686 x86_64 'mips64el') url="http://linux.bytesex.org/misc/webfs.html" @@ -20,8 +21,8 @@ md5sums=('6dc125fe160479404147e7bbfc781dbc' '3ae9fcdcf79b193aa88e386055e9ebd7' build() { cd ${srcdir}/${pkgname}-${pkgver} - patch -i ${srcdir}/webfs.patch || return 1 - make || return 1 + patch -i ${srcdir}/webfs.patch + make } package() { diff --git a/community/xboard/PKGBUILD b/community/xboard/PKGBUILD index cc8725ce8..f084b5547 100644 --- a/community/xboard/PKGBUILD +++ b/community/xboard/PKGBUILD @@ -1,16 +1,17 @@ -# $Id: PKGBUILD 65236 2012-02-20 12:27:26Z spupykin $ +# $Id: PKGBUILD 66108 2012-02-23 01:07:34Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Jason Chu <jason@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> pkgname=xboard pkgver=4.5.2 -pkgrel=2 +pkgrel=4 pkgdesc="A graphical user interfaces for chess" arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/xboard/" license=('GPL3') -depends=('libxaw' 'gnuchess' 'texinfo' 'xdg-utils') +depends=('libxaw' 'gnuchess' 'texinfo' 'xdg-utils' + 'xorg-fonts-75dpi' 'xorg-fonts-100dpi') install=${pkgname}.install source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz 'xboard.desktop') @@ -19,7 +20,7 @@ md5sums=('2fa92fceeda344ef935bc97bef5f9fc5' build() { cd "${srcdir}/${pkgname}-${pkgver}" - sed -i 's/fairymax/gnuchess/' xboard.h + sed -i 's/fairymax/gnuchess/g' xboard.h xboard.conf.in ./configure --prefix=/usr --mandir=/usr/share/man --sysconfdir=/etc make } diff --git a/extra/git/PKGBUILD b/extra/git/PKGBUILD index be706a15c..97e7139c0 100644 --- a/extra/git/PKGBUILD +++ b/extra/git/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 150206 2012-02-14 20:14:21Z dan $ +# $Id: PKGBUILD 150817 2012-02-23 04:50:43Z dan $ # Maintainer: Dan McGee <dan@archlinux.org> pkgname=git -pkgver=1.7.9.1 +pkgver=1.7.9.2 pkgrel=1 pkgdesc="the fast distributed version control system" arch=(i686 x86_64 'mips64el') @@ -34,12 +34,26 @@ build() { make prefix=/usr gitexecdir=/usr/lib/git-core \ CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \ USE_LIBPCRE=1 \ - NO_CROSS_DIRECTORY_HARDLINKS=1 + NO_CROSS_DIRECTORY_HARDLINKS=1 \ + all cd contrib/emacs make prefix=/usr } +check() { + export PYTHON_PATH='/usr/bin/python2' + cd "$srcdir/$pkgname-$pkgver" + local jobs + jobs=$(expr "$MAKEFLAGS" : '.*\(-j[0-9]*\).*') + make prefix=/usr gitexecdir=/usr/lib/git-core \ + CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \ + USE_LIBPCRE=1 \ + NO_CROSS_DIRECTORY_HARDLINKS=1 \ + NO_SVN_TESTS=y DEFAULT_TEST_TARGET=prove GIT_PROVE_OPTS="$jobs -Q" \ + test +} + package() { export PYTHON_PATH='/usr/bin/python2' cd "$srcdir/$pkgname-$pkgver" @@ -78,7 +92,7 @@ package() { install -D -m644 "$srcdir"/git-daemon.conf "$pkgdir"/etc/conf.d/git-daemon.conf } -sha1sums=('bd85327627f96c4e98071a4d1d32c30f210aa54a' - '8c6ee031b39da5c5e53f927952838796e0959ce9' +sha1sums=('7aff1048480a8637de94e8d82744d312c0b5e060' + 'd6992d899fb70e40983f94a2f96ad24b8ee93557' 'f2b41828bd912b72e2cb3e14677739c4f370de66' '149e2da1ecb48872ddb31c0945afeaad1f9653d7') diff --git a/extra/gparted/PKGBUILD b/extra/gparted/PKGBUILD index a4d55309d..4735dc772 100644 --- a/extra/gparted/PKGBUILD +++ b/extra/gparted/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 145062 2011-12-16 00:18:01Z giovanni $ +# $Id: PKGBUILD 150786 2012-02-22 09:57:59Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Andrew Simmons <andrew.simmons@gmail.com> # Contributor: György Balló <ballogy@freestart.hu> pkgname=gparted -pkgver=0.11.0 +pkgver=0.12.0 pkgrel=1 pkgdesc="A Partition Magic clone, frontend to GNU Parted" arch=('i686' 'x86_64' 'mips64el') @@ -17,13 +17,14 @@ optdepends=('dosfstools: for FAT16 and FAT32 partitions' 'ntfsprogs: for ntfs partitions' 'reiserfsprogs: for reiser partitions' 'xfsprogs: for xfs partitions' + 'nilfs-utils: for nilfs2 support' 'polkit: to run gparted directly from menu' 'gpart: for recovering corrupt partition tables' 'mtools') install=gparted.install source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2" 'org.archlinux.pkexec.gparted.policy') -md5sums=('93db664bad4c5f0c9a1384b7eac7df5c' +md5sums=('63a24677ff2ef0e62408ba684f233fab' '27c264cfad8fa413d75954dda7a2dd50') build() { diff --git a/extra/kradio/PKGBUILD b/extra/kradio/PKGBUILD index 9ea1e9712..18909da99 100644 --- a/extra/kradio/PKGBUILD +++ b/extra/kradio/PKGBUILD @@ -1,26 +1,28 @@ -# $Id: PKGBUILD 150326 2012-02-16 21:21:15Z eric $ -# Maintainer : Tobias Powalowski <tpowa@archlinux.org> +# $Id: PKGBUILD 150790 2012-02-22 11:29:59Z andrea $ +# Maintainer: +# Contributor: Tobias Powalowski <tpowa@archlinux.org> pkgname=kradio -pkgver=4.0.3 +pkgver=4.0.4 pkgrel=1 arch=('i686' 'x86_64' 'mips64el') license=('GPL2') -pkgdesc="A comfortable KDE radio application" +pkgdesc="A comfortable KDE internet and AM/FM radio application" url="http://kradio.sourceforge.net/" depends=('kdebase-runtime' 'lirc-utils' 'libmms' 'ffmpeg') -makedepends=('pkg-config' 'automoc4' 'cmake') -options=(!libtool) -install=kradio.install -source=(http://downloads.sourceforge.net/sourceforge/kradio/kradio4-$pkgver.tar.bz2{,.asc}) -md5sums=('f495ce341150ab04515d217bd8c36a32' - '42259fac62e427b8c86b7a5e5d4b18bf') +makedepends=('automoc4' 'cmake') +install=$pkgname.install +source=("http://downloads.sourceforge.net/$pkgname/kradio4-$pkgver.tar.bz2"{,.asc}) +md5sums=('4b5495a4f1dda21f7201bc8db0d4f95e' + '51c6d4ec0047d2df595b458bde285012') build() { cd "$srcdir" mkdir build cd build - cmake ../${pkgname}4-$pkgver -DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release + cmake ../${pkgname}4-$pkgver \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_BUILD_TYPE=Release make } diff --git a/extra/kradio/kradio.install b/extra/kradio/kradio.install index af52669f5..460e85d7f 100644 --- a/extra/kradio/kradio.install +++ b/extra/kradio/kradio.install @@ -1,11 +1,11 @@ post_install() { - xdg-icon-resource forceupdate --theme hicolor 2> /dev/null + xdg-icon-resource forceupdate --theme hicolor 2> /dev/null } post_upgrade() { - xdg-icon-resource forceupdate --theme hicolor 2> /dev/null + post_install } post_remove() { - xdg-icon-resource forceupdate --theme hicolor 2> /dev/null + post_install } diff --git a/extra/mediastreamer/PKGBUILD b/extra/mediastreamer/PKGBUILD index 2648e81e4..bba55db23 100644 --- a/extra/mediastreamer/PKGBUILD +++ b/extra/mediastreamer/PKGBUILD @@ -1,26 +1,25 @@ -# $Id: PKGBUILD 149288 2012-02-06 17:33:52Z ibiru $ +# $Id: PKGBUILD 150811 2012-02-23 01:28:04Z andrea $ # Maintainer: # Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Adrià Arrufat <swiftscythe@gmail.com> pkgname=mediastreamer -pkgver=2.8.0 -pkgrel=2 +pkgver=2.8.2 +pkgrel=1 pkgdesc="A library written in C that allows you to create and run audio and video streams" arch=('i686' 'x86_64' 'mips64el') url="http://www.linphone.org/" license=('GPL') depends=('ortp' 'speex' 'ffmpeg' 'v4l-utils' 'libxv' 'libpulse') makedepends=('intltool') -#source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/${pkgname}-${pkgver}.tar.gz" -source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2") -md5sums=('79f6e4d927ebf15e9967511d8a88ce74') options=('!libtool') +source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/${pkgname}-${pkgver}.tar.gz"{,.sig}) +md5sums=('e51ea9d5fce1396b374d10473dfbadec' + '805da7def98f367e621363fa0c951fe8') build() { cd "${srcdir}"/$pkgname-$pkgver - ./autogen.sh ./configure --prefix=/usr make } diff --git a/extra/openmpi/PKGBUILD b/extra/openmpi/PKGBUILD index e8edcf924..aeaa6d084 100644 --- a/extra/openmpi/PKGBUILD +++ b/extra/openmpi/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 147726 2012-01-27 15:43:19Z stephane $ +# $Id: PKGBUILD 150800 2012-02-22 17:25:13Z stephane $ # Maintainer: Stéphane Gaudreault <stephane@archlinux.org> pkgname=openmpi pkgver=1.5.4 -pkgrel=3 +pkgrel=4 pkgdesc="High performance message passing library (MPI)" arch=('i686' 'x86_64' 'mips64el') url="http://www.open-mpi.org" @@ -63,13 +63,19 @@ package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install + # FS#28583 + install -d -m 755 "${pkgdir}"/usr/lib/pkgconfig + for i in ompi-c.pc ompi-cxx.pc ompi-f77.pc ompi-f90.pc ompi.pc; do + ln -sf /usr/lib/openmpi/pkgconfig/$i "${pkgdir}"/usr/lib/pkgconfig/ + done + # Openmpi's otfinfo conflicts with the one from texlive - mv "${pkgdir}"/usr/bin/otfinfo "${pkgdir}"/usr/bin/otfinfompi + mv "${pkgdir}"/usr/bin/otfinfo{,mpi} # Openmpi's otfdump conflicts with the one from libotf - mv "${pkgdir}"/usr/bin/otfdump "${pkgdir}"/usr/bin/otfdumpompi + mv "${pkgdir}"/usr/bin/otfdump{,ompi} - # Symlink points to non-existing ortec++.1 + # Remove dangling symlink rm "${pkgdir}"/usr/share/man/man1/orteCC.1 install -d -m 755 "${pkgdir}"/etc/ld.so.conf.d diff --git a/extra/ortp/PKGBUILD b/extra/ortp/PKGBUILD index 1fde192fd..a3133b506 100644 --- a/extra/ortp/PKGBUILD +++ b/extra/ortp/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 145635 2011-12-25 10:59:41Z andrea $ +# $Id: PKGBUILD 150809 2012-02-23 01:26:10Z andrea $ # Maintainer: # Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> # Contributor: William Rea <sillywilly@gmail.com> pkgname=ortp -pkgver=0.18.0 +pkgver=0.20.0 pkgrel=1 pkgdesc="A Real-time Transport Protocol (RTP) library" arch=('i686' 'x86_64' 'mips64el') @@ -13,13 +13,12 @@ url="http://www.linphone.org/index.php/eng/code_review/ortp" license=('LGPL') depends=('glibc') options=('!libtool') -#source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/sources/${pkgname}-${pkgver}.tar.gz") -source=("ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.bz2") -md5sums=('cc319356d2b548e5777feef90ae23bac') +source=("http://download-mirror.savannah.gnu.org/releases/linphone/${pkgname}/sources/${pkgname}-${pkgver}.tar.gz"{,.sig}) +md5sums=('b3f2f02fc5b7ba7e294806c81d419f3c' + 'c5d39f9ad14fe252db9a96f616308b0b') build() { cd ${srcdir}/${pkgname}-${pkgver} - ./autogen.sh ./configure --prefix=/usr make } diff --git a/extra/vlc/PKGBUILD b/extra/vlc/PKGBUILD index 76cba4ca8..b82ecab07 100644 --- a/extra/vlc/PKGBUILD +++ b/extra/vlc/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 150664 2012-02-19 17:21:32Z giovanni $ +# $Id: PKGBUILD 150788 2012-02-22 11:22:08Z ibiru $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Sarah Hay <sarahhay@mb.sympatico.ca> # Contributor: Martin Sandsmark <martin.sandsmark@kde.org> pkgname=vlc pkgver=2.0.0 -pkgrel=3 +pkgrel=4 pkgdesc="A multi-platform MPEG, VCD/DVD, and DivX player" arch=('i686' 'x86_64' 'mips64el') url="http://www.videolan.org/vlc/" @@ -18,66 +18,42 @@ depends=('a52dec' 'fluidsynth' 'libmtp' 'libdvbpsi' 'libxpm' 'libcdio' 'ttf-freefont' 'libxv' 'libass' 'xdg-utils' 'desktop-file-utils') makedepends=('avahi' 'pkg-config' 'live-media' 'libnotify' 'libbluray' 'flac' 'libtheora' 'alsa-lib' 'jack' 'kdelibs' 'udev' - 'libraw1394' 'libdc1394' 'libavc1394' 'libva' 'libpulse' - 'lirc-utils' 'gnutls' 'libcaca' 'oss') -optdepends=('avahi: for service discovery using bonjour protocol' - 'libnotify: for notification plugin' - 'ncurses: for ncurses interface support' - 'libdvdcss: for decoding encrypted DVDs' - 'lirc-utils: for lirc plugin' - 'libavc1394: for devices using the 1394ta AV/C' - 'libdc1394: for IEEE 1394 plugin' - 'kdelibs: KDE Solid hardware integration' - 'libpulse: PulseAudio support' - 'libva-driver-intel: back-end for intel cards' - 'libbluray: for Blu-Ray disks' - 'oss: for OSS audio') -[ "$CARCH" = "mips64el" ] && { -makedepends=('avahi' 'pkg-config' 'live-media' 'libnotify' 'libbluray' - 'flac' 'libtheora' 'alsa-lib' 'jack' 'kdelibs' 'udev' - 'libraw1394' 'libdc1394' 'libavc1394' 'libva' 'libpulse' + 'libraw1394' 'libdc1394' 'libavc1394' 'libpulse' 'gnutls' 'libcaca' 'oss') +[ "$CARCH" = "mips64el" ] || makedepends+=('libva' 'lirc-utils') 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' + 'libdvdcss: for decoding encrypted DVDs') +[ "$CARCH" = "mips64el" ] || optdepends+=('lirc-utils: for lirc plugin') +optdepends+=('libavc1394: for devices using the 1394ta AV/C' 'libdc1394: for IEEE 1394 plugin' 'kdelibs: KDE Solid hardware integration' - 'libpulse: PulseAudio support' - 'libva-driver-intel: back-end for intel cards' - 'libbluray: for Blu-Ray disks' + 'libpulse: PulseAudio support') +[ "$CARCH" = "mips64el" ] || optdepends+=('libva-driver-intel: back-end for intel cards') +optdepends+=('libbluray: for Blu-Ray disks' 'oss: for OSS audio') -} conflicts=('vlc-plugin') replaces=('vlc-plugin') backup=('usr/share/vlc/lua/http/.hosts' 'usr/share/vlc/lua/http/dialogs/.hosts') options=('!libtool') install=vlc.install -source=("http://download.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz") -md5sums=('8806bff2ea9c76791123d444a92f708c') +source=("http://download.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz" + access_smb_link_to_smbclient.patch) +md5sums=('8806bff2ea9c76791123d444a92f708c' + '5f510fdea99cdb7941423eb40045968a') build() { cd "${srcdir}/${pkgname}-${pkgver}" sed -i -e 's:truetype/freefont:TTF:g' modules/text_renderer/freetype.c - if [ "$CARCH" = "mips64el" ]; then - ./configure --prefix=/usr \ - --disable-rpath \ - --enable-faad \ - --enable-dbus-control \ - --enable-nls \ - --disable-lirc \ - --enable-pvr \ - --enable-ncurses \ - --enable-upnp \ - --enable-oss \ - --enable-bluray \ - --enable-live555 \ - --enable-realrtsp - else + patch -Np1 -i "${srcdir}/access_smb_link_to_smbclient.patch" + autoreconf -fi + + [ "$CARCH" = "mips64el" ] && extraconf="--disable-lirc" + ./configure --prefix=/usr \ --disable-rpath \ --enable-faad \ @@ -90,8 +66,8 @@ build() { --enable-oss \ --enable-bluray \ --enable-live555 \ - --enable-realrtsp - fi + --enable-realrtsp \ + $extraconf make } diff --git a/extra/vlc/access_smb_link_to_smbclient.patch b/extra/vlc/access_smb_link_to_smbclient.patch new file mode 100644 index 000000000..3891108d4 --- /dev/null +++ b/extra/vlc/access_smb_link_to_smbclient.patch @@ -0,0 +1,15 @@ +X-Git-Url: http://git.videolan.org/?p=vlc.git;a=blobdiff_plain;f=modules%2Faccess%2FModules.am;h=be8c47b8fee03e5f4fc42c61b8e13f2d6ad587df;hp=81d8e78edc214026ceff3b17996b7bdbc47b3c26;hb=718b1f9901e5077b50c2189604afba883ca87bf7;hpb=84a1a3461adf901ff134a09eb4341cc301fdc6dd + +diff --git a/modules/access/Modules.am b/modules/access/Modules.am +index 81d8e78..be8c47b 100644 +--- a/modules/access/Modules.am ++++ b/modules/access/Modules.am +@@ -36,7 +36,7 @@ libsdp_plugin_la_DEPENDENCIES = + + libaccess_smb_plugin_la_SOURCES = smb.c + libaccess_smb_plugin_la_CFLAGS = $(AM_CFLAGS) +-libaccess_smb_plugin_la_LIBADD = $(AM_LIBADD) ++libaccess_smb_plugin_la_LIBADD = $(AM_LIBADD) $(LIBS_access_smb) + if HAVE_WIN32 + libaccess_smb_plugin_la_LIBADD += -lmpr + endif diff --git a/libre/linux-libre/PKGBUILD b/libre/linux-libre/PKGBUILD index 465e8b395..3cb6108d5 100644 --- a/libre/linux-libre/PKGBUILD +++ b/libre/linux-libre/PKGBUILD @@ -33,8 +33,8 @@ source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/${_basekernel}-li md5sums=('27c641c4f6785fc647cdd3e44963a55c' '37a0fdc7ad19c9489faf09925b4fae5b' '690e6201d219638544d2fba3996dc822' - 'f27599e6b2a002d1a13b2249ff030314' - 'c51cdf3d047db4bbb46bfa70fe92b196' + '79db8a444fd149e409f706830d8cee9a' + 'e26dbcb367a2b48f5ed09560e2ae8fa0' 'a8a3843046926eb7ab81312cd438c5c5' '2967cecc3af9f954ccc822fd63dca6ff' '8267264d9a8966e57fdacd1fa1fc65c4' diff --git a/libre/linux-libre/config.i686 b/libre/linux-libre/config.i686 index be8d43e31..d2d688197 100644 --- a/libre/linux-libre/config.i686 +++ b/libre/linux-libre/config.i686 @@ -422,8 +422,8 @@ CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y CONFIG_MEMORY_FAILURE=y CONFIG_HWPOISON_INJECT=m CONFIG_TRANSPARENT_HUGEPAGE=y -CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y -# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y CONFIG_CLEANCACHE=y # CONFIG_HIGHPTE is not set CONFIG_X86_CHECK_BIOS_CORRUPTION=y diff --git a/libre/linux-libre/config.x86_64 b/libre/linux-libre/config.x86_64 index 427eee5e3..80ea3030f 100644 --- a/libre/linux-libre/config.x86_64 +++ b/libre/linux-libre/config.x86_64 @@ -409,8 +409,8 @@ CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y CONFIG_MEMORY_FAILURE=y CONFIG_HWPOISON_INJECT=m CONFIG_TRANSPARENT_HUGEPAGE=y -CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y -# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y CONFIG_CLEANCACHE=y CONFIG_X86_CHECK_BIOS_CORRUPTION=y CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y |