blob: 9d2875542363b7610b52e886627a5674247d7f87 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/aim-transport/aim-transport-20040131-r2.ebuild,v 1.9 2005/09/17 20:19:44 mr_bones_ Exp $
inherit eutils
MY_PN="${PN}-stable"
S="${WORKDIR}/${MY_PN}-${PV}"
DESCRIPTION="AOL Instant Messaging transport for jabberd"
HOMEPAGE="http://aim-transport.jabberstudio.org/"
SRC_URI="http://aim-transport.jabberstudio.org/${MY_PN}-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 hppa ~ppc sparc x86"
IUSE=""
DEPEND="=net-im/jabberd-1.4*"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/aimtrans.patch
}
src_compile() {
einfo
einfo "Please ignore any errors/warnings"
einfo
export WANT_AUTOCONF=2.5
aclocal
automake
libtoolize --force
autoconf
./configure --with-jabberd=/usr/include/jabberd || die "./configure failed"
emake || die
}
src_install() {
dodir /etc/jabber /usr/lib/jabberd
insinto /usr/lib/jabberd
doins src/aimtrans.so
insinto /etc/jabber
doins ${FILESDIR}/aimtrans.xml
exeinto /etc/init.d
newexe ${FILESDIR}/aim-transport.init-r2 aim-transport
insinto /etc/conf.d ; newins ${FILESDIR}/aim-transport-conf.d aim-transport
dodoc README ${FILESDIR}/README.Gentoo TODO aim.xml
}
pkg_postinst() {
einfo
einfo "Please read /usr/share/doc/${PF}/README.Gentoo.gz"
einfo "And please notice that now aim-transport comes with a init.d script"
einfo "dont forget to add it to your runlevel."
einfo
}
|