[arch-commits] Commit in pd/repos (6 files)

speps speps at nymeria.archlinux.org
Thu Oct 24 15:22:27 UTC 2013


    Date: Thursday, October 24, 2013 @ 17:22:27
  Author: speps
Revision: 99115

archrelease: copy trunk to community-i686, community-x86_64

Added:
  pd/repos/community-i686/PKGBUILD
    (from rev 99114, pd/trunk/PKGBUILD)
  pd/repos/community-i686/enable-fftw3.patch
    (from rev 99114, pd/trunk/enable-fftw3.patch)
  pd/repos/community-x86_64/PKGBUILD
    (from rev 99114, pd/trunk/PKGBUILD)
  pd/repos/community-x86_64/enable-fftw3.patch
    (from rev 99114, pd/trunk/enable-fftw3.patch)
Deleted:
  pd/repos/community-i686/PKGBUILD
  pd/repos/community-x86_64/PKGBUILD

-------------------------------------+
 /PKGBUILD                           |   88 ++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD             |   37 --------------
 community-i686/enable-fftw3.patch   |   19 +++++++
 community-x86_64/PKGBUILD           |   37 --------------
 community-x86_64/enable-fftw3.patch |   19 +++++++
 5 files changed, 126 insertions(+), 74 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-10-24 15:22:11 UTC (rev 99114)
+++ community-i686/PKGBUILD	2013-10-24 15:22:27 UTC (rev 99115)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer : speps <speps at aur dot archlinux dot org>
-# Contributor: TDY <tdy at gmx.com>
-# Contributor: Shinlun Hsieh <yngwiexx at yahoo.com.tw>
-
-pkgname=pd
-pkgver=0.44.3
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=2
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('i686' 'x86_64')
-url="http://crca.ucsd.edu/~msp/software.html"
-license=('custom:BSD')
-depends=('jack' 'fftw' 'tk')
-provides=('puredata')
-source=("http://crca.ucsd.edu/~msp/Software/pd-$_ver.src.tar.gz")
-md5sums=('a3e8ca0eab039dc472a6533ef9344582')
-
-build() {
-  cd "$srcdir/pd-$_ver"
-  ./autogen.sh
-  ./configure --prefix=/usr \
-              --enable-alsa \
-              --enable-jack \
-              --enable-fftw \
-              --disable-portaudio
-  make
-}
-
-package() {
-  cd "$srcdir/pd-$_ver"
-  make DESTDIR="$pkgdir" install
-
-  # license
-  install -Dm644 LICENSE.txt \
-    "$pkgdir/usr/share/licenses/pd/LICENSE"
-}

