diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-11-01 16:18:53 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-11-01 16:23:32 +0100 |
commit | f2d79e3b9117de7048e2917b0a128ac51f692df1 (patch) | |
tree | f5a81c35960c5fdfd3a3391a10d222365825ab27 /xfce-base | |
parent | sys-kernel/gentoo-kernel-bin: Bump to 6.11.6 (diff) | |
download | gentoo-f2d79e3b9117de7048e2917b0a128ac51f692df1.tar.gz gentoo-f2d79e3b9117de7048e2917b0a128ac51f692df1.tar.bz2 gentoo-f2d79e3b9117de7048e2917b0a128ac51f692df1.zip |
xfce-base/garcon: Bump to 4.19.2
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'xfce-base')
-rw-r--r-- | xfce-base/garcon/Manifest | 1 | ||||
-rw-r--r-- | xfce-base/garcon/garcon-4.19.2.ebuild | 56 |
2 files changed, 57 insertions, 0 deletions
diff --git a/xfce-base/garcon/Manifest b/xfce-base/garcon/Manifest index 614fb8ae5d63..af4b07630246 100644 --- a/xfce-base/garcon/Manifest +++ b/xfce-base/garcon/Manifest @@ -1,2 +1,3 @@ DIST garcon-4.18.2.tar.bz2 579345 BLAKE2B 2c2c66bb5e53a6dce01cf9dbb8458794f42c06c8db6b526a8ba5c37b73298a7d1fb3f64ef7f9c2036e87903cc6e2afd49fdaedddaec7ecaf8a4b711547945b52 SHA512 f74547a29dbf47469e9448ea0fb89a297d02c7a5d2f7ec1a1f05706f89160730e04743ce84de29de21f32a2d2e4e4410f6c12fd14777c65944529f5104973cee DIST garcon-4.19.1.tar.bz2 655347 BLAKE2B 609403c108638fcbc10485d18d2a0564d8a1137bc9b92e4be0bbafb1615ea1d2f919da2871df22ebdbe3910ceed7f042cfa261df3243910276f9a144124f0125 SHA512 85f3c8991a143636ffd257115f749cb687cfebeeb29ed29a0d6e751bdfe26d0cd121feaad52b16ca2b017d2f2824b1da050db8638c5d6d5e72c7f62934d7f250 +DIST garcon-4.19.2.tar.bz2 658590 BLAKE2B 3e9191d5c35f2f121fc0fc9004285fa202a5d6c157aa7aa0514859b5bcc0ea3b0508043c741b5f9c54300b82f3c8d0d07f782585ba7cdff0da55a8fbad8f6bb7 SHA512 0b136ff4ff491f20d64b8da34412c750eb55af9d7ef248bef9689a165ea3768cd0beb2398f45640aff477419b87aa4a8e0afb734ccd45b8e5350f363d2af06a9 diff --git a/xfce-base/garcon/garcon-4.19.2.ebuild b/xfce-base/garcon/garcon-4.19.2.ebuild new file mode 100644 index 000000000000..d5c1feb56e75 --- /dev/null +++ b/xfce-base/garcon/garcon-4.19.2.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit xdg-utils + +DESCRIPTION="Xfce's freedesktop.org specification compatible menu implementation library" +HOMEPAGE=" + https://docs.xfce.org/xfce/garcon/start + https://gitlab.xfce.org/xfce/garcon/ +" +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="LGPL-2+ FDL-1.1+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="introspection" + +DEPEND=" + >=dev-libs/glib-2.72.0 + >=x11-libs/gtk+-3.24.0:3 + >=xfce-base/libxfce4util-4.15.6:=[introspection?] + >=xfce-base/libxfce4ui-4.15.7:=[introspection?] + introspection? ( >=dev-libs/gobject-introspection-1.72:= ) +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + dev-util/glib-utils + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig + introspection? ( >=dev-libs/gobject-introspection-1.72 ) +" + +src_configure() { + local myconf=( + $(use_enable introspection) + ) + + econf "${myconf[@]}" +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |