blob: d00334a5f9b36a5219990c1a9d9e786a959d73b3 (
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
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-irc/quirc/quirc-0.9.82.ebuild,v 1.3 2002/07/11 06:30:46 drobbins Exp $
S=${WORKDIR}/${P}
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"
src_compile() {
econf \
--datadir=/usr/share/quirc \
|| die "./configure failed"
emake || die
}
src_install () {
exeinto /usr/bin
doexe quirc
insinto /usr/share/quirc
doins data/*.tcl data/quedit data/fontsel data/servers data/VERSION
insinto /usr/share/quirc/common
doins ${S}/data/common/*.tcl
insinto /usr/share/quirc/themes
doins ${S}/data/themes/*.tcl
# this package installs docs, but we would rather do that ourselves
dodoc README NEWS INSTALL FAQ ChangeLog* COPYING AUTHORS
dodoc doc/*.txt
}
|