diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2004-11-10 07:36:46 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2004-11-10 07:36:46 +0000 |
commit | a98a4b0ccc585c256e80342144de744d4ed4f3f3 (patch) | |
tree | cabf45be1533502cf0fdfa100e3fafc28a93de97 /dev-tcltk | |
parent | fixed some invalid attributes in includes/dhcpd.h so that dhcp compiles using... (diff) | |
download | gentoo-2-a98a4b0ccc585c256e80342144de744d4ed4f3f3.tar.gz gentoo-2-a98a4b0ccc585c256e80342144de744d4ed4f3f3.tar.bz2 gentoo-2-a98a4b0ccc585c256e80342144de744d4ed4f3f3.zip |
deleted, caused conflicts with pam
Diffstat (limited to 'dev-tcltk')
-rw-r--r-- | dev-tcltk/expect/expect-5.40.0-r2.ebuild | 85 |
1 files changed, 0 insertions, 85 deletions
diff --git a/dev-tcltk/expect/expect-5.40.0-r2.ebuild b/dev-tcltk/expect/expect-5.40.0-r2.ebuild deleted file mode 100644 index 78354cdafb75..000000000000 --- a/dev-tcltk/expect/expect-5.40.0-r2.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/expect/expect-5.40.0-r2.ebuild,v 1.4 2004/10/30 04:31:30 agriffis Exp $ - -inherit 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 ~sparc ~x86" -IUSE="X" - -DEPEND=">=dev-lang/tcl-8.2 - X? ( >=dev-lang/tk-8.2 )" - -NON_MICRO_V=${P%.[0-9]} -S=${WORKDIR}/${NON_MICRO_V} - -src_unpack() { - unpack ${A} - cd ${S} - 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 -} - -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 --enable-shared || die "econf failed" - emake || die "emake failed" -} - -src_install () { - make install INSTALL_ROOT=${D} || die "make install failed" - - dodoc ChangeLog FAQ HISTORY NEWS README - docinto example - dodoc example/README - - local static_lib="lib${NON_MICRO_V/-/}.a" - rm ${D}/usr/lib/${NON_MICRO_V/-/}/${static_lib} - - # install example scripts and man pages - local scripts=$(make -qp | \ - sed -e 's/^SCRIPTS = //' -et -ed | head -n1) - exeinto /usr/bin/ - doexe ${scripts} - local scripts_manpages=$(make -qp | \ - sed -e 's/^_SCRIPTS_MANPAGES = //' -et -ed | head -n1) - cd example - for m in ${scripts_manpages}; do - mv ${m}.man ${m}.1 - doman ${m}.1 - done -} - |