blob: 33dc0dfb740ea28aeed8d54e463a1efde45acbd4 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tix/tix-8.4.2-r2.ebuild,v 1.2 2009/08/18 07:24:21 fauli Exp $
EAPI="2"
inherit eutils multilib
MY_P="Tix${PV}"
DESCRIPTION="A widget library for Tcl/Tk. Has been ported to Python and Perl, too."
HOMEPAGE="http://tix.sourceforge.net/"
SRC_URI="mirror://sourceforge/tix/${MY_P}-src.tar.gz"
IUSE=""
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
RESTRICT="test"
DEPEND=">=sys-apps/sed-4
>=dev-lang/tk-8.4
x11-libs/libX11
x11-libs/libXau
x11-libs/libXdmcp"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}"/"${P}-tcl85.patch"
}
src_install() {
emake DESTDIR="${D}" install || die
# Bug 168897
insinto /usr/include; doins generic/tix.h
# Bug 201138
dosym ${MY_P}/lib${MY_P}.so /usr/$(get_libdir)/lib${MY_P}.so || die
dodoc ChangeLog README.txt docs/*.txt
dohtml -r index.html ABOUT.html docs/
}
|