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/tclx/tclx-8.4-r2.ebuild

54 lines
1.1 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclx/tclx-8.4-r2.ebuild,v 1.5 2012/07/03 16:28:40 ranger Exp $
EAPI=4
inherit eutils multilib
DESCRIPTION="A set of extensions to TCL"
HOMEPAGE="http://tclx.sourceforge.net"
SRC_URI="mirror://sourceforge/tclx/${PN}${PV}.tar.bz2"
LICENSE="BSD"
IUSE="tk threads"
SLOT="0"
KEYWORDS="~alpha amd64 ppc ~sparc x86 ~amd64-linux ~x86-linux ~x86-macos"
DEPEND="
>=dev-lang/tcl-8.4.6
tk? ( >=dev-lang/tk-8.4.6 )"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/${PN}${PV}
# tests broken, bug #279283
RESTRICT="test"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-relid.patch \
"${FILESDIR}"/${P}-varinit.patch \
"${FILESDIR}"/${P}-ldflags.patch
}
src_configure() {
econf \
$(use_enable tk) \
$(use_enable threads) \
--enable-shared \
--with-tcl="${EPREFIX}/usr/$(get_libdir)/"
# adjust install_name on darwin
if [[ ${CHOST} == *-darwin* ]]; then
sed -i \
-e 's:^\(SHLIB_LD\W.*\)$:\1 -install_name ${pkglibdir}/$@:' \
"${S}"/Makefile || die 'sed failed'
fi
}
src_install() {
default
doman doc/*.[n3]
}