diff options
author | Geert Bevin <gbevin@gentoo.org> | 2002-01-15 00:57:57 +0000 |
---|---|---|
committer | Geert Bevin <gbevin@gentoo.org> | 2002-01-15 00:57:57 +0000 |
commit | b129e06fa4bc7a5a2e34b8c28398aeed09d8e0e9 (patch) | |
tree | 6c9823f913f47025c1eff67a02e605b011357280 /dev-tcltk | |
parent | Integrated the new tcl-tk scheme. This hasn't been tested much, so people (diff) | |
download | historical-b129e06fa4bc7a5a2e34b8c28398aeed09d8e0e9.tar.gz historical-b129e06fa4bc7a5a2e34b8c28398aeed09d8e0e9.tar.bz2 historical-b129e06fa4bc7a5a2e34b8c28398aeed09d8e0e9.zip |
initial commit
Diffstat (limited to 'dev-tcltk')
-rw-r--r-- | dev-tcltk/expect/expect-5.33.0.ebuild | 57 | ||||
-rw-r--r-- | dev-tcltk/expect/files/digest-expect-5.33.0 | 1 |
2 files changed, 58 insertions, 0 deletions
diff --git a/dev-tcltk/expect/expect-5.33.0.ebuild b/dev-tcltk/expect/expect-5.33.0.ebuild new file mode 100644 index 000000000000..6e232824799b --- /dev/null +++ b/dev-tcltk/expect/expect-5.33.0.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Tod Neidt <tneidt@fidnet.com> +# /home/cvsroot/gentoo-x86/skel.build,v 1.7 2001/08/25 21:15:08 chadh Exp + +#remove the trailing ".0" from the tarball version +S=${WORKDIR}/${P%.0} + +DESCRIPTION="Expect is a tool for automating interactive applications" + +SRC_URI="http://expect.nist.gov/src/${P}.tar.gz" + +HOMEPAGE="http://expect.nist.gov/" + +#tcl and tk really need to be broken out into their own ebuilds, +#makes it hard to do conditional X? depends +DEPEND=">=dev-lang/tcl-8.2 + X? ( >=dev-lang/tk-8.2 )" + +RDEPEND="${DEPEND}" + +src_compile() { + + local myconf + local tclv + local tkv + # Find the version of tcl/tk that has headers installed. + # This will be the most recently merged, not necessarily the highest + # version number. + tclv=$(grep TCL_VER /usr/include/tcl.h | sed 's/^.*"\(.*\)".*/\1/') + #tkv isn't really needed, included for symmetry and the future + tkv=$( grep TK_VER /usr/include/tk.h | sed 's/^.*"\(.*\)".*/\1/') + + #configure needs to find the files tclConfig.sh and tclInt.h + myconf="--with-tcl=/usr/lib --with-tclinclude=/usr/lib/tcl$tclv/include/generic" + + if use X; then + #--with-x is enabled by default + #configure needs to find the file tkConfig.sh and tk.h + #tk.h is in /usr/lib so don't need to explicitly set --with-tkinclude + myconf="$myconf --with-tk=/usr/lib" + else + #configure knows that tk depends on X so just disable X + myconf="$myconf --without-x" + fi + + econf $myconf || die + emake || die + +} + +src_install () { + + einstall || die + +} + diff --git a/dev-tcltk/expect/files/digest-expect-5.33.0 b/dev-tcltk/expect/files/digest-expect-5.33.0 new file mode 100644 index 000000000000..8f44422e7119 --- /dev/null +++ b/dev-tcltk/expect/files/digest-expect-5.33.0 @@ -0,0 +1 @@ +MD5 12bbd009b67deadc494b0577b494163c expect-5.33.0.tar.gz 495616 |