diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-12-31 20:16:45 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-12-31 20:16:45 +0000 |
commit | 7443480d05c6c6574e539cad9f286546a8ce4c5b (patch) | |
tree | a07c64787f8d0d71e7b98e2682837116573f1318 /main/libtheora | |
parent | be9a735b32f1c87658c1ffe9afc8358f4c2e5007 (diff) | |
download | aports-7443480d05c6c6574e539cad9f286546a8ce4c5b.tar.bz2 aports-7443480d05c6c6574e539cad9f286546a8ce4c5b.tar.xz |
main/libtheora: build fix for automake-1.13
Diffstat (limited to 'main/libtheora')
-rw-r--r-- | main/libtheora/APKBUILD | 9 | ||||
-rw-r--r-- | main/libtheora/automake.patch | 11 |
2 files changed, 17 insertions, 3 deletions
diff --git a/main/libtheora/APKBUILD b/main/libtheora/APKBUILD index 88a0ef32c6..a11d641182 100644 --- a/main/libtheora/APKBUILD +++ b/main/libtheora/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=libtheora pkgver=1.1.1 -pkgrel=7 +pkgrel=8 pkgdesc="An open video codec developed by the Xiph.org" url="http://www.xiph.org" arch="all" @@ -12,6 +12,7 @@ makedepends="libvorbis-dev libogg-dev sdl-dev autoconf automake libtool" source="http://downloads.xiph.org/releases/theora/$pkgname-$pkgver.tar.bz2 libtheora-flags.patch enc.patch + automake.patch " depends_dev="libogg-dev" @@ -25,7 +26,8 @@ prepare() { patch -p1 -i "$srcdir"/$i || return 1 esac done - aclocal -I m4 && autoconf && automake && libtoolize || return 1 + aclocal -I m4 && autoconf && automake --add-missing \ + && libtoolize || return 1 } build() { @@ -58,4 +60,5 @@ examples() { md5sums="292ab65cedd5021d6b7ddd117e07cd8e libtheora-1.1.1.tar.bz2 7cbab1ce1f52adb98e1c241515a27aca libtheora-flags.patch -5024b6c41351433bf0e8a354969f8efd enc.patch" +5024b6c41351433bf0e8a354969f8efd enc.patch +0ed0917a6dac6a0e3242b1f7ce9785a5 automake.patch" diff --git a/main/libtheora/automake.patch b/main/libtheora/automake.patch new file mode 100644 index 0000000000..f00497058b --- /dev/null +++ b/main/libtheora/automake.patch @@ -0,0 +1,11 @@ +--- ./configure.ac.orig 2012-12-31 20:15:29.384600257 +0000 ++++ ./configure.ac 2012-12-31 20:15:38.461347599 +0000 +@@ -9,7 +9,7 @@ + AC_CANONICAL_HOST + AC_CANONICAL_TARGET + +-AM_CONFIG_HEADER([config.h]) ++AC_CONFIG_HEADER([config.h]) + AC_CONFIG_SRCDIR([lib/fdct.c]) + AM_INIT_AUTOMAKE + AM_MAINTAINER_MODE |