ports/75229: Port upgrade: x11-fm/krusader to 1.51
Heiner
h.eichmann at gmx.de
Sat Dec 18 17:50:25 UTC 2004
>Number: 75229
>Category: ports
>Synopsis: Port upgrade: x11-fm/krusader to 1.51
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: maintainer-update
>Submitter-Id: current-users
>Arrival-Date: Sat Dec 18 17:50:24 GMT 2004
>Closed-Date:
>Last-Modified:
>Originator: Heiner Eichmann <h.eichmann at gmx.de>
>Release: FreeBSD 4.10-STABLE i386
>Organization:
Sirius Cybernetics Corp.
>Environment:
=46reeBSD 7of9.unimatrix-zero.borg 4.10-STABLE FreeBSD 4.10-STABLE #1: Sun =
Jun=20
2014:49:25 CEST 2004 =A0 =A0=20
root at 7of9.unimatrix-zero.borg:/usr/obj/usr/src/sys/MYKERNEL =A0i386
>Description:
Upgrade to 1.51
>How-To-Repeat:
>Fix:
see attached diff
--Boundary-00=_v0GxBOvwhdvrPbn
Content-Type: text/x-diff;
charset="iso-8859-1";
name="krusader.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
filename="krusader.diff"
diff -urN ../../x11-fm/krusader/Makefile ./Makefile
--- ../../x11-fm/krusader/Makefile Mon Nov 15 20:15:51 2004
+++ ./Makefile Sat Dec 18 18:45:47 2004
@@ -6,7 +6,7 @@
#
PORTNAME= krusader
-PORTVERSION= 1.50
+PORTVERSION= 1.51
CATEGORIES= x11-fm kde
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=krusader
@@ -32,7 +32,7 @@
@${ECHO_MSG} "The following settings are assumed:"
@${ECHO_MSG} "Installation directory of qt3: QTDIR=${QTDIR}"
@${ECHO_MSG} "Installation directory of KDE3: KDEDIR=${KDEDIR}"
- @${ECHO_MSG} "If these assumptions are wrong, stop the build NOW and set the variables correpondingly!"
+ @${ECHO_MSG} "If these assumptions are wrong, stop the build NOW and set the variables correspondingly!"
@${ECHO_MSG}
@sleep 3
diff -urN ../../x11-fm/krusader/distinfo ./distinfo
--- ../../x11-fm/krusader/distinfo Mon Nov 15 20:15:51 2004
+++ ./distinfo Thu Dec 16 18:22:21 2004
@@ -1,2 +1,2 @@
-MD5 (krusader-1.50.tar.gz) = 24f86f89aa8fc10afa64afe9b966ca94
-SIZE (krusader-1.50.tar.gz) = 2755404
+MD5 (krusader-1.51.tar.gz) = 3b31a49db60b9e7f0884d78ed1ee3eb6
+SIZE (krusader-1.51.tar.gz) = 2898752
diff -urN ../../x11-fm/krusader/files/patch-krusader_DiskUsage_filelightParts_fileTree.h ./files/patch-krusader_DiskUsage_filelightParts_fileTree.h
--- ../../x11-fm/krusader/files/patch-krusader_DiskUsage_filelightParts_fileTree.h Thu Jan 1 01:00:00 1970
+++ ./files/patch-krusader_DiskUsage_filelightParts_fileTree.h Thu Dec 16 18:37:57 2004
@@ -0,0 +1,10 @@
+--- krusader/DiskUsage/filelightParts/fileTree.h.orig Tue Nov 23 07:52:07 2004
++++ krusader/DiskUsage/filelightParts/fileTree.h Thu Dec 16 18:35:46 2004
+@@ -5,6 +5,7 @@
+ #define FILETREE_H
+
+ #include <stdlib.h>
++#include <sys/types.h>
+ #include <kio/global.h>
+
+ //TODO these are pointlessly general purpose now, make them incredibly specific
diff -urN ../../x11-fm/krusader/files/patch-krusader_DiskUsage_radialMap_map.cpp ./files/patch-krusader_DiskUsage_radialMap_map.cpp
--- ../../x11-fm/krusader/files/patch-krusader_DiskUsage_radialMap_map.cpp Thu Jan 1 01:00:00 1970
+++ ./files/patch-krusader_DiskUsage_radialMap_map.cpp Thu Dec 16 19:33:26 2004
@@ -0,0 +1,17 @@
+--- krusader/DiskUsage/radialMap/map.cpp.orig Tue Nov 23 00:45:27 2004
++++ krusader/DiskUsage/radialMap/map.cpp Thu Dec 16 19:30:23 2004
+@@ -392,3 +392,14 @@
+
+ paint.end();
+ }
++
++#if __GLIBC__ < 2 || __GLIBC__ == 2 && __GLIBC_MINOR__ < 1
++
++ void
++ sincos( double angleRadians, double *Sin, double *Cos )
++ {
++ *Sin = sin( angleRadians );
++ *Cos = cos( angleRadians );
++ }
++
++#endif
diff -urN ../../x11-fm/krusader/files/patch-krusader_DiskUsage_radialMap_sincos.h ./files/patch-krusader_DiskUsage_radialMap_sincos.h
--- ../../x11-fm/krusader/files/patch-krusader_DiskUsage_radialMap_sincos.h Thu Jan 1 01:00:00 1970
+++ ./files/patch-krusader_DiskUsage_radialMap_sincos.h Thu Dec 16 19:33:00 2004
@@ -0,0 +1,18 @@
+--- krusader/DiskUsage/radialMap/sincos.h.orig Mon Nov 22 23:55:25 2004
++++ krusader/DiskUsage/radialMap/sincos.h Thu Dec 16 19:30:32 2004
+@@ -7,13 +7,9 @@
+ #include <math.h>
+
+ #if __GLIBC__ < 2 || __GLIBC__ == 2 && __GLIBC_MINOR__ < 1
+-
++
+ void
+- sincos( int angleRadians, int *Sin, int *Cos )
+- {
+- *Sin = sin( angleRadians );
+- *Cos = cos( angleRadians );
+- }
++ sincos( double angleRadians, double *Sin, double *Cos );
+
+ #endif
+
diff -urN ../../x11-fm/krusader/pkg-plist ./pkg-plist
--- ../../x11-fm/krusader/pkg-plist Mon Nov 15 20:15:51 2004
+++ ./pkg-plist Thu Dec 16 19:58:09 2004
@@ -105,10 +105,6 @@
share/doc/HTML/en/krusader/index.docbook
share/doc/HTML/en/krusader/installation.docbook
share/doc/HTML/en/krusader/introduction.docbook
-share/doc/HTML/en/krusader/kgadvanced.png
-share/doc/HTML/en/krusader/kgarchives.png
-share/doc/HTML/en/krusader/kggeneral.png
-share/doc/HTML/en/krusader/kglookfeel.png
share/doc/HTML/en/krusader/kgstartup.png
share/doc/HTML/en/krusader/konfigurator.docbook
share/doc/HTML/en/krusader/krusader-tools.docbook
@@ -120,6 +116,7 @@
share/doc/HTML/en/krusader/remoteman.png
share/doc/HTML/en/krusader/search_advanced.png
share/doc/HTML/en/krusader/search_general.png
+share/doc/HTML/en/krusader/syncdir.png
share/doc/HTML/en/krusader/tabbed_browsing.png
share/doc/HTML/en/krusader/terminalEmu.png
share/doc/HTML/en/krusader/toolbar.png
@@ -147,9 +144,11 @@
share/locale/ja/LC_MESSAGES/krusader.mo
share/locale/nl/LC_MESSAGES/krusader.mo
share/locale/pl/LC_MESSAGES/krusader.mo
+share/locale/pt/LC_MESSAGES/krusader.mo
share/locale/ru/LC_MESSAGES/krusader.mo
share/locale/sk/LC_MESSAGES/krusader.mo
share/locale/sv/LC_MESSAGES/krusader.mo
+share/locale/uk/LC_MESSAGES/krusader.mo
share/locale/zh_CN/LC_MESSAGES/krusader.mo
share/services/iso.protocol
share/services/krarc.protocol
--Boundary-00=_v0GxBOvwhdvrPbn--
>Release-Note:
>Audit-Trail:
>Unformatted:
--Boundary-00=_v0GxBOvwhdvrPbn
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
X-send-pr-version: send-pr 3.113
X-GNATS-Notify:
More information about the freebsd-ports-bugs
mailing list