Re: Koffice

Thomas Zander <[email protected]> Sun, 10 Jul 2011 11:48:17 +0200
Newsgroups gmane.comp.kde.koffice
Message-ID <[email protected]>
--Boundary-00=_hVXGOe94sN+Logq
Content-Type: Text/Plain;
  charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

On Saturday 09 July 2011 21.49.49 David M. Zehner wrote:
> Dear Koffice,
> 
> I use windows 7 and have heard very good things about Koffice but to
> date I have not been able to download it and get it running.  I am new
> at all this and really do need any help you could PLEASE give me.

Hi David,

I have been working a bit to make everything compile using the kde-windows 
emerge concept.  While stuff compiled and installed, I never got it to actually 
start up and the emerge system had too many bugs for me to put more time into 
it.
For someone interested; I'll attach the config file for emerge here.  (place in 
an emerge checkout under portage/contributed/koffice-master/)

Last I heard is that for the Google Summer of Code there is a student working 
together with the kde-windows team to come up with a better build system, 
maybe I'll try again then.

So, while there have been efforts to get this working, I'm afraid to say it 
needs someone to put more time into this.

Thanks for asking!
-- 
Thomas Zander

--Boundary-00=_hVXGOe94sN+Logq
Content-Type: text/x-python;
  charset="UTF-8";
  name="koffice-master-20110401.py"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename="koffice-master-20110401.py"

# -*- coding: utf-8 -*-
# KOffice master
#import base
#import os
#import utils
import info


class subinfo( info.infoclass ):
    def setTargets( self ):
        self.svnTargets['gitHEAD'] = "[git]kde:koffice"
        self.defaultTarget = 'gitHEAD'

    def setDependencies( self ):
        self.hardDependencies['win32libs-bin/lcms'] = 'default'
        self.hardDependencies['virtual/kdepimlibs'] = 'default'
        self.hardDependencies['kdesupport/kdewin-lib'] = 'default'
        self.hardDependencies['virtual/kde-runtime'] = 'default'
        self.hardDependencies['kdesupport/eigen2'] = 'default'
        self.softDependencies['kdesupport/qca'] = 'default'
#        self.softDependencies['testing/gsl'] = 'default'
        self.shortDescription = "KOffice apps"


from Package.CMakePackageBase import *

class Package( CMakePackageBase ):
    def __init__( self ):
        self.subinfo = subinfo()
        CMakePackageBase.__init__( self )
        self.subinfo.options.configure.defines = "-DBUILD_doc=OFF "
        self.subinfo.options.configure.defines += "-DBUILD_libmsooxml=OFF "
        self.subinfo.options.configure.defines += "-DBUILD_kspread=OFF "
#        self.subinfo.options.configure.defines += "-DBUILD_showcase=OFF "

#   def unpack( self ):
#       return self.kdeSvnUnpack()
#
#   def compile( self ):
#       return self.kdeCompile()
#
#   def install( self ):
#       return self.kdeInstall()
#
#   def make_package( self ):
#       return self.doPackaging( "koffice" )

if __name__ == '__main__':
    Package().execute()

--Boundary-00=_hVXGOe94sN+Logq
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

____________________________________
KOffice mailing list
[email protected]
To unsubscribe please visit:
https://mail.kde.org/mailman/listinfo/koffice

--Boundary-00=_hVXGOe94sN+Logq--