diff options
Diffstat (limited to 'app-doc')
-rw-r--r-- | app-doc/Manifest.gz | bin | 7645 -> 7649 bytes | |||
-rw-r--r-- | app-doc/dita-ot-bin/Manifest | 2 | ||||
-rw-r--r-- | app-doc/dita-ot-bin/dita-ot-bin-4.2.4.ebuild | 36 |
3 files changed, 38 insertions, 0 deletions
diff --git a/app-doc/Manifest.gz b/app-doc/Manifest.gz Binary files differindex 97b62c3699c3..db1c24347b59 100644 --- a/app-doc/Manifest.gz +++ b/app-doc/Manifest.gz diff --git a/app-doc/dita-ot-bin/Manifest b/app-doc/dita-ot-bin/Manifest index 54b92232f054..0bcef6710790 100644 --- a/app-doc/dita-ot-bin/Manifest +++ b/app-doc/dita-ot-bin/Manifest @@ -1,4 +1,6 @@ AUX dita-ot-bin-4.2.3-set-java-home.patch 419 BLAKE2B 6f5a43c431504f1f4067be247e6e2771539ab5bd9ce5da88a4a8c591c67b2a4174270fa29fcfa96049bb7b9e5086d5659a8d8a732091a267f60ceddf5b06b577 SHA512 23c6beeba9a4f10bdbda2eedfaa8e32d6f441237db5f168ce655b5f4727537ee2d618577e1f25700b4ddc1e9ee383337a0595d71bbf3ee9b991cfd7f8153143d DIST dita-ot-4.2.3.zip 55110433 BLAKE2B 53c4e2e7896c1b496f95b4d5dafc059c63b7b73fb63c7faefabc87500aab862c80707bc64effa52c447bbdb73e007aadbacec7ada98dade9af0e0c0300b75ba7 SHA512 a1e2684444f04d14991d39cfea6b86f49a4ae2802d5b9ffa600c2b18c6ac4efddfb68db8484d6edda5812301f281828b5d22ef3057aa343cd1ffd6d3beeaf48b +DIST dita-ot-4.2.4.zip 55306735 BLAKE2B 8467e358873300c9c6fa24cd99cbf2481137aad02e3878820947a55c13c52ee933271e676f111d04951fc7b9cc7fbd16d7d41edb0d8b52a07eb58d75ffdde300 SHA512 81ee8963d33f92d3fa95ec458c306ff65fd646a494fb681da254106be1085daf24edaa4b0425d530c62c5e3bc41e63dd5786ed452bef79ef6fc14ace89a80ef3 EBUILD dita-ot-bin-4.2.3.ebuild 868 BLAKE2B a8719330f7a8eb5fd8dec9a621711122a98a94b0db8045ce28e5c7f2433c351883c9303918ffdd5accf01f013c4c69b0cce63e91c0f660ed0398a682c6f3fe4d SHA512 591c6b181e3d19ebc6c0dc7e58799f7ec69bbb28e4374d2c48289650d6c0103fbd72e94eecaab349730875fa43154231dc70b484dac2f0d1879a89ad578c1e62 +EBUILD dita-ot-bin-4.2.4.ebuild 868 BLAKE2B a8719330f7a8eb5fd8dec9a621711122a98a94b0db8045ce28e5c7f2433c351883c9303918ffdd5accf01f013c4c69b0cce63e91c0f660ed0398a682c6f3fe4d SHA512 591c6b181e3d19ebc6c0dc7e58799f7ec69bbb28e4374d2c48289650d6c0103fbd72e94eecaab349730875fa43154231dc70b484dac2f0d1879a89ad578c1e62 MISC metadata.xml 329 BLAKE2B 713308403908ea1b884e57947d7bac6ea492d6fe91f17025d76cead1f3b5649cc1ba4b3a96abbbd7b0c0cbfbaa6d91c0387c70d3b71efef7b3082d42331bf0ca SHA512 7c4c9ab356cf0c5d12fcd32416c6a8a4c1d742040a553447e76326aab8d276b566355159474c0ed3de3877ed056e5ef108069c69d80a56d9ad39399cdde69fa9 diff --git a/app-doc/dita-ot-bin/dita-ot-bin-4.2.4.ebuild b/app-doc/dita-ot-bin/dita-ot-bin-4.2.4.ebuild new file mode 100644 index 000000000000..9282e60ecec8 --- /dev/null +++ b/app-doc/dita-ot-bin/dita-ot-bin-4.2.4.ebuild @@ -0,0 +1,36 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN=${PN%*-bin} +MY_P=${MY_PN}-${PV} +DESCRIPTION="Darwin Information Typing Architecture - Open Toolkit publishing engine" +HOMEPAGE="https://www.dita-ot.org/ https://github.com/dita-ot/dita-ot" +SRC_URI="https://github.com/dita-ot/dita-ot/releases/download/${PV}/${MY_P}.zip" +S="${WORKDIR}"/${MY_P} + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=">=virtual/jdk-17:*" +RDEPEND=">=virtual/jre-17:*" +BDEPEND="app-arch/unzip" + +PATCHES=( + "${FILESDIR}"/${PN}-4.2.3-set-java-home.patch +) + +src_install() { + local installpath=/opt/${MY_P} + local installbinpath="${installpath}"/bin + insinto "${installpath}" + doins -r config lib plugins resources + + exeinto "${installbinpath}" + doexe bin/dita + dosym -r "${installbinpath}"/dita /usr/bin/dita + + einstalldocs +} |