diff options
author | 2024-12-25 09:30:27 +0100 | |
---|---|---|
committer | 2024-12-25 09:30:27 +0100 | |
commit | 5a6be5eaf5def2e64dbca3b46f3b6d0d1d18aa26 (patch) | |
tree | 7c6104578fe414346d1926a10ec0de5a7e1c6f80 /xfce-extra | |
parent | xfce-extra/xfce4-sensors-plugin: Bump to 1.4.5 (diff) | |
download | gentoo-5a6be5eaf5def2e64dbca3b46f3b6d0d1d18aa26.tar.gz gentoo-5a6be5eaf5def2e64dbca3b46f3b6d0d1d18aa26.tar.bz2 gentoo-5a6be5eaf5def2e64dbca3b46f3b6d0d1d18aa26.zip |
xfce-extra/xfce4-smartbookmark-plugin: Bump to 0.5.3
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'xfce-extra')
-rw-r--r-- | xfce-extra/xfce4-smartbookmark-plugin/Manifest | 1 | ||||
-rw-r--r-- | xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.5.3.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-smartbookmark-plugin/Manifest b/xfce-extra/xfce4-smartbookmark-plugin/Manifest index 46acee029c85..3455bb44f81b 100644 --- a/xfce-extra/xfce4-smartbookmark-plugin/Manifest +++ b/xfce-extra/xfce4-smartbookmark-plugin/Manifest @@ -1 +1,2 @@ DIST xfce4-smartbookmark-plugin-0.5.2.tar.bz2 331765 BLAKE2B 00985170c8313b422747ae287d10c4fad6953ae1591d8f666d4beb4cf5323e3e020809f34da5228322ed396f33d43ce4608964f085724a3fcba8fc0cd2114b16 SHA512 56c5b4d366826de0b25f5665875f15d950a04ead7a3b5a7e546f27880363d47f3a1bba2c02e1f8ffd08b28cc4d4466d648740efda86ee8f378e0f8e721582b5f +DIST xfce4-smartbookmark-plugin-0.5.3.tar.bz2 396301 BLAKE2B 93c3c19304b771710b8a0c292dc5064d20d1fe082392a4c4ad1024cee5c66ed135b3feb5581fa4a795a7a73ff8ae49d91e8ab091f45b7e43335e66f61b4554a3 SHA512 bb88d2ab7c0f4b792eb8fb899f4364dcee379ea90f5a3b64c3c149afc6e7e668a5820bc40003f2fdab51eced864bb3da76e1829080f4d58ae0e38e6d1bb56c0c diff --git a/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.5.3.ebuild b/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.5.3.ebuild new file mode 100644 index 000000000000..16f543e629d4 --- /dev/null +++ b/xfce-extra/xfce4-smartbookmark-plugin/xfce4-smartbookmark-plugin-0.5.3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Smart bookmark plug-in for the Xfce desktop environment" +HOMEPAGE=" + https://docs.xfce.org/panel-plugins/xfce4-smartbookmark-plugin + https://gitlab.xfce.org/panel-plugins/xfce4-smartbookmark-plugin/ +" +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" + +DEPEND=" + >=dev-libs/glib-2.50.0 + >=x11-libs/gtk+-3.22.0:3 + >=xfce-base/libxfce4ui-4.16.0:=[gtk3(+)] + >=xfce-base/xfce4-panel-4.16.0:= +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_prepare() { + # substitute default bugtracker + sed -i -e '/bugs/s:bugs\.debian:bugs.gentoo:' src/smartbookmark.c || die + default +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} |