Copied: pd/repos/community-i686/PKGBUILD (from rev 99114, pd/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-10-24 15:22:27 UTC (rev 99115)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: TDY <tdy at gmx.com>
+# Contributor: Shinlun Hsieh <yngwiexx at yahoo.com.tw>
+
+pkgname=pd
+pkgver=0.45.3
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('i686' 'x86_64')
+url="http://crca.ucsd.edu/~msp/software.html"
+license=('custom:BSD')
+depends=('jack' 'fftw' 'tk')
+provides=('puredata')
+source=("http://crca.ucsd.edu/~msp/Software/pd-$_ver.src.tar.gz"
+        "enable-fftw3.patch")
+md5sums=('461a3d0d558a4f45c49943234baa9ca8'
+         'bb907907a9b33f6c63312274c8523d40')
+
+prepare() {
+  cd pd-$_ver
+  patch -p1 -i ../${source[1]}
+}
+
+build() {
+  cd pd-$_ver
+  ./autogen.sh
+  ./configure --prefix=/usr \
+              --enable-alsa \
+              --enable-jack \
+              --enable-fftw \
+              --disable-portaudio
+  make
+}
+
+package() {
+  cd pd-$_ver
+  make DESTDIR="$pkgdir" install
+
+  # license
+  install -Dm644 LICENSE.txt \
+    "$pkgdir/usr/share/licenses/pd/LICENSE"
+}

Copied: pd/repos/community-i686/enable-fftw3.patch (from rev 99114, pd/trunk/enable-fftw3.patch)
===================================================================
--- community-i686/enable-fftw3.patch	                        (rev 0)
+++ community-i686/enable-fftw3.patch	2013-10-24 15:22:27 UTC (rev 99115)
@@ -0,0 +1,19 @@
+diff -aur pd-0.45-3/configure.ac pd-0.45-3.fftw3/configure.ac
+--- pd-0.45-3/configure.ac	2013-10-03 18:22:29.000000000 +0200
++++ pd-0.45-3.fftw3/configure.ac	2013-10-24 02:14:09.555763309 +0200
+@@ -212,13 +212,13 @@
+ AM_CONDITIONAL(PORTMIDI, test x$portmidi = xyes)
+ if test x$portmidi = xyes; then echo Using included portmidi; fi
+ 
+-dnl fftw v2
++dnl fftw v3
+ AC_ARG_ENABLE([fftw],
+ 	[AS_HELP_STRING([--enable-fftw],
+ 		[use FFTW package])],
+     [fftw=$enableval])
+ if test x$fftw = xyes; then
+-    AC_CHECK_LIB(fftw, fftw_one, [LIBS="$LIBS -lfftw"],
++    AC_CHECK_LIB(fftw3f, fftwf_execute, [LIBS="$LIBS -lfftw3f"],
+         [AC_MSG_NOTICE([fftw package not found - using built-in FFT]); fftw=no])
+ fi
+ AM_CONDITIONAL(FFTW, test x$fftw = xyes)

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-10-24 15:22:11 UTC (rev 99114)
+++ community-x86_64/PKGBUILD	2013-10-24 15:22:27 UTC (rev 99115)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer : speps <speps at aur dot archlinux dot org>
-# Contributor: TDY <tdy at gmx.com>
-# Contributor: Shinlun Hsieh <yngwiexx at yahoo.com.tw>
-
-pkgname=pd
-pkgver=0.44.3
-_ver=${pkgver%.*}-${pkgver##*.}
-pkgrel=2
-pkgdesc="The Pure Data real-time music and multimedia environment"
-arch=('i686' 'x86_64')
-url="http://crca.ucsd.edu/~msp/software.html"
-license=('custom:BSD')
-depends=('jack' 'fftw' 'tk')
-provides=('puredata')
-source=("http://crca.ucsd.edu/~msp/Software/pd-$_ver.src.tar.gz")
-md5sums=('a3e8ca0eab039dc472a6533ef9344582')
-
-build() {
-  cd "$srcdir/pd-$_ver"
-  ./autogen.sh
-  ./configure --prefix=/usr \
-              --enable-alsa \
-              --enable-jack \
-              --enable-fftw \
-              --disable-portaudio
-  make
-}
-
-package() {
-  cd "$srcdir/pd-$_ver"
-  make DESTDIR="$pkgdir" install
-
-  # license
-  install -Dm644 LICENSE.txt \
-    "$pkgdir/usr/share/licenses/pd/LICENSE"
-}

Copied: pd/repos/community-x86_64/PKGBUILD (from rev 99114, pd/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-10-24 15:22:27 UTC (rev 99115)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: TDY <tdy at gmx.com>
+# Contributor: Shinlun Hsieh <yngwiexx at yahoo.com.tw>
+
+pkgname=pd
+pkgver=0.45.3
+_ver=${pkgver%.*}-${pkgver##*.}
+pkgrel=1
+pkgdesc="The Pure Data real-time music and multimedia environment"
+arch=('i686' 'x86_64')
+url="http://crca.ucsd.edu/~msp/software.html"
+license=('custom:BSD')
+depends=('jack' 'fftw' 'tk')
+provides=('puredata')
+source=("http://crca.ucsd.edu/~msp/Software/pd-$_ver.src.tar.gz"
+        "enable-fftw3.patch")
+md5sums=('461a3d0d558a4f45c49943234baa9ca8'
+         'bb907907a9b33f6c63312274c8523d40')
+
+prepare() {
+  cd pd-$_ver
+  patch -p1 -i ../${source[1]}
+}
+
+build() {
+  cd pd-$_ver
+  ./autogen.sh
+  ./configure --prefix=/usr \
+              --enable-alsa \
+              --enable-jack \
+              --enable-fftw \
+              --disable-portaudio
+  make
+}
+
+package() {
+  cd pd-$_ver
+  make DESTDIR="$pkgdir" install
+
+  # license
+  install -Dm644 LICENSE.txt \
+    "$pkgdir/usr/share/licenses/pd/LICENSE"
+}

Copied: pd/repos/community-x86_64/enable-fftw3.patch (from rev 99114, pd/trunk/enable-fftw3.patch)
===================================================================
--- community-x86_64/enable-fftw3.patch	                        (rev 0)
+++ community-x86_64/enable-fftw3.patch	2013-10-24 15:22:27 UTC (rev 99115)
@@ -0,0 +1,19 @@
+diff -aur pd-0.45-3/configure.ac pd-0.45-3.fftw3/configure.ac
+--- pd-0.45-3/configure.ac	2013-10-03 18:22:29.000000000 +0200
++++ pd-0.45-3.fftw3/configure.ac	2013-10-24 02:14:09.555763309 +0200
+@@ -212,13 +212,13 @@
+ AM_CONDITIONAL(PORTMIDI, test x$portmidi = xyes)
+ if test x$portmidi = xyes; then echo Using included portmidi; fi
+ 
+-dnl fftw v2
++dnl fftw v3
+ AC_ARG_ENABLE([fftw],
+ 	[AS_HELP_STRING([--enable-fftw],
+ 		[use FFTW package])],
+     [fftw=$enableval])
+ if test x$fftw = xyes; then
+-    AC_CHECK_LIB(fftw, fftw_one, [LIBS="$LIBS -lfftw"],
++    AC_CHECK_LIB(fftw3f, fftwf_execute, [LIBS="$LIBS -lfftw3f"],
+         [AC_MSG_NOTICE([fftw package not found - using built-in FFT]); fftw=no])
+ fi
+ AM_CONDITIONAL(FFTW, test x$fftw = xyes)




More information about the arch-commits mailing list