summaryrefslogtreecommitdiffstats
path: root/freebsd/applications/filelight
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2018-08-06 01:30:47 +0200
committerSlávek Banko <slavek.banko@axis.cz>2018-08-06 01:31:02 +0200
commit9010047840d810d9ccba3d00b7943a842e125291 (patch)
tree7698717495c9bc52be2bc8ab526071f3063b466d /freebsd/applications/filelight
parentb4f5663d87c16e08aaef66346f4b22eba2de80bd (diff)
downloadtde-packaging-9010047840d810d9ccba3d00b7943a842e125291.tar.gz
tde-packaging-9010047840d810d9ccba3d00b7943a842e125291.zip
FreeBSD: Update for final release R14.0.5r14.0.5
Additional patches due to stricter C++11 in Clang A new mkspec for Clang is used to build TQt Akode is now part of the TDE repository Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'freebsd/applications/filelight')
-rw-r--r--freebsd/applications/filelight/Makefile2
-rw-r--r--freebsd/applications/filelight/distinfo6
-rw-r--r--freebsd/applications/filelight/files/patch-bp000-fix-ftbfs-on-c++11.diff13
3 files changed, 17 insertions, 4 deletions
diff --git a/freebsd/applications/filelight/Makefile b/freebsd/applications/filelight/Makefile
index 150fc368e..f979e01b2 100644
--- a/freebsd/applications/filelight/Makefile
+++ b/freebsd/applications/filelight/Makefile
@@ -7,7 +7,7 @@
PORTNAME= filelight-trinity
COMMENT= Show where your diskspace is being used
-TDE_PREVERSION= ~pre7+31ba9546
+TDE_PREVERSION=
MASTER_SITE_SUBDIR= f/${PORTNAME}
PORTREVISION= 0
CATEGORIES= deskutils x11
diff --git a/freebsd/applications/filelight/distinfo b/freebsd/applications/filelight/distinfo
index 8748426b5..a48eb78fa 100644
--- a/freebsd/applications/filelight/distinfo
+++ b/freebsd/applications/filelight/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1495992066
-SHA256 (TDE/applications/filelight-trinity_14.0.5~pre7.orig.tar.xz) = 9d13351ac965fdfc9d44be8325c74dd351af99b58d53b6e55a4aaad32ac7a57d
-SIZE (TDE/applications/filelight-trinity_14.0.5~pre7.orig.tar.xz) = 680916
+TIMESTAMP = 1533399152
+SHA256 (TDE/applications/filelight-trinity_14.0.5.orig.tar.xz) = 2dfa19fa13f3fb6384da519f8073550687c14d7b0493c65d97a032b78fdeb8de
+SIZE (TDE/applications/filelight-trinity_14.0.5.orig.tar.xz) = 680004
diff --git a/freebsd/applications/filelight/files/patch-bp000-fix-ftbfs-on-c++11.diff b/freebsd/applications/filelight/files/patch-bp000-fix-ftbfs-on-c++11.diff
new file mode 100644
index 000000000..de573e049
--- /dev/null
+++ b/freebsd/applications/filelight/files/patch-bp000-fix-ftbfs-on-c++11.diff
@@ -0,0 +1,13 @@
+diff --git a/src/part/radialMap/map.cpp b/src/part/radialMap/map.cpp
+index 72d105d..e564969 100644
+--- a/src/part/radialMap/map.cpp
++++ b/src/part/radialMap/map.cpp
+@@ -351,7 +351,7 @@ RadialMap::Map::paint( unsigned int scaleFactor )
+ //draw arrow head to indicate undisplayed files/directories
+ TQPointArray pts( 3 );
+ TQPoint pos, cpos = rect.center();
+- int a[3] = { (*it)->start(), (*it)->length(), 0 };
++ unsigned int a[3] = { (*it)->start(), (*it)->length(), 0 };
+
+ a[2] = a[0] + (a[1] / 2); //assign to halfway between
+ if( a[1] > a_max )