aboutsummaryrefslogtreecommitdiff
path: root/lumina-screenshot
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-09-15 08:24:43 -0400
committerKen Moore <ken@pcbsd.org>2014-09-15 08:24:43 -0400
commit91f0f1084c8e33df9eadbe434d0f1eef18bcff44 (patch)
tree7bd94bb2f8f4e1466be423ac96395a5bab68a0d2 /lumina-screenshot
parentFix a bug in the *.desktop parsing for luminaXDG. It was previously mixing th... (diff)
parentMerge pull request #8 from ajacoutot/openbsd2 (diff)
downloadlumina-91f0f1084c8e33df9eadbe434d0f1eef18bcff44.tar.gz
lumina-91f0f1084c8e33df9eadbe434d0f1eef18bcff44.tar.bz2
lumina-91f0f1084c8e33df9eadbe434d0f1eef18bcff44.zip
Merge branch 'master' of github.com:pcbsd/lumina
Diffstat (limited to 'lumina-screenshot')
-rw-r--r--lumina-screenshot/lumina-screenshot.pro9
1 files changed, 8 insertions, 1 deletions
diff --git a/lumina-screenshot/lumina-screenshot.pro b/lumina-screenshot/lumina-screenshot.pro
index 2d046dcd..7f0911c3 100644
--- a/lumina-screenshot/lumina-screenshot.pro
+++ b/lumina-screenshot/lumina-screenshot.pro
@@ -20,6 +20,13 @@ linux-g++-64 {
} else {
LIBS += -L../libLumina -lLuminaUtils -lQtSolutions_SingleApplication-head
}
+
+openbsd-g++4 {
+ LRELEASE = lrelease4
+} else {
+ LRELEASE = lrelease-qt4
+}
+
QMAKE_LIBDIR = ../libLumina
DEPENDPATH += ../libLumina
@@ -87,7 +94,7 @@ TRANSLATIONS = i18n/lumina-screenshot_af.ts \
i18n/lumina-screenshot_zu.ts
dotrans.path=/usr/local/share/Lumina-DE/i18n/
-dotrans.extra=cd i18n && lrelease-qt4 -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)/usr/local/share/Lumina-DE/i18n/
+dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)/usr/local/share/Lumina-DE/i18n/
desktop.files=lumina-screenshot.desktop
desktop.path=/usr/local/share/applications/
bgstack15