summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorDirkjan Ochtman <djc@gentoo.org>2011-04-08 17:43:05 +0000
committerDirkjan Ochtman <djc@gentoo.org>2011-04-08 17:43:05 +0000
commitf695d2a8e947a4bdb56c86b34ace9da536768efb (patch)
treeb1888acd50f558df21d9de0108da6f39eb561856 /net-im
parentVersion bump prosody to 0.8.0 (bug 352382). (diff)
downloadgentoo-2-f695d2a8e947a4bdb56c86b34ace9da536768efb.tar.gz
gentoo-2-f695d2a8e947a4bdb56c86b34ace9da536768efb.tar.bz2
gentoo-2-f695d2a8e947a4bdb56c86b34ace9da536768efb.zip
Remove old version of prosody.
(Portage version: 2.1.9.45/cvs/Linux x86_64)
Diffstat (limited to 'net-im')
-rw-r--r--net-im/prosody/ChangeLog6
-rw-r--r--net-im/prosody/files/prosody-0.6.2-cfg.lua.patch17
-rw-r--r--net-im/prosody/prosody-0.6.2.ebuild58
3 files changed, 5 insertions, 76 deletions
diff --git a/net-im/prosody/ChangeLog b/net-im/prosody/ChangeLog
index aa8c87f403f9..06dbf0afe1fb 100644
--- a/net-im/prosody/ChangeLog
+++ b/net-im/prosody/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-im/prosody
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/ChangeLog,v 1.10 2011/04/08 17:41:27 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/ChangeLog,v 1.11 2011/04/08 17:43:04 djc Exp $
+
+ 08 Apr 2011; Dirkjan Ochtman <djc@gentoo.org> -prosody-0.6.2.ebuild,
+ -files/prosody-0.6.2-cfg.lua.patch:
+ Remove old version.
*prosody-0.8.0 (08 Apr 2011)
diff --git a/net-im/prosody/files/prosody-0.6.2-cfg.lua.patch b/net-im/prosody/files/prosody-0.6.2-cfg.lua.patch
deleted file mode 100644
index 338daef54a64..000000000000
--- a/net-im/prosody/files/prosody-0.6.2-cfg.lua.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- prosody.cfg.lua.old 2010-05-27 11:10:45.000000000 +0200
-+++ prosody.cfg.lua.dist 2010-05-27 11:12:21.000000000 +0200
-@@ -16,6 +16,14 @@
- -- Settings in this section apply to the whole server and are the default settings
- -- for any virtual hosts
-
-+prosody_user = "jabber"
-+prosody_group = "jabber"
-+pidfile = "/var/run/jabber/prosody.pid"
-+
-+log = "/var/log/jabber/prosody.log"
-+-- Requires mod_posix to be loaded
-+-- log = "*syslog"
-+
- -- This is a (by default, empty) list of accounts that are admins
- -- for the server. Note that you must create the accounts separately
- -- (see http://prosody.im/doc/creating_accounts for info)
diff --git a/net-im/prosody/prosody-0.6.2.ebuild b/net-im/prosody/prosody-0.6.2.ebuild
deleted file mode 100644
index fcebbd1f07d4..000000000000
--- a/net-im/prosody/prosody-0.6.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/prosody/prosody-0.6.2.ebuild,v 1.7 2011/03/22 20:59:44 ulm Exp $
-
-EAPI="2"
-
-inherit eutils versionator multilib
-
-MY_PV=$(replace_version_separator 3 '')
-DESCRIPTION="Prosody is a flexible communications server for Jabber/XMPP written in Lua."
-HOMEPAGE="http://prosody.im/"
-SRC_URI="http://prosody.im/depot/${MY_PV}/${PN}-${MY_PV}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="ssl"
-
-DEPEND="net-im/jabber-base
- >=dev-lang/lua-5.1
- dev-lua/luasocket
- ssl? ( dev-lua/luasec )
- dev-lua/luaexpat
- dev-lua/luafilesystem
- >=net-dns/libidn-1.1
- >=dev-libs/openssl-0.9.8"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-JABBER_ETC="/etc/jabber"
-JABBER_SPOOL="/var/spool/jabber"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-0.6.2-cfg.lua.patch"
- sed -i "s!MODULES = \$(DESTDIR)\$(PREFIX)/lib/!MODULES = \$(DESTDIR)\$(PREFIX)/$(get_libdir)/!" Makefile
- sed -i "s!SOURCE = \$(DESTDIR)\$(PREFIX)/lib/!SOURCE = \$(DESTDIR)\$(PREFIX)/$(get_libdir)/!" Makefile
- sed -i "s!INSTALLEDSOURCE = \$(PREFIX)/lib/!INSTALLEDSOURCE = \$(PREFIX)/$(get_libdir)/!" Makefile
- sed -i "s!INSTALLEDMODULES = \$(PREFIX)/lib/!INSTALLEDMODULES = \$(PREFIX)/$(get_libdir)/!" Makefile
-}
-
-src_configure() {
- ./configure --prefix="/usr" \
- --sysconfdir="${JABBER_ETC}" \
- --datadir="${JABBER_SPOOL}" \
- --with-lua-lib=/usr/$(get_libdir)/lua \
- --require-config || die "configure failed"
-}
-
-src_install() {
- DESTDIR="${D}" emake install || die "make failed"
- newinitd "${FILESDIR}/${PN}".initd ${PN}
-}
-
-src_test() {
- cd tests
- ./run_tests.sh
-}