diff options
Diffstat (limited to 'net-im/cjc/cjc-1.0.0.ebuild')
-rw-r--r-- | net-im/cjc/cjc-1.0.0.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/net-im/cjc/cjc-1.0.0.ebuild b/net-im/cjc/cjc-1.0.0.ebuild new file mode 100644 index 000000000..697df121f --- /dev/null +++ b/net-im/cjc/cjc-1.0.0.ebuild @@ -0,0 +1,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 +} |