mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-21 22:53:31 +02:00
The old patch did not fix the code correctly, so update it to enable the
plugin to work. Thanks to Bill Prendergast for providing the patch.
Fixes: 8a296ea717
Closes: https://bugs.gentoo.org/955791
Bug: https://bugs.gentoo.org/717422
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
32 lines
686 B
Bash
32 lines
686 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Provide libnotify interface to Pidgin and Finch"
|
|
HOMEPAGE="https://github.com/sardemff7/purple-libnotify-plus"
|
|
SRC_URI="https://github.com/sardemff7/purple-libnotify-plus/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
RDEPEND="
|
|
net-im/pidgin
|
|
>=net-im/purple-events-0.99.1
|
|
x11-libs/gdk-pixbuf
|
|
>=x11-libs/libnotify-0.7.0"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
dev-util/intltool
|
|
sys-devel/gettext
|
|
virtual/pkgconfig"
|
|
|
|
PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|