blob: d63bb3e39d8846fe5265035c982f3828b576514f (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/coccinella/coccinella-0.95.10.ebuild,v 1.2 2007/04/28 17:34:49 swegener Exp $
NAME=Coccinella
S="${WORKDIR}/${NAME}-${PV}Src"
DESCRIPTION="Virtual net-whiteboard."
SRC_URI="mirror://sourceforge/coccinella/${NAME}-${PV}Src.tar.gz"
HOMEPAGE="http://hem.fyristorg.com/matben"
LICENSE="GPL-2"
DEPEND="dev-lang/tk"
KEYWORDS="~mips ~x86"
IUSE=""
SLOT="0"
src_compile() {
einfo "Nothing to compile for ${P}."
}
src_install () {
dodir /opt/coccinella
cp -R "${S}"/* ${D}/opt/coccinella/
fperms 0755 /opt/coccinella/Coccinella.tcl
dosym Coccinella.tcl /opt/coccinella/coccinella
doenvd ${FILESDIR}/97coccinella
dodoc CHANGES README.txt READMEs/README-jabber READMEs/README-smileys
}
pkg_postinst() {
echo
einfo "To run coccinella just type coccinella"
echo
}
|