diff options
author | glarkin <glarkin@FreeBSD.org> | 2008-10-14 19:40:54 +0800 |
---|---|---|
committer | glarkin <glarkin@FreeBSD.org> | 2008-10-14 19:40:54 +0800 |
commit | 3cdf38c96d6812054e85ddf955a5cd142a61f58d (patch) | |
tree | 3d332cbe73cb80b05d2239c068eb03f50247829b /finance/kmymoney-kde4/files | |
parent | e0537717e4e55022f9bfa333c3ef2763795535a0 (diff) | |
download | freebsd-ports-gnome-3cdf38c96d6812054e85ddf955a5cd142a61f58d.tar.gz freebsd-ports-gnome-3cdf38c96d6812054e85ddf955a5cd142a61f58d.tar.zst freebsd-ports-gnome-3cdf38c96d6812054e85ddf955a5cd142a61f58d.zip |
- Update to 0.8.9
- pkg-plist cleanups
- Minor tweaks to install-sh patch
PR: ports/120758
Submitted by: gpalmer
Approved by: beech (mentor, implicit)
Diffstat (limited to 'finance/kmymoney-kde4/files')
-rw-r--r-- | finance/kmymoney-kde4/files/patch-admin__install-sh | 28 | ||||
-rw-r--r-- | finance/kmymoney-kde4/files/patch-configure | 23 | ||||
-rw-r--r-- | finance/kmymoney-kde4/files/patch-kmymoney2__plugins__Makefile.in | 11 |
3 files changed, 57 insertions, 5 deletions
diff --git a/finance/kmymoney-kde4/files/patch-admin__install-sh b/finance/kmymoney-kde4/files/patch-admin__install-sh new file mode 100644 index 000000000000..c8dd2746d86d --- /dev/null +++ b/finance/kmymoney-kde4/files/patch-admin__install-sh @@ -0,0 +1,28 @@ +--- ./admin/install-sh.orig 2004-12-28 15:10:08.000000000 -0500 ++++ ./admin/install-sh 2008-10-10 09:39:06.000000000 -0400 +@@ -50,6 +50,7 @@ + stripcmd="" + rmcmd="$rmprog -f" + mvcmd="$mvprog" ++mkdircmd="$mkdirprog -p" + src="" + dst="" + dir_arg="" +@@ -120,7 +121,7 @@ + instcmd=: + chmodcmd="" + else +- instcmd=$mkdirprog ++ instcmd=$mkdircmd + fi + else + +@@ -181,7 +182,7 @@ + + if [ ! -d "$pathcomp" ] ; + then +- $mkdirprog "$pathcomp" ++ $mkdircmd "$pathcomp" + else + : + fi diff --git a/finance/kmymoney-kde4/files/patch-configure b/finance/kmymoney-kde4/files/patch-configure index b539a7c431fe..0a0e7ebd5da6 100644 --- a/finance/kmymoney-kde4/files/patch-configure +++ b/finance/kmymoney-kde4/files/patch-configure @@ -1,12 +1,25 @@ ---- configure.orig Thu Feb 23 19:02:14 2006 -+++ configure Thu Feb 23 19:08:19 2006 +--- ./configure.orig 2008-03-24 10:49:54.000000000 -0400 ++++ ./configure 2008-10-10 09:39:07.000000000 -0400 @@ -1,4 +1,4 @@ -#! /bin/sh -+#! %%LOCALBASE%%/bin/bash ++#! /usr/local/bin/bash # Guess values for system-dependent variables and create Makefiles. - # Generated by GNU Autoconf 2.59. + # Generated by GNU Autoconf 2.61. # -@@ -36106,11 +36106,11 @@ +@@ -22553,10 +22553,10 @@ + + + # This can be used to rebuild libtool when needed +-LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++LIBTOOL_DEPS=" /usr/local/share/libtool/ltmain.sh" + + # Always use our own libtool. +-LIBTOOL='$(SHELL) $(top_builddir)/libtool --silent' ++LIBTOOL='$(SHELL) /usr/local/bin/libtool --silent' + + # Prevent multiple expansion + +@@ -36716,11 +36716,11 @@ { (exit 0); exit 0; } _ACEOF diff --git a/finance/kmymoney-kde4/files/patch-kmymoney2__plugins__Makefile.in b/finance/kmymoney-kde4/files/patch-kmymoney2__plugins__Makefile.in new file mode 100644 index 000000000000..05c55571e3be --- /dev/null +++ b/finance/kmymoney-kde4/files/patch-kmymoney2__plugins__Makefile.in @@ -0,0 +1,11 @@ +--- ./kmymoney2/plugins/Makefile.in.orig 2008-03-24 10:50:04.000000000 -0400 ++++ ./kmymoney2/plugins/Makefile.in 2008-10-10 09:39:06.000000000 -0400 +@@ -389,7 +389,7 @@ + INCLUDES = $(all_includes) -I$(top_srcdir) -I. + + # since some of the subdirs are conditional, we need to define DIST_SUBDIRS +-SUBDIRS = interfaces @ofx_importerplugin@ @kbanking_plugin@ ++SUBDIRS = . interfaces @ofx_importerplugin@ @kbanking_plugin@ + DIST_SUBDIRS = interfaces kbanking ofximport + + # The library containing the plugin base class |