diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2020-10-03 15:42:48 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-10-03 15:43:39 +0200 |
commit | 8f65138eda0e652b8f80f4652a223237f4e35c8b (patch) | |
tree | 104538e0cda0e1d363f88164367f663f086559b1 /net-im | |
parent | net-im/prosody: updated metadata.xml (diff) | |
download | gentoo-8f65138eda0e652b8f80f4652a223237f4e35c8b.tar.gz gentoo-8f65138eda0e652b8f80f4652a223237f4e35c8b.tar.bz2 gentoo-8f65138eda0e652b8f80f4652a223237f4e35c8b.zip |
net-im/prosody: fix tests for 0.11.5
Closes: https://bugs.gentoo.org/740662
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/prosody/prosody-0.11.5-r1.ebuild | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/net-im/prosody/prosody-0.11.5-r1.ebuild b/net-im/prosody/prosody-0.11.5-r1.ebuild new file mode 100644 index 000000000000..6ffc3bd7b489 --- /dev/null +++ b/net-im/prosody/prosody-0.11.5-r1.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit multilib systemd toolchain-funcs + +DESCRIPTION="Prosody is a flexible communications server for Jabber/XMPP written in Lua" +HOMEPAGE="https://prosody.im/" +SRC_URI="https://prosody.im/downloads/source/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm x86" +IUSE="ipv6 jit libevent libressl mysql postgres sqlite ssl test zlib" +RESTRICT="!test? ( test )" + +BASE_DEPEND="net-im/jabber-base + dev-lua/LuaBitOp + !jit? ( >=dev-lang/lua-5.1:0 ) + jit? ( dev-lang/luajit:2 ) + !libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl:= ) + >=net-dns/libidn-1.1:=" + +DEPEND="${BASE_DEPEND} + test? ( dev-lua/busted )" + +RDEPEND="${BASE_DEPEND} + ~dev-lua/luaexpat-1.3.0 + dev-lua/luafilesystem + !ipv6? ( dev-lua/luasocket ) + ipv6? ( >=dev-lua/luasocket-3 ) + libevent? ( >=dev-lua/luaevent-0.4.3 ) + mysql? ( dev-lua/luadbi[mysql] ) + postgres? ( dev-lua/luadbi[postgres] ) + sqlite? ( dev-lua/luadbi[sqlite] ) + ssl? ( dev-lua/luasec ) + zlib? ( dev-lua/lua-zlib )" + +PATCHES=( "${FILESDIR}/${PN}-0.11.2-r1-gentoo.patch" ) + +JABBER_ETC="/etc/jabber" +JABBER_SPOOL="/var/spool/jabber" + +src_configure() { + # the configure script is handcrafted (and yells at unknown options) + # hence do not use 'econf' + ./configure \ + --ostype=linux \ + --prefix="${EPREFIX}/usr" \ + --libdir="${EPREFIX}/usr/$(get_libdir)" \ + --sysconfdir="${EPREFIX}${JABBER_ETC}" \ + --datadir="${EPREFIX}${JABBER_SPOOL}" \ + --with-lua-include="${EPREFIX}/usr/include" \ + --with-lua-lib="${EPREFIX}/usr/$(get_libdir)/lua" \ + --runwith=lua"$(usev jit)" \ + --cflags="${CFLAGS} -Wall -fPIC" \ + --ldflags="${LDFLAGS} -shared" \ + --c-compiler="$(tc-getCC)" \ + --linker="$(tc-getCC)" || die "configure failed" + + rm makefile && mv GNUmakefile Makefile || die +} + +src_install() { + emake DESTDIR="${D}" install + systemd_dounit "${FILESDIR}/${PN}".service + systemd_newtmpfilesd "${FILESDIR}/${PN}".tmpfilesd "${PN}".conf + newinitd "${FILESDIR}/${PN}".initd-r2 ${PN} + keepdir "${JABBER_SPOOL}" +} |