blob: fc75a0ffe5e963ff7ca252ab906be689408c8fae (
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
35
36
37
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gaim-xfire/gaim-xfire-0.5.8.ebuild,v 1.2 2005/12/21 22:11:14 gothgirl Exp $
inherit eutils
DESCRIPTION="Xfire plugin for gaim. It's in early state of development. You
can have a chat, add and remove buddies from contact list, seeing what game a buddy
is playing."
HOMEPAGE="http://www.fryx.ch/xfire/"
SRC_URI="mirror://sourceforge/gfire/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="debug"
DEPEND=">=net-im/gaim-1.0.0"
src_unpack() {
unpack ${A}
cd "${S}"
}
src_compile() {
./configure || die "Configure failed"
emake
}
src_install() {
einstall || die "Install failed"
}
|