gnome-latex 3.28.1
Closes #28115. Signed-off-by: ilovezfs <ilovezfs@icloud.com>
This commit is contained in:
parent
8b5354d357
commit
515b6199da
1 changed files with 3 additions and 124 deletions
|
@ -1,8 +1,8 @@
|
|||
class GnomeLatex < Formula
|
||||
desc "LaTeX editor for the GNOME desktop"
|
||||
homepage "https://wiki.gnome.org/Apps/LaTeXila"
|
||||
url "https://download.gnome.org/sources/gnome-latex/3.28/gnome-latex-3.28.0.tar.xz"
|
||||
sha256 "5d489869f7f0b7078071cc6957c25a46e42ad3e3a1cb71b787618a4d28fe359f"
|
||||
url "https://download.gnome.org/sources/gnome-latex/3.28/gnome-latex-3.28.1.tar.xz"
|
||||
sha256 "02105e81765388faa9f75ccb43b745b1d66bfb14285b7855e6a7809e7f0c88fc"
|
||||
|
||||
bottle do
|
||||
sha256 "59d72c577c10d9e032a9e53dae59a0ba2112cf1d57dcde7f6aa51f5dee77b2a5" => :high_sierra
|
||||
|
@ -13,9 +13,6 @@ class GnomeLatex < Formula
|
|||
depends_on "gobject-introspection" => :build
|
||||
depends_on "pkg-config" => :build
|
||||
depends_on "vala" => :build
|
||||
depends_on "autoconf" => :build
|
||||
depends_on "automake" => :build
|
||||
depends_on "libtool" => :build
|
||||
depends_on "intltool" => :build
|
||||
depends_on "itstool" => :build
|
||||
depends_on "gspell"
|
||||
|
@ -24,14 +21,11 @@ class GnomeLatex < Formula
|
|||
depends_on "adwaita-icon-theme"
|
||||
depends_on "gnome-themes-standard" => :optional
|
||||
|
||||
# see https://gitlab.gnome.org/GNOME/gnome-latex/merge_requests/11
|
||||
patch :DATA
|
||||
|
||||
def install
|
||||
system "autoreconf", "-fi"
|
||||
system "./configure", "--disable-schemas-compile",
|
||||
"--disable-dependency-tracking",
|
||||
"--disable-silent-rules",
|
||||
"--disable-dconf-migration",
|
||||
"--prefix=#{prefix}"
|
||||
system "make", "install"
|
||||
end
|
||||
|
@ -49,118 +43,3 @@ class GnomeLatex < Formula
|
|||
system "#{bin}/gnome-latex", "--version"
|
||||
end
|
||||
end
|
||||
|
||||
__END__
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index 5769bd5..26e9669 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -109,10 +109,23 @@ PKG_CHECK_MODULES([DEP], [
|
||||
tepl-4 >= ${TEPL_REQUIRED_VERSION}
|
||||
gspell-1 >= ${GSPELL_REQUIRED_VERSION}
|
||||
gee-0.8 >= ${GEE_REQUIRED_VERSION}
|
||||
- dconf
|
||||
gsettings-desktop-schemas
|
||||
])
|
||||
|
||||
+AC_ARG_ENABLE([dconf_migration],[AS_HELP_STRING([--disable-dconf-migration],[do not add support for dconf migration])],[enable_dconf_migration=$enableval],[enable_dconf_migration=check])
|
||||
+FOUND_DCONF_MIGRATION=
|
||||
+if test x$enable_dconf_migration != xno ; then
|
||||
+ PKG_CHECK_MODULES([DCONF_DEP], [dconf], [
|
||||
+ FOUND_DCONF_MIGRATION=yes
|
||||
+ AC_DEFINE([HAVE_DCONF_MIGRATION], [], [Enable DConf migration support])
|
||||
+ ], [FOUND_DCONF_MIGRATION=no])
|
||||
+ if test x$enable_dconf_migration = xyes && test x$FOUND_DCONF_MIGRATION = xno ; then
|
||||
+ AC_MSG_ERROR([Enabling dconf migration support requires the presence of dconf])
|
||||
+ fi
|
||||
+fi
|
||||
+
|
||||
+AM_CONDITIONAL([DCONF_MIGRATION_BUILD], [test x$FOUND_DCONF_MIGRATION = xyes])
|
||||
+
|
||||
# Native Language Support
|
||||
AX_REQUIRE_DEFINED([IT_PROG_INTLTOOL])
|
||||
IT_PROG_INTLTOOL([0.50.1])
|
||||
diff --git a/src/liblatexila/Makefile.am b/src/liblatexila/Makefile.am
|
||||
index de28d9b..bf7cb07 100644
|
||||
--- a/src/liblatexila/Makefile.am
|
||||
+++ b/src/liblatexila/Makefile.am
|
||||
@@ -7,6 +7,7 @@ liblatexila_la_CPPFLAGS = \
|
||||
|
||||
liblatexila_la_CFLAGS = \
|
||||
$(DEP_CFLAGS) \
|
||||
+ $(DCONF_DEP_CFLAGS) \
|
||||
$(WARN_CFLAGS) \
|
||||
$(CODE_COVERAGE_CFLAGS) \
|
||||
-I$(top_builddir)/src/evince
|
||||
@@ -16,6 +17,7 @@ liblatexila_la_LDFLAGS = \
|
||||
|
||||
liblatexila_la_LIBADD = \
|
||||
$(DEP_LIBS) \
|
||||
+ $(DCONF_DEP_LIBS) \
|
||||
$(CODE_COVERAGE_LIBS) \
|
||||
../evince/libevince.la
|
||||
|
||||
@@ -64,15 +66,25 @@ liblatexila_public_c_files = \
|
||||
$(NULL)
|
||||
|
||||
liblatexila_private_headers = \
|
||||
- dh-dconf-migration.h \
|
||||
latexila-templates-common.h \
|
||||
$(NULL)
|
||||
|
||||
+if DCONF_MIGRATION_BUILD
|
||||
+liblatexila_private_headers += \
|
||||
+ dh-dconf-migration.h \
|
||||
+ $(NULL)
|
||||
+endif
|
||||
+
|
||||
liblatexila_private_c_files = \
|
||||
- dh-dconf-migration.c \
|
||||
latexila-templates-common.c \
|
||||
$(NULL)
|
||||
|
||||
+if DCONF_MIGRATION_BUILD
|
||||
+liblatexila_private_c_files += \
|
||||
+ dh-dconf-migration.c \
|
||||
+ $(NULL)
|
||||
+endif
|
||||
+
|
||||
liblatexila_public_built_sources = \
|
||||
latexila-enum-types.c \
|
||||
latexila-enum-types.h \
|
||||
diff --git a/src/liblatexila/latexila-utils.c b/src/liblatexila/latexila-utils.c
|
||||
index 82e2ed6..9f107e0 100644
|
||||
--- a/src/liblatexila/latexila-utils.c
|
||||
+++ b/src/liblatexila/latexila-utils.c
|
||||
@@ -30,9 +30,12 @@
|
||||
* Various utility functions.
|
||||
*/
|
||||
|
||||
+#include "config.h"
|
||||
#include "latexila-utils.h"
|
||||
#include <string.h>
|
||||
+#ifdef HAVE_DCONF_MIGRATION
|
||||
#include "dh-dconf-migration.h"
|
||||
+#endif
|
||||
#include "latexila-synctex.h"
|
||||
|
||||
static gint
|
||||
@@ -493,6 +496,8 @@ latexila_utils_join_widgets (GtkWidget *widget_top,
|
||||
static void
|
||||
migrate_latexila_to_gnome_latex_gsettings (void)
|
||||
{
|
||||
+
|
||||
+#ifdef HAVE_DCONF_MIGRATION
|
||||
DhDconfMigration *migration;
|
||||
gint i;
|
||||
|
||||
@@ -562,6 +567,9 @@ migrate_latexila_to_gnome_latex_gsettings (void)
|
||||
}
|
||||
|
||||
_dh_dconf_migration_free (migration);
|
||||
+#else
|
||||
+ g_warning("dconf migration not supported!");
|
||||
+#endif
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue