blob: 916a1f95d5ac22eb367f241949602c865177e228 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/jircii/jircii-17.ebuild,v 1.1 2004/10/24 21:00:15 swegener Exp $
DESCRIPTION="jIRCii - IRC client written in Java"
HOMEPAGE="http://jirc.hick.org/"
SRC_URI="http://jirc.hick.org/download/jerkb${PV}.tgz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
RDEPEND="virtual/jre"
DEPEND=""
S=${WORKDIR}/jIRCii
src_compile() {
true
}
src_install() {
insinto /usr/share/jircii
doins jerk.jar
cat >${T}/jircii <<EOF
#!/bin/bash
exec java -jar /usr/share/jircii/jerk.jar
EOF
dobin ${T}/jircii
dodoc readme.txt whatsnew.txt docs/*.pdf extra/*.irc
}
|