diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2022-05-14 10:33:58 +0200 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2022-05-14 10:34:36 +0200 |
commit | a50d1ece5d6c957dcb8b6cd29d1b748d333637f9 (patch) | |
tree | 464992d752e7522494cfd027dfa86810b97238ba /x11-plugins | |
parent | media-video/gxine: treeclean (diff) | |
download | gentoo-a50d1ece5d6c957dcb8b6cd29d1b748d333637f9.tar.gz gentoo-a50d1ece5d6c957dcb8b6cd29d1b748d333637f9.tar.bz2 gentoo-a50d1ece5d6c957dcb8b6cd29d1b748d333637f9.zip |
x11-plugins/pidgin-telegram: treeclean
Closes: https://bugs.gentoo.org/832431
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/pidgin-telegram/Manifest | 1 | ||||
-rw-r--r-- | x11-plugins/pidgin-telegram/metadata.xml | 20 | ||||
-rw-r--r-- | x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild | 50 |
3 files changed, 0 insertions, 71 deletions
diff --git a/x11-plugins/pidgin-telegram/Manifest b/x11-plugins/pidgin-telegram/Manifest deleted file mode 100644 index 865cd3ff5aff..000000000000 --- a/x11-plugins/pidgin-telegram/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST telegram-purple_1.4.7.orig.tar.gz 498573 BLAKE2B 37f741f1e2106db55eaadab70e2bf226609ebd85fa3df28a60b686e207c341f7279ea36ef87137d465b5bedac63e6ec0388714171dd5a594fb28ae02f66bebc4 SHA512 ae3032b33bd2a20b58b2d66c83fbc405f43c38c0e93b00394ad3165b0bc5d5aba02a8e1946872e4bd082894679737fa20f3e1991e9bb16c3c3aba4c7abbbf7d8 diff --git a/x11-plugins/pidgin-telegram/metadata.xml b/x11-plugins/pidgin-telegram/metadata.xml deleted file mode 100644 index 129a3ef223f5..000000000000 --- a/x11-plugins/pidgin-telegram/metadata.xml +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>conikost@gentoo.org</email> - <name>Conrad Kostecki</name> - </maintainer> - <longdescription> - This plugin adds support for the Telegram messenger protocol, - which can be used directly in net-im/pidgin. - Telegram is a cloud-based instant messaging and voice over IP service. - </longdescription> - <upstream> - <bugs-to>https://github.com/majn/telegram-purple/issues</bugs-to> - <remote-id type="github">majn/telegram-purple</remote-id> - </upstream> - <use> - <flag name="gcrypt">Use dev-libs/libgcrypt instead of dev-libs/openssl.</flag> - </use> -</pkgmetadata> diff --git a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild b/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild deleted file mode 100644 index 038d5a5cde89..000000000000 --- a/x11-plugins/pidgin-telegram/pidgin-telegram-1.4.7.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A libpurple protocol plugin that adds support for the Telegram messenger" -HOMEPAGE="https://github.com/majn/telegram-purple" -SRC_URI="https://github.com/majn/telegram-purple/releases/download/v${PV}/telegram-purple_${PV}.orig.tar.gz" -S="${WORKDIR}/telegram-purple" - -LICENSE="GPL-2+" -KEYWORDS="amd64 ~riscv x86" -SLOT="0" -IUSE="gcrypt +nls +png +webp" - -RDEPEND=" - net-im/pidgin - sys-libs/zlib:= - gcrypt? ( dev-libs/libgcrypt:0= ) - !gcrypt? ( dev-libs/openssl:0= ) - png? ( media-libs/libpng:0= ) - webp? ( media-libs/libwebp:= ) -" - -DEPEND="${RDEPEND}" - -BDEPEND=" - nls? ( sys-devel/gettext ) - virtual/pkgconfig -" - -DOCS=( "AUTHORS" "CHANGELOG.md" "HACKING.md" "HACKING.BUILD.md" "README.md" ) - -src_prepare() { - default - - # Remove '-Werror' to make it compile - find -name 'Makefile*' -exec sed -i -e 's/-Werror //' {} + || die -} - -src_configure() { - local myeconfargs=( - $(use_enable gcrypt) - $(use_enable nls translation) - $(use_enable png libpng) - $(use_enable webp libwebp) - ) - - econf "${myeconfargs[@]}" -} |