summaryrefslogtreecommitdiff
blob: ef0df2d66c8c62997a1b24cc8a0329734cbd159d (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
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"

inherit autotools eutils

DESCRIPTION="Console based Jabber client"
HOMEPAGE="http://www.gnu.org/software/freetalk/"
SRC_URI="http://savannah.gnu.org/download/${PN}/${P}.tar.gz"

SLOT="0"
KEYWORDS="~amd64 ~x86"
LICENSE="GPL-3"
IUSE=""

RDEPEND="
	dev-libs/glib:2
	dev-scheme/guile
	net-libs/loudmouth"
DEPEND="${RDEPEND}"

src_prepare() {
	epatch \
		"${FILESDIR}"/${PV}-callback.patch \
		"${FILESDIR}"/${PV}-asneeded.patch
	mkdir m4
	eautoreconf
}

src_install() {
	emake DESTDIR="${D}" install || die
}