Re: Building gides

2020-02-18 Thread Andrea Pescetti

Andrea Pescetti wrote:
E-mail is a horrible medium for this, but it looks like you are missing 
a space near the end of the first line. You can see it from the error 
message, where it doesn't look for a script named "configure" but 
"configure--with[...]".


Just to close the discussion: the OP reported privately that adding the 
space indeed fixed the error.


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Build instructions

2020-02-18 Thread Andrea Pescetti

Keith N. McKenna wrote:

On 2/18/2020 6:32 AM, Matthias Seidel wrote:

Does the ASF have an archive for old SDKs?
Or can we use OOOExtra on SourceForge? ...

Given that and other concerns might it be worth to seek guidance from
legal@?


I guess the answer is simply no. We cannot put it in a public archive or 
repository, as most likely the Microsoft terms do not allow it.


It is probably already quite borderline to let people know "If you need 
a copy, ask us" even though this used to be a free public download from 
the Microsoft site until very recently. But we shouldn't go further than 
that.


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Building On CentOS 8 Dependency Help

2020-02-18 Thread Kay Schenk
On Tue, Feb 18, 2020, 03:06 Carl Marcum  wrote:

>
>
> On 2/17/20 9:59 PM, Kay Schenk wrote:
> > On Mon, Feb 17, 2020, 16:44 Carl Marcum  wrote:
> >
> >>
> >> On 2/17/20 6:31 PM, Kay Schenk wrote:
> >>> OK. Here's the section of configure.ac that applies to your issue...
> >>>
> >>> *** begin code ***
> >>>
> >>> dnl ===
> >>> dnl Check whether the gtk 2.0 libraries are available.
> >>> dnl ===
> >>>
> >>> GTK_CFLAGS=""
> >>> GTK_LIBS=""
> >>> ENABLE_SYSTRAY_GTK=""
> >>> ENABLE_DBUS=""
> >>> if test  "$test_gtk" = "yes"; then
> >>>
> >>> if test "$ENABLE_GTK" = "TRUE" ; then
> >>>PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.4 gdk-pixbuf-xlib-2.0 >=
> >>> 2.2 ,,AC_MSG_ERROR([requirements to build the gtk-plugin not met. Use
> >>> --disable-gtk or install the missing packages]))
> >>>PKG_CHECK_MODULES(GTHREAD,
> >>> gthread-2.0,,AC_MSG_ERROR([requirements to build the gtk-plugin not
> >>> met. Use --disable-gtk or install the missing packages]))
> >>>
> >>> *** end code ***
> >>>
> >>> Configure wants a gtk+-2.0 version that is 2.4 or later. From your
> >>> first message, this is what you show --
> >>>
> >>> gtk2.x86_64   2.24.32-4.el8
> >>>
> >>> To me, it seems PKG_CHECK_MODULES couldn't determine if 2.24.32-4.el8
> >>> passed the   "gtk+-2.0 >= 2.4" test. Maybe someone else can offer
> >>> suggestions on how to fix that.
> >>>
> >>> Sorry I couldn't help more
> >>>
> >>> --Kay
> >>>
> >> Hi Kay,
> >>
> >> Sounds reasonable that may be the issue.
> >> The the two error messages are the same for GTK and GTHREADI edited the
> >> error messages to make them different confirmed it is the GTK check
> >> that's the problem.
> >> Any idea where PKG_CHECK_MODULES lives?
> >>
> >> Thanks,
> >> Carl
> >>
> > Hi Carl --
> >
> > PKG_CHECK_MODULES is a macro that is part of autoconf (autotools)
> >
> > https://autotools.io/pkgconfig/pkg_cpkg_check_modules.html
> >
> > HTH,
> >
> > Kay
>
> Hi Kay,
>
> I got a 404 on that link but I found it here:
> https://autotools.io/pkgconfig/pkg_check_modules.html
>
> I'll look at it this evening.
>
> Thanks again for your help!
>
> Best regards,
> Carl
>

OK good. Sorry about the messed up link.

-- Kay


> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>
>


Re: Building gides

2020-02-18 Thread Andrea Pescetti

