blob: 697df121f96639331e0524e14e3c5acb0d754b16 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="The Console Jabber Client - Jabber client with text-based user interface"
HOMEPAGE="http://jabberstudio.org/projects/cjc/project/view.phpom/"
SRC_URI="http://files.jabberstudio.org/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
RDEPEND=">=dev-lang/python-2.4.2
>=net-im/pyxmpp-1.0.0"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-plugins-dir.patch"
epatch "${FILESDIR}/${P}-path-fix.patch"
epatch "${FILESDIR}/${P}-Makefile-fix.patch"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dohtml doc/manual.html
}
|