diff options
author | Stanislav Brabec <utx@gentoo.org> | 2003-04-23 17:23:35 +0000 |
---|---|---|
committer | Stanislav Brabec <utx@gentoo.org> | 2003-04-23 17:23:35 +0000 |
commit | 8327ddef955050eafc27032b439ba25adbba1fd0 (patch) | |
tree | f45a4f54c139b1b1712f439d941938e4f31aedcf /dev-tcltk/tclx/tclx-8.3-r1.ebuild | |
parent | fixed for tcl/tk 8.4 (diff) | |
download | historical-8327ddef955050eafc27032b439ba25adbba1fd0.tar.gz historical-8327ddef955050eafc27032b439ba25adbba1fd0.tar.bz2 historical-8327ddef955050eafc27032b439ba25adbba1fd0.zip |
build against tcl/tk 8.4
Diffstat (limited to 'dev-tcltk/tclx/tclx-8.3-r1.ebuild')
-rw-r--r-- | dev-tcltk/tclx/tclx-8.3-r1.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/dev-tcltk/tclx/tclx-8.3-r1.ebuild b/dev-tcltk/tclx/tclx-8.3-r1.ebuild new file mode 100644 index 000000000000..6f2e1eae566a --- /dev/null +++ b/dev-tcltk/tclx/tclx-8.3-r1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclx/tclx-8.3-r1.ebuild,v 1.1 2003/04/23 17:23:35 utx Exp $ + +inherit flag-o-matic + +IUSE="X" + +DESCRIPTION="A set of extensions to TCL" +HOMEPAGE="http://www.neosoft.com/TclX/" +SRC_URI="ftp://ftp.slackware.com/pub/slackware/slackware-8.1/source/tcl/tclx/${PN}${PV}.tar.gz + ftp://ftp.scriptics.com/pub/tcl/tcl8_4/tcl8.4.2-src.tar.gz + ftp://ftp.scriptics.com/pub/tcl/tcl8_4/tk8.4.2-src.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86 ~ppc ~alpha" + +DEPEND=">=dev-lang/tcl-8.4.2 + X? >=dev-lang/tk-8.4.2" + +S=${WORKDIR}/${PN}${PV} + +[ $ARCH = alpha ] && append-flags -fPIC + +src_unpack() { + unpack ${A} ; cd ${S} + patch -p1 < ${FILESDIR}/${P}-makecfg.patch || die + patch -p1 < ${FILESDIR}/${P}-argv.patch || die + patch -p1 < ${FILESDIR}/${P}-varinit.patch || die +} + +src_compile() { + # we have to configure and build tcl before we can do tclx + cd ${WORKDIR}/tcl8.4.2/unix + econf + emake CFLAGS="${CFLAGS}" || die "emake in tcl/unix failed" + + local myconf="--with-tcl=${WORKDIR}/tcl8.4.2/unix --enable-shared" + + if [ `use X` ] ; then + # configure and build tk + cd ${WORKDIR}/tk8.4.2/unix + econf + emake CFLAGS="${CFLAGS}" || die + myconf="${myconf} --with-tk=${WORKDIR}/tk8.4.2/unix" + else + myconf="${myconf} --enable-tk=no" + fi + + # configure and build tclx + cd ${S}/unix + econf ${myconf} + make CFLAGS="${CFLAGS}" || die +} + +src_install() { + echo "installing tclx" + cd ${S}/unix + make INSTALL_ROOT=${D} install + cd ${S} + dodoc CHANGES README TO-DO doc/CONVERSION-NOTES + doman doc/*.[n3] +} |