Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-tcltk/tklib: tklib-0.5-r1.ebuild ChangeLog
Date: Mon, 02 Aug 2010 15:02:14
Message-Id: 20100802142714.F18912CE15@corvid.gentoo.org
1 jlec 10/08/02 14:27:14
2
3 Modified: ChangeLog
4 Added: tklib-0.5-r1.ebuild
5 Log:
6 Unversioning the installation path
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-tcltk/tklib/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/tklib/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/tklib/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/tklib/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/tklib/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 29 Mar 2010 11:32:45 -0000 1.1
23 +++ ChangeLog 2 Aug 2010 14:27:14 -0000 1.2
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-tcltk/tklib
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tklib/ChangeLog,v 1.1 2010/03/29 11:32:45 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tklib/ChangeLog,v 1.2 2010/08/02 14:27:14 jlec Exp $
29 +
30 +*tklib-0.5-r1 (02 Aug 2010)
31 +
32 + 02 Aug 2010; Justin Lecher <jlec@g.o> +tklib-0.5-r1.ebuild:
33 + Unversioning the installation path
34
35 *tklib-0.5 (29 Mar 2010)
36
37
38
39
40 1.1 dev-tcltk/tklib/tklib-0.5-r1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/tklib/tklib-0.5-r1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/tklib/tklib-0.5-r1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: tklib-0.5-r1.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tklib/tklib-0.5-r1.ebuild,v 1.1 2010/08/02 14:27:14 jlec Exp $
50
51 inherit multilib
52
53 DESCRIPTION="Collection of utility modules for Tk, and a companion to Tcllib"
54 HOMEPAGE="http://www.tcl.tk/software/tklib"
55 SRC_URI="mirror://sourceforge/project/tcllib/${PN}/${PV}/${P}.tar.bz2"
56
57 SLOT="0"
58 KEYWORDS="~amd64 ~x86"
59 LICENSE="BSD"
60 IUSE="doc"
61
62 RDEPEND="
63 dev-lang/tk
64 dev-tcltk/tcllib"
65 DEPEND="${RDEPEND}"
66
67 src_install() {
68 emake DESTDIR="${D}" install || die
69 if use doc; then
70 emake DESTDIR="${D}" doc || die
71 dohtml doc/html/* || die
72 fi
73 dodoc ChangeLog DESCRIPTION.txt README* || die
74 dosym ${PN}${PV} /usr/$(get_libdir)/${PN}
75 }