net-im/openfire: bump up to 4.0.0, masked for testing

Package-Manager: portage-2.2.26
This commit is contained in:
Sergei Trofimovich
2016-01-14 09:03:10 +00:00
parent d1ca2a9734
commit 2dee656b95
3 changed files with 113 additions and 0 deletions

View File

@@ -2,3 +2,4 @@ DIST openfire_src_3_10_0.tar.gz 128475294 SHA256 4911caf5336903e17a752c358c4e506
DIST openfire_src_3_10_1.tar.gz 128476328 SHA256 176c53103fe8236be404a3531cf2928c51c8620f1ec75db6e5aa8cccc62c2944 SHA512 24eadd168f31972d19e1fdc2c47ed8515d1407a3741a898264028e1459e37edc08515e9a2a04251f93a423fbce60b07d103d942c42390fbb34720eac9207a6a2 WHIRLPOOL 3f14a2ea1d002222061580283b64bfb503a0d494c5b044998ddfd76244ee0d1f035b9f11a49205508098c038c96392577bbb155f349bd3d8d7b96711af45fb14
DIST openfire_src_3_10_2.tar.gz 128442398 SHA256 6be2287b27305c19db6daae360b1b898428d289413e8114a35e9ce04c6de3d80 SHA512 8d58c9c1ce03cc5218af91c562d5babc6a9556505f43f2be44996c122ff6c53c1542514143abe4ff34fee48fc5c56238f4999a1f1496ee6e3d13561961adc0d8 WHIRLPOOL 9f313afde26bb5cc6ac9d62d17ef86c2a7661f1f57dd41db1d27139fc3a63349df374c5e135e45790c2c04ee09b6fd934868df863493f380bed0e57cb9850d97
DIST openfire_src_3_10_3.tar.gz 128443231 SHA256 04fcd205c10236bb93dddb21275704d18a5950964f57b8c63e523bfc52fe35d8 SHA512 ef2b0d1913bcfc4ef1879af74571f09f6c46fc056d305de3a0113f85c6ae17b95c6c8333294a20ff89710c38fa363eccefaf7f54aafde23fbb1b927cb85455c7 WHIRLPOOL de0ffb87dede5d2eda159971f43976cd56db0a2628965ca08f30f6de527af36656bea7303b8c4cd2613d1e90b35b5636d72f8fcdcdebeec2bacdeb0f1d1a570d
DIST openfire_src_4_0_0.tar.gz 99006362 SHA256 c7e535891326369f53d25d68e717a75b29f27841602cbb740d9521c7e0e83caa SHA512 2a2e6961272a8c31c83a313e47524600937b588ccaef150a1e72c9ff38f10d02f14d4ba06668338e6d2de48851845049964cc0d3ba42d72700b1696489ecda9a WHIRLPOOL 0f2980dadabdf852cbcc2bfaee52be98e569f3e99279fc24beaf786167afd81e01c0184dfe9c5ad9246abbfe4452952691781c715ac0a4ccf2519064c09f0df6

View File

@@ -0,0 +1,108 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
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 || dir
}
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
}

View File

@@ -30,6 +30,10 @@
#--- END OF EXAMPLES ---
# Sergei Trofimovich <slyfox@gentoo.org> (14 Jan 2016)
# Masked for testing.
>=net-im/openfire-4.0.0
# Michał Górny <mgorny@gentoo.org> (11 Jan 2016)
# (on behalf of Python team)
# Masked for testing. python-exec now checks argv[0] to determine