net-im/openfire: bump up to 4.2.2, bug #648010

Reported-by: Leho Kraav
Closes: https://bugs.gentoo.org/648010
Package-Manager: Portage-2.3.24, Repoman-2.3.6
This commit is contained in:
Sergei Trofimovich
2018-02-19 07:41:11 +00:00
parent 470f2bee89
commit c545200298
2 changed files with 108 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
DIST openfire_src_4_1_0.tar.gz 103449811 BLAKE2B 4635da8c1c59f66b488951aa8844a4517e7a2a644dbb97f88ff508237127d8852bbaacd9eae7bc608839ccbe9a679a11da3d5539642d478c15b9edcb7b10e90c SHA512 3a4e26c260f6a91ece6e6d3fc7c3302b6f1735725ce2686bab8773981dad63ef653a25748852c32e4df8f6bde2882db4043d94b69eb774a5280285fd5b7cd96b
DIST openfire_src_4_1_4.tar.gz 103457596 BLAKE2B d69719ba84aa2ca7bebe03f151940f74488c1c191e8286a8d985b54b66078cd311d2ac50a61597214b3b99b34dc1b854f8f6c43002733897cf806292e92a13af SHA512 e9b7bb62656b376ffc52db5403c262d5a986698282ac9eec02d3a893076cc6df3f4666e908672a9d65cb313505fcc377fb3d7bb62f30d665aa8523cab7d714bd
DIST openfire_src_4_1_5.tar.gz 103508870 BLAKE2B cedc72fa311f3d97376588c661ac7ecb771ae616f1c9afa816fcb1434100e013b5407442cf46bd0aba68d9bd502e423a4bcfaa6f1da029a1639f14eea59575aa SHA512 9ccdd2916492ab23a71856ded8024f6dea73491810ee80c8284597eaf8d2fd55ccc47c7d1da704a487aba727761fdc50f0f6baa26349673fe74dabf0f2b36e73
DIST openfire_src_4_2_2.tar.gz 110865419 BLAKE2B 5bfa5effcadaa770cc664923602eed9e898ae9d1118b0c460f6c4283f2e29f381707f924729391744cb4bf545a3703be9ede5a75acc91a5ebb4644b31d00ed12 SHA512 b19f028ae64ad26df24979e6863c4ed598ddbb84e048b8d291026726528a65fc4f53aaa42a6b8478f583326d9ce8e0bc0d0801a0a0696df6448bd79cce4e015e

View File

@@ -0,0 +1,107 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils java-pkg-2 java-ant-2 systemd
MY_P=${PN}_src_${PV//./_}
DESCRIPTION="Openfire (formerly wildfire) real time collaboration (RTC) server"
HOMEPAGE="http://www.igniterealtime.org/projects/openfire/"
SRC_URI="http://www.igniterealtime.org/builds/openfire/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND=">=virtual/jre-1.7"
DEPEND="net-im/jabber-base
~dev-java/ant-contrib-1.0_beta2
>=virtual/jdk-1.7"
S=${WORKDIR}/${PN}_src
pkg_setup() {
if [[ -f /etc/env.d/98openfire ]]; then
einfo "This is an upgrade"
ewarn "As the plugin API changed, at least these plugins need to be updated also:"
ewarn "User Search, IM Gateway, Fastpath, Monitoring"
ewarn "they can be downloaded via Admin Console or at"
ewarn " ${HOMEPAGE}"
else
ewarn "If this is an upgrade stop right ( CONTROL-C ) and run the command:"
ewarn "echo 'CONFIG_PROTECT=\"/opt/openfire/resources/security/\"' > /etc/env.d/98openfire "
ewarn "For more info see bug #139708"
sleep 11
fi
java-pkg-2_pkg_setup
}
src_compile() {
# Jikes doesn't support -source 1.5
java-pkg_filter-compiler jikes
ANT_TASKS="ant-contrib"
eant -f build/build.xml openfire plugins $(use_doc)
# delete nativeAuth prebuilt libs:
# uses outdated unmaintained libshaj, does not support amd64
rm -rfv target/openfire/resources/nativeAuth || die
}
src_install() {
dodir /opt/openfire
newinitd "${FILESDIR}"/openfire-initd openfire
newconfd "${FILESDIR}"/openfire-confd openfire
systemd_dounit "${FILESDIR}"/${PN}.service
dodir /opt/openfire/conf
insinto /opt/openfire/conf
newins target/openfire/conf/openfire.xml openfire.xml.sample
newins target/openfire/conf/security.xml security.xml.sample
dodir /opt/openfire/logs
keepdir /opt/openfire/logs
dodir /opt/openfire/lib
insinto /opt/openfire/lib
doins target/openfire/lib/*
dodir /opt/openfire/plugins
insinto /opt/openfire/plugins
doins -r target/openfire/plugins/*
dodir /opt/openfire/resources
insinto /opt/openfire/resources
doins -r target/openfire/resources/*
if use doc; then
dohtml -r documentation/docs/*
fi
dodoc documentation/dist/*
#Protect ssl key on upgrade
dodir /etc/env.d/
echo 'CONFIG_PROTECT="/opt/openfire/resources/security/"' > "${D}"/etc/env.d/98openfire
}
pkg_postinst() {
local src
local dst
# http://community.igniterealtime.org/thread/52289
for dst in "${ROOT}"/opt/openfire/conf/{openfire,security}.xml
do
src="${dst}".sample
if [[ -f "${dst}" ]]; then
einfo "Leaving old '${dst}'"
else
einfo "Created default '${dst}'. Please edit."
cp -v "${src}" "${dst}" || ewarn "cp '${dst}' failed"
chmod -v 0600 "${dst}" || ewarn "chmod '${dst}' failed"
fi
done
chown -R jabber:jabber "${ROOT}"/opt/openfire
}