Gentoo Archives: gentoo-commits

From: "Federico Ferri (mescalinum)" <mescalinum@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-tcltk/tls: ChangeLog tls-1.6.ebuild
Date: Sun, 26 Apr 2009 16:29:30
Message-Id: E1Ly7EN-0003EW-U2@stork.gentoo.org
1 mescalinum 09/04/26 16:29:27
2
3 Modified: ChangeLog
4 Added: tls-1.6.ebuild
5 Log:
6 add tls-1.6, bug #267542
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.19 dev-tcltk/tls/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tls/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tls/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tls/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-tcltk/tls/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 24 Dec 2007 04:08:28 -0000 1.18
23 +++ ChangeLog 26 Apr 2009 16:29:27 -0000 1.19
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-tcltk/tls
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tls/ChangeLog,v 1.18 2007/12/24 04:08:28 matsuu Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tls/ChangeLog,v 1.19 2009/04/26 16:29:27 mescalinum Exp $
30 +
31 +*tls-1.6 (26 Apr 2009)
32 +
33 + 26 Apr 2009; Federico Ferri <mescalinum@g.o> +tls-1.6.ebuild:
34 + add tls-1.6, bug #267542
35
36 24 Dec 2007; MATSUU Takuto <matsuu@g.o> tls-1.5.0-r1.ebuild:
37 Added RESTRICT="test"
38
39
40
41 1.1 dev-tcltk/tls/tls-1.6.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tls/tls-1.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tcltk/tls/tls-1.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tls-1.6.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tls/tls-1.6.ebuild,v 1.1 2009/04/26 16:29:27 mescalinum Exp $
51
52 inherit eutils
53
54 MY_P="${PN}${PV}"
55 DESCRIPTION="TLS OpenSSL extension to Tcl."
56 HOMEPAGE="http://tls.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/tls/${MY_P}-src.tar.gz"
58
59 LICENSE="BSD"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
62 IUSE="tk"
63
64 RESTRICT="test"
65
66 DEPEND=">=dev-lang/tcl-8.3.3
67 dev-libs/openssl
68 tk? ( >=dev-lang/tk-8.3.3 )"
69
70 S="${WORKDIR}/${MY_P}"
71
72 src_compile() {
73 econf --with-ssl-dir=/usr || die
74 emake || die
75 }
76
77 src_install() {
78 einstall || die
79 dodoc ChangeLog README.txt
80 dohtml tls.htm
81 }