mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
a29b482458
default -j2 (but keep MAKE_JOBS var), restore old perl REs as soon as I'd learned how to do multiple ones, remove QPL license file from packaging, sync with newest KOI8-U/R stuff (not tested). The biggest bonus: split QT Designer into its own port, and make the qt22/qt-designer pair a member of the master-slave ports legion, hopefully to reduce redundancy as much as possible. This should also save roughly 20 minutes of compile time on a dual PIII-600 for those that don't need or want QT Designer. UIC is, however, still installed/compiled by the default Qt 2.2.4 (as it _is_ required for other things e.g. KDE2). USE_MESA may break KDE2. Hopefully, now that the port does install both the threaded and non-threaded versions of QT, it won't. But until the next release of KDE2, I'm not gonna bother testing to see. USE_MESA repeatedly requested by: sobomax
16 lines
559 B
Plaintext
16 lines
559 B
Plaintext
--- tools/designer/designer/newformimpl.cpp 2000/11/18 17:43:54 1.1
|
|
+++ tools/designer/designer/newformimpl.cpp 2000/11/18 17:48:49
|
|
@@ -33,9 +33,9 @@
|
|
{
|
|
if ( QFileInfo( "../templates" ).exists() )
|
|
return "../templates";
|
|
- QString qtdir = getenv( "QTDIR" );
|
|
- if ( QFileInfo( qtdir + "/tools/designer/templates" ).exists() )
|
|
- return qtdir + "/tools/designer/templates";
|
|
+ QString qtdir = QT_PREFIX;
|
|
+ if ( QFileInfo( qtdir + "/share/qt2/designer/templates" ).exists() )
|
|
+ return qtdir + "/share/qt2/designer/templates";
|
|
return t;
|
|
}
|
|
|