blob: d4e5aaea4d89897e222d91b92b88f9ed096f6cf9 (
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
|
# 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/Tk_Theme/Tk_Theme-23.ebuild,v 1.1 2003/02/01 22:25:03 agenkin Exp $
DESCRIPTION="Theming library for TCL/TK."
HOMEPAGE="http://www.xmission.com/~georgeps/Tk_Theme/"
DEPEND="=dev-lang/tcl-8.3*
=dev-lang/tk-8.3*
x11-base/xfree"
LICENSE="BSD"
KEYWORDS="~x86"
SLOT="0"
SRC_URI="http://www.xmission.com/~georgeps/Tk_Theme/${P}.tgz"
S=${WORKDIR}/${P}
src_compile() {
tclsh8.3 configure || die
make || die
}
src_install() {
local libdir=/usr/lib/Tk_Theme
insinto ${libdir}
doins *.tcl
exeinto ${libdir}
doexe theme.so
dodoc Changes LICENSE README TODO
}
|