blob: 3e38e7bd3ecd457eb76c7d6e6ad3d7b742d62fe2 (
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/tclxml-expat/tclxml-expat-2.4.ebuild,v 1.1 2003/02/03 01:36:56 agenkin Exp $
DESCRIPTION="Tcl wrapper libraries for expat XML parser."
HOMEPAGE="http://tclxml.sourceforge.net/"
DEPEND=">=dev-lang/tcl-8.3.3
>=dev-libs/expat-1.95.4
=dev-tcltk/tclxml-${PV}*"
LICENSE="BSD"
KEYWORDS="-x86"
SLOT="0"
SRC_URI="mirror://sourceforge/tclxml/tclxml-${PV}.tar.gz"
S=${WORKDIR}/tclxml-${PV}/expat
src_compile() {
econf --with-tcl=/usr/lib --with-Tclxml=/usr/lib || die
make || die
}
src_install() {
einstall || die
dohtml expat.html
}
|