forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-editors/gnome-latex: Version bump to 3.44.0
Signed-off-by: Guillermo Joandet <[email protected]> Closes: gentoo#28974 Signed-off-by: Matt Turner <[email protected]>
- Loading branch information
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST gnome-latex-3.42.0.tar.xz 1170904 BLAKE2B 0bd1b3c50910f70d5ef690bbc9d755a61f6e076c4a491662be77ffeb5985d50c664323c7e743d108bc65fd2c826ee12cf28076a0bfb1111cc2a922381b02034c SHA512 b36300226344eced21a694ecfa6aaef0b1e788ebbc461e0ae57adab30361bc6765c6b0136213ecf19e5b61ddbb35ac5c832fb21b6f1e7f555564bb372d5f2c7b | ||
DIST gnome-latex-3.44.0.tar.xz 1168840 BLAKE2B 7eb34502a9bcdcbb5c8e2d8336a3029fad1cdd1da0cbd704fae4de44a3aab913ed43228172dfe7798c7a513a61664fd8af97df0aff66d62f8502edbe845ac12f SHA512 d1dc7b2321438ebed7a209c7c750123a0dcf8ebcf92f73fd7eb4c79282f51d6b6a8328ee8759326f43e53dbd2ba9d1fadc056c2fcea11e7785e7c27574707e95 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
inherit gnome2 | ||
|
||
DESCRIPTION="Integrated LaTeX environment for GNOME" | ||
HOMEPAGE="https://gitlab.gnome.org/swilmet/gnome-latex" | ||
|
||
LICENSE="GPL-3+" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~riscv ~x86" | ||
IUSE="+introspection +latexmk rubber" | ||
|
||
DEPEND=" | ||
>=dev-libs/glib-2.70:2 | ||
>=x11-libs/gtk+-3.22:3 | ||
>=app-text/gspell-1.8:0= | ||
>=gui-libs/amtk-5.6:= | ||
>=x11-libs/gtksourceview-4.0:4 | ||
>=gui-libs/tepl-6.4:= | ||
>=dev-libs/libgee-0.10:0.8= | ||
gnome-base/gsettings-desktop-schemas | ||
x11-libs/gdk-pixbuf:2 | ||
x11-libs/pango | ||
introspection? ( >=dev-libs/gobject-introspection-1.30.0:= ) | ||
gnome-base/dconf | ||
" | ||
RDEPEND="${DEPEND} | ||
virtual/latex-base | ||
x11-themes/hicolor-icon-theme | ||
latexmk? ( dev-tex/latexmk ) | ||
rubber? ( dev-tex/rubber ) | ||
" | ||
BDEPEND=" | ||
dev-util/gdbus-codegen | ||
dev-util/glib-utils | ||
>=dev-util/gtk-doc-am-1.14 | ||
dev-util/itstool | ||
>=sys-devel/gettext-0.19.6:0 | ||
virtual/pkgconfig | ||
" | ||
|
||
src_configure() { | ||
gnome2_src_configure \ | ||
$(use_enable introspection) \ | ||
--enable-dconf_migration \ | ||
--enable-vala=no | ||
} |