mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
b1ab77137a
This port installs qmake, which is only needed to build Qt -- not to use it. It should also help futute work on the Qt port, by not requiring the developer to recompile qmake as frequently as at present. This port uses Qt-3.2.1, which is not committed yet. Discussed with: kde@
16 lines
760 B
C++
16 lines
760 B
C++
/*
|
|
* $FreeBSD$
|
|
* Hand-crafted...
|
|
* The default prefix (/ usr / local) is dynamicly replaced
|
|
* at configure time.
|
|
*/
|
|
const char *qInstallPath() { return "/usr/local"; }
|
|
const char *qInstallPathDocs() { return "/usr/local/share/doc/qt"; }
|
|
const char *qInstallPathHeaders() { return "/usr/local/include"; }
|
|
const char *qInstallPathLibs() { return "/usr/local/lib"; }
|
|
const char *qInstallPathBins() { return "/usr/local/bin"; }
|
|
const char *qInstallPathPlugins() { return "/usr/local/plugins"; }
|
|
const char *qInstallPathData() { return "/usr/local/share/qt"; }
|
|
const char *qInstallPathTranslations() { return "/usr/local/translations"; }
|
|
const char *qInstallPathSysconf() { return "/usr/local/etc"; }
|