1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00

Update to 1.51

PR:		ports/75229
Submitted by:	maintainer
This commit is contained in:
Volker Stolz 2004-12-21 08:43:32 +00:00
parent 9e10a6de6c
commit 01b976f45a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=124665
12 changed files with 104 additions and 16 deletions

View File

@ -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 @@ pre-everything::
@${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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -105,10 +105,6 @@ share/doc/HTML/en/krusader/index.cache.bz2
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/mountman.png
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/it/LC_MESSAGES/krusader.mo
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

View File

@ -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 @@ pre-everything::
@${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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -105,10 +105,6 @@ share/doc/HTML/en/krusader/index.cache.bz2
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/mountman.png
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/it/LC_MESSAGES/krusader.mo
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