all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Flash Player for Icecat Gnash can not find boost header
@ 2018-09-30 11:25 znavko
  2018-10-02 10:12 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: znavko @ 2018-09-30 11:25 UTC (permalink / raw)
  To: Help Guix

[-- Attachment #1: Type: text/plain, Size: 2022 bytes --]

Hello! I need to use Flash Player in IceCat on GNU GuixSD.
First I tried to download NPAPI from get.adobe.com and to place it into ~/.mozilla/plugins with `chmod +x libflashplayer.so`. But after  Icecat restart, flash player plugin does not appear.

Now I try to compile Gnash - GNU Flash alternative. I did not found it in repository:
$ guix package -s gnash
$ 

So I have downloaded and unzipped gnash-0.8.10. And try to compile as non-root user. I've installed boost for it , but gnash configure script does not find it:

$ guix package -i boost
The following package will be installed:
   boost    1.66.0    /gnu/store/l6hqfwr1hcbn9rg56bwn2d41g2ai36h2-boost-1.66.0

substitute: updating list of substitutes from 'https://mirror.hydra.gnu.org <https://mirror.hydra.gnu.org>'... substitute: updating list of substitutes from 'https://mirror.hydra.gnu.org <https://mirror.hydra.gnu.org>'... 100.0%
...
73 packages in profile

$ whereis boost
boost:

$ ls /gnu/store/l6hqfwr1hcbn9rg56bwn2d41g2ai36h2-boost-1.66.0
include/  lib/  share/

$ pwd
/home/bob/Downloads/gnash-0.8.10

$ ./configure
...
checking whether pthreads work with -pthread... yes
checking searching for pthread library... not found
checking for the Boost Version... 
checking for boost header... checking for Boost libraries... configure: WARNING: Libraries  thread program_options iostreams  serialization date_time aren't installed 

checking if -fvisibility-inlines-hidden is broken... no
checking whether g++ supports -fvisibility=hidden... yes
checking whether GConf support is requested... yes
checking for GCONF... configure: error: Package requirements (gconf-2.0) were not met.
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively you may set the GCONF_CFLAGS and GCONF_LIBS environment variables
to avoid the need to call pkg-config.  See the pkg-config man page for
more details.


--
Please, what to do?



[-- Attachment #2: Type: text/html, Size: 2514 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Flash Player for Icecat Gnash can not find boost header
       [not found] <LNeDW1_--3-1@tutanota.com-LNeDZxO----1>
@ 2018-09-30 11:28 ` znavko
  0 siblings, 0 replies; 4+ messages in thread
From: znavko @ 2018-09-30 11:28 UTC (permalink / raw)
  To: znavko; +Cc: Help Guix

[-- Attachment #1: Type: text/plain, Size: 282 bytes --]

PATH is

$ echo $PATH
/root/.guix-profile/bin:/home/bob/.guix-profile/bin:/home/bob/.guix-profile/sbin:/home/bob/.guix-profile/bin:/home/bob/.guix-profile/sbin:/home/bob/.config/guix/current/bin:/run/setuid-programs:/run/current-system/profile/bin:/run/current-system/profile/sbin


[-- Attachment #2: Type: text/html, Size: 432 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Flash Player for Icecat Gnash can not find boost header
  2018-09-30 11:25 Flash Player for Icecat Gnash can not find boost header znavko
@ 2018-10-02 10:12 ` Ludovic Courtès
  2018-10-30 20:01   ` swedebugia
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2018-10-02 10:12 UTC (permalink / raw)
  To: znavko; +Cc: Help Guix

Hello,

<znavko@tutanota.com> skribis:

> So I have downloaded and unzipped gnash-0.8.10. And try to compile as non-root user. I've installed boost for it , but gnash configure script does not find it:

[...]

> $ ./configure
> ...
> checking whether pthreads work with -pthread... yes
> checking searching for pthread library... not found
> checking for the Boost Version... 
> checking for boost header... checking for Boost libraries... configure: WARNING: Libraries  thread program_options iostreams  serialization date_time aren't installed 
>
> checking if -fvisibility-inlines-hidden is broken... no
> checking whether g++ supports -fvisibility=hidden... yes
> checking whether GConf support is requested... yes
> checking for GCONF... configure: error: Package requirements (gconf-2.0) were not met.
> Consider adjusting the PKG_CONFIG_PATH environment variable if you
> installed software in a non-standard prefix.
>
> Alternatively you may set the GCONF_CFLAGS and GCONF_LIBS environment variables
> to avoid the need to call pkg-config.  See the pkg-config man page for
> more details.

AFAICS the problem here is not about Boost but about GConf, which is
missing.

Note that if you’re building Gnash, you may just as well write a package
definition for it: it won’t be much harder, and it will benefit
everyone.  See
<https://www.gnu.org/software/guix/manual/en/html_node/Defining-Packages.html>
to get started.

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Flash Player for Icecat Gnash can not find boost header
  2018-10-02 10:12 ` Ludovic Courtès
@ 2018-10-30 20:01   ` swedebugia
  0 siblings, 0 replies; 4+ messages in thread
From: swedebugia @ 2018-10-30 20:01 UTC (permalink / raw)
  To: Help Guix

On 2018-10-02 12:12, Ludovic Courtès wrote:
>
> Note that if you’re building Gnash, you may just as well write a package
> definition for it: it won’t be much harder, and it will benefit
> everyone.  See
> <https://www.gnu.org/software/guix/manual/en/html_node/Defining-Packages.html>
> to get started.
See also the new blog article on the subject with I really liked.
https://www.gnu.org/software/guix/blog/2018/a-packaging-tutorial-for-guix/

Thanks Pierre!

-- 
---
Swedebugia

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-10-30 19:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-30 11:25 Flash Player for Icecat Gnash can not find boost header znavko
2018-10-02 10:12 ` Ludovic Courtès
2018-10-30 20:01   ` swedebugia
     [not found] <LNeDW1_--3-1@tutanota.com-LNeDZxO----1>
2018-09-30 11:28 ` znavko

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.