diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-03-08 13:13:16 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-03-08 13:13:16 +0100 |
commit | 4e3cdd73584aed80a843c03079c888c011b46aa6 (patch) | |
tree | 47db5cdd356023005772c5df0efe4df569296cd2 /package/tcl | |
parent | a2b8ffef08ab19fc79e8f07e1ee859e2039793dd (diff) | |
parent | 71d64690550602953eea0737507cbc47999b4126 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/tcl')
-rw-r--r-- | package/tcl/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package/tcl/Makefile b/package/tcl/Makefile index 964bb6250..6dbed8f03 100644 --- a/package/tcl/Makefile +++ b/package/tcl/Makefile @@ -17,7 +17,7 @@ WRKSRC= ${WRKDIST}/unix include ${TOPDIR}/mk/package.mk -$(eval $(call PKG_template,TCL,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) +$(eval $(call PKG_template,TCL,tcl,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) TARGET_LDFLAGS+= -ldl CONFIGURE_ENV+= tcl_cv_strstr_unbroken=ok \ @@ -29,9 +29,12 @@ CONFIGURE_ARGS+= --enable-man-symlinks \ --disable-rpath INSTALL_TARGET= install-binaries install-libraries -post-install: +tcl-install: ${INSTALL_DIR} ${IDIR_TCL}/usr/lib ${IDIR_TCL}/usr/bin ${CP} ${WRKINST}/usr/bin/* ${IDIR_TCL}/usr/bin + cd ${IDIR_TCL}/usr/bin && ln -sf tclsh8.5 tclsh ${CP} ${WRKINST}/usr/lib/*.so* ${IDIR_TCL}/usr/lib + ${CP} ${WRKINST}/usr/lib/tcl8 ${IDIR_TCL}/usr/lib + ${CP} ${WRKINST}/usr/lib/tcl8.5 ${IDIR_TCL}/usr/lib include ${TOPDIR}/mk/pkg-bottom.mk |