Mon Jun 10 21:49:21 2013 UTC ()
Add symbolic link to shared library in location that tclsh scripts (such
as unbuffer) expect to find it.  Bump PKGREVISION.


(markd)
diff -r1.28 -r1.29 pkgsrc/lang/tcl-expect/Makefile
diff -r1.13 -r1.14 pkgsrc/lang/tcl-expect/PLIST
diff -r1.17 -r1.18 pkgsrc/lang/tcl-expect/distinfo
diff -r1.2 -r1.3 pkgsrc/lang/tcl-expect/patches/patch-Makefile.in

cvs diff -r1.28 -r1.29 pkgsrc/lang/tcl-expect/Makefile (expand / switch to context diff)
--- pkgsrc/lang/tcl-expect/Makefile 2013/03/26 11:41:01 1.28
+++ pkgsrc/lang/tcl-expect/Makefile 2013/06/10 21:49:21 1.29
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.28 2013/03/26 11:41:01 jperkin Exp $
+# $NetBSD: Makefile,v 1.29 2013/06/10 21:49:21 markd Exp $
 
 .include "Makefile.common"
 
 PKGNAME=	tcl-expect-${EXPECT_VERSION}
-PKGREVISION=	1
+PKGREVISION=	2
 CATEGORIES=	lang
 
 MAINTAINER=	pkgsrc-users@NetBSD.org

cvs diff -r1.13 -r1.14 pkgsrc/lang/tcl-expect/PLIST (expand / switch to context diff)
--- pkgsrc/lang/tcl-expect/PLIST 2012/08/21 21:33:58 1.13
+++ pkgsrc/lang/tcl-expect/PLIST 2013/06/10 21:49:21 1.14
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.13 2012/08/21 21:33:58 marino Exp $
+@comment $NetBSD: PLIST,v 1.14 2013/06/10 21:49:21 markd Exp $
 bin/autoexpect
 bin/autopasswd
 bin/cryptdir
@@ -28,6 +28,7 @@
 lib/libexpect${SONUM}.a
 lib/libexpect${SONUM}.so
 lib/libexpect${SONUM}.so.1.0
+lib/tcl/expect${BASEVER}/libexpect${SONUM}.so
 lib/tcl/expect${BASEVER}/pkgIndex.tcl
 man/man1/autoexpect.1
 man/man1/cryptdir.1

cvs diff -r1.17 -r1.18 pkgsrc/lang/tcl-expect/distinfo (expand / switch to context diff)
--- pkgsrc/lang/tcl-expect/distinfo 2013/03/26 11:41:01 1.17
+++ pkgsrc/lang/tcl-expect/distinfo 2013/06/10 21:49:21 1.18
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.17 2013/03/26 11:41:01 jperkin Exp $
+$NetBSD: distinfo,v 1.18 2013/06/10 21:49:21 markd Exp $
 
 SHA1 (expect5.45.tar.gz) = e634992cab35b7c6931e1f21fbb8f74d464bd496
 RMD160 (expect5.45.tar.gz) = edffe881ee45abe6e9aa150ea5958a04d0ffeab0
 Size (expect5.45.tar.gz) = 628808 bytes
-SHA1 (patch-Makefile.in) = eb44dad343e841fe825dd18ed7027f575bdd2e33
+SHA1 (patch-Makefile.in) = 6f38c1d356ab206c0d00a8b465434994bc787bcf
 SHA1 (patch-configure) = a16c833e61d23f63abff1413522b99cd2251bc34

cvs diff -r1.2 -r1.3 pkgsrc/lang/tcl-expect/patches/patch-Makefile.in (expand / switch to context diff)
--- pkgsrc/lang/tcl-expect/patches/patch-Makefile.in 2013/03/26 11:41:01 1.2
+++ pkgsrc/lang/tcl-expect/patches/patch-Makefile.in 2013/06/10 21:49:21 1.3
@@ -1,4 +1,4 @@
-$NetBSD: patch-Makefile.in,v 1.2 2013/03/26 11:41:01 jperkin Exp $
+$NetBSD: patch-Makefile.in,v 1.3 2013/06/10 21:49:21 markd Exp $
 
 New Makefile.in patch, no libtool
 
@@ -54,11 +54,12 @@
  	@list='$(PKG_TCL_SOURCES)'; for p in $$list; do \
  	  if test -f $(srcdir)/$$p; then \
  	    destp=`basename $$p`; \
-@@ -554,9 +564,10 @@ install-lib-binaries:
+@@ -554,9 +564,11 @@ install-lib-binaries:
  	    $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkglibdir)/$$destp; \
  	  fi; \
  	done
 +	mkdir -p $(DESTDIR)$(pkglibdir)/tcl/expect$(PACKAGE_VERSION)
++	ln -fs ../../$(PKG_LIB_FILE) $(DESTDIR)$(pkglibdir)/tcl/expect$(PACKAGE_VERSION)/
  	@if test "x$(SHARED_BUILD)" = "x1"; then \
  	    echo " Install pkgIndex.tcl $(DESTDIR)$(pkglibdir)"; \
 -	    $(INSTALL_DATA) pkgIndex.tcl $(DESTDIR)$(pkglibdir); \