blob: de7454b92946308859935e40bba627f3706a9ac5 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/quirc/quirc-0.9.84.ebuild,v 1.5 2009/02/15 21:50:22 loki_val Exp $
inherit eutils
DESCRIPTION="A GUI IRC client scriptable in Tcl/Tk"
SRC_URI="http://quirc.org/${P}.tar.gz"
HOMEPAGE="http://quirc.org/"
DEPEND="dev-lang/tcl
dev-lang/tk"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PV}-gcc4.patch
epatch "${FILESDIR}"/${P}-gcc43.patch
}
src_compile() {
econf \
--datadir=/usr/share/quirc \
|| die "econf failed"
emake || die "emake failed"
}
src_install () {
dobin quirc || die "dobin failed"
insinto /usr/share/quirc
doins data/*.tcl data/quedit data/fontsel data/servers data/VERSION \
|| die "doins failed"
insinto /usr/share/quirc/common
doins "${S}"/data/common/*.tcl || die "doins failed"
insinto /usr/share/quirc/themes
doins "${S}"/data/themes/*.tcl || die "doins failed"
# this package installs docs, but we would rather do that ourselves
dodoc README NEWS INSTALL FAQ ChangeLog* AUTHORS doc/*.txt \
|| die "dodoc failed"
}
|