diff options
Diffstat (limited to 'xfce-extra/xfce4-notifyd')
-rw-r--r-- | xfce-extra/xfce4-notifyd/Manifest | 2 | ||||
-rw-r--r-- | xfce-extra/xfce4-notifyd/xfce4-notifyd-0.9.5.ebuild | 74 |
2 files changed, 76 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-notifyd/Manifest b/xfce-extra/xfce4-notifyd/Manifest index 72c25ca7f98c..57f8b9974fc7 100644 --- a/xfce-extra/xfce4-notifyd/Manifest +++ b/xfce-extra/xfce4-notifyd/Manifest @@ -1,3 +1,5 @@ DIST xfce4-notifyd-0.9.4.tar.bz2 732160 BLAKE2B d0c47875acf638f44ae8188c7a39f1785a9e3c489f4fad209e9c591780a91b0439037a0c62351619f71d2765dacf11a786d5678c03ec846f4aa0a0bc0b823166 SHA512 d3339ec3555f27e624e643b52ce4de2a0834d38f675b286976abcb4e143cbbb32665b1f36fbff23791c152e1f0616b752a7f049045fc32829c27c0a87d82df94 +DIST xfce4-notifyd-0.9.5.tar.bz2 740324 BLAKE2B 900b9487a888e7d1b7112d1f088605d4773d9baa7d17a369ef0cc4e6e00ecfb9ac72ba760044031090048e1d1aec2a8ef5c11c5246ff84b9a14ccdfbda014138 SHA512 9e8d81ccb16c3eb72ebea24ac03a0594d3f9ddd20c7edcaf9f68e288b2d5115294d5c9e2911c15e6d8032d36cdcfc423ee51b56a20268a035a3fb7ca65c41bdc EBUILD xfce4-notifyd-0.9.4.ebuild 1329 BLAKE2B b7dd478aeca99d4960f3590630ee3e856919dda942a32fb6e302940a9c74d39a2e4c08be4f8a2a7fa3d3d1d47d62afb7cb6daff7dad5bce11bd1668e21f5c7c2 SHA512 db6498916cf03d325b6deaab8f4a5e6b0805ee4075a79b96ad23c19c27f9528cf6ea2037f18d578d779df0ebba3f9e1442d335d2e4cfeaae2b39520ddba092d1 +EBUILD xfce4-notifyd-0.9.5.ebuild 1332 BLAKE2B 54b783521a985b0b308846c93d994006189c428ba1e7594abdf6e315c9df28eb007d16c99743938886b091f3a407b9f02129402cb408115c71f05f40ed160973 SHA512 1706523bb00810499604b7ba5536e1377bb14d8101027b877c62b3922c4ef6ee29cf345950bb5f6c4c963709752d55992ade8f133a025257c8064199bec933de MISC metadata.xml 248 BLAKE2B 83bf47dc3dbedea8a88932e922075f0ba8fd841433c4ab750e2ab61c22e8cbfaa1acb04a903d89ef5140a75dfc4c4899354623e0160df5b7c178c190f8494515 SHA512 b5200cfe30adef8e869fada87f1b4171210b2427cd3ac12edef70948f305d5e612ca5f24d377f9823a6022c8867db635db50ddd3d6cb362d6b0137c299fe07e5 diff --git a/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.9.5.ebuild b/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.9.5.ebuild new file mode 100644 index 000000000000..f1b06c391860 --- /dev/null +++ b/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.9.5.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit xdg-utils + +DESCRIPTION="Notification daemon for the Xfce desktop environment" +HOMEPAGE=" + https://docs.xfce.org/apps/notifyd/start + https://gitlab.xfce.org/apps/xfce4-notifyd/ +" +SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86" +IUSE="sound wayland X" + +DEPEND=" + >=dev-db/sqlite-3.34:3 + >=dev-libs/glib-2.68.0:2 + >=sys-apps/dbus-1.0 + >=x11-libs/gtk+-3.22:3[wayland?,X?] + >=x11-libs/libnotify-0.7 + >=xfce-base/libxfce4ui-4.12:=[gtk3(+)] + >=xfce-base/libxfce4util-4.12:= + >=xfce-base/xfce4-panel-4.14.0:= + >=xfce-base/xfconf-4.10:= + sound? ( + >=media-libs/libcanberra-0.30[gtk3] + ) + wayland? ( + >=gui-libs/gtk-layer-shell-0.7.0 + ) + X? ( + >=x11-libs/libX11-1.6.7 + ) +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + dev-util/gdbus-codegen + dev-util/glib-utils + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig +" + +src_configure() { + local myconf=( + $(use_enable wayland) + $(use_enable X x11) + + # just service files + --enable-systemd + ) + + econf "${myconf[@]}" +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |