blob: 330be818be3182a273dc81a5f41f6598ea33143f (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/curphoo/curphoo-0.3.11.ebuild,v 1.7 2004/07/15 00:06:21 agriffis Exp $
DESCRIPTION="Curphoo is a console Yahoo! Chat client written in Python"
HOMEPAGE="http://savannah.nongnu.org/projects/curphoo/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc "
IUSE=""
DEPEND="virtual/libc >=dev-lang/python-2.1 >=sys-libs/ncurses-5.2"
src_unpack() {
unpack ${A}
cd ${S}
cp ${FILESDIR}/curphoo.sh curphoo.sh.templ
sed -e "s#@PHOOPATH@#${P}#" curphoo.sh.templ >curphoo.sh
}
src_compile() {
make || die
}
src_install () {
dodoc BUGS CHANGELOG ChangeLog README TODO floo2phoo
dodir /usr/lib/${P}
mv curphoo curphoo.py
cp *.py *.so ${D}/usr/lib/${P}
mv curphoo.sh curphoo
dobin curphoo
doman ${FILESDIR}/curphoo.1
}
|