summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2024-06-16 22:15:22 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2024-06-16 22:15:22 +0300
commit8225ea70bdf4cba821bcce00079bb657657b5c38 (patch)
tree235b651a0b3281cf1d3c48fea41bc3ae9f7b7be2 /x11-plugins
parentdev-vcs/git: Stabilize 2.44.2 arm, #931976 (diff)
downloadgentoo-8225ea70bdf4cba821bcce00079bb657657b5c38.tar.gz
gentoo-8225ea70bdf4cba821bcce00079bb657657b5c38.tar.bz2
gentoo-8225ea70bdf4cba821bcce00079bb657657b5c38.zip
x11-plugins/pidgintex: treeclean
Closes: https://bugs.gentoo.org/932097 Bug: https://bugs.gentoo.org/542244 Bug: https://bugs.gentoo.org/742965 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'x11-plugins')
-rw-r--r--x11-plugins/pidgintex/Manifest1
-rw-r--r--x11-plugins/pidgintex/metadata.xml12
-rw-r--r--x11-plugins/pidgintex/pidgintex-1.1.2_p20170107.ebuild54
3 files changed, 0 insertions, 67 deletions
diff --git a/x11-plugins/pidgintex/Manifest b/x11-plugins/pidgintex/Manifest
deleted file mode 100644
index 107abae69644..000000000000
--- a/x11-plugins/pidgintex/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pidgintex-1.1.2_p20170107.tar.gz 50671 BLAKE2B effd913101106bc9598e69f19179ee983454f029dcfa5e1b28ce3ca8689de82175004bbfa357d336773d22f6adb4c4a73f9884d9d1dc95943d9a0fdb842c6469 SHA512 fbbe6eb4e2a0a5c9086e65d967133ab1cdd09292ce0b0cc474b82fbbcfc6b9abbb49ed3828c8e7094b7fef629a372833ec6f143ed4eb1b7d5c4fbd32e98a0271
diff --git a/x11-plugins/pidgintex/metadata.xml b/x11-plugins/pidgintex/metadata.xml
deleted file mode 100644
index c0597d05ff3d..000000000000
--- a/x11-plugins/pidgintex/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription>pidginTeX is a fast plugin for the instant messaging client Pidgin and uses
-mimeTeX or mathTeX to render LaTeX expressions in messages and chat. It is
-intended for math but mathTeX is fully compatible with LaTeX and any package can
-be used and mimeTeX also supports many other features.</longdescription>
- <upstream>
- <remote-id type="github">Micket/pidgintex</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/x11-plugins/pidgintex/pidgintex-1.1.2_p20170107.ebuild b/x11-plugins/pidgintex/pidgintex-1.1.2_p20170107.ebuild
deleted file mode 100644
index f5f7c9cf3690..000000000000
--- a/x11-plugins/pidgintex/pidgintex-1.1.2_p20170107.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit toolchain-funcs vcs-snapshot
-
-MY_COMMIT_HASH="a8f618cf1bf92279b43c7b737010fd7e42c8e5d3"
-
-DESCRIPTION="Pidgin plugin to render LaTeX expressions in messages"
-HOMEPAGE="https://github.com/Micket/pidgintex"
-SRC_URI="https://github.com/Micket/${PN}/archive/${MY_COMMIT_HASH}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
-IUSE="nls"
-
-RDEPEND="net-im/pidgin[gtk]
- app-text/mathtex
- nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- sed -e "s:\(^CC.*=\).*:\1 $(tc-getCC):" \
- -e "s:\(^STRIP.*=\).*:\1 true:" \
- -e "s:\(^CFLAGS[[:space:]]*\)=:\1+=:" \
- -e "/LIB_INSTALL_DIR/{s:/lib/purple-2:/$(get_libdir)/pidgin:;}" \
- -i Makefile || die
- # set default renderer to mathtex
- sed -e "/purple_prefs_add_string.*PREFS_RENDERER/{s:mimetex:mathtex:;}" \
- -i pidginTeX.c || die
-
- if ! use nls; then
- sed -e '/ENABLE_NLS = 1/ d;' -i Makefile || die
- fi
-
- default
-}
-
-src_compile() {
- emake PREFIX=/usr
-}
-
-src_install() {
- emake PREFIX="${ED%/}/usr" install
- einstalldocs
-}
-
-pkg_postinst() {
- elog 'Note, to see formulas either disable "Conversation Colors" plugin or'
- elog 'switch off "ignore incoming format" option in plugin configuration.'
- elog 'For details, take a look (and vote) at http://developer.pidgin.im/ticket/2772'
-}