Maram Abbas wrote:

moram@moram-PC ~/cygdrve/c/source/aoo/main
$ ./configure\

--with-dmake-url="

https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2;
-bash: ./configure--with-dmake-url=
https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2:
No such file or directory


E-mail is a horrible medium for this, but it looks like you are missing 
a space near the end of the first line. You can see it from the error 
message, where it doesn't look for a script named "configure" but 
"configure--with[...]".


# Good:

$ ./configure 
--with-dmake-url="https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2;


# Equally good, note space at the end of the first line:

$ ./configure \
> 
--with-dmake-url="https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2;


# Not good, note missing space at the end of first line:

$ ./configure\
> 
--with-dmake-url="https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2;


See https://pastebin.com/7DRKKBqv for a more readable version of the 
above in case the mailing list destroys formatting.


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Build instructions

2020-02-18 Thread Keith N. McKenna
On 2/18/2020 6:32 AM, Matthias Seidel wrote:
> Hi Keith,
> 
> Am 18.02.20 um 00:29 schrieb Keith N. McKenna:
>> On 2/17/2020 5:47 PM, Matthias Seidel wrote:
>>> Hi Keith,
>>>
>>> Am 17.02.20 um 01:31 schrieb Keith N. McKenna:
 On 2/15/2020 4:06 PM, Matthias Seidel wrote:
 >>>
 nip>
>> (As you may remember, we wrote about that and I sent you a Dropbox
>> link where you can download it from)
>>
>> Regards,
>>
>>    Matthias
>>
>>> -
>>> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>>> For additional commands, e-mail: dev-h...@openoffice.apache.org
>>>
 Matthias;
  If you still have that link i can put it into the wiki.
>>> Actually it is a link to my own DropBox... ;-)
>>>
>>> It would be better if we can put the file somewhere else.
>>>
>>> Regards,
>>>
>>>    Matthias
>>>
>> Matthias;
>>
>> I am open to any and all suggestions but as it is currently required to
>> build AOO on Windows it should be linked in the Guide.
> 
> Definitely!
> 
> Does the ASF have an archive for old SDKs?
> Or can we use OOOExtra on SourceForge?
> 
> When I brought up that problem to dev@ in 2018 we didn't come to a
> conclusion...
> 
> Regards,
> 
>    Matthias
> 
>>
Given that and other concerns might it be worth to seek guidance from
legal@?

Regards
Keith

>> Regards
>> Keith
>>
  I am also more
 than willing to help to restructure the Build Guide. It may be best to
 start a new thread devoted to just that where all can share ideas on
 how to do that.

 Regards
 Keith

>>
> 




signature.asc
Description: OpenPGP digital signature


Re: Building gides

2020-02-18 Thread Matthias Seidel
Am 18.02.20 um 15:36 schrieb Matthias Seidel:
> So the complete line is:
>
> --with-dmake-url="https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2;
> \

I hate it when lines are wrapped... ;-)

Note the closing "\" at the end.

Regards,

   Matthias

>
> ?
>
> Regards,
>
>    Matthias
>
> Am 18.02.20 um 10:56 schrieb Maram Abbas:
>> Yes I did all that
>> Then at the ./configure commas
>>
>> moram@moram-PC ~/cygdrve/c/source/aoo/main
>> $ ./configure\
>>> --with-dmake-url="
>> https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2;
>> -bash: ./configure--with-dmake-url=
>> https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2:
>> No such file or directory
>>
>> It says no such file or directory
>> بتاريخ ١٧‏/٠٢‏/٢٠٢٠ ١٢:٣٩ م، كتب "Peter Kovacs" :
>>
>>> Hi ,
>>>
>>>
>>> A step I often forget is the use of autoconf
>>>
>>>
>>>  * Make sure that you are in the main source directory:
>>>
>>>cd $SourceMain
>>>
>>>  * Run autoconf to create the configure script:
>>>
>>>autoconf
>>>
>>> Call configure
>>>
>>>
>>> But it is difficult to help because you do not write which file is missing
>>> or which command you typed.
>>>
>>> We could help better if you always add these kind of information. ;)
>>>
>>>
>>> HTH
>>>
>>> Peter
>>>
>>> Am 17.02.20 um 07:33 schrieb Maram Abbas:
>>>
 Hi
 I was trying to build in windows 7
 I followed the instructions step by step
 Then I got stuck at the configuration
 It says No such file or directory
 I can't figure what I miss





