Re: [blfs-dev] qca-qt5

2016-02-12 Thread Fernando de Oliveira
Em 11-02-2016 23:42, Ken Moffat escreveu:
> On Fri, Feb 12, 2016 at 02:12:26AM +, Ken Moffat wrote:
>> Since I've now got the horsepower, I'm adding (to my scripts) the
>> parts of qt5 which I normally regard as "not wanted on voyage".
>>
>> At plasma-nm, I find that I need Qca-qt5 : fair enough, the plasma
>> deps mention it as:
>>  qca-2.1.1 (built with qt5)
>>
>> But, when I come to look at qca I see that we force a QT4 build and
>> install it into $QT4DIR.
>>
>> For the build, the explanation says:
>>
>> -DQT4_BUILD=ON: This switch is used to force building with Qt4 even
>> if Qt5 is found. There are no packages in BLFS that use the Qt5
>> version of Qca.
>>
>> I assume I need to use $KF5_PREFIX as well as forcing QT4, but I
>> think the Qca page needs a little love before 7.9.
>>
> Sod this for a game of soldiers.
> 
> I've looked at #7182, I'm running cmake with
> 
> cmake -DCMAKE_INSTALL_PREFIX=$KF5_PREFIX\
>   -DCMAKE_BUILD_TYPE=Release\
>   -DQCA_MAN_INSTALL_DIR:PATH=${KF5_PREFIX}/share/man \
>   ..
> 

ĸen,

I have built it with Qt4 and with Qt5.

On 2015.11.30-07h31m08s with Qt4:

{{{
cmake -DCMAKE_INSTALL_PREFIX=$QT4DIR \
  -DCMAKE_BUILD_TYPE=Release \
  -DQT4_BUILD=ON \
  -DQCA_MAN_INSTALL_DIR=/usr/share/man \
  ..
}}}

{{{
QCA prefix is /opt/qt4
Plugins will be installed to /opt/qt4/lib/qca
Binary will be installed to /opt/qt4/bin
Library will be installed to /opt/qt4/lib
Public headers will be installed to /opt/qt4/include
Private headers will be installed to /opt/qt4/include
Feature file will be installed to /opt/qt4/mkspecs/features
Documentation will be installed to /opt/qt4/share/doc/qca/html
Man page will be installed to /usr/share/man
Pkg-config file will be installed to /opt/qt4/lib/pkgconfig
}}}

{{{
100% tests passed, 0 tests failed out of 24

Total Test time (real) =  56.41 sec
}}}

On 2015.11.30-07h40m03s with Qt5:

{{{
cmake -DCMAKE_INSTALL_PREFIX=$QT5DIR \
  -DCMAKE_BUILD_TYPE=Release \
  -DQCA_MAN_INSTALL_DIR=/usr/share/man \
  ..
}}}

{{{
QCA prefix is /opt/qt5
Plugins will be installed to /opt/qt5/lib/qca-qt5
Binary will be installed to /opt/qt5/bin
Library will be installed to /opt/qt5/lib
Public headers will be installed to /opt/qt5/include/Qca-qt5
Private headers will be installed to /opt/qt5/include/Qca-qt5
Feature file will be installed to /opt/qt5/mkspecs/features
Documentation will be installed to /opt/qt5/share/doc/qca-qt5/html
Man page will be installed to /usr/share/man
Pkg-config file will be installed to /opt/qt5/lib/pkgconfig
}}}

{{{
100% tests passed, 0 tests failed out of 24

Total Test time (real) =  56.36 sec
}}}

Notice that you used

-DCMAKE_INSTALL_PREFIX=$KF5_PREFIX

but should have been

-DCMAKE_INSTALL_PREFIX=$QT5DIR

and that there is an *error* in the book:

s:MAN_INSTALL_DIR:PATH=${KF5_PREFIX}/share/man:MAN_INSTALL_DIR=/usr/share/man:

or simply

s/:PATH=${KF5_PREFIX}//

-- 
[]s,
Fernando, aka Sísifo
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-dev] libreoffice - failure in CppunitTest_dbaccess_firebird_test

2016-02-12 Thread Fernando de Oliveira
Em 11-02-2016 23:01, Ken Moffat escreveu:
> On Thu, Feb 11, 2016 at 09:15:17AM -0300, Fernando de Oliveira wrote:
>> Em 10-02-2016 14:06, Fernando de Oliveira escreveu:
>>> Em 10-02-2016 13:20, Ken Moffat escreveu:
 On Sun, Feb 07, 2016 at 07:49:09AM -0300, Fernando de Oliveira wrote:
