diff options
| -rw-r--r-- | meta/packages/quilt/files/install.patch | 19 | ||||
| -rw-r--r-- | meta/packages/quilt/quilt-0.47/aclocal.patch (renamed from meta/packages/quilt/quilt-0.45/aclocal.patch) | 61 | ||||
| -rw-r--r-- | meta/packages/quilt/quilt-0.47/install.patch | 11 | ||||
| -rw-r--r-- | meta/packages/quilt/quilt-0.47/non-gnu.patch (renamed from meta/packages/quilt/quilt-0.45/non-gnu.patch) | 0 | ||||
| -rw-r--r-- | meta/packages/quilt/quilt-native_0.47.bb (renamed from meta/packages/quilt/quilt-native_0.45.bb) | 2 | ||||
| -rw-r--r-- | meta/packages/quilt/quilt_0.47.bb (renamed from meta/packages/quilt/quilt_0.45.bb) | 0 | ||||
| -rw-r--r-- | meta/packages/quilt/quilt_0.47.inc (renamed from meta/packages/quilt/quilt_0.45.inc) | 0 |
7 files changed, 70 insertions, 23 deletions
diff --git a/meta/packages/quilt/files/install.patch b/meta/packages/quilt/files/install.patch deleted file mode 100644 index 4122370d6a..0000000000 --- a/meta/packages/quilt/files/install.patch +++ /dev/null | |||
| @@ -1,19 +0,0 @@ | |||
| 1 | |||
| 2 | # | ||
| 3 | # Patch managed by http://www.holgerschurig.de/patcher.html | ||
| 4 | # | ||
| 5 | |||
| 6 | --- quilt-0.32/Makefile.in~install | ||
| 7 | +++ quilt-0.32/Makefile.in | ||
| 8 | @@ -9,9 +9,9 @@ | ||
| 9 | libdir := @libdir@ | ||
| 10 | datadir := @datadir@ | ||
| 11 | docdir := @docdir@ | ||
| 12 | -mandir := $(datadir)/man | ||
| 13 | +mandir := @mandir@ | ||
| 14 | localedir := $(datadir)/locale | ||
| 15 | -etcdir := $(subst /usr/etc,/etc,$(prefix)/etc) | ||
| 16 | +etcdir := @sysconfdir@ | ||
| 17 | |||
| 18 | QUILT_DIR = $(datadir)/$(PACKAGE) | ||
| 19 | SCRIPTS_DIR = $(QUILT_DIR)/scripts | ||
diff --git a/meta/packages/quilt/quilt-0.45/aclocal.patch b/meta/packages/quilt/quilt-0.47/aclocal.patch index 03d99ed785..15b174c6d8 100644 --- a/meta/packages/quilt/quilt-0.45/aclocal.patch +++ b/meta/packages/quilt/quilt-0.47/aclocal.patch | |||
| @@ -1,10 +1,10 @@ | |||
| 1 | Add the aclocal.m4 as acinclude.m4 | 1 | Add the aclocal.m4 as acinclude.m4 |
| 2 | 2 | ||
| 3 | Index: quilt-0.45/acinclude.m4 | 3 | Index: quilt-0.47/acinclude.m4 |
| 4 | =================================================================== | 4 | =================================================================== |
| 5 | --- /dev/null 1970-01-01 00:00:00.000000000 +0000 | 5 | --- /dev/null 1970-01-01 00:00:00.000000000 +0000 |
| 6 | +++ quilt-0.45/acinclude.m4 2006-08-06 23:18:56.000000000 +0200 | 6 | +++ quilt-0.47/acinclude.m4 2006-10-10 17:05:56.000000000 +0100 |
| 7 | @@ -0,0 +1,64 @@ | 7 | @@ -0,0 +1,119 @@ |
| 8 | +dnl Allow configure to specify a specific binary | 8 | +dnl Allow configure to specify a specific binary |
| 9 | +dnl 1: Environment variable | 9 | +dnl 1: Environment variable |
| 10 | +dnl 2: binary name | 10 | +dnl 2: binary name |
| @@ -69,3 +69,58 @@ Index: quilt-0.45/acinclude.m4 | |||
| 69 | + fi | 69 | + fi |
| 70 | + AC_SUBST($1) | 70 | + AC_SUBST($1) |
| 71 | +]) | 71 | +]) |
| 72 | + | ||
| 73 | +dnl Allow configure to specify a specific binary | ||
| 74 | +dnl This variant is for optional binaries. | ||
| 75 | +dnl 1: Environment variable | ||
| 76 | +dnl 2: binary name | ||
| 77 | +dnl 3: optional list of alternative binary names | ||
| 78 | +dnl 4: optional list of additional search directories | ||
| 79 | +AC_DEFUN([QUILT_COMPAT_PROG_PATH_OPT],[ | ||
| 80 | + AC_ARG_WITH($2, AC_HELP_STRING( | ||
| 81 | + [--with-$2], [name of the $2 executable to use]), | ||
| 82 | + [ | ||
| 83 | + if test x"$withval" != xno; then | ||
| 84 | + AC_MSG_CHECKING(for $2) | ||
| 85 | + $1="$withval" | ||
| 86 | + if test -e "$$1"; then | ||
| 87 | + if test ! -f "$$1" -a ! -h "$$1" || test ! -x "$$1"; then | ||
| 88 | + AC_MSG_ERROR([$$1 is not an executable file]) | ||
| 89 | + fi | ||
| 90 | + fi | ||
| 91 | + AC_MSG_RESULT([$$1]) | ||
| 92 | + if test ! -e "$$1"; then | ||
| 93 | + AC_MSG_WARN([$$1 does not exist]) | ||
| 94 | + fi | ||
| 95 | + COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2" | ||
| 96 | + fi | ||
| 97 | + ],[ | ||
| 98 | + m4_if([$3],[],[ | ||
| 99 | + AC_PATH_PROG($1,$2,,$PATH:$4) | ||
| 100 | + ],[ | ||
| 101 | + AC_PATH_PROGS($1,$3,,$PATH:$4) | ||
| 102 | + if test -n "$$1" -a "`expr "$$1" : '.*/\([[^/]]*\)$'`" != "$2"; then | ||
| 103 | + COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2" | ||
| 104 | + fi | ||
| 105 | + ]) | ||
| 106 | + m4_if([$4],[],[],[ | ||
| 107 | + if test -n "$$1"; then | ||
| 108 | + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | ||
| 109 | + for dir in "$4"; do | ||
| 110 | + if test "`dirname $$1`" = "$dir"; then | ||
| 111 | + COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2" | ||
| 112 | + break | ||
| 113 | + fi | ||
| 114 | + done | ||
| 115 | + IFS="$as_save_IFS" | ||
| 116 | + fi | ||
| 117 | + ]) | ||
| 118 | + if test -z "$$1"; then | ||
| 119 | + AC_MSG_WARN([$2 not found, some optional functionalities will be missing]) | ||
| 120 | + fi | ||
| 121 | + ]) | ||
| 122 | + if test -z "$$1"; then | ||
| 123 | + $1=$2 | ||
| 124 | + fi | ||
| 125 | + AC_SUBST($1) | ||
| 126 | +]) | ||
diff --git a/meta/packages/quilt/quilt-0.47/install.patch b/meta/packages/quilt/quilt-0.47/install.patch new file mode 100644 index 0000000000..0b1e58d021 --- /dev/null +++ b/meta/packages/quilt/quilt-0.47/install.patch | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | --- quilt-0.47/Makefile.in 2008-12-31 19:09:13.000000000 +0000 | ||
| 2 | +++ quilt-0.47/Makefile.in.orig 2008-08-21 13:21:32.000000000 +0100 | ||
| 3 | @@ -13,7 +13,7 @@ | ||
| 4 | mandir := @mandir@ | ||
| 5 | localedir := $(datadir)/locale | ||
| 6 | emacsdir := $(datadir)/emacs/site-lisp | ||
| 7 | -etcdir := $(subst /usr/etc,/etc,$(prefix)/etc) | ||
| 8 | +etcdir := @sysconfdir@ | ||
| 9 | |||
| 10 | INSTALL := @INSTALL@ | ||
| 11 | POD2MAN := @POD2MAN@ | ||
diff --git a/meta/packages/quilt/quilt-0.45/non-gnu.patch b/meta/packages/quilt/quilt-0.47/non-gnu.patch index c1cbfb3983..c1cbfb3983 100644 --- a/meta/packages/quilt/quilt-0.45/non-gnu.patch +++ b/meta/packages/quilt/quilt-0.47/non-gnu.patch | |||
diff --git a/meta/packages/quilt/quilt-native_0.45.bb b/meta/packages/quilt/quilt-native_0.47.bb index b784572400..b61d5dac52 100644 --- a/meta/packages/quilt/quilt-native_0.45.bb +++ b/meta/packages/quilt/quilt-native_0.47.bb | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | PV = "0.45" | 1 | PV = "0.47" |
| 2 | PR = "r2" | 2 | PR = "r2" |
| 3 | require quilt-native.inc | 3 | require quilt-native.inc |
diff --git a/meta/packages/quilt/quilt_0.45.bb b/meta/packages/quilt/quilt_0.47.bb index 4de052635c..4de052635c 100644 --- a/meta/packages/quilt/quilt_0.45.bb +++ b/meta/packages/quilt/quilt_0.47.bb | |||
diff --git a/meta/packages/quilt/quilt_0.45.inc b/meta/packages/quilt/quilt_0.47.inc index bf6267b56c..bf6267b56c 100644 --- a/meta/packages/quilt/quilt_0.45.inc +++ b/meta/packages/quilt/quilt_0.47.inc | |||
