diff options
author | Florian Schmaus <flow@gentoo.org> | 2024-11-29 10:39:58 +0100 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2024-11-29 12:43:38 +0100 |
commit | 5bcafd5b96fc06728e3067ec72c9692ad19b6361 (patch) | |
tree | 78286f13ea3a150d6165763e04a3588009bf8c2f /app-text/ps2pkm | |
parent | app-text/ttf2pk2: add 2.0_p20240311 (diff) | |
download | gentoo-5bcafd5b96fc06728e3067ec72c9692ad19b6361.tar.gz gentoo-5bcafd5b96fc06728e3067ec72c9692ad19b6361.tar.bz2 gentoo-5bcafd5b96fc06728e3067ec72c9692ad19b6361.zip |
app-text/ps2pkm: add 1.8_p20240311
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'app-text/ps2pkm')
-rw-r--r-- | app-text/ps2pkm/Manifest | 1 | ||||
-rw-r--r-- | app-text/ps2pkm/ps2pkm-1.8_p20240311.ebuild | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/app-text/ps2pkm/Manifest b/app-text/ps2pkm/Manifest index 6bba4f271f42..1380a04b8f79 100644 --- a/app-text/ps2pkm/Manifest +++ b/app-text/ps2pkm/Manifest @@ -1,2 +1,3 @@ DIST texlive-20210325-source.tar.xz 54837368 BLAKE2B 66bd4bdd43ff53513004b9b9b90ababa0ab5efcf183a27864a3d39cde9cf90721456bda90c49ad6014f4b12d2e6293feaf9a8b152b85a89ffaa96bf5056347df SHA512 afd6eb24efaeac7c58d43ff24162aece919079a9ae02934509f068c7a3828223c33c14d9db11ff7fea3560b08a06f352446ba7f845eefb4a56a87b96f088f213 DIST texlive-20230311-source.tar.xz 68359984 BLAKE2B 6263e8d3e066db96f071138f2442b1ed7e1f3db7e6d261cdeb9a7e6e636c6e6ed45305c6bda3ab6f9a439c92eabf32a79bf6e371d16b747eebbc05ee47b85035 SHA512 93ac43f3055fee0103a6cfceea18d39ece63984914f3af9ad76da218f2d568852d9b987d1c9647c1497b985e4ffa297ef97dc2d50d3e90f62b03ad685af31d96 +DIST texlive-20240311-source.tar.xz 70130920 BLAKE2B f7e0c99694734585e36cbfa815e8c50b4e73c2b8b9a81a0c13f2ca22b1f54d46d92d07792c2036bdd2b3ebfcdf2c100638f4302b3dd64d478b04d1eb7a7aaee1 SHA512 2f1d567abba2ba98e236c1de034a861a86af9ce34a9be4f6b478a9f4eaf07a78d09104c652dddab9db2e7057a66f39504c0403a456c72a74f612d0efeccb0714 diff --git a/app-text/ps2pkm/ps2pkm-1.8_p20240311.ebuild b/app-text/ps2pkm/ps2pkm-1.8_p20240311.ebuild new file mode 100644 index 000000000000..eb69ea98433b --- /dev/null +++ b/app-text/ps2pkm/ps2pkm-1.8_p20240311.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Tool that converts a PostScript type1 font into a corresponding TeX PK font" +HOMEPAGE="https://tug.org/texlive/" +SRC_URI="https://mirrors.ctan.org/systems/texlive/Source/texlive-${PV#*_p}-source.tar.xz" +S="${WORKDIR}/texlive-${PV#*_p}-source/texk/ps2pk" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" + +DEPEND=">=dev-libs/kpathsea-6.2.1:=" +RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" + +DOCS=( "ChangeLog" "CHANGES.type1" "README" "README.14m" "README.type1" ) + +src_configure() { + econf \ + --with-system-kpathsea +} |