blob: 71aefff20170b703a8f71f631b2f881b02d91db4 (
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
57
58
59
60
61
62
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkimg/tkimg-1.4-r1.ebuild,v 1.1 2011/07/21 18:51:14 jlec Exp $
EAPI=3
VIRTUALX_USE=test
inherit eutils virtualx autotools
MYP="${PN}${PV}"
DESCRIPTION="Adds a lot of image formats to Tcl/Tk"
HOMEPAGE="http://tkimg.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PV}/${MYP}.tar.bz2"
IUSE="doc test"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
RDEPEND="
dev-lang/tk
>=dev-tcltk/tcllib-1.11
>=media-libs/libpng-1.4
virtual/jpeg
media-libs/tiff"
DEPEND="${RDEPEND}
test? (
x11-apps/xhost
media-fonts/font-misc-misc
media-fonts/font-cursor-misc )"
S="${WORKDIR}/${MYP}"
src_prepare() {
epatch "${FILESDIR}"/${P}-nojbig.patch
}
src_test() {
Xmake test || die "Xmake failed"
}
src_install() {
emake \
DESTDIR="${D}" \
INSTALL_ROOT="${D}" \
install || die "emake install failed"
# Make library links
for l in "${ED}"/usr/lib*/Img*/*tcl*.so; do
bl=$(basename $l)
dosym Img1.4/${bl} /usr/$(get_libdir)/${bl}
done
dodoc ChangeLog README Reorganization.Notes.txt changes ANNOUNCE || die
if use doc; then
insinto /usr/share/doc/${PF}
doins demo.tcl || die
insinto /usr/share/doc/${PF}/html
doins -r doc/* || die
fi
}
|