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/tcllib: ChangeLog tcllib-1.15-r1.ebuild
Date: Tue, 05 Mar 2013 11:43:34
Message-Id: 20130305114329.16FA72171D@flycatcher.gentoo.org
1 jlec 13/03/05 11:43:29
2
3 Modified: ChangeLog
4 Added: tcllib-1.15-r1.ebuild
5 Log:
6 dev-tcltk/tcllib: Add backports for test failures and manpage collision
7
8 (Portage version: 2.2.0_alpha165/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
9
10 Revision Changes Path
11 1.38 dev-tcltk/tcllib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/tcllib/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/tcllib/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/tcllib/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 4 Mar 2013 08:02:40 -0000 1.37
24 +++ ChangeLog 5 Mar 2013 11:43:28 -0000 1.38
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-tcltk/tcllib
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/ChangeLog,v 1.37 2013/03/04 08:02:40 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/ChangeLog,v 1.38 2013/03/05 11:43:28 jlec Exp $
30 +
31 +*tcllib-1.15-r1 (05 Mar 2013)
32 +
33 + 05 Mar 2013; Justin Lecher <jlec@g.o> +tcllib-1.15-r1.ebuild:
34 + Add backports for test failures and manpage collision
35
36 04 Mar 2013; Justin Lecher <jlec@g.o> tcllib-1.15.ebuild:
37 Clean collision fix
38
39
40
41 1.1 dev-tcltk/tcllib/tcllib-1.15-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/tcllib/tcllib-1.15-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tcltk/tcllib/tcllib-1.15-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tcllib-1.15-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/tcllib-1.15-r1.ebuild,v 1.1 2013/03/05 11:43:28 jlec Exp $
51
52 EAPI=5
53
54 inherit eutils
55
56 DESCRIPTION="Tcl Standard Library"
57 HOMEPAGE="http://www.tcl.tk/software/tcllib/"
58 SRC_URI="
59 http://dev.gentoo.org/~jlec/distfiles/${P}-manpage-rename.patch.xz
60 http://dev.gentoo.org/~jlec/distfiles/${P}-test.patch.xz
61 mirror://sourceforge/tcllib/${P}.tar.bz2"
62
63 LICENSE="BSD"
64 SLOT="0"
65 IUSE="examples"
66 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~s390 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
67
68 RDEPEND="dev-lang/tcl"
69 DEPEND="${RDEPEND}"
70
71 DOCS=( DESCRIPTION.txt STATUS )
72
73 src_prepare() {
74 epatch \
75 "${FILESDIR}"/${P}-tcl8.6-test.patch \
76 "${WORKDIR}"/${P}-test.patch \
77 "${WORKDIR}"/${P}-manpage-rename.patch
78 }
79
80 src_test() {
81 # emake test_interactive
82 emake test_batch
83 }
84
85 src_install() {
86 default
87
88 dodoc devdoc/*.txt
89
90 dohtml devdoc/*.html
91 if use examples ; then
92 for f in $(find examples -type f); do
93 docinto $(dirname $f)
94 dodoc $f
95 done
96 fi
97 }