diff options
author | xdch47 <xdch47@posteo.de> | 2018-11-28 20:18:26 +0100 |
---|---|---|
committer | Tobias Klausmann <klausman@gentoo.org> | 2018-12-02 18:06:21 +0100 |
commit | 7cd8c1e754dd2b5fc100520c961e084dff232d00 (patch) | |
tree | 104b81573e4f768b4c909b63158ad3e71273549d /net-im | |
parent | profiles: move 17.1 profiles from exp to dev (diff) | |
download | gentoo-7cd8c1e754dd2b5fc100520c961e084dff232d00.tar.gz gentoo-7cd8c1e754dd2b5fc100520c961e084dff232d00.tar.bz2 gentoo-7cd8c1e754dd2b5fc100520c961e084dff232d00.zip |
net-im/prosody: use get_libdir
- fix libdir issue on 32 bit platforms
- improve prefix support
Closes: https://bugs.gentoo.org/672142
Signed-off-by: Felix Neumärker <xdch47@posteo.de>
Signed-off-by: Tobias Klausmann <klausman@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/prosody/prosody-0.11.0-r1.ebuild | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/net-im/prosody/prosody-0.11.0-r1.ebuild b/net-im/prosody/prosody-0.11.0-r1.ebuild new file mode 100644 index 000000000000..eccd2e1da7be --- /dev/null +++ b/net-im/prosody/prosody-0.11.0-r1.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic multilib systemd + +MY_PV=$(ver_rs 3 '') +MY_P="${PN}-${MY_PV}" +DESCRIPTION="Prosody is a flexible communications server for Jabber/XMPP written in Lua" +HOMEPAGE="https://prosody.im/" +SRC_URI="https://prosody.im/tmp/${MY_PV}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="ipv6 libevent mysql postgres sqlite ssl zlib jit libressl" + +DEPEND="net-im/jabber-base + dev-lua/LuaBitOp + !jit? ( >=dev-lang/lua-5.1:0 ) + jit? ( dev-lang/luajit:2 ) + >=net-dns/libidn-1.1:= + !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl:= )" +RDEPEND="${DEPEND} + >=dev-lua/luaexpat-1.3.0 + dev-lua/luafilesystem + ipv6? ( >=dev-lua/luasocket-3 ) + !ipv6? ( dev-lua/luasocket ) + 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 )" + +S=${WORKDIR}/${MY_P} + +JABBER_ETC="/etc/jabber" +JABBER_SPOOL="/var/spool/jabber" + +src_prepare() { + default + rm makefile && mv GNUmakefile Makefile || die + sed -i -e "s!MODULES = \$(DESTDIR)\$(PREFIX)/lib/!MODULES = \$(DESTDIR)\$(PREFIX)/$(get_libdir)/!"\ + -e "s!SOURCE = \$(DESTDIR)\$(PREFIX)/lib/!SOURCE = \$(DESTDIR)\$(PREFIX)/$(get_libdir)/!"\ + -e "s!INSTALLEDSOURCE = \$(PREFIX)/lib/!INSTALLEDSOURCE = \$(PREFIX)/$(get_libdir)/!"\ + -e "s!INSTALLEDMODULES = \$(PREFIX)/lib/!INSTALLEDMODULES = \$(PREFIX)/$(get_libdir)/!"\ + Makefile || die +} + +src_configure() { + # the configure script is handcrafted (and yells at unknown options) + # hence do not use 'econf' + append-cflags -D_GNU_SOURCE + ./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" +} + +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}" +} + +pkg_postinst() { + elog "If you are using the MySQL backend, you need to update its schema:" + elog "https://prosody.im/doc/release/0.11.0#upgrade_notes" +} |