smime.p7s
Description: S/MIME Cryptographic Signature


Re: Building gides

2020-02-18 Thread Matthias Seidel
So the complete line is:

--with-dmake-url="https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2;
\

?

Regards,

   Matthias

Am 18.02.20 um 10:56 schrieb Maram Abbas:
> Yes I did all that
> Then at the ./configure commas
>
> moram@moram-PC ~/cygdrve/c/source/aoo/main
> $ ./configure\
>> --with-dmake-url="
> https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2;
> -bash: ./configure--with-dmake-url=
> https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2:
> No such file or directory
>
> It says no such file or directory
> بتاريخ ١٧‏/٠٢‏/٢٠٢٠ ١٢:٣٩ م، كتب "Peter Kovacs" :
>
>> Hi ,
>>
>>
>> A step I often forget is the use of autoconf
>>
>>
>>  * Make sure that you are in the main source directory:
>>
>>cd $SourceMain
>>
>>  * Run autoconf to create the configure script:
>>
>>autoconf
>>
>> Call configure
>>
>>
>> But it is difficult to help because you do not write which file is missing
>> or which command you typed.
>>
>> We could help better if you always add these kind of information. ;)
>>
>>
>> HTH
>>
>> Peter
>>
>> Am 17.02.20 um 07:33 schrieb Maram Abbas:
>>
>>> Hi
>>> I was trying to build in windows 7
>>> I followed the instructions step by step
>>> Then I got stuck at the configuration
>>> It says No such file or directory
>>> I can't figure what I miss
>>>
>>>



smime.p7s
Description: S/MIME Cryptographic Signature


Re: Updated 4.2.0 build?

2020-02-18 Thread Pedro Lino
Thank you for the heads up!

I'm already running the x64 Linux build from the buildbot, available at
https://ci.apache.org/projects/openoffice/install/41x/

It is working correctly and the pt translation is indeed updated (and improved 
;) ).

Regards,
Pedro


