# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: j0inty edited by KardasA$ EAPI="2" inherit subversion DESCRIPTION="Gfire is an open source plugin for the Pidgin IM client which allows you to connect the Xfire network." HOMEPAGE="http://gfireproject.org/" SRC_URI="" ESVN_REPO_URI="http://my-svn.assembla.com/svn/gfire/trunk/" ESVN_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/svn-src/" LICENSE="GPLv3" SLOT="0" KEYWORDS="" IUSE="debug" RDEPEND="net-im/pidgin" DEPEND="dev-util/pkgconfig ${RDEPEND}" src_configure() { ./autogen.sh econf $(use_enable debug) || die "econf failed" } src_compile(){ emake || die "emake failed" } src_install(){ emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog README }