Subversion Repositories KardasA Overlay

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 kardasa 1
# Copyright 1999-2009 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: j0inty $
4
 
5
inherit subversion
6
 
7
DESCRIPTION="Gfire is an open source plugin for the Pidgin IM client which allows you to connect the Xfire network."
8
HOMEPAGE="http://gfireproject.org/"
9
SRC_URI=""
10
 
11
ESVN_REPO_URI="http://my-svn.assembla.com/svn/gfire/trunk/"
12
ESVN_STORE_DIR="${PORTAGE_ACTUAL_DISTDIR-${DISTDIR}}/svn-src/"
13
 
14
LICENSE="GPLv3"
15
SLOT="0"
16
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
17
IUSE="debug"
18
 
19
RDEPEND="net-im/pidgin"
20
 
21
DEPEND="dev-util/pkgconfig
22
	${RDEPEND}"
23
 
24
src_compile(){
25
	econf $(use_enable debug) || die "econf failed"
26
	emake || die "emake failed"
27
}
28
 
29
src_install(){
30
	emake DESTDIR="${D}" install || die "emake install failed"
31
	dodoc AUTHORS ChangeLog README
32
}