diff options
author | Florian Schmaus <flow@gentoo.org> | 2025-01-02 11:42:27 +0100 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2025-01-02 11:44:00 +0100 |
commit | 3e6fbbcf8c5d854c650caaae016d1dbad022d686 (patch) | |
tree | a5e128b005c99cb60f6645eeceab73eba7ec9829 /dev-tex | |
parent | dev-tex/latexdiff: fix Makefile target, drop explicit src_test, and only loca... (diff) | |
download | gentoo-3e6fbbcf8c5d854c650caaae016d1dbad022d686.tar.gz gentoo-3e6fbbcf8c5d854c650caaae016d1dbad022d686.tar.bz2 gentoo-3e6fbbcf8c5d854c650caaae016d1dbad022d686.zip |
dev-tex/latexdiff: sync live
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'dev-tex')
-rw-r--r-- | dev-tex/latexdiff/latexdiff-9999.ebuild | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/dev-tex/latexdiff/latexdiff-9999.ebuild b/dev-tex/latexdiff/latexdiff-9999.ebuild index a8448445310e..ccecd994e442 100644 --- a/dev-tex/latexdiff/latexdiff-9999.ebuild +++ b/dev-tex/latexdiff/latexdiff-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -14,6 +14,11 @@ else KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" fi +SRC_URI+=" + https://github.com/ftilmann/latexdiff/pull/314/commits/94e13c799d2e218a814d007ceff37e91828fb4a4.patch + -> ${PN}-1.3.4-makefile-fix-example-diff-target.patch +" + LICENSE="GPL-3" SLOT="0" @@ -33,13 +38,13 @@ BDEPEND=" test? ( app-shells/tcsh ) " -src_compile() { - export VARTEXFONTS="${T}/fonts" - PATH="${S}/dist:${PATH}" emake -j1 distribution -} +PATCHES=( + "${DISTDIR}"/${PN}-1.3.4-makefile-fix-example-diff-target.patch +) -src_test() { - emake test +src_compile() { + local -x VARTEXFONTS="${T}/fonts" + emake -j1 distribution } src_install() { |