diff options
author | Tobias Klausmann <klausman@gentoo.org> | 2013-09-15 10:07:44 +0000 |
---|---|---|
committer | Tobias Klausmann <klausman@gentoo.org> | 2013-09-15 10:07:44 +0000 |
commit | 411af29397cf2e951a62934b3e52fb7958500a6e (patch) | |
tree | e2d1cf3dfc72e71e5f1b390c4173095ce2002929 /net-im | |
parent | Stable for amd64, wrt bug #483708 (diff) | |
download | gentoo-2-411af29397cf2e951a62934b3e52fb7958500a6e.tar.gz gentoo-2-411af29397cf2e951a62934b3e52fb7958500a6e.tar.bz2 gentoo-2-411af29397cf2e951a62934b3e52fb7958500a6e.zip |
Add new ebuild for version 0.9.1, provided by Emery Hemingway.
(Portage version: 2.2.3/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/prosody/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/prosody/prosody-0.9.1.ebuild | 66 |
2 files changed, 72 insertions, 1 deletions
diff --git a/net-im/prosody/ChangeLog b/net-im/prosody/ChangeLog index 04f292a65e29..b732d752529f 100644 --- a/net-im/prosody/ChangeLog +++ b/net-im/prosody/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-im/prosody # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/ChangeLog,v 1.25 2013/08/08 19:27:35 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/ChangeLog,v 1.26 2013/09/15 10:07:44 klausman Exp $ + +*prosody-0.9.1 (15 Sep 2013) + + 15 Sep 2013; Tobias Klausmann <klausman@gentoo.org> +prosody-0.9.1.ebuild: + Add new ebuild for version 0.9.1, provided by Emery Hemingway. 08 Aug 2013; Markus Meier <maekke@gentoo.org> prosody-0.8.2-r1.ebuild: add ~arm, bug #476264 diff --git a/net-im/prosody/prosody-0.9.1.ebuild b/net-im/prosody/prosody-0.9.1.ebuild new file mode 100644 index 000000000000..14bb12298189 --- /dev/null +++ b/net-im/prosody/prosody-0.9.1.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/prosody-0.9.1.ebuild,v 1.1 2013/09/15 10:07:44 klausman Exp $ + +EAPI="5" + +inherit flag-o-matic multilib versionator + +MY_PV=$(replace_version_separator 3 '') +MY_P="${PN}-${MY_PV}" +DESCRIPTION="Prosody is a flexible communications server for Jabber/XMPP written in Lua." +HOMEPAGE="http://prosody.im/" +SRC_URI="http://prosody.im/tmp/${MY_PV}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="libevent mysql postgres sqlite ssl zlib" + +DEPEND="net-im/jabber-base + >=dev-lang/lua-5.1 + >=net-dns/libidn-1.1 + >=dev-libs/openssl-0.9.8" +RDEPEND="${DEPEND} + dev-lua/luaexpat + dev-lua/luafilesystem + >=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 )" + +S="${WORKDIR}/${MY_P}" + +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' + append-cflags -D_GNU_SOURCE + ./configure \ + --ostype=linux \ + --prefix="/usr" \ + --sysconfdir="${JABBER_ETC}" \ + --datadir="${JABBER_SPOOL}" \ + --with-lua-include=/usr/include \ + --with-lua-lib=/usr/$(get_libdir)/lua \ + --cflags="${CFLAGS} -Wall -fPIC" \ + --ldflags="${LDFLAGS} -shared" \ + --c-compiler="$(tc-getCC)" \ + --linker="$(tc-getCC)" \ + --require-config || die "configure failed" +} + +src_install() { + emake DESTDIR="${D}" install + newinitd "${FILESDIR}/${PN}".initd ${PN} +} + +src_test() { + cd tests + ./run_tests.sh +} |