libtheora: convert recipe to an actual recipe

This commit is contained in:
Ingo Weinhold
2013-06-11 20:27:36 +02:00
parent 1a3b968ccb
commit 105918e37f
2 changed files with 123 additions and 14 deletions

View File

@@ -0,0 +1,58 @@
From 57bef9f56b8e4baa23023a8bc044e1a0c35f9431 Mon Sep 17 00:00:00 2001
From: Ingo Weinhold <ingo_weinhold@gmx.de>
Date: Tue, 11 Jun 2013 19:50:31 +0200
Subject: configure.ac: AM_CONFIG_HEADER -> AC_CONFIG_HEADERS
diff --git a/configure.ac b/configure.ac
index 8260bdf..c81fdb6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ AC_INIT(libtheora,[1.1.1])
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
-AM_CONFIG_HEADER([config.h])
+AC_CONFIG_HEADERS([config.h])
AC_CONFIG_SRCDIR([lib/fdct.c])
AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
--
1.7.5
From bb50525dec8c8c7f11ec958ac9329333be027949 Mon Sep 17 00:00:00 2001
From: Ingo Weinhold <ingo_weinhold@gmx.de>
Date: Tue, 11 Jun 2013 20:20:58 +0200
Subject: */Makefile.am: remove hard-coded docdir
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 30eaad8..5aeda7d 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -2,8 +2,6 @@
SUBDIRS = spec
-docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)
-
static_docs = vp3-format.txt color.html \
draft-ietf-avt-rtp-theora-00.xml \
draft-ietf-avt-rtp-theora-00.txt
diff --git a/doc/spec/Makefile.am b/doc/spec/Makefile.am
index 3a181a2..00e9271 100644
--- a/doc/spec/Makefile.am
+++ b/doc/spec/Makefile.am
@@ -3,8 +3,6 @@
# makefile to generate the spec document from sources
# requires transfig and pdflatex
-docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)
-
built_docs = Theora.pdf
if BUILD_SPEC
--
1.7.5