1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/jabberd/jabberd-1.6.1.1-r1.ebuild,v 1.15 2009/08/09 17:46:41 ssuominen Exp $
WANT_AUTOMAKE="1.9"
inherit autotools eutils
DESCRIPTION="Open-source Jabber server"
HOMEPAGE="http://www.jabber.org"
SRC_URI="http://download.jabberd.org/jabberd14/jabberd14-${PV}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 hppa ppc sparc x86"
IUSE="ipv6 mysql postgres"
RDEPEND=">=net-im/jabber-base-0.01
>=dev-libs/pth-1.4.0
dev-libs/expat
net-dns/libidn
mysql? ( virtual/mysql )
postgres? ( virtual/postgresql-server )
net-libs/gnutls
dev-libs/popt"
DEPEND="${RDEPEND}
dev-util/pkgconfig
!net-im/jabberd2"
S=${WORKDIR}/jabberd14-${PV}
pkg_setup() {
if use ipv6; then
ewarn "Without full ipv6 support, jabberd will show the error:"
ewarn ' "mio unable to listen"'
ewarn "To fix this, emerge jabberd without the ipv6 USE flag."
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-glibc-2.10.patch
#Shamelessly stolen from Freebsd
epatch "${FILESDIR}/${P}-gnutls2.2.patch"
## Gentoo bug #200616
epatch "${FILESDIR}/${P}-sandbox.patch"
epatch "${FILESDIR}/${P}-parallel-make.patch"
epatch "${FILESDIR}/${P}-undefineddebug.patch"
epatch "${FILESDIR}/${P}-libtool2.2.patch"
eautoreconf || die "Reconfiguring autotools failed!"
}
src_compile() {
unset LC_ALL LC_CTYPE
econf \
--sysconfdir=/etc/jabber \
--enable-ssl \
$(use ipv6 && echo --enable-ipv6) \
$(use_with mysql) \
$(use_with postgres postgresql) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
newinitd "${FILESDIR}"/${P}.init jabber || die "newinitd failed"
# net-im/jabber-base provides needed directories
rm -rf "${D}/var"
mv "${D}/etc/jabber/jabber.xml" "${D}/etc/jabber/jabberd.xml"
mv "${D}/etc/jabber/jabber.xml.dist" "${D}/etc/jabber/jabberd.xml.dist"
sed -i \
-e 's,/var/lib/spool/jabberd,/var/spool/jabber,g' \
-e 's,/var/lib/log/jabberd,/var/log/jabber,g' \
-e 's,/var/lib/run/jabberd,/var/run/jabber,g' \
-e 's,jabber.pid,jabberd14.pid,g' \
"${D}"/etc/jabber/jabberd.xml{,.dist} \
|| die "sed failed"
dodoc README* mysql.sql pgsql_createdb.sql UPGRADE || die "dodoc failed"
}
pkg_postinst() {
echo
elog 'The various IM transports for jabber are now separate packages,'
elog 'which you will need to install separately if you want them:'
elog ' net-im/pymsn-t - MSN transport'
elog ' net-im/jud - Jabber User Directory'
elog ' net-im/yahoo-transport - Yahoo IM system'
elog ' net-im/mu-conference - Jabber multi user conference'
echo
ewarn 'If upgrading from an older version, please stop jabberd BEFORE'
ewarn 'updating the init.d script, or you will end with a "dead" server.'
ewarn
ewarn 'The configuration filename has changed:'
ewarn ' Configure your server in /etc/jabber/jabberd.xml'
ewarn
ewarn 'If you are upgrading from jabberd-1.4, please read UPGRADE.'
ewarn 'Please note that filespool(individual xml files per account)'
ewarn 'is deprecated. Migrate to one of the database storage backends,'
ewarn 'and read UPGRADE for instructions.'
ewarn 'If you wish to continue to use the filespool backend, read'
ewarn 'README.filespool.'
echo
ebeep
}
|