diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2005-05-27 23:20:45 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2005-05-27 23:20:45 +0000 |
commit | d5b20225981c6b40c8b1ed27c5c1d8908d4e74cb (patch) | |
tree | bcab8cf61a312dd9fdffa4c2655e6e7106845232 /dev-tcltk/expect/expect-5.43.0.ebuild | |
parent | initial import #93938 (diff) | |
download | gentoo-2-d5b20225981c6b40c8b1ed27c5c1d8908d4e74cb.tar.gz gentoo-2-d5b20225981c6b40c8b1ed27c5c1d8908d4e74cb.tar.bz2 gentoo-2-d5b20225981c6b40c8b1ed27c5c1d8908d4e74cb.zip |
Version bumped, Bug 93702.
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-tcltk/expect/expect-5.43.0.ebuild')
-rw-r--r-- | dev-tcltk/expect/expect-5.43.0.ebuild | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/dev-tcltk/expect/expect-5.43.0.ebuild b/dev-tcltk/expect/expect-5.43.0.ebuild new file mode 100644 index 000000000000..56c6fa6b8a0b --- /dev/null +++ b/dev-tcltk/expect/expect-5.43.0.ebuild @@ -0,0 +1,103 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.43.0.ebuild,v 1.1 2005/05/27 23:20:45 matsuu Exp $ + +inherit eutils gnuconfig + +DESCRIPTION="tool for automating interactive applications" +HOMEPAGE="http://expect.nist.gov/" +SRC_URI="http://expect.nist.gov/src/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="X doc" + +# We need dejagnu for src_test, but dejagnu needs expect +# to compile/run, so we cant add dejagnu to DEPEND :/ +RDEPEND=">=dev-lang/tcl-8.2 + X? ( >=dev-lang/tk-8.2 )" +DEPEND="${RDEPEND} + =sys-devel/autoconf-2.1*" + +NON_MICRO_V=${P%.[0-9]} +S=${WORKDIR}/${NON_MICRO_V} + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${PN}-5.42.1-multilib.patch + + # fix the rpath being set to /var/tmp/portage/... + epatch ${FILESDIR}/${PN}-5.39.0-libdir.patch + + sed -i 's#/usr/local/bin#/usr/bin#' expect.man + sed -i 's#/usr/local/bin#/usr/bin#' expectk.man + #stops any example scripts being installed by default + sed -i \ + -e '/^install:/s/install-libraries //' \ + -e 's/^SCRIPTS_MANPAGES = /_&/' \ + Makefile.in + gnuconfig_update + WANT_AUTOCONF=2.1 autoconf +} + +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/$(get_libdir) --with-tclinclude=/usr/$(get_libdir)/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/$(get_libdir)" + else + #configure knows that tk depends on X so just disable X + myconf="$myconf --without-x" + fi + + econf $myconf --enable-shared || die "econf failed" + emake || die "emake failed" +} + +src_test() { + # we need dejagnu to do tests ... but dejagnu needs + # expect ... so don't do tests unless we have dejagnu + type -p runtest || return 0 + make check || die "make check failed" +} + +src_install() { + dodir /usr/$(get_libdir) + make install INSTALL_ROOT=${D} || die "make install failed" + + dodoc ChangeLog FAQ HISTORY NEWS README + + local static_lib="lib${NON_MICRO_V/-/}.a" + rm ${D}/usr/$(get_libdir)/${NON_MICRO_V/-/}/${static_lib} + + #install examples if 'doc' is set + if use doc ; then + docinto examples + local scripts=$(make -qp | \ + sed -e 's/^SCRIPTS = //' -et -ed | head -n1) + exeinto /usr/share/doc/${PF}/examples + doexe ${scripts} + local scripts_manpages=$(make -qp | \ + sed -e 's/^_SCRIPTS_MANPAGES = //' -et -ed | head -n1) + for m in ${scripts_manpages}; do + dodoc example/${m}.man + done + dodoc example/README + fi +} |