diff options
author | markd <markd@pkgsrc.org> | 2013-06-10 21:49:21 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2013-06-10 21:49:21 +0000 |
commit | 073875716b93d63c487aa0dc9b11be81336111f8 (patch) | |
tree | eb31abeafa2c8dd99160af688165397bb6044ded /lang/tcl-expect | |
parent | 1e040f512be081c7c550b8c07862624fc565fbfc (diff) | |
download | pkgsrc-073875716b93d63c487aa0dc9b11be81336111f8.tar.gz |
Add symbolic link to shared library in location that tclsh scripts (such
as unbuffer) expect to find it. Bump PKGREVISION.
Diffstat (limited to 'lang/tcl-expect')
-rw-r--r-- | lang/tcl-expect/Makefile | 4 | ||||
-rw-r--r-- | lang/tcl-expect/PLIST | 3 | ||||
-rw-r--r-- | lang/tcl-expect/distinfo | 4 | ||||
-rw-r--r-- | lang/tcl-expect/patches/patch-Makefile.in | 5 |
4 files changed, 9 insertions, 7 deletions
diff --git a/lang/tcl-expect/Makefile b/lang/tcl-expect/Makefile index 9ad554c92b4..e5ef9f2e289 100644 --- a/lang/tcl-expect/Makefile +++ b/lang/tcl-expect/Makefile @@ -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 diff --git a/lang/tcl-expect/PLIST b/lang/tcl-expect/PLIST index 74c901d6c33..c5fffe9ce43 100644 --- a/lang/tcl-expect/PLIST +++ b/lang/tcl-expect/PLIST @@ -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 @@ include/tcldbg.h 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 diff --git a/lang/tcl-expect/distinfo b/lang/tcl-expect/distinfo index 39654b6bbff..9fd9027ef86 100644 --- a/lang/tcl-expect/distinfo +++ b/lang/tcl-expect/distinfo @@ -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 diff --git a/lang/tcl-expect/patches/patch-Makefile.in b/lang/tcl-expect/patches/patch-Makefile.in index 3d6cfa1835d..cfa90bdaa7a 100644 --- a/lang/tcl-expect/patches/patch-Makefile.in +++ b/lang/tcl-expect/patches/patch-Makefile.in @@ -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 @@ New Makefile.in patch, no libtool @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); \ |