diff options
author | tcberner <tcberner@FreeBSD.org> | 2017-06-03 07:04:24 +0800 |
---|---|---|
committer | tcberner <tcberner@FreeBSD.org> | 2017-06-03 07:04:24 +0800 |
commit | 8dafa06ee0d15fcc6a871069713a7b4bf3c6b17d (patch) | |
tree | e8e12d99bae6ebfdb3269329feac9efbffcdc2d2 /deskutils | |
parent | 7a158bb28b29d943adb7d81a429273a3b63cf764 (diff) | |
download | freebsd-ports-gnome-8dafa06ee0d15fcc6a871069713a7b4bf3c6b17d.tar.gz freebsd-ports-gnome-8dafa06ee0d15fcc6a871069713a7b4bf3c6b17d.tar.zst freebsd-ports-gnome-8dafa06ee0d15fcc6a871069713a7b4bf3c6b17d.zip |
Fix icons related crashes
dos2unix was unexpectedly also 'fixing' the png icons for the Qt resources.
This made the application not display any of its own icons, and crashing when
trying to display a chm file.
Define DOS2UNIX_GLOB so that only source files are patched.
PR: 219740
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/kchmviewer/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/deskutils/kchmviewer/Makefile b/deskutils/kchmviewer/Makefile index 8cfeaa739491..ba5e2b58563f 100644 --- a/deskutils/kchmviewer/Makefile +++ b/deskutils/kchmviewer/Makefile @@ -3,6 +3,7 @@ PORTNAME= kchmviewer PORTVERSION= 7.7 +PORTREVISION= 1 CATEGORIES= deskutils kde MASTER_SITES= SF @@ -17,4 +18,6 @@ USE_QT5= core dbus gui network printsupport webkit widgets xml \ buildtools_build qmake_build USE_XORG= x11 +DOS2UNIX_GLOB= *.cpp *.h *.pro *.ui + .include <bsd.port.mk> |