diff options
author | Christian Tietz <christian.tietz@mailbox.org> | 2022-05-08 02:19:35 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-05-14 02:57:39 +0000 |
commit | abb381d721ba3103db795b85a83367d00b595d93 (patch) | |
tree | 916662f970f57ca4fc9439de00a229a67e915b46 /app-editors | |
parent | media-libs/libilbc: Keyword 3.0.4 ia64, #610546 (diff) | |
download | gentoo-abb381d721ba3103db795b85a83367d00b595d93.tar.gz gentoo-abb381d721ba3103db795b85a83367d00b595d93.tar.bz2 gentoo-abb381d721ba3103db795b85a83367d00b595d93.zip |
app-editors/gummi: Bump to 0.8.3
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Christian Tietz <christian.tietz@mailbox.org>
Closes: https://github.com/gentoo/gentoo/pull/25378
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/gummi/Manifest | 1 | ||||
-rw-r--r-- | app-editors/gummi/gummi-0.8.3.ebuild | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/app-editors/gummi/Manifest b/app-editors/gummi/Manifest index d7f56fa46a92..38c014f280d0 100644 --- a/app-editors/gummi/Manifest +++ b/app-editors/gummi/Manifest @@ -1 +1,2 @@ DIST gummi-0.8.2.tar.gz 595733 BLAKE2B 9c7366df2b8fe40f7876f065a1156eb4992048b3eaec5dde332c50ccb98ef2a5d8d2cbe73ebb56eb3736bbce49f3168f165db82f562ee7265ce0859952801a2c SHA512 3882f1e2779b94348cc0cc243c3968a78165c16de41029f9fcb8ba2fa942d329c43f5ecc8ba8327590e14343556ca472a51d1e824ce0985a415ab92aa2cbbc42 +DIST gummi-0.8.3.tar.gz 590485 BLAKE2B d919544eca87e22da49afc879933b5b54b23ed0a21303c95deb405c5ecdec57981d19f526e7cef27f904a6cc1fb5e1bea7af1131578b0f4275460035a5d9167f SHA512 c8c7b5427ed37a995bc8c6f814a5af2926595acfe4dea649e02af424291b8dff0d7264f1e68c7a86b457a9710ad6b18fed2238f1adeec91360921a242a7cb980 diff --git a/app-editors/gummi/gummi-0.8.3.ebuild b/app-editors/gummi/gummi-0.8.3.ebuild new file mode 100644 index 000000000000..71b4d8dc5e59 --- /dev/null +++ b/app-editors/gummi/gummi-0.8.3.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit xdg-utils + +DESCRIPTION="Simple LaTeX editor for GTK+ users" +HOMEPAGE="https://github.com/alexandervdm/gummi" +SRC_URI="https://github.com/alexandervdm/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~riscv ~x86" + +RDEPEND=" + app-text/gtkspell:3 + app-text/poppler[cairo] + dev-libs/glib:2 + dev-texlive/texlive-latex + dev-texlive/texlive-latexextra + x11-libs/gtk+:3 + x11-libs/gtksourceview:3.0 + x11-libs/pango +" +DEPEND=" + ${RDEPEND} +" +BDEPEND=" + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig +" + +pkg_postinst() { + xdg_desktop_database_update + + elog "Gummi supports spell-checking through gtkspell. Support for" + elog "additional languages can be added by installing myspell-**-" + elog "packages for your language of choice." +} + +pkg_postrm() { + xdg_desktop_database_update +} |