blob: a0d9f15cc8192c4192ed90c94a6b9ce0e87ee9d1 (
plain)
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/bitlbee/bitlbee-0.82-r1.ebuild,v 1.2 2003/12/25 16:14:55 weeve Exp $
inherit eutils
DESCRIPTION="Bitlbee is an irc to IM gateway that support multiple IM protocols"
HOMEPAGE="http://www.bitlbee.org"
SRC_URI="http://get.bitlbee.org/src/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc ~alpha"
IUSE="debug jabber msn oscar yahoo"
DEPEND="virtual/glibc
msn? ( >=net-libs/libsoup-1.99.26 )"
pkg_setup() {
einfo "Note: as of bitlbee-0.82-r1, all protocols are useflags."
einfo " Make sure you've enabled the flags you want."
}
src_unpack() {
unpack ${P}.tar.gz
# Patch from bitlbee to fix a segfault when trying to enable
# unsupported accounts.
cd ${S}
epatch ${FILESDIR}/${P}-segv.diff
# Patch the default xinetd file to add/adjust values to Gentoo defaults
cd ${S}/doc
epatch ${FILESDIR}/${PN}-0.80-xinetd.patch
}
src_compile() {
# setup useflags
local myconf
use debug && myconf="${myconf} --debug=1"
use msn || myconf="${myconf} --msn=0"
use jabber || myconf="${myconf} --jabber=0"
use oscar || myconf="${myconf} --oscar=0"
use yahoo || myconf="${myconf} --yahoo=0"
econf --datadir=/usr/share/bitlbee --etcdir=/etc/bitlbee ${myconf}
emake || die "make failed"
# make bitlbeed forking server
cd utils
[ -n "${CC}" ] \
&& ${CC} ${CFLAGS} bitlbeed.c -o bitlbeed \
|| gcc ${CFLAGS} bitlbeed.c -o bitlbeed
}
src_install() {
mkdir -p ${D}/var/lib/bitlbee
make install DESTDIR=${D} || die "install failed"
make install-etc DESTDIR=${D} || die "install failed"
keepdir /var/lib/bitlbee
dodoc COPYING
dodoc doc/{AUTHORS,CHANGES,CREDITS,FAQ,README,TODO}
dohtml -A sgml doc/*.sgml
doman doc/bitlbee.8
dobin utils/bitlbeed utils/create_nicksfile.pl
insinto /etc/xinetd.d
newins doc/bitlbee.xinetd bitlbee
exeinto /etc/init.d
newexe ${FILESDIR}/bitlbeed.init bitlbeed || die
insinto /etc/conf.d
newins ${FILESDIR}/bitlbeed.confd bitlbeed || die
dodir /var/run/bitlbeed
keepdir /var/run/bitlbeed
}
pkg_postinst() {
chown nobody:nobody /var/lib/bitlbee
chmod 700 /var/lib/bitlbee
}
|