> Em 07-02-2016 07:45, Fernando de Oliveira escreveu:
>> Em 06-02-2016 22:37, Ken Moffat escreveu:
>>> In my current build, libreoffice failed with:
>>>
 [...]
>>>
>>> Error: a unit test failed, please do one of:
>>>
>>> export DEBUGCPPUNIT=TRUE# for exception catching
>>> export CPPUNITTRACE="gdb --args"# for interactive debugging on Linux
>>> export VALGRIND=memcheck# for memory checking
>>>
>>> and retry using: make CppunitTest_dbaccess_firebird_test
>>>
>
>>> ĸen
>>>
>>
>> There has been problems when building in ssh or chroot. I had it a
>> couple of times. e.g.
>>
>> 
>>
>
> Found another one, where I intentionally reproduced the problem via ssh:
>
> 
>
 So, do you think we should add --disable-firebird-sdbc to the
 configure ('the firebird support sometimes fails its unit test'), or
 else docment it as an optional switch ?

 I see you have taken the next release of LO.

 ĸen

>>>
>>> If it fails for me, we add. If not, I will (kindly) ask you to add it to
>>> page, it is worth documenting.
>>
>> No error with Firebired. Please, add your words to document the
>> CppunitTest_dbaccess_firebird_failed test.
>>>
>>> I am building with system boost. The patch failed to apply, mostly for
>>> "gave already been applied". If correct, we will all be happy. :-)
>>
>> Worked fine with system-boost and no patch.
>>
> Sorry, I got distracted - first I tried to use my new kvm switch,
> only to find that my old server does not talk to a usb keyboard, and
> then somebody reported a problem with our (my) texlive instructions
> on the tl-build list of all places (for the moment, I have indicated
> what I think he did wrong).
> 
> Added, as an option, at r16950.  For the moment I do not know how
> reliably it occurs, and next time I might build gdb anyway (if I
> remember).
> 
> ĸen
> 

Thanks!!!

-- 
[]s,
Fernando, aka Sísifo
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-dev] HTML file name is inappropriate (multimedia/atk.html)

2016-02-12 Thread Bruce Dubbs

Yukio Shiiya wrote:

Hi,

First of all, sorry for my poor English.

Following page describe about v4l-utils package.
http://www.linuxfromscratch.org/blfs/view/7.8/multimedia/atk.html
http://www.linuxfromscratch.org/blfs/view/svn/multimedia/atk.html

I think that html file should be renamed.

For example,
"atk.html" -> "v4l-utils.html"


Indeed.  Good spot.  Fixed at revision 16955.

  -- Bruce

--
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


[blfs-dev] HTML file name is inappropriate (multimedia/atk.html)

2016-02-12 Thread Yukio Shiiya
Hi,

First of all, sorry for my poor English.

Following page describe about v4l-utils package.
http://www.linuxfromscratch.org/blfs/view/7.8/multimedia/atk.html
http://www.linuxfromscratch.org/blfs/view/svn/multimedia/atk.html

I think that html file should be renamed.

For example,
"atk.html" -> "v4l-utils.html"

Thanks,

-- 
Yukio Shiiya
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


[blfs-dev] Dependency is missing (valgrind)

2016-02-12 Thread Yukio Shiiya
Hi,

I encountered an error on the following page.
http://www.linuxfromscratch.org/blfs/view/7.8/general/valgrind.html

# make regtest
prereq returned 127: which host >/dev/null 2>/dev/null && host www.yahoo.com > 
/dev/null
(snip)
Makefile:1244: recipe for target 'regtest' failed
make: *** [regtest] Error 1

I think that "which" and "bind-utils" should be described as 
"Dependency for make regtest".

Thanks,

-- 
Yukio Shiiya
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


[blfs-dev] Dependency is missing (pinentry)

2016-02-12 Thread Yukio Shiiya
Hi,

I encountered an error on the following page.
http://www.linuxfromscratch.org/blfs/view/7.8/general/pinentry.html

# ./configure --prefix=/usr
configure:
***
*** You need libgpg-error to build this program.
**  This library is for example available at
***   ftp://ftp.gnupg.org/gcrypt/libgpg-error
*** (at least version 1.16 is required.)
***
configure:
***
*** You need libassuan to build this program.
*** This library is for example available at
***   ftp://ftp.gnupg.org/gcrypt/libassuan/
*** (at least version 2.1.0 (API 2) is required).
***
configure: error: 
***
*** Required libraries not found. Please consult the above messages
*** and install them before running configure again.
***

I think that "libgpg-error" and "libassuan" should be described as 
"Required Dependency".

Thanks,

-- 
Yukio Shiiya
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


[blfs-dev] kdepim-4.14.10

2016-02-12 Thread Ken Moffat
Me again, now updating my scripts for those parts of kde4 I threw
out of my pram.

