summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Verwilst <verwilst@gentoo.org>2002-06-27 15:37:51 +0000
committerBart Verwilst <verwilst@gentoo.org>2002-06-27 15:37:51 +0000
commitf740d441c92e1cc2f6ac3060cd6c88605f781cd8 (patch)
treed10ea83fb5ae987541e0e00dd0815717b63420e2 /app-office/koffice/files
parentmasking portage-2.0.7, moving all portage masks into one area as per request ... (diff)
downloadhistorical-f740d441c92e1cc2f6ac3060cd6c88605f781cd8.tar.gz
historical-f740d441c92e1cc2f6ac3060cd6c88605f781cd8.tar.bz2
historical-f740d441c92e1cc2f6ac3060cd6c88605f781cd8.zip
new version, removed old ones
Diffstat (limited to 'app-office/koffice/files')
-rw-r--r--app-office/koffice/files/digest-koffice-1.2_beta1-r11
-rw-r--r--app-office/koffice/files/digest-koffice-1.2_beta1-r21
-rw-r--r--app-office/koffice/files/digest-koffice-1.2_beta21
-rw-r--r--app-office/koffice/files/koffice-1.2-beta1-gcc31-gentoo.patch31
4 files changed, 1 insertions, 33 deletions
diff --git a/app-office/koffice/files/digest-koffice-1.2_beta1-r1 b/app-office/koffice/files/digest-koffice-1.2_beta1-r1
deleted file mode 100644
index b3231873b7fc..000000000000
--- a/app-office/koffice/files/digest-koffice-1.2_beta1-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 5df9c55daabcc5df4327724d40f436cf koffice-1.2-beta1.tar.bz2 7901619
diff --git a/app-office/koffice/files/digest-koffice-1.2_beta1-r2 b/app-office/koffice/files/digest-koffice-1.2_beta1-r2
deleted file mode 100644
index b3231873b7fc..000000000000
--- a/app-office/koffice/files/digest-koffice-1.2_beta1-r2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 5df9c55daabcc5df4327724d40f436cf koffice-1.2-beta1.tar.bz2 7901619
diff --git a/app-office/koffice/files/digest-koffice-1.2_beta2 b/app-office/koffice/files/digest-koffice-1.2_beta2
new file mode 100644
index 000000000000..3f85f2f64b93
--- /dev/null
+++ b/app-office/koffice/files/digest-koffice-1.2_beta2
@@ -0,0 +1 @@
+MD5 46f27fe4ecc09e96db55b56b43840a1b koffice-1.2-beta2.tar.bz2 9018258
diff --git a/app-office/koffice/files/koffice-1.2-beta1-gcc31-gentoo.patch b/app-office/koffice/files/koffice-1.2-beta1-gcc31-gentoo.patch
deleted file mode 100644
index 6363d2f7f2b4..000000000000
--- a/app-office/koffice/files/koffice-1.2-beta1-gcc31-gentoo.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-diff -ur koffice-1.2-beta1.original/karbon/tools/vmtool_rotate.cc koffice-1.2-beta1/karbon/tools/vmtool_rotate.cc
---- koffice-1.2-beta1.original/karbon/tools/vmtool_rotate.cc Tue Apr 2 07:07:04 2002
-+++ koffice-1.2-beta1/karbon/tools/vmtool_rotate.cc Mon May 27 01:35:56 2002
-@@ -79,7 +79,7 @@
- KoRect rect = part()->selection().boundingBox( 1 / view->zoomFactor() );
- m_sp = QPoint( rect.left() + rect.width() / 2, rect.top() + rect.height() / 2 );
- QPoint sp = QPoint( m_sp.x() - view->canvasWidget()->contentsX(), m_sp.y() - view->canvasWidget()->contentsY() );
-- m_angle = atan2( lp.y() - m_sp.y(), lp.x() - m_sp.x() );
-+ m_angle = atan2( double(lp.y() - m_sp.y()), double(lp.x() - m_sp.x()) );
- if( VMToolHandle::instance( m_part )->activeNode() == NODE_LT )
- m_angle -= atan2( rect.top() - m_sp.y(), rect.left() - m_sp.x() );
- else if( VMToolHandle::instance( m_part )->activeNode() == NODE_MT )
-diff -ur koffice-1.2-beta1.original/karbon/tools/vshapetool.h koffice-1.2-beta1/karbon/tools/vshapetool.h
---- koffice-1.2-beta1.original/karbon/tools/vshapetool.h Thu Mar 14 12:50:49 2002
-+++ koffice-1.2-beta1/karbon/tools/vshapetool.h Mon May 27 01:33:58 2002
-@@ -61,12 +61,12 @@
- if( m_calcPolar )
- {
- // radius:
-- m_d1 = sqrt(
-+ m_d1 = sqrt( double(
- ( m_lp.x() - m_fp.x() ) * ( m_lp.x() - m_fp.x() ) +
-- ( m_lp.y() - m_fp.y() ) * ( m_lp.y() - m_fp.y() ) );
-+ ( m_lp.y() - m_fp.y() ) * ( m_lp.y() - m_fp.y() ) ));
-
- // angle:
-- m_d2 = atan2( ( m_lp.y() - m_fp.y() ), ( m_lp.x() - m_fp.x() ) );
-+ m_d2 = atan2( double( m_lp.y() - m_fp.y() ), double( m_lp.x() - m_fp.x() ) );
-
- // define pi/2 as "0.0":
- m_d2 -= VGlobal::pi_2;