> On February 18, 2020 12:41 PM Matthias Seidel  
> wrote:
> 
>  
> Hi all,
> 
> New test builds (for Windows) are up (incl. updated translations):
> 
> https://home.apache.org/~mseidel/AOO-builds/AOO-420-Test/
> 
> Regards,
> 
>    Matthias
> 
> Am 16.02.20 um 23:37 schrieb Pedro Lino:
> > Hi Matthias, Mechtilde, all
>`>
> > I did not notice (I am now Watching the PT l10n page at Github to be 
> > notified of future updates)
> >
> > Thank you for the heads up and thank you Mechtilde for creating the updated 
> > SDF file.
> >
> > I will investigate the required steps to build an updated installer for 
> > Linux x64
> >
> > Kind regards,
> > Pedro
> >
> >> On February 16, 2020 10:58 AM Matthias Seidel  
> >> wrote:
> >>
> >>  
> >> Hi,
> >>
> >> You sure have noticed that the pt translation (and some other) are now
> >> updated in trunk and AOO42X.
> >>
> >> Happy building! ;-)
> >>
> >> Regards,
> >>
> >>    Matthias
> >>
> >> Am 15.02.20 um 15:51 schrieb Pedro Lino:
> >>> Hi Mechtilde
> >>>
> >>> As Matthias mentioned we (Pedro Albuquerque and myself) would really like 
> >>> to run a build with the complete updated 4.2 Portuguese translation.
> >>> Would it be possible for you to commit an updated SDF for the Portuguese 
> >>> translation?
> >>> Alternatively please point me to a How-To so I can do it myself.
> >>>
> >>> Thanks!
> >>>
> >>> Kind regards,
> >>> Pedro
> >>>
>  On February 8, 2020 7:22 PM Matthias Seidel  
>  wrote:
> 
>   
>  Hi Mechtilde,
> 
>  Am 08.02.20 um 20:07 schrieb Mechtilde:
> > Hello Pedro
> >
> > Am 08.02.20 um 15:29 schrieb Pedro Lino:
> >> Hi Matthias
> >>
> >> Is that fix on the 4.2 branch?
> >>
> >> Do you know if the 4.2 branch is synchronized with Pootle?
> > You can see it in the webfrontend.
> >
> > I updated pootle 3 weeks ago. It can't be done automatically.
>  Pedro didn't think of Pootle being synchronized with the branch.
>  He wanted to know if the translations are already exported back to the
>  branch...
> 
>  Pedro is waiting for an updated Portuguese build! ;-)
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> > For additional commands, e-mail: dev-h...@openoffice.apache.org
> >
> >

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Updated 4.2.0 build?

2020-02-18 Thread Matthias Seidel
Hi all,

New test builds (for Windows) are up (incl. updated translations):

https://home.apache.org/~mseidel/AOO-builds/AOO-420-Test/

Regards,

   Matthias

Am 16.02.20 um 23:37 schrieb Pedro Lino:
> Hi Matthias, Mechtilde, all
>
> I did not notice (I am now Watching the PT l10n page at Github to be notified 
> of future updates)
>
> Thank you for the heads up and thank you Mechtilde for creating the updated 
> SDF file.
>
> I will investigate the required steps to build an updated installer for Linux 
> x64
>
> Kind regards,
> Pedro
>
>> On February 16, 2020 10:58 AM Matthias Seidel  
>> wrote:
>>
>>  
>> Hi,
>>
>> You sure have noticed that the pt translation (and some other) are now
>> updated in trunk and AOO42X.
>>
>> Happy building! ;-)
>>
>> Regards,
>>
>>    Matthias
>>
>> Am 15.02.20 um 15:51 schrieb Pedro Lino:
>>> Hi Mechtilde
>>>
>>> As Matthias mentioned we (Pedro Albuquerque and myself) would really like 
>>> to run a build with the complete updated 4.2 Portuguese translation.
>>> Would it be possible for you to commit an updated SDF for the Portuguese 
>>> translation?
>>> Alternatively please point me to a How-To so I can do it myself.
>>>
>>> Thanks!
>>>
>>> Kind regards,
>>> Pedro
>>>
 On February 8, 2020 7:22 PM Matthias Seidel  
 wrote:

  
 Hi Mechtilde,

 Am 08.02.20 um 20:07 schrieb Mechtilde:
> Hello Pedro
>
> Am 08.02.20 um 15:29 schrieb Pedro Lino:
>> Hi Matthias
>>
>> Is that fix on the 4.2 branch?
>>
>> Do you know if the 4.2 branch is synchronized with Pootle?
> You can see it in the webfrontend.
>
> I updated pootle 3 weeks ago. It can't be done automatically.
 Pedro didn't think of Pootle being synchronized with the branch.
 He wanted to know if the translations are already exported back to the
 branch...

 Pedro is waiting for an updated Portuguese build! ;-)
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>
>



smime.p7s
Description: S/MIME Cryptographic Signature


Re: Build instructions

2020-02-18 Thread Matthias Seidel
Hi Keith,

Am 18.02.20 um 00:29 schrieb Keith N. McKenna:
> On 2/17/2020 5:47 PM, Matthias Seidel wrote:
>> Hi Keith,
>>
>> Am 17.02.20 um 01:31 schrieb Keith N. McKenna:
>>> On 2/15/2020 4:06 PM, Matthias Seidel wrote:
>>> >>
>>> nip>
> (As you may remember, we wrote about that and I sent you a Dropbox
> link where you can download it from)
>
> Regards,
>
>    Matthias
>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>> For additional commands, e-mail: dev-h...@openoffice.apache.org
>>
>>> Matthias;
>>>  If you still have that link i can put it into the wiki.
>> Actually it is a link to my own DropBox... ;-)
>>
>> It would be better if we can put the file somewhere else.
>>
>> Regards,
>>
>>    Matthias
>>
> Matthias;
>
> I am open to any and all suggestions but as it is currently required to
> build AOO on Windows it should be linked in the Guide.

Definitely!

Does the ASF have an archive for old SDKs?
Or can we use OOOExtra on SourceForge?

When I brought up that problem to dev@ in 2018 we didn't come to a
conclusion...

Regards,

   Matthias

>
> Regards
> Keith
>
>>>  I am also more
>>> than willing to help to restructure the Build Guide. It may be best to
>>> start a new thread devoted to just that where all can share ideas on
>>> how to do that.
>>>
>>> Regards
>>> Keith
>>>
>



smime.p7s
Description: S/MIME Cryptographic Signature


Re: Building On CentOS 8 Dependency Help

2020-02-18 Thread Carl Marcum




On 2/17/20 9:59 PM, Kay Schenk wrote:

On Mon, Feb 17, 2020, 16:44 Carl Marcum  wrote:



On 2/17/20 6:31 PM, Kay Schenk wrote:

OK. Here's the section of configure.ac that applies to your issue...

*** begin code ***

dnl ===
dnl Check whether the gtk 2.0 libraries are available.
dnl ===

GTK_CFLAGS=""
GTK_LIBS=""
ENABLE_SYSTRAY_GTK=""
ENABLE_DBUS=""
if test  "$test_gtk" = "yes"; then

if test "$ENABLE_GTK" = "TRUE" ; then
   PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.4 gdk-pixbuf-xlib-2.0 >=
2.2 ,,AC_MSG_ERROR([requirements to build the gtk-plugin not met. Use
--disable-gtk or install the missing packages]))
   PKG_CHECK_MODULES(GTHREAD,
gthread-2.0,,AC_MSG_ERROR([requirements to build the gtk-plugin not
met. Use --disable-gtk or install the missing packages]))

*** end code ***

Configure wants a gtk+-2.0 version that is 2.4 or later. From your
first message, this is what you show --

gtk2.x86_64   2.24.32-4.el8

To me, it seems PKG_CHECK_MODULES couldn't determine if 2.24.32-4.el8
passed the   "gtk+-2.0 >= 2.4" test. Maybe someone else can offer
suggestions on how to fix that.

Sorry I couldn't help more

--Kay


Hi Kay,

Sounds reasonable that may be the issue.
The the two error messages are the same for GTK and GTHREADI edited the
error messages to make them different confirmed it is the GTK check
that's the problem.
Any idea where PKG_CHECK_MODULES lives?

Thanks,
Carl


Hi Carl --

PKG_CHECK_MODULES is a macro that is part of autoconf (autotools)

https://autotools.io/pkgconfig/pkg_cpkg_check_modules.html

HTH,

Kay


Hi Kay,

I got a 404 on that link but I found it here:
https://autotools.io/pkgconfig/pkg_check_modules.html

I'll look at it this evening.

Thanks again for your help!

Best regards,
Carl

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Building gides

2020-02-18 Thread Maram Abbas
Yes I did all that
Then at the ./configure commas

moram@moram-PC ~/cygdrve/c/source/aoo/main
$ ./configure\
> --with-dmake-url="
https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2;
-bash: ./configure--with-dmake-url=
https://sourceforge.net/projects/oooextras.mirror/files/dmake-4.12.tar.bz2:
No such file or directory

It says no such file or directory
بتاريخ ١٧‏/٠٢‏/٢٠٢٠ ١٢:٣٩ م، كتب "Peter Kovacs" :

> Hi ,
>
>
> A step I often forget is the use of autoconf
>
>
>  * Make sure that you are in the main source directory:
>
>cd $SourceMain
>
>  * Run autoconf to create the configure script:
>
>autoconf
>
> Call configure
>
>
> But it is difficult to help because you do not write which file is missing
> or which command you typed.
>
> We could help better if you always add these kind of information. ;)
>
>
> HTH
>
> Peter
>
> Am 17.02.20 um 07:33 schrieb Maram Abbas:
>
>> Hi
>> I was trying to build in windows 7
>> I followed the instructions step by step
>> Then I got stuck at the configuration
>> It says No such file or directory
>> I can't figure what I miss
>>
>>