diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-11-26 12:57:00 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-11-26 12:57:00 +0100 |
commit | 8f52c09ffb06ffcf09248694257f1cf6392cbda1 (patch) | |
tree | c8b21720e0225c9ee5bc72644e23bcef1aa77702 /app-editors/mousepad | |
parent | sys-kernel/vanilla-sources: Linux version bumps (diff) | |
download | gentoo-8f52c09ffb06ffcf09248694257f1cf6392cbda1.tar.gz gentoo-8f52c09ffb06ffcf09248694257f1cf6392cbda1.tar.bz2 gentoo-8f52c09ffb06ffcf09248694257f1cf6392cbda1.zip |
app-editors/mousepad: Bump to 0.5.8
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-editors/mousepad')
-rw-r--r-- | app-editors/mousepad/Manifest | 1 | ||||
-rw-r--r-- | app-editors/mousepad/mousepad-0.5.8.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/app-editors/mousepad/Manifest b/app-editors/mousepad/Manifest index 8d13151ddcf0..d6d547d66503 100644 --- a/app-editors/mousepad/Manifest +++ b/app-editors/mousepad/Manifest @@ -1 +1,2 @@ DIST mousepad-0.5.7.tar.bz2 920371 BLAKE2B e019427316343a528786fc973b9aef4c63b5368140894212faea767311e6a18029aa093a9ac9f9ec831d637e0d8568bb76215a7c760162015309049b2ee10418 SHA512 0302fbf0d5e7ffe20a7f712dd0dc5878552572ec77798ed329b0e5688c0d4f80c5aa527f9fadb2de7452c8983bf1efd0e117ed7c170b0ca79e09006617f357ac +DIST mousepad-0.5.8.tar.bz2 927756 BLAKE2B b0518cfbc72a4816765846dc55cedb13377047d39966ceb66d93943b6eed7191eb06c2d482f41e7356271a26f3e99a5a26d1f63b3e4ef490c777448f85dd7083 SHA512 6446927b564fe18c3127835e592d0248efa690c7b8fc2a7da92f237eb16184bd502c446a5b50aed8acd1d8233c22ee7e91c0b9ee512232f7d7a69c72f1dea9e9 diff --git a/app-editors/mousepad/mousepad-0.5.8.ebuild b/app-editors/mousepad/mousepad-0.5.8.ebuild new file mode 100644 index 000000000000..e2ae29f2f03f --- /dev/null +++ b/app-editors/mousepad/mousepad-0.5.8.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnome2-utils xdg-utils + +DESCRIPTION="GTK+-based editor for the Xfce Desktop Environment" +HOMEPAGE="https://git.xfce.org/apps/mousepad/about/" +SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" + +RDEPEND=">=dev-libs/glib-2.52 + >=x11-libs/gtk+-3.22:3 + >=x11-libs/gtksourceview-4.0.0:4" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-lang/perl + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig" + +src_configure() { + local myconf=( + --enable-gtksourceview4 + ) + econf "${myconf[@]}" +} + +pkg_postinst() { + gnome2_schemas_update + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + gnome2_schemas_update + xdg_desktop_database_update + xdg_icon_cache_update +} |