summaryrefslogtreecommitdiff
blob: 800d4f1505f8540626f9eab84186d8f9ed927a8f (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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/magnesium/magnesium-1.0_pre18.ebuild,v 1.1 2003/10/09 16:43:47 mkennedy Exp $

MY_P=${PN}-${PV/1.0_/}
DESCRIPTION="Curphoo X (Magnesium) is a Yahoo chat client."
HOMEPAGE="http://magnesium.curphoo.org/"
SRC_URI="http://members.iinet.net.au/~texascm/mg/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""

DEPEND="=gnome-base/libglade-2*
	=dev-python/pygtk-2*"

S=${WORKDIR}/${MY_P}

src_unpack() {
	unpack ${A}
	cd ${S}
	mv ui.py ui.py.in && sed "s,curphoo.glade,/usr/lib/${P}/curphoo.glade,g" <ui.py.in >ui.py
}

src_install() {
	insinto /usr/lib/${P}
	doins *.py curphoo.glade
	chmod +x ${D}/usr/lib/${P}/mg.py
	sed "s,@MAGNESIUMPATH@,${P},g" <${FILESDIR}/magnesium >magnesium || die
	dobin magnesium
	dodoc gpl.txt README CREDITS AUTHORS
}