Removed patches applied upstream.
IOhannes m zmölnig
9 years ago
debian/patches/1-AM_INIT_AUTOMAKE.patch
less
more
| 0 | |
Description: fix args to AM_INIT_AUTOMAKE
|
| 1 | |
arguments to AM_INIT_AUTOMAKE have been deprecated.
|
| 2 | |
see http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
|
| 3 | |
Author: IOhannes m zmölnig
|
| 4 | |
Forwarded: https://github.com/dyne/frei0r/pull/5
|
| 5 | |
Last-Update: 2014-05-20
|
| 6 | |
---
|
| 7 | |
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
| 8 | |
--- frei0r.orig/configure.ac
|
| 9 | |
+++ frei0r/configure.ac
|
| 10 | |
@@ -5,7 +5,7 @@
|
| 11 | |
AC_INIT(frei0r-plugins, [1.5.0], [frei0r-devel@dyne.org])
|
| 12 | |
AC_CONFIG_MACRO_DIR([m4])
|
| 13 | |
|
| 14 | |
-AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
|
| 15 | |
+AM_INIT_AUTOMAKE([foreign])
|
| 16 | |
|
| 17 | |
# Checks for programs.
|
| 18 | |
AC_PROG_CXX
|
debian/patches/1-build-doc.patch
less
more
| 0 | |
Description: fix install target for doc
|
| 1 | |
Author: IOhannes m zmölnig <umlaeute@debian.org>
|
| 2 | |
Forwarded: https://github.com/dyne/frei0r/pull/5
|
| 3 | |
Last-Update: 2014-05-20
|
| 4 | |
---
|
| 5 | |
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
| 6 | |
--- frei0r.orig/doc/Makefile.am
|
| 7 | |
+++ frei0r/doc/Makefile.am
|
| 8 | |
@@ -22,10 +22,10 @@
|
| 9 | |
-cp -ra html $(distdir)/doc/
|
| 10 | |
|
| 11 | |
install-data:
|
| 12 | |
- install -c -m 644 -d $(htmldocs_DATA) $(htmldocsdir)
|
| 13 | |
+ install -c -m 644 -d $(htmldocs_DATA) $(DESTDIR)$(htmldocsdir)
|
| 14 | |
|
| 15 | |
# Modify the install hook, so we can install directories
|
| 16 | |
install-htmldocsDATA:
|
| 17 | |
- mkdir -p $(htmldocsdir)
|
| 18 | |
- cp -r ./html $(htmldocsdir)/
|
| 19 | |
+ mkdir -p $(DESTDIR)$(htmldocsdir)
|
| 20 | |
+ cp -r ./html $(DESTDIR)$(htmldocsdir)/
|
| 21 | |
|
debian/patches/1-fix-spelling.patch
less
more
| 0 | |
Description: Fixing spelling mistakes
|
| 1 | |
Author: IOhannes m zmölnig <umlaeute@debian.org>
|
| 2 | |
Forwarded: https://github.com/dyne/frei0r/pull/5
|
| 3 | |
Forwarded: http://lists.dyne.org/lurker/message/20140521.064611.ef8b1c6a.en.html
|
| 4 | |
Last-Update: 2014-05-21
|
| 5 | |
---
|
| 6 | |
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
| 7 | |
--- frei0r.orig/src/filter/spillsupress/spillsupress.c
|
| 8 | |
+++ frei0r/src/filter/spillsupress/spillsupress.c
|
| 9 | |
@@ -124,7 +124,7 @@
|
| 10 | |
case 0:
|
| 11 | |
info->name = "supresstype";
|
| 12 | |
info->type = F0R_PARAM_DOUBLE;
|
| 13 | |
- info->explanation = "Defines if green or blue screen spill supress is applied";
|
| 14 | |
+ info->explanation = "Defines if green or blue screen spill suppress is applied";
|
| 15 | |
break;
|
| 16 | |
}
|
| 17 | |
}
|
debian/patches/2-docs_DATA.patch
less
more
| 0 | |
Description: Fixed files enumerated in Makefile.am
|
| 1 | |
docs_DATA lists a few files without the .txt extension
|
| 2 | |
Author: IOhannes m zmölnig
|
| 3 | |
---
|
| 4 | |
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
| 5 | |
--- frei0r.orig/Makefile.am
|
| 6 | |
+++ frei0r/Makefile.am
|
| 7 | |
@@ -16,4 +16,4 @@
|
| 8 | |
pkgconfig_DATA = frei0r.pc
|
| 9 | |
|
| 10 | |
docsdir = ${prefix}/share/doc/${PACKAGE}
|
| 11 | |
-docs_DATA = README ChangeLog TODO AUTHORS
|
| 12 | |
+docs_DATA = README.txt ChangeLog.txt TODO.txt AUTHORS.txt
|
|
0 |
Description: Fixed files enumerated in Makefile.am
|
|
1 |
docs_DATA lists a few files without the .txt extension
|
|
2 |
Author: IOhannes m zmölnig
|
|
3 |
---
|
|
4 |
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
|
5 |
--- frei0r.orig/Makefile.am
|
|
6 |
+++ frei0r/Makefile.am
|
|
7 |
@@ -16,4 +16,4 @@
|
|
8 |
pkgconfig_DATA = frei0r.pc
|
|
9 |
|
|
10 |
docsdir = ${prefix}/share/doc/${PACKAGE}
|
|
11 |
-docs_DATA = README ChangeLog TODO AUTHORS
|
|
12 |
+docs_DATA = README.txt ChangeLog.txt TODO.txt AUTHORS.txt
|
| 0 | |
1-AM_INIT_AUTOMAKE.patch
|
| 1 | |
2-docs_DATA.patch
|
| 2 | |
1-build-doc.patch
|
| 3 | |
1-fix-spelling.patch
|
|
0 |
docs_DATA.patch
|