blob: 09e33f98425ab786a57ac86719d76f988905763e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 2003 Arcady Genkin <agenkin@gentoo.org>.
# Distributed under the terms of the GNU General Public License v2.
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tls/tls-1.4.1.ebuild,v 1.1 2003/02/01 02:36:21 agenkin Exp $
DESCRIPTION="TLS OpenSSL extension to Tcl."
HOMEPAGE="http://tls.sourceforge.net/"
DEPEND=">=dev-lang/tcl-8.3.3
>=dev-lang/tk-8.3.3
dev-libs/openssl"
LICENSE="BSD"
KEYWORDS="~x86"
SLOT="0"
SRC_URI="mirror://sourceforge/tls/${PN}${PV}-src.tar.gz"
S=${WORKDIR}/tls1.4
src_compile() {
econf --with-ssl-dir=/usr || die
make || die
}
src_install() {
einstall || die
dodoc ChangeLog README.txt license.terms
}
|