* [Buildroot] [PATCH] expect: new package 5.45
@ 2014-03-03 23:25 Andrew Ruder
0 siblings, 0 replies; only message in thread
From: Andrew Ruder @ 2014-03-03 23:25 UTC (permalink / raw)
To: buildroot
Signed-off-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
---
NOTE: This patch has only been tested as a dependency on the tcl 8.6.1
patch. If that patch is not acceptable, it may be worthwhile waiting
on the tcl patch before applying this one.
package/Config.in | 1 +
package/expect/Config.in | 8 ++
.../expect-0001-cross-compile-defaults.patch | 135 +++++++++++++++++++++
package/expect/expect.mk | 21 ++++
4 files changed, 165 insertions(+)
create mode 100644 package/expect/Config.in
create mode 100644 package/expect/expect-0001-cross-compile-defaults.patch
create mode 100644 package/expect/expect.mk
diff --git a/package/Config.in b/package/Config.in
index c099138..a57f1c3 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -471,6 +471,7 @@ source "package/ruby/Config.in"
source "package/tcl/Config.in"
if BR2_PACKAGE_TCL
menu "tcl libraries/modules"
+source "package/expect/Config.in"
source "package/tcllib/Config.in"
endmenu
endif
diff --git a/package/expect/Config.in b/package/expect/Config.in
new file mode 100644
index 0000000..3540700
--- /dev/null
+++ b/package/expect/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_EXPECT
+ bool "expect"
+ depends on BR2_USE_MMU # fork()
+ help
+ Expect is a tool for automating interactive applications
+ such as telnet, ftp, passwd, fsck, rlogin, ssh, tip, etc.
+
+ http://expect.sourceforge.net/
diff --git a/package/expect/expect-0001-cross-compile-defaults.patch b/package/expect/expect-0001-cross-compile-defaults.patch
new file mode 100644
index 0000000..05183c7
--- /dev/null
+++ b/package/expect/expect-0001-cross-compile-defaults.patch
@@ -0,0 +1,135 @@
+Index: expect-5.45/configure.in
+===================================================================
+--- expect-5.45.orig/configure.in 2013-11-14 07:59:58.732100595 -0600
++++ expect-5.45/configure.in 2013-11-14 07:59:58.732100595 -0600
+@@ -481,7 +481,7 @@
+ ,
+ AC_MSG_RESULT(no)
+ ,
+- AC_MSG_ERROR([Expect can't be cross compiled])
++ AC_MSG_RESULT(no)
+ )
+
+ AC_MSG_CHECKING([if any value exists for WNOHANG])
+@@ -506,7 +506,8 @@
+ AC_MSG_RESULT(no)
+ AC_DEFINE(WNOHANG_BACKUP_VALUE, 1)
+ ,
+- AC_MSG_ERROR([Expect can't be cross compiled])
++ AC_MSG_RESULT(yes)
++ AC_DEFINE(WNOHANG_BACKUP_VALUE, 1)
+ )
+
+ #
+@@ -574,7 +575,7 @@
+ AC_DEFINE(REARM_SIG)
+ ,
+ AC_MSG_RESULT(no)
+-, AC_MSG_WARN([Expect can't be cross compiled])
++, AC_MSG_RESULT(no)
+ )
+
+ # HPUX7 has trouble with the big cat so split it
+@@ -725,7 +726,7 @@
+ ,
+ AC_MSG_RESULT(no)
+ ,
+- AC_MSG_ERROR([Expect can't be cross compiled])
++ AC_MSG_RESULT(no)
+ )
+
+ # mach systems have include files for unimplemented features
+@@ -749,7 +750,9 @@
+ ,
+ AC_MSG_RESULT(no)
+ ,
+- AC_MSG_ERROR([Expect can't be cross compiled])
++ AC_DEFINE(HAVE_TERMIO)
++ PTY_TYPE=termios
++ AC_MSG_RESULT(yes)
+ )
+
+ # now check for the new style ttys (not yet posix)
+@@ -771,7 +774,9 @@
+ ,
+ AC_MSG_RESULT(no)
+ ,
+- AC_MSG_ERROR([Expect can't be cross compiled])
++ AC_DEFINE(HAVE_TERMIOS)
++ PTY_TYPE=termios
++ AC_MSG_RESULT(yes)
+ )
+ fi
+
+@@ -794,7 +799,7 @@
+ ,
+ AC_MSG_RESULT(no)
+ ,
+- AC_MSG_ERROR([Expect can't be cross compiled])
++ AC_MSG_RESULT(no)
+ )
+
+ AC_MSG_CHECKING([if TIOCGWINSZ in termios.h])
+@@ -816,7 +821,7 @@
+ ,
+ AC_MSG_RESULT(no)
+ ,
+- AC_MSG_ERROR([Expect can't be cross compiled])
++ AC_MSG_RESULT(no)
+ )
+
+ # finally check for Cray style ttys
+@@ -837,7 +842,7 @@
+ ,
+ AC_MSG_RESULT(no)
+ ,
+- AC_MSG_ERROR([Expect can't be cross compiled])
++ AC_MSG_RESULT(no)
+ )
+
+ #
+@@ -869,7 +874,9 @@
+ AC_HAVE_FUNCS(getpty)
+
+ # following test sets SETPGRP_VOID if setpgrp takes 0 args, else takes 2
+-AC_FUNC_SETPGRP
++cat >>expect_cf.h <<\_ACEOF
++#define SETPGRP_VOID 1
++_ACEOF
+
+ #
+ # check for timezones
+@@ -889,7 +896,7 @@
+ AC_MSG_RESULT(yes),
+ AC_MSG_RESULT(no)
+ ,
+- AC_MSG_ERROR([Expect can't be cross compiled])
++ AC_MSG_RESULT(yes)
+ )
+
+
+Index: expect-5.45/Makefile.in
+===================================================================
+--- expect-5.45.orig/Makefile.in 2013-11-14 07:59:58.732100595 -0600
++++ expect-5.45/Makefile.in 2013-11-14 07:59:58.732100595 -0600
+@@ -393,7 +393,7 @@
+ @LDFLAGS_DEFAULT@ \
+ -o expect exp_main_exp.o \
+ @EXP_BUILD_LIB_SPEC@ \
+- @TCL_LIB_SPEC@ \
++ @TCL_BUILD_LIB_SPEC@ \
+ @TCL_DL_LIBS@ @PKG_LIBS@ @MATH_LIBS@ \
+ @TCL_CC_SEARCH_FLAGS@ \
+ @EXP_CC_SEARCH_FLAGS@
+Index: expect-5.45/tclconfig/tcl.m4
+===================================================================
+--- expect-5.45.orig/tclconfig/tcl.m4 2010-11-09 13:42:10.000000000 -0600
++++ expect-5.45/tclconfig/tcl.m4 2013-11-14 08:02:08.424100580 -0600
+@@ -412,6 +412,7 @@
+ AC_SUBST(TCL_LIB_FILE)
+ AC_SUBST(TCL_LIB_FLAG)
+ AC_SUBST(TCL_LIB_SPEC)
++ AC_SUBST(TCL_BUILD_LIB_SPEC)
+
+ AC_SUBST(TCL_STUB_LIB_FILE)
+ AC_SUBST(TCL_STUB_LIB_FLAG)
diff --git a/package/expect/expect.mk b/package/expect/expect.mk
new file mode 100644
index 0000000..91fa019
--- /dev/null
+++ b/package/expect/expect.mk
@@ -0,0 +1,21 @@
+################################################################################
+#
+# expect
+#
+################################################################################
+
+EXPECT_VERSION = 5.45
+EXPECT_SOURCE = expect$(EXPECT_VERSION).tar.gz
+EXPECT_SITE = http://downloads.sourceforge.net/project/expect/Expect/$(EXPECT_VERSION)
+EXPECT_LICENSE = Public domain
+EXPECT_LICENSE_FILES = README
+
+EXPECT_AUTORECONF = YES
+EXPECT_DEPENDENCIES = tcl
+EXPECT_CONF_OPT = --with-tcl=$(BUILD_DIR)/tcl-$(TCL_VERSION)/unix
+
+# Since we don't want examples installed
+EXPECT_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install-binaries
+
+$(eval $(autotools-package))
+
--
1.9.0.rc3.12.gbc97e2d
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2014-03-03 23:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-03 23:25 [Buildroot] [PATCH] expect: new package 5.45 Andrew Ruder
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.