diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-19 19:19:43 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-19 19:19:43 +0300 |
commit | 82ee2c162385fac803e7c5d2cd568d979266579c (patch) | |
tree | 0c960fe47fe934303567316daff902e3a1096e3b /x11-plugins | |
parent | x11-plugins/pidgin-mbpurple: Stabilize 0.3.0-r3 amd64, #930227 (diff) | |
download | gentoo-82ee2c162385fac803e7c5d2cd568d979266579c.tar.gz gentoo-82ee2c162385fac803e7c5d2cd568d979266579c.tar.bz2 gentoo-82ee2c162385fac803e7c5d2cd568d979266579c.zip |
x11-plugins/pidgin-mbpurple: drop 0.3.0-r2, EAPI6--
Closes: https://bugs.gentoo.org/930227
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/pidgin-mbpurple/pidgin-mbpurple-0.3.0-r2.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/x11-plugins/pidgin-mbpurple/pidgin-mbpurple-0.3.0-r2.ebuild b/x11-plugins/pidgin-mbpurple/pidgin-mbpurple-0.3.0-r2.ebuild deleted file mode 100644 index ad2c4ac3aec6..000000000000 --- a/x11-plugins/pidgin-mbpurple/pidgin-mbpurple-0.3.0-r2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -MY_P="${P/pidgin-/}" - -DESCRIPTION="Pidgin plug-in supporting microblog services like Twitter or identi.ca" -HOMEPAGE="https://code.google.com/p/microblog-purple/" -SRC_URI="https://microblog-purple.googlecode.com/files/${MY_P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ~riscv x86" -IUSE="+twitgin" - -RDEPEND="net-im/pidgin - twitgin? ( net-im/pidgin[gtk] )" -DEPEND="${RDEPEND} - virtual/pkgconfig" -S=${WORKDIR}/${MY_P} - -src_prepare() { - default - - # upstream Issue 226 (Respect LDFLAGS) - sed -i "/^LDFLAGS/d" global.mak || die "sed for LDFLAGS failed" - - # upstream Issue 225 (Warnings during compilation using make -j2) - sed -i "s/make /\$(MAKE) /g" Makefile || die "sed #2 failed" - - # upstream Issue 224 (configurable twitgin) - if ! use twitgin; then - sed -i 's/twitgin//g' Makefile || die - fi -} - -src_configure() { - tc-export CC -} |