From 63e44ba845351114773cc3c18846cac95bc4be15 Mon Sep 17 00:00:00 2001 From: will Date: Sat, 24 Mar 2001 22:15:59 +0000 Subject: Bring in my fixes for KDE2 for users of XFree86 4.0.x. Basically, what this involves is this: Cull GL from Qt by default, but still provide a Qt+GL library that may or may not have threads. Then also provide a Qt library that has threads but not GL. This allows us to make KDE2 depend on a library that will *not* have threads, ever. Threads will be revisited at a later date. Ports that require GL support need to be updated to use the hacked library, libqtgl.so.4. The net result is that we bloat our qt2 package by 1.5-2.5MB for compatability. Also, static qt will not have GL support. Introduce bsd.kde.mk, which will be tested on bento before becoming fully activated. Replace qt22-static with qt2-static, since it's just a proxy. Update qt-designer to depend on qt23. Also make the old hack to package the correct lib obsolete by using PLIST_SUB instead. Miscellaneous changes: remove LIBQTFILE from CONFIGURE_ENV, it's not used anymore. Solve namespace pollution problems with the devel/pth and devel/libgnugetopt ports. Hopefully. Suggested by: ade, asami, sobomax (bsd.kde.mk) Repocopied by: asami (qt22-static --> qt2-static) --- converters/kdesupport2/Makefile | 36 ++++++------------------------------ 1 file changed, 6 insertions(+), 30 deletions(-) (limited to 'converters/kdesupport2/Makefile') diff --git a/converters/kdesupport2/Makefile b/converters/kdesupport2/Makefile index 2cbfda0eb7e6..1d4896ca12c8 100644 --- a/converters/kdesupport2/Makefile +++ b/converters/kdesupport2/Makefile @@ -17,46 +17,22 @@ LIB_DEPENDS= png.4:${PORTSDIR}/graphics/png \ jpeg.9:${PORTSDIR}/graphics/jpeg USE_QT2= yes -MOC= ${X11BASE}/bin/moc2 +MOC?= ${X11BASE}/bin/moc2 USE_BZIP2= yes USE_NEWGCC= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes - -.include - -# Hack to make pthread support work correctly. Even if we have a -# libqt2-mt, it may not be wise to build with it if we don't have -# a threads stub for X. -.if exists(${X11BASE}/lib/libqt2-mt.so) -.if exists(${X11BASE}/lib/libXThrStub.so) -QTNAME= "qt2-mt" -.if ${OSVERSION} >= 500016 -PTHREAD_CFLAGS= "" -PTHREAD_LIBS= "-lc_r" -.else -PTHREAD_CFLAGS= "-D_THREAD_SAFE" -PTHREAD_LIBS= "-pthread" -.endif -.else -QTNAME= "qt2" -PTHREAD_CFLAGS= "" -PTHREAD_LIBS= "" -.endif -.endif +USE_GMAKE= yes CONFIGURE_ARGS+=--with-qt-includes=${X11BASE}/include/qt2 \ --with-qt-libraries=${X11BASE}/lib \ --with-extra-libs=${LOCALBASE}/lib \ --without-audiofile -CONFIGURE_ENV+= LIBQT="-l${QTNAME}" MOC="${MOC}" LIBQTFILE="lib${QTNAME}" \ - CPPFLAGS="-I${LOCALBASE}/include -D_GETOPT_H ${PTHREAD_CFLAGS}" \ - LIBS="-Wl,-export-dynamic -L${LOCALBASE}/lib -ljpeg -lstdc++ -lgcc ${PTHREAD_LIBS}" -USE_GMAKE= yes +CONFIGURE_ENV+= LIBQT="-lqt2" MOC="${MOC}" \ + CPPFLAGS="-I${LOCALBASE}/include -D_GETOPT_H" \ + LIBS="-Wl,-export-dynamic -L${LOCALBASE}/lib -ljpeg -lstdc++ -lgcc" pre-configure: - ${PERL} -pi -e "s@TOPSUBDIRS libaps@TOPSUBDIRS@g ; \ - s@odbc libaps@odbc@g" ${WRKSRC}/configure ${PERL} -pi -e "s@-version-info 1:1@-version-info 3:0@g" ${WRKSRC}/mimelib/Makefile.in -.include +.include -- cgit