diff options
Diffstat (limited to 'math')
-rw-r--r-- | math/qalculate-gtk/patches/patch-aa | 12 | ||||
-rw-r--r-- | math/qalculate-gtk/patches/patch-ac | 76 | ||||
-rw-r--r-- | math/qalculate-gtk/patches/patch-src_callbacks.cc | 13 |
3 files changed, 0 insertions, 101 deletions
diff --git a/math/qalculate-gtk/patches/patch-aa b/math/qalculate-gtk/patches/patch-aa deleted file mode 100644 index 65c05de6f24..00000000000 --- a/math/qalculate-gtk/patches/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-aa,v 1.5 2007/02/20 15:08:48 adam Exp $ - ---- src/Makefile.in.orig 2006-12-16 08:53:28.000000000 +0100 -+++ src/Makefile.in -@@ -537,7 +537,6 @@ uninstall-am: uninstall-binPROGRAMS unin - - - install-exec-local: -- cd $(DESTDIR)$(bindir) && rm -f qalculate; $(LN_S) @LN_QALCULATE@ qalculate - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. - .NOEXPORT: diff --git a/math/qalculate-gtk/patches/patch-ac b/math/qalculate-gtk/patches/patch-ac deleted file mode 100644 index 265b1a4869c..00000000000 --- a/math/qalculate-gtk/patches/patch-ac +++ /dev/null @@ -1,76 +0,0 @@ -$NetBSD: patch-ac,v 1.4 2010/04/13 17:28:34 drochner Exp $ - ---- configure.in.orig 2010-01-05 15:43:49.000000000 +0000 -+++ configure.in -@@ -55,6 +55,35 @@ fi - changequote([,])dnl - - -+dnl ------------------------------------- -+dnl | internationalization (i18n) support |------------------------------------ -+dnl ------------------------------------- -+ -+GETTEXT_PACKAGE=qalculate-gtk -+AC_SUBST(GETTEXT_PACKAGE) -+AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[The package name for gettext]) -+ -+dnl Please keep this in alphabetical order -+ALL_LINGUAS="nl sv" -+AM_GLIB_GNU_GETTEXT -+ -+dnl AM_GLIB_GNU_GETTEXT sets $DATADIRNAME -+AC_MSG_CHECKING(locale directory) -+if test "x$prefix" = "xNONE"; then -+ PACKAGE_LOCALE_DIR=$ac_default_prefix/share/locale -+else -+ PACKAGE_LOCALE_DIR=$prefix/share/locale -+fi -+ -+AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "$PACKAGE_LOCALE_DIR", -+ [The directory in which qalculate's locale data will be stored]) -+ AC_MSG_RESULT("$PACKAGE_LOCALE_DIR") -+ -+ -+ -+INTLTOOL_QALCULATE_DEFINITIONS_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po-defs/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po-defs/.intltool-merge-cache $(top_srcdir)/po-defs $< [$]@' -+AC_SUBST(INTLTOOL_QALCULATE_DEFINITIONS_RULE) -+ - dnl -------------------------------- - dnl | check for neccessary libraries |----------------------------------------- - dnl -------------------------------- -@@ -142,35 +171,6 @@ AC_SUBST(QALCULATE_GTK) - - AC_SUBST(LN_QALCULATE) - --dnl ------------------------------------- --dnl | internationalization (i18n) support |------------------------------------ --dnl ------------------------------------- -- --GETTEXT_PACKAGE=qalculate-gtk --AC_SUBST(GETTEXT_PACKAGE) --AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[The package name for gettext]) -- --dnl Please keep this in alphabetical order --ALL_LINGUAS="nl sv" --AM_GLIB_GNU_GETTEXT -- --dnl AM_GLIB_GNU_GETTEXT sets $DATADIRNAME --AC_MSG_CHECKING(locale directory) --if test "x$prefix" = "xNONE"; then -- PACKAGE_LOCALE_DIR=$ac_default_prefix/share/locale --else -- PACKAGE_LOCALE_DIR=$prefix/share/locale --fi -- --AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "$PACKAGE_LOCALE_DIR", -- [The directory in which qalculate's locale data will be stored]) -- AC_MSG_RESULT("$PACKAGE_LOCALE_DIR") -- -- -- --INTLTOOL_QALCULATE_DEFINITIONS_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po-defs/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po-defs/.intltool-merge-cache $(top_srcdir)/po-defs $< [$]@' --AC_SUBST(INTLTOOL_QALCULATE_DEFINITIONS_RULE) -- - dnl -------- - dnl | output |----------------------------------------------------------------- - dnl -------- diff --git a/math/qalculate-gtk/patches/patch-src_callbacks.cc b/math/qalculate-gtk/patches/patch-src_callbacks.cc deleted file mode 100644 index d65dee6a918..00000000000 --- a/math/qalculate-gtk/patches/patch-src_callbacks.cc +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-src_callbacks.cc,v 1.1 2013/05/12 19:16:01 joerg Exp $ - ---- src/callbacks.cc.orig 2013-05-12 18:04:10.000000000 +0000 -+++ src/callbacks.cc -@@ -346,7 +346,7 @@ struct tree_struct { - it->sort(); - } - } -- bool operator < (tree_struct &s1) const { -+ bool operator < (const tree_struct &s1) const { - return item < s1.item; - } - }; |