diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2021-12-14 17:06:45 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2021-12-14 17:06:45 +0100 |
commit | 029bb7b3f52de55bf3780ae4c09fa1d23af8b142 (patch) | |
tree | d53e49f2479c50006669c415992cfa57507b871d /app-text/mathtex | |
parent | app-misc/tdfsb: Stabilize 0.0.10-r2 x86, #826438 (diff) | |
download | gentoo-029bb7b3f52de55bf3780ae4c09fa1d23af8b142.tar.gz gentoo-029bb7b3f52de55bf3780ae4c09fa1d23af8b142.tar.bz2 gentoo-029bb7b3f52de55bf3780ae4c09fa1d23af8b142.zip |
app-text/mathtex: Drop EAPI-5 ebuild
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'app-text/mathtex')
-rw-r--r-- | app-text/mathtex/Manifest | 1 | ||||
-rw-r--r-- | app-text/mathtex/mathtex-1.04.ebuild | 46 |
2 files changed, 0 insertions, 47 deletions
diff --git a/app-text/mathtex/Manifest b/app-text/mathtex/Manifest index 7550548f0e41..f4a8cd628072 100644 --- a/app-text/mathtex/Manifest +++ b/app-text/mathtex/Manifest @@ -1,2 +1 @@ -DIST mathtex-1.04.zip 148443 BLAKE2B 6632d30536428f6f33fc13a2b5b38651f2ab7a938381166b79c009ab3d95788fc69e8ed824dae64dca00d32bb79ccd00a73b772f9aebc813d54fd6e0f18839f4 SHA512 4b299a6dc503a01d6be3182ad982e38c0b6d926f09a09bd5169f8ad2c947c020ad532b15146379b4bc2158cfceec4cb4a0b7bf902423e0a8ad9b0b0190a99601 DIST mathtex-1.05.zip 161624 BLAKE2B 9812cfadcc5d47286afb86c6ad38f5bdf932ef39efad2228b04b3b39cbb7543f78be9d82cfa8bbfcc72c9f46fa1931e39aeb71e3abab865dcd60e4e9717e2377 SHA512 f116618de4264efdbccb122b0e9769bbe622f6300266284a96e65f37346c000364063f201b31554bde62a4a4e13c0c8f16d570dca359d3ef27bc0f7622af3715 diff --git a/app-text/mathtex/mathtex-1.04.ebuild b/app-text/mathtex/mathtex-1.04.ebuild deleted file mode 100644 index ac93ae93133a..000000000000 --- a/app-text/mathtex/mathtex-1.04.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit toolchain-funcs - -DESCRIPTION="Lets you easily embed LaTeX math in your own html pages, blogs, wikis, etc" -HOMEPAGE="http://www.forkosh.com/mathtex.html" -SRC_URI="mirror://gentoo/${P}.zip" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 ~riscv x86" -IUSE="png" - -RDEPEND="app-text/dvipng - virtual/latex-base" -DEPEND="app-arch/unzip" - -S=${WORKDIR} - -einfo_run_command() { - einfo "${@}" - ${@} || die -} - -src_compile() { - einfo_run_command $(tc-getCC) \ - ${CFLAGS} ${LDFLAGS} \ - -DLATEX=\"/usr/bin/latex\" \ - -DDVIPNG=\"/usr/bin/dvipng\" \ - $(use png && echo "-DPNG") \ - mathtex.c -o mathtex -} - -src_install() { - dobin mathtex - dodoc README - dohtml mathtex.html -} - -pkg_postinst() { - elog "To use mathtex in your web-pages, just link /usr/bin/mathtex" - elog "to your cgi-bin subdirectory!" -} |