kdepim-4.14.10 links to
 http://ftp.osuosl.org/pub/blfs/conglomeration/kdepim//src/kdepim-4.14.10.tar.xz
but that gives 'not found'.

I found it at fedora :
http://pkgs.fedoraproject.org/repo/pkgs/kdepim/kdepim-4.14.10.tar.xz/a09c9bd838cd71c16e9993e57653a7ad/

ĸen
-- 
This email was written using 100% recycled letters.
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-dev] kdepim-4.14.10

2016-02-12 Thread Bruce Dubbs

Ken Moffat wrote:

Me again, now updating my scripts for those parts of kde4 I threw
out of my pram.

kdepim-4.14.10 links to
  
http://ftp.osuosl.org/pub/blfs/conglomeration/kdepim//src/kdepim-4.14.10.tar.xz
but that gives 'not found'.

I found it at fedora :
http://pkgs.fedoraproject.org/repo/pkgs/kdepim/kdepim-4.14.10.tar.xz/a09c9bd838cd71c16e9993e57653a7ad/


Or at ftp://ftp.osuosl.org/pub/blfs/conglomeration/kdepim/

ftp.osuosl.org has ALL the BLFS files.  I update it daily.

  -- Bruce


--
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-dev] kdepim-4.14.10

2016-02-12 Thread Ken Moffat
On Fri, Feb 12, 2016 at 12:47:56PM -0600, Bruce Dubbs wrote:
> Ken Moffat wrote:
> >Me again, now updating my scripts for those parts of kde4 I threw
> >out of my pram.
> >
> >kdepim-4.14.10 links to
> >  
> > http://ftp.osuosl.org/pub/blfs/conglomeration/kdepim//src/kdepim-4.14.10.tar.xz
> >but that gives 'not found'.
> >
> >I found it at fedora :
> >http://pkgs.fedoraproject.org/repo/pkgs/kdepim/kdepim-4.14.10.tar.xz/a09c9bd838cd71c16e9993e57653a7ad/
> 
> Or at ftp://ftp.osuosl.org/pub/blfs/conglomeration/kdepim/
> 
> ftp.osuosl.org has ALL the BLFS files.  I update it daily.
> 
>   -- Bruce
> 
Yes, I had assumed it ought to be at osuosl - but the http:// link
does not work.

ĸen
-- 
This email was written using 100% recycled letters.
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-dev] [blfs-book] r16942 - in trunk/BOOK: . introduction/welcome x/installing xsoft/graphweb xsoft/office

2016-02-12 Thread DJ Lucas



On 2/12/2016 10:56 PM, Bruce Dubbs wrote:

DJ Lucas wrote:




Hey all, what is the reason that libinput is not listed in packages.ent?


I added it for plasma5 and IIRC, I copied from systemd.  Should have put
it in general.ent then.

   -- Bruce


Okay, cool. Thanks. I just wanted to make sure I wasn't doing anything 
wrong. The version entity was in packages.ent in the other book by the 
time I got to it.


--DJ

--
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-dev] [blfs-book] r16942 - in trunk/BOOK: . introduction/welcome x/installing xsoft/graphweb xsoft/office

2016-02-12 Thread DJ Lucas



On 2/10/2016 9:14 PM, ferna...@higgs.linuxfromscratch.org wrote:

Modified: trunk/BOOK/x/installing/libinput.xml
==
--- trunk/BOOK/x/installing/libinput.xmlWed Feb 10 17:50:48 2016
(r16941)
+++ trunk/BOOK/x/installing/libinput.xmlWed Feb 10 19:14:43 2016
(r16942)
@@ -4,13 +4,13 @@

%general-entities;

-  
+  


Hey all, what is the reason that libinput is not listed in packages.ent?

--DJ

--
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page


Re: [blfs-dev] [blfs-book] r16942 - in trunk/BOOK: . introduction/welcome x/installing xsoft/graphweb xsoft/office

2016-02-12 Thread Bruce Dubbs

DJ Lucas wrote:



On 2/10/2016 9:14 PM, ferna...@higgs.linuxfromscratch.org wrote:

Modified: trunk/BOOK/x/installing/libinput.xml
==

--- trunk/BOOK/x/installing/libinput.xmlWed Feb 10 17:50:48 2016
(r16941)
+++ trunk/BOOK/x/installing/libinput.xmlWed Feb 10 19:14:43 2016
(r16942)
@@ -4,13 +4,13 @@

%general-entities;

-  
+  


Hey all, what is the reason that libinput is not listed in packages.ent?


I added it for plasma5 and IIRC, I copied from systemd.  Should have put 
it in general.ent then.


  -- Bruce
--
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page