diff options
author | andreas <andreas@FreeBSD.org> | 1998-04-11 17:45:50 +0000 |
---|---|---|
committer | andreas <andreas@FreeBSD.org> | 1998-04-11 17:45:50 +0000 |
commit | 7c7a01646fa1100b5184aab738db3b32a24bbd46 (patch) | |
tree | d61c3d3341a8690e0c80188074890cae47e43b3a /x11-toolkits/qt33/Makefile | |
parent | c0c1110aa0a32d0f5527d9a64b8fe24a7a7301e5 (diff) | |
download | FreeBSD-ports-7c7a01646fa1100b5184aab738db3b32a24bbd46.zip FreeBSD-ports-7c7a01646fa1100b5184aab738db3b32a24bbd46.tar.gz |
Install a symlink from libqt.so.x.yy to libqt.so
Reason: the qt library very often changes the release number.
So every time you need to fix the configure script of KDE ports.
Since every KDE port checks libqt.so, it's much easier for Stefan
to maintain KDE and for us all to use the package instead of
hacking configure scripts again and again.
Diffstat (limited to 'x11-toolkits/qt33/Makefile')
-rw-r--r-- | x11-toolkits/qt33/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11-toolkits/qt33/Makefile b/x11-toolkits/qt33/Makefile index 698f8a9..f496c4e 100644 --- a/x11-toolkits/qt33/Makefile +++ b/x11-toolkits/qt33/Makefile @@ -3,7 +3,7 @@ # Date created: 30 Jul 1996 # Whom: searle@longacre.demon.co.uk # -# $Id: Makefile,v 1.13 1997/10/27 23:15:07 jkh Exp $ +# $Id: Makefile,v 1.14 1997/10/30 05:15:19 jkh Exp $ # DISTNAME= qt-1.31 @@ -102,6 +102,7 @@ post-configure: do-install: ${INSTALL_PROGRAM} $(WRKDIR)/qt-1.31/bin/moc $(X11BASE)/bin ${INSTALL_DATA} $(WRKDIR)/qt-1.31/lib/libqt.so.1.31 $(X11BASE)/lib + ${LN} -sf $(X11BASE)/lib/libqt.so.1.31 $(X11BASE)/lib/libqt.so ${LDCONFIG} -m $(PREFIX)/lib ${MKDIR} $(PREFIX)/include/X11/qt ${INSTALL_DATA} $(WRKDIR)/qt-1.31/include/* $(PREFIX)/include/X11/qt |