summaryrefslogtreecommitdiff
path: root/x11-plugins/pidgintex
diff options
context:
space:
mode:
Diffstat (limited to 'x11-plugins/pidgintex')
-rw-r--r--x11-plugins/pidgintex/Manifest3
-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, 69 deletions
diff --git a/x11-plugins/pidgintex/Manifest b/x11-plugins/pidgintex/Manifest
deleted file mode 100644
index 1c47b575aba9..000000000000
--- a/x11-plugins/pidgintex/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST pidgintex-1.1.2_p20170107.tar.gz 50671 BLAKE2B effd913101106bc9598e69f19179ee983454f029dcfa5e1b28ce3ca8689de82175004bbfa357d336773d22f6adb4c4a73f9884d9d1dc95943d9a0fdb842c6469 SHA512 fbbe6eb4e2a0a5c9086e65d967133ab1cdd09292ce0b0cc474b82fbbcfc6b9abbb49ed3828c8e7094b7fef629a372833ec6f143ed4eb1b7d5c4fbd32e98a0271
-EBUILD pidgintex-1.1.2_p20170107.ebuild 1408 BLAKE2B f8be384b434d751b7f37ecc074dfbb078848a13b131df01b2c2818b1e5f661e8cf4361af8f98bb5ba72f18e6d36269ff8571863cf78e90f2ffe8b8cc0ac6cce7 SHA512 66c8d3e7178bec690fc4ce12a61b0212f4a0fd43fd71abe499497fe68895b90b3481d2b654f71f554778a9b42bc22c48b03a8d709802dafeb57e7fbc5b340a81
-MISC metadata.xml 572 BLAKE2B b77cbaff78271c316e9cec44b28110eb9025fd359ebe16c3eb7524b3612019fa9766bed13f93b13797f7e27eb8d1495bcb8526c6a5d2e34195958f630082fb65 SHA512 f939b6910eac0f358acb734552b0fd2e8953709bd2859c9a136423395c09fe1edb70308b2f95249fd8e8d816fc3fa39a3aeb9b3308b77c76755c89478249b5be
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'
-}