[arch-commits] Commit in ffmpeg2theora/repos (3 files)

Antonio Rojas arojas at archlinux.org
Fri Jul 26 17:45:01 UTC 2019


    Date: Friday, July 26, 2019 @ 17:45:01
  Author: arojas
Revision: 492950

archrelease: copy trunk to community-staging-x86_64

Added:
  ffmpeg2theora/repos/community-staging-x86_64/
  ffmpeg2theora/repos/community-staging-x86_64/PKGBUILD
    (from rev 492949, ffmpeg2theora/trunk/PKGBUILD)
  ffmpeg2theora/repos/community-staging-x86_64/ffmpeg2theora-0.29-underlinking.patch
    (from rev 492949, ffmpeg2theora/trunk/ffmpeg2theora-0.29-underlinking.patch)

---------------------------------------+
 PKGBUILD                              |   37 ++++++++++++++++++++++++++++++++
 ffmpeg2theora-0.29-underlinking.patch |   21 ++++++++++++++++++
 2 files changed, 58 insertions(+)

Copied: ffmpeg2theora/repos/community-staging-x86_64/PKGBUILD (from rev 492949, ffmpeg2theora/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2019-07-26 17:45:01 UTC (rev 492950)
@@ -0,0 +1,37 @@
+# Maintainer: Jaroslav Lichtblau <svetlemodry at archlinux.org>
+# Contributor: Eric Belanger <eric at archlinux.org>
+# Contributor: Angelo Theodorou <encelo at users.sourceforge.net>
+# Contributor: Alexander Rødseth <rodseth at gmail.com>
+
+pkgname=ffmpeg2theora
+pkgver=0.30
+pkgrel=5
+pkgdesc="Simple converter to create Ogg Theora files"
+arch=('x86_64')
+url="https://www.v2v.cc/~j/ffmpeg2theora/"
+license=('GPL')
+depends=('ffmpeg' 'libkate')
+makedepends=('python2-scons' 'git')
+source=($pkgname-$pkgver::git+https://git.xiph.org/ffmpeg2theora.git#tag=${pkgver}
+        ffmpeg2theora-0.29-underlinking.patch)
+sha256sums=('SKIP'
+            '3b937c7e3a5afe327ee75e246ef606a747b8fb5880b43a864b3b9db4a245ef7f')
+
+prepare() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  echo "#define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000" >> src/ffmpeg2theora.h
+  patch -p0 -i ../ffmpeg2theora-0.29-underlinking.patch
+}
+
+build() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  scons2
+}
+
+package() {
+  cd "${srcdir}"/$pkgname-$pkgver
+
+  scons2 install destdir="${pkgdir}" prefix="/usr" mandir="PREFIX/share/man"
+}

Copied: ffmpeg2theora/repos/community-staging-x86_64/ffmpeg2theora-0.29-underlinking.patch (from rev 492949, ffmpeg2theora/trunk/ffmpeg2theora-0.29-underlinking.patch)
===================================================================
--- community-staging-x86_64/ffmpeg2theora-0.29-underlinking.patch	                        (rev 0)
+++ community-staging-x86_64/ffmpeg2theora-0.29-underlinking.patch	2019-07-26 17:45:01 UTC (rev 492950)
@@ -0,0 +1,21 @@
+For example, pow() from mathlib is used directly in src/ffmpeg2theora.c:
+
+<snip>
+v = pow(v, g) * 255.0;    // mplayer's vf_eq2.c multiplies with 256 here, strange...
+</snip>
+
+For build failure and log, see Gentoo bug #504698
+
+--- SConstruct
++++ SConstruct
+@@ -206,9 +206,8 @@
+   if env['crossmingw']:
+       env.Append(CCFLAGS=['-Wl,-subsystem,windows'])
+       env.Append(LIBS=['m'])
+-  elif env['static']:
+-      env.Append(LIBS=['m', 'dl'])
+ 
++  env.Append(LIBS=['m', 'dl'])
+ 
+ env = conf.Finish()
+ 



More information about the arch-commits mailing list