mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-01 23:28:08 -07:00
dev-tex/latexdiff: Version bump, fixes bug 617754
Closes: https://bugs.gentoo.org/617754 Package-Manager: Portage-2.3.13, Repoman-2.3.4
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
DIST latexdiff-1.1.0.zip 466029 SHA256 9f0cc207d71a2225926cf9b8b87dbc4283c68de12db8a7708e780941516f13f6 SHA512 04af20386b0e611f73d981242747316da6376967fef611a29927b66a7a129bec49c7224655378c6f9fc744f8d69cf2ac977d0f50278d3686c98dcdc4aef0b675 WHIRLPOOL 944fe49aac3aaf8801a1e8c345551cf73ce5d205cd32c0ab5e6f1d1acafcaefb60f0d8a47488e6a7513139de89b7b78b7acc155cac4c328918dc33e79f12a7ed
|
||||
DIST latexdiff-1.1.1.zip 474456 SHA256 d530d268dd54458d728218e9ec7b4d9e9bc2858148bab64f277143e6a40fccee SHA512 a341411fdac11d2b8afef866b7edd0cbe5715f51dd77581202ec77f5a8a18a868f0e9e41058ecc38e0cf66cdddf893e2ffc58de3bf32509e01db6c77305dee77 WHIRLPOOL 90ca013144b8171861e769a33a0d857e2ad1240a8dfa8117ab3eb3dea284177015fa32c7a54fcf8ba61bcf8562b8c4503641c704a5fd04a74d73c4c5735708db
|
||||
DIST latexdiff-1.2.0.tar.gz 1772044 SHA256 c1f6ae49e29caada7c67f17ba55d1f95fc3f994e3711b4c4557b42582e708f10 SHA512 19201fc6270071b5c079ac170f76e46942c9666b1d00cf1a84c9481631578573c33aba7ea7dcfef7eb782966b308007bbb8f6b54f9180ddce901d144431c4956 WHIRLPOOL 8a67bcf7959d3a99d56fda6fc01626d49f1512f9d10ef81e0e588de450579053ab91aa570677b42c936d6151a4eafa1666392d0b9bf8f30cd231ed8f6b8ea55a
|
||||
DIST latexdiff-1.2.1.tar.gz 1780064 SHA256 87851a6867cdb2cb3d92732187b556685d8eba62f0a7ac2d80b1b0dc0ad7316a SHA512 9917a0eee36e5bff7c13e5690e743fa34aa7c1347a6509961aa4484094433854c6742a4c1605087db1902a57537fda2b49b071e98b015a5535379c27ccc1fd46 WHIRLPOOL 7e3d78aa001ed21d82d374b1fa3d30df6f9d6b2cf2079c657e6df16493dce9f2d280c5608251c5731ad9bd8490685e1b4c72208f5a5ee25bac1541b8cb6e7475
|
||||
|
||||
47
dev-tex/latexdiff/latexdiff-1.2.1.ebuild
Normal file
47
dev-tex/latexdiff/latexdiff-1.2.1.ebuild
Normal file
@@ -0,0 +1,47 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
DESCRIPTION="Compare two latex files and mark up significant differences"
|
||||
HOMEPAGE="http://www.ctan.org/tex-archive/support/latexdiff/ https://github.com/ftilmann/latexdiff/"
|
||||
|
||||
if [[ ${PV} == *9999* ]] ; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/ftilmann/latexdiff.git"
|
||||
else
|
||||
SRC_URI="https://github.com/ftilmann/latexdiff/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-lang/perl-5.8
|
||||
virtual/latex-base
|
||||
|| ( dev-texlive/texlive-plaingeneric dev-texlive/texlive-genericrecommended )
|
||||
dev-perl/Algorithm-Diff
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-perl/Pod-LaTeX
|
||||
test? ( app-shells/tcsh )
|
||||
"
|
||||
|
||||
src_compile() {
|
||||
export VARTEXFONTS="${T}/fonts"
|
||||
PATH="${S}/dist:${PATH}" emake -j1 distribution
|
||||
}
|
||||
|
||||
src_test() {
|
||||
emake test
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cd dist || die
|
||||
dobin latexdiff latexrevise latexdiff-vc
|
||||
doman latexdiff.1 latexrevise.1 latexdiff-vc.1
|
||||
dodoc README doc/latexdiff-man.pdf
|
||||
}
|
||||
Reference in New Issue
Block a user