diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-05-02 06:01:36 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-05-02 06:01:36 +0000 |
commit | 73f72fed3b6009f178bd5071979b15d62922bcaf (patch) | |
tree | 1ab2564ff8496c0c7395efdf12713e272205a4e7 /x11-toolkits/tix | |
parent | Upgrade to 1.2.2. (diff) |
Make port install shared library as library.so.1 and not just library
Also change mv to ${CP} in makefile to support make reinstall
Notes
Notes:
svn path=/head/; revision=18304
Diffstat (limited to 'x11-toolkits/tix')
-rw-r--r-- | x11-toolkits/tix/Makefile | 6 | ||||
-rw-r--r-- | x11-toolkits/tix/files/patch-aa | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/x11-toolkits/tix/Makefile b/x11-toolkits/tix/Makefile index b344a0740235..9207f4ec3353 100644 --- a/x11-toolkits/tix/Makefile +++ b/x11-toolkits/tix/Makefile @@ -3,7 +3,7 @@ # Date created: 22 December 1996 # Whom: Thomas Gellekum <tg@freebsd.org> # -# $Id: Makefile,v 1.22 1999/04/07 08:44:24 obrien Exp $ +# $Id: Makefile,v 1.23 1999/04/12 08:53:11 asami Exp $ # DISTNAME= Tix4.1.0.006 @@ -58,7 +58,7 @@ post-install: @(cd ${WRKSRC}/.. && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${INSTALL_TARGET}) @${MKDIR} ${PREFIX}/man/man1 - @mv ${PREFIX}/man/mann/tixwish.1 ${PREFIX}/man/man1 + @${CP} ${PREFIX}/man/mann/tixwish.1 ${PREFIX}/man/man1 ${LN} -fs ${PREFIX}/bin/tixwish4.1.8.0 ${PREFIX}/bin/tixwish ${LN} -fs ${TIX_LIB_FILE} ${PREFIX}/lib/${TIX_LIB} ${LN} -fs ${TIXSAM_LIB_FILE} ${PREFIX}/lib/${TIXSAM_LIB} @@ -69,6 +69,6 @@ post-install: .endfor ${RM} ${PREFIX}/include/tix/generic/tix.h @# These two files are the same - /bin/ln -sf ../../tix.h ${PREFIX}/include/tix/generic + ${LN} -sf ../../tix.h ${PREFIX}/include/tix/generic .include <bsd.port.post.mk> diff --git a/x11-toolkits/tix/files/patch-aa b/x11-toolkits/tix/files/patch-aa index 174d0b820436..38e6a37481b6 100644 --- a/x11-toolkits/tix/files/patch-aa +++ b/x11-toolkits/tix/files/patch-aa @@ -70,7 +70,7 @@ # VERSION=${BIN_VERSION} - eval "TIX_SAM_FILE=libtixsam${TCL_SHARED_LIB_SUFFIX}" -+ eval "TIX_SAM_FILE=libtixsam${LIB_VERSION}" ++ eval "TIX_SAM_FILE=libtixsam${LIB_VERSION}.so.1" TIX_MAKE_SAM="\${SHLIB_LD} -o ${TIX_SAM_FILE} \${TIX_SAM_OBJS} ${SHLIB_LD_LIBS}" else |