diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-03-18 02:25:34 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-03-18 02:25:34 +0100 |
commit | c50beef08d80ff3caaf68951f1d0b3843182a4f1 (patch) | |
tree | ff0ce343fb3cce8c222c6077bfb1320457425b01 /freebsd/applications/filelight | |
parent | ef2bc56fd3d1478d216ab499f9801610cec61a0f (diff) | |
download | tde-packaging-c50beef08d80ff3caaf68951f1d0b3843182a4f1.tar.gz tde-packaging-c50beef08d80ff3caaf68951f1d0b3843182a4f1.zip |
FreeBSD: Update for final release R14.0.6
Add ports for bunch of applications.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'freebsd/applications/filelight')
-rw-r--r-- | freebsd/applications/filelight/distinfo | 6 | ||||
-rw-r--r-- | freebsd/applications/filelight/files/patch-bp000-fix-ftbfs-on-c++11.diff | 13 |
2 files changed, 3 insertions, 16 deletions
diff --git a/freebsd/applications/filelight/distinfo b/freebsd/applications/filelight/distinfo index a48eb78fa..5c8d19590 100644 --- a/freebsd/applications/filelight/distinfo +++ b/freebsd/applications/filelight/distinfo @@ -1,3 +1,3 @@ -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 +TIMESTAMP = 1552238775 +SHA256 (TDE/applications/filelight-trinity_14.0.6.orig.tar.xz) = eeb8a952bb7f70e330de18c74d656e8b4af316d34e9062a205e600a4ca9d7f49 +SIZE (TDE/applications/filelight-trinity_14.0.6.orig.tar.xz) = 686684 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 deleted file mode 100644 index de573e049..000000000 --- a/freebsd/applications/filelight/files/patch-bp000-fix-ftbfs-on-c++11.diff +++ /dev/null @@ -1,13 +0,0 @@ -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 ) |