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.20081202.ebuild tkimg-1.3.20081104.ebuild
Date: Wed, 03 Dec 2008 11:26:04
Message-Id: E1L7prl-00076x-VL@stork.gentoo.org
1 bicatali 08/12/03 11:26:01
2
3 Modified: ChangeLog
4 Added: tkimg-1.3.20081202.ebuild
5 Removed: tkimg-1.3.20081104.ebuild
6 Log:
7 subversion snapshot bump and removed embedded system libs (patch inspired from fedora)
8 (Portage version: 2.2_rc16/cvs/Linux 2.6.25-gentoo-r7 x86_64)
9
10 Revision Changes Path
11 1.5 dev-tcltk/tkimg/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tkimg/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tkimg/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tkimg/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/tkimg/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 5 Nov 2008 19:54:25 -0000 1.4
24 +++ ChangeLog 3 Dec 2008 11:26:01 -0000 1.5
25 @@ -1,6 +1,14 @@
26 # ChangeLog for dev-tcltk/tkimg
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkimg/ChangeLog,v 1.4 2008/11/05 19:54:25 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkimg/ChangeLog,v 1.5 2008/12/03 11:26:01 bicatali Exp $
30 +
31 +*tkimg-1.3.20081202 (03 Dec 2008)
32 +
33 + 03 Dec 2008; Sébastien Fabbro <bicatali@g.o>
34 + +files/tkimg-1.3.20081202-systemlibs.patch, -tkimg-1.3.20081104.ebuild,
35 + +tkimg-1.3.20081202.ebuild:
36 + subversion snapshot bump and removed embedded system libs (patch inspired
37 + from fedora)
38
39 *tkimg-1.3.20081104 (05 Nov 2008)
40
41
42
43
44 1.1 dev-tcltk/tkimg/tkimg-1.3.20081202.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tkimg/tkimg-1.3.20081202.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tkimg/tkimg-1.3.20081202.ebuild?rev=1.1&content-type=text/plain
48
49 Index: tkimg-1.3.20081202.ebuild
50 ===================================================================
51 # Copyright 1999-2008 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkimg/tkimg-1.3.20081202.ebuild,v 1.1 2008/12/03 11:26:01 bicatali Exp $
54
55 inherit eutils
56
57 DESCRIPTION="Adds a lot of image formats to Tcl/Tk"
58 HOMEPAGE="http://sourceforge.net/projects/tkimg/"
59 # src built with:
60 # svn export https://tkimg.svn.sourceforge.net/svnroot/tkimg/trunk tkimg-1.3.YYYYMMDD
61 # tar cvfj tkimg-1.3.YYYYMMDD.tar.bz2 tkimg-1.3.YYYYMMDD
62 SRC_URI="mirror://gentoo/${P}.tar.bz2"
63
64 IUSE="doc"
65 SLOT="0"
66 LICENSE="BSD"
67 KEYWORDS="~alpha ~amd64 ~sparc ~x86"
68
69 DEPEND="dev-lang/tk
70 media-libs/libpng
71 media-libs/jpeg
72 media-libs/tiff"
73
74 src_unpack() {
75 unpack ${A}
76 epatch "${FILESDIR}"/${P}-systemlibs.patch
77 }
78
79 src_install() {
80 emake \
81 DESTDIR="${D}" \
82 INSTALL_ROOT="${D}" \
83 install || die "emake install failed"
84 # Make library links
85 for l in "${D}"/usr/lib*/Img*/*tcl*.so; do
86 bl=$(basename $l)
87 dosym Img1.3/${bl} /usr/$(get_libdir)/${bl}
88 done
89
90 dodoc ChangeLog README Reorganization.Notes.txt changes ANNOUNCE || die
91 if use doc; then
92 insinto /usr/share/doc/${PF}
93 doins demo.tcl || die
94 insinto /usr/share/doc/${PF}/html
95 doins -r doc/* || die
96 fi
97 }