Bump
This commit is contained in:
77
app-editors/xxe/xxe-10.11.0.ebuild
Normal file
77
app-editors/xxe/xxe-10.11.0.ebuild
Normal file
@@ -0,0 +1,77 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit java-pkg-2 desktop
|
||||
|
||||
DESCRIPTION="XMLmind XML Editor allows to author large, complex, modular, XML documents"
|
||||
HOMEPAGE="http://www.xmlmind.com/xmleditor/"
|
||||
|
||||
#MY_PV=$(replace_all_version_separators '_')
|
||||
MY_PV=$(ver_rs 1- _)
|
||||
MY_P="${PN}-perso-${MY_PV}"
|
||||
SRC_URI="https://www.xmlmind.com/xmleditor/_download/${MY_P}.zip"
|
||||
|
||||
LICENSE="xxe-perso"
|
||||
# license does not allow redistributing, and they seem to silently update
|
||||
# distfiles...
|
||||
RESTRICT="mirror"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=virtual/jre-1.8
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
pkg_setup() { :; }
|
||||
|
||||
src_compile() { :; }
|
||||
|
||||
src_install() {
|
||||
local dir="/opt/${PN}"
|
||||
|
||||
# buggy binary crap also requires the demo dir ??
|
||||
insinto "${dir}"
|
||||
doins -r addon demo
|
||||
|
||||
# Xerces has been patched hope this gets upstream was version 2.9.1
|
||||
# relaxng is a heavely modified version of jing 20030619
|
||||
java-pkg_jarinto "${dir}"/lib
|
||||
java-pkg_dojar bin/${PN}.jar bin/relaxng.jar bin/saxon.jar bin/saxon12.jar bin/xerces.jar bin/xmlresolver.jar
|
||||
#local dep="javahelp"
|
||||
#java-pkg_register-dependency ${dep}
|
||||
|
||||
# put launchers into the xxe/bin dir as expected by the xxe.jar
|
||||
into "${dir}"
|
||||
java-pkg_dolauncher authvalue \
|
||||
--main "com.xmlmind.netutil.SimpleAuthenticatorModule" \
|
||||
--java_args "-Xss4m -Xmx512m"
|
||||
java-pkg_dolauncher xmltool \
|
||||
--main "com.xmlmind.xml.xmltool.Main" \
|
||||
--java_args "-Dxml.catalog.files=\"${dir}/addon/config/catalog.xml\" -Xss4m -Xmx512m"
|
||||
java-pkg_dolauncher xxeconvert \
|
||||
--main "com.xmlmind.xmleditapp.convert.StartConvert" \
|
||||
--java_args "-Xss4m -Xmx512m"
|
||||
java-pkg_dolauncher ${PN} \
|
||||
--main "com.xmlmind.xmleditapp.desktop.QuickStart" \
|
||||
--java_args "-Xss4m -Xmx512m"
|
||||
|
||||
# for direct run without creating an env.d file link them
|
||||
dodir /opt/bin
|
||||
dosym ${dir}/bin/authvalue /opt/bin/authvalue
|
||||
dosym ${dir}/bin/xmltool /opt/bin/xmltool
|
||||
dosym ${dir}/bin/xxeconvert /opt/bin/xxeconvert
|
||||
dosym ${dir}/bin/xxe /opt/bin/xxe
|
||||
|
||||
dodoc legal/ditac.* legal/expr.* legal/icons.* legal/relaxng.* \
|
||||
legal/xerces.* legal/xsdregex.* legal/xxe-* legal.txt
|
||||
docinto html
|
||||
dodoc -r doc/*
|
||||
|
||||
doicon bin/icon/xxe.png
|
||||
make_desktop_entry xxe "XMLmind XML Editor" xxe "Development;TextEditor;"
|
||||
}
|
||||
Reference in New Issue
Block a user