$OpenBSD: patch-deploy_pri,v 1.1.1.1 2019/05/02 12:26:15 rsadowski Exp $
Fix installation paths.
Index: deploy.pri
--- deploy.pri.orig
+++ deploy.pri
@@ -1,38 +1,33 @@
 isEmpty(PROJECTROOT): PROJECTROOT = $$PWD
-INSTALL_PREFIX = /usr/local
+INSTALL_PREFIX = $$(TRUEPREFIX)
 
-share.files = $$PROJECTROOT/qtc_packaging/common/changelog \
-			$$PROJECTROOT/qtc_packaging/common/copyright \
-			$$PROJECTROOT/qtc_packaging/common/README
-share.path = /usr/share/doc/$${TARGET}
+share.path = $$INSTALL_PREFIX/share/doc/$${TARGET}
 
 isEqual(TEMPLATE, app) {
 	unix:!symbian {
 		!isEmpty(MEEGO_VERSION_MAJOR) {
 			DEFINES += CACHE_APPDIR
-			INSTALL_PREFIX = /opt/$${TARGET}
 			desktopfile.files = $$PROJECTROOT/qtc_packaging/debian_harmattan/$${TARGET}.desktop
-			desktopfile.path = /usr/share/applications
+			desktopfile.path = $$INSTALL_PREFIX/share/applications
 			icon.files = $$PROJECTROOT/qtc_packaging/debian_harmattan/$${TARGET}.png
-			icon.path = /usr/share/icons/hicolor/80x80/apps
+			icon.path = $$INSTALL_PREFIX/share/icons/hicolor/80x80/apps
 			#debian.files = $$PROJECTROOT/qtc_packaging/harmattan/control
 		} else:maemo5 {
-			INSTALL_PREFIX = /opt/$${TARGET}
 			desktopfile.files = $$PROJECTROOT/qtc_packaging/debian_fremantle/$${TARGET}.desktop
-			desktopfile.path = /usr/share/applications/hildon
+			desktopfile.path = $$INSTALL_PREFIX/share/applications/hildon
 			icon.files = $$PROJECTROOT/qtc_packaging/debian_fremantle/$${TARGET}.png
-			icon.path = /usr/share/icons/hicolor/64x64/apps
+			icon.path = $$INSTALL_PREFIX/share/icons/hicolor/64x64/apps
 			#debian.files = $$PROJECTROOT/qtc_packaging/fremantle/control
 		} else {
 			desktopfile.files = $$PROJECTROOT/qtc_packaging/debian_generic/$${TARGET}.desktop
-			desktopfile.path = /usr/share/applications
+			desktopfile.path = $$INSTALL_PREFIX/share/applications
 			icon.files = $$PROJECTROOT/qtc_packaging/debian_generic/$${TARGET}.png
-			icon.path = /usr/share/icons/hicolor/64x64/apps
+			icon.path = $$INSTALL_PREFIX/share/icons/hicolor/64x64/apps
 			#debian.files = $$PROJECTROOT/qtc_packaging/generic/control
 		}
 		INSTALLS += desktopfile icon
 		#debian.path = /DEBIAN
-            isEmpty(target.path): target.path = $${INSTALL_PREFIX}/bin
+            isEmpty(target.path): target.path = $$INSTALL_PREFIX/bin
         }
 } else {
 	unix:!symbian {
@@ -51,7 +46,7 @@ isEqual(TEMPLATE, app) {
 INSTALLS *= target share
 
 for(bin, BIN_INSTALLS) {
-    eval($${bin}.path = $${INSTALL_PREFIX}/bin)
+    eval($${bin}.path = $$INSTALL_PREFIX/bin)
     message("adding $$bin to bin install targets...")
     INSTALLS += $$bin
 }
