diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-29 11:41:11 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-29 11:41:11 +0000 |
commit | 1b7e94efb7e0a53058b96a2de175e6a3c431816b (patch) | |
tree | 81a9bd61202acaafa97ff5fb9036be3936928d9f /finance/grisbi/files | |
parent | Use the ftp location suggested by Joe (diff) |
New port: finance/grisbi, a personal finance manager.
Grisbi is a personnal accounting application, written with
Gnome and Gtk, and is released under the GPL licence.
Its aim is to provide you with the most simple and intuitive
software for basic use, although it can be very powerful
if you spend a little time on the setup.
Grisbi is an application written by french developpers, so
it perfectly respects french accounting rules. Grisbi can
manage multiple accounts, currencies and users. It manages
third parties, expenditures and receipts categories, and
also budgetary lines, financial years, and other information
that make Grisbi adapted for associations (except those
that require double entry accounting).
WWW: http://www.grisbi.org/
PR: ports/54675
Submitted by: Thierry Thomas <thierry@pompo.net>
Diffstat (limited to 'finance/grisbi/files')
-rw-r--r-- | finance/grisbi/files/patch-aclocal.m4 | 26 | ||||
-rw-r--r-- | finance/grisbi/files/patch-help_Makefile.in | 22 |
2 files changed, 48 insertions, 0 deletions
diff --git a/finance/grisbi/files/patch-aclocal.m4 b/finance/grisbi/files/patch-aclocal.m4 new file mode 100644 index 000000000000..7da0f914b79d --- /dev/null +++ b/finance/grisbi/files/patch-aclocal.m4 @@ -0,0 +1,26 @@ +--- aclocal.m4.orig Thu Oct 24 11:02:25 2002 ++++ aclocal.m4 Tue Nov 26 19:28:10 2002 +@@ -60,10 +60,10 @@ + AC_REQUIRE([AC_ARG_PROGRAM]) + dnl FIXME This is truly gross. + missing_dir=`cd $ac_aux_dir && pwd` +-AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}, $missing_dir) +-AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir) +-AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}, $missing_dir) +-AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir) ++AM_MISSING_PROG(ACLOCAL, aclocal${am__api_version}, $missing_dir) ++AM_MISSING_PROG(AUTOCONF, $AUTOCONF, $missing_dir) ++AM_MISSING_PROG(AUTOMAKE, automake${am__api_version}, $missing_dir) ++AM_MISSING_PROG(AUTOHEADER, $AUTOHEADER, $missing_dir) + AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir) + AC_REQUIRE([AC_PROG_MAKE_SET])]) + +@@ -87,7 +87,7 @@ + # ---------------------------- + # Automake X.Y traces this macro to ensure aclocal.m4 has been + # generated from the m4 files accompanying Automake X.Y. +-AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.4"]) ++AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="14"]) + + # AM_SET_CURRENT_AUTOMAKE_VERSION + # ------------------------------- diff --git a/finance/grisbi/files/patch-help_Makefile.in b/finance/grisbi/files/patch-help_Makefile.in new file mode 100644 index 000000000000..cd21cddac1b8 --- /dev/null +++ b/finance/grisbi/files/patch-help_Makefile.in @@ -0,0 +1,22 @@ +--- help/Makefile.in.orig Sat Feb 15 23:19:45 2003 ++++ help/Makefile.in Sun Feb 16 21:21:17 2003 +@@ -238,7 +238,8 @@ + distdir=`cd $(distdir) && pwd`; \ + cd $(top_srcdir) \ + && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu help/Makefile +- @for file in $(DISTFILES); do \ ++ @if test "x$(srcdir)" != "x$(DISTFILES)"; then \ ++ for file in $(DISTFILES); do \ + d=$(srcdir); \ + if test -d $$d/$$file; then \ + cp -pr $$d/$$file $(distdir)/$$file; \ +@@ -247,7 +248,8 @@ + || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ + || cp -p $$d/$$file $(distdir)/$$file || :; \ + fi; \ +- done ++ done; \ ++ fi + for subdir in $(SUBDIRS); do \ + if test "$$subdir" = .; then :; else \ + test -d $(distdir)/$$subdir \ |