summaryrefslogtreecommitdiff
blob: ba62d4295a71a41e234e46a28c81197181f3a2ce (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
# Copyright 2003 Arcady Genkin <agenkin@gentoo.org>.
# Distributed under the terms of the GNU General Public License v2.
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkXwin/tkXwin-1.0.ebuild,v 1.3 2003/03/02 03:31:07 agenkin Exp $

DESCRIPTION="Tcl/Tk library to detect idle periods of an X session."
HOMEPAGE="http://beepcore-tcl.sourceforge.net/"

DEPEND=">=dev-lang/tcl-8.3.3
	>=dev-lang/tk-8.3.3"

LICENSE="BSD"
KEYWORDS="x86"

SLOT="0"
SRC_URI="http://beepcore-tcl.sourceforge.net/${P}.tgz"
S=${WORKDIR}/${P}

src_unpack() {

	unpack ${A}
	cd ${S}

	patch -p 0 < ${FILESDIR}/${PV}-Makefile.in.diff || die

}

src_compile() {

	econf --with-tcl=/usr/lib --with-tk=/usr/lib || die
	make || die

}

src_install() {

	make DESTDIR=${D} install || die
	dodoc AUTHORS INSTALL README

}