Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-tcltk/tkimg: ChangeLog tkimg-1.3.20081104.ebuild
Date: Wed, 05 Nov 2008 19:54:29
Message-Id: E1KxoSP-0005kl-Uu@stork.gentoo.org
1 bicatali 08/11/05 19:54:25
2
3 Modified: ChangeLog
4 Added: tkimg-1.3.20081104.ebuild
5 Log:
6 Version bump from cvs, more compatible for astro packages and tcl-8.5
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.25-gentoo-r7 x86_64)
8
9 Revision Changes Path
10 1.4 dev-tcltk/tkimg/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tkimg/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tkimg/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tkimg/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/tkimg/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 3 Oct 2008 19:38:07 -0000 1.3
23 +++ ChangeLog 5 Nov 2008 19:54:25 -0000 1.4
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-tcltk/tkimg
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkimg/ChangeLog,v 1.3 2008/10/03 19:38:07 bluebird Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkimg/ChangeLog,v 1.4 2008/11/05 19:54:25 bicatali Exp $
29 +
30 +*tkimg-1.3.20081104 (05 Nov 2008)
31 +
32 + 05 Nov 2008; Sébastien Fabbro <bicatali@g.o>
33 + +tkimg-1.3.20081104.ebuild:
34 + Version bump from cvs, more compatible for astro packages and tcl-8.5
35
36 03 Oct 2008; Friedrich Oslage <bluebird@g.o> tkimg-1.3.ebuild:
37 Add ~sparc keyword, bug #236244
38
39
40
41 1.1 dev-tcltk/tkimg/tkimg-1.3.20081104.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tkimg/tkimg-1.3.20081104.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tkimg/tkimg-1.3.20081104.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tkimg-1.3.20081104.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkimg/tkimg-1.3.20081104.ebuild,v 1.1 2008/11/05 19:54:25 bicatali Exp $
51
52 inherit eutils
53
54 DESCRIPTION="Adds a lot of image formats to Tcl/Tk"
55 HOMEPAGE="http://sourceforge.net/projects/tkimg/"
56 SRC_URI="mirror://gentoo/${P}.tar.bz2"
57
58 IUSE="doc"
59 SLOT="0"
60 LICENSE="BSD"
61 KEYWORDS="~alpha ~amd64 ~sparc ~x86"
62
63 DEPEND="dev-lang/tk
64 media-libs/libpng
65 media-libs/tiff"
66
67 src_install() {
68 emake \
69 DESTDIR="${D}" \
70 INSTALL_ROOT="${D}" \
71 install || die "emake install failed"
72 # Make library links
73 for l in "${D}"/usr/lib*/Img*/*tcl*.so; do
74 bl=$(basename $l)
75 dosym Img1.3/${bl} /usr/$(get_libdir)/${bl}
76 done
77
78 doman doc/man/*
79 dodoc ChangeLog README Reorganization.Notes.txt changes ANNOUNCE || die
80 insinto /usr/share/doc/${PF}
81 doins -r demo
82 use doc && dohtml doc/html
83 }