blob: 684d6c5b7ef81ce3ae6c25cad7f6ab42c25c3e5c (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/imcom/imcom-0.93.ebuild,v 1.2 2003/02/13 14:09:54 vapier Exp $
S=${WORKDIR}/${P}
SRC_URI="http://imcom.floobin.cx/files/${P}.tar.gz"
HOMEPAGE="http://imcom.floobin.cx"
DESCRIPTION="Python commandline Jabber Client"
DEPEND=">=dev-lang/python-2.2
>=dev-python/PyXML-0.7"
RDEPEND=""
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 ppc"
src_install() {
dodir /usr/bin
dodir /usr/share/imcom
dodoc AutoStatus.API CONTRIBUTORS LICENSE README* TODO WHATSNEW
dodoc docs/*
cp *.py ${D}/usr/share/imcom
mv imcom imcom.orig
sed -e 's:/usr/local/share:/usr/share:' imcom.orig | cat > imcom
chmod 755 imcom
dobin imcom
}
|