You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-tcltk/tcllib/tcllib-1.16.ebuild

60 lines
1.1 KiB

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/tcllib-1.16.ebuild,v 1.3 2015/03/20 10:13:29 jlec Exp $
EAPI=5
inherit eutils virtualx
MY_PN=Tcllib
MY_P=${MY_PN}-${PV}
DESCRIPTION="Tcl Standard Library"
HOMEPAGE="http://www.tcl.tk/software/tcllib/"
SRC_URI="mirror://sourceforge//project/${PN}/${PN}/${PV}/${MY_P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
IUSE="examples"
KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos"
RDEPEND="
dev-lang/tcl:0=
dev-tcltk/tdom
"
DEPEND="${RDEPEND}"
DOCS=( DESCRIPTION.txt STATUS )
S="${WORKDIR}"/${MY_P}
PATCHES=( "${FILESDIR}"/${P}-XSS-vuln.patch )
src_prepare() {
has_version ">=dev-lang/tcl-8.6" && \
PATCHES+=( "${FILESDIR}"/${P}-test.patch )
epatch ${PATCHES[@]}
sed \
-e '/testsNeedTcl/s:8.5:8.6:g' \
-i modules/tar/tar.test || die
}
src_test() {
Xemake test_batch
}
src_install() {
default
dodoc devdoc/*.txt
dohtml devdoc/*.html
if use examples ; then
for f in $(find examples -type f); do
docinto $(dirname $f)
dodoc $f
done
fi
}