blob: 0d0e9be2fb8422f57552d16a9ab983bd600fb428 (
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
52
53
54
55
56
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/quirc/quirc-0.9.83-r1.ebuild,v 1.3 2003/09/06 22:02:56 msterret 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"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
src_unpack() {
unpack ${A}
cd ${S}
patch -p1 < ${FILESDIR}/0.9.83-r1-gentoo.diff || die "patch failed"
}
src_compile() {
export CXX="g++"
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
}
|