LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 08-14-2010, 12:13 PM   #1
Swift&Smart
Member
 
Registered: Jan 2003
Location: Hong Kong,China
Distribution: Slackware,OpenSUSE
Posts: 472

Rep: Reputation: 30
Slackbuild handbrake error-[gtk.install] Error 2


I need handbrake software so badly so I went to alien's slackbuild to download the handbrake.However,it ends with error after compiling-

make[2]: *** [install-recursive] Error 1
make[2]: Leaving directory `/tmp/build/tmp-handbrake/HandBrake-0.9.4/build/gtk'
make[1]: *** [install-strip] Error 2
make[1]: Leaving directory `/tmp/build/tmp-handbrake/HandBrake-0.9.4/build/gtk'
make: *** [gtk.install] Error 2
./handbrake.SlackBuild FAILED at line 289
root@root:/mnt/vm/handbrake# [gtk.install] Error 2


Does it mean i miss something of gtk?

If you have any ideas,please feel free to drop me a line.Thanks.
 
Old 08-14-2010, 03:56 PM   #2
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,682

Rep: Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375
Did you install the dependencies from the README? It sounds like your missing webkitgtk.

From README...

NOTE #1:
Dependends on these packages:
icu4c
libsoup
webkitgtk

You can get these over at slackbuilds.org but just a suggestion, if you have a dual core system you may want to download the webkitgtk build and change the make line to something like make -7 (only if you have a multicore cpu) since it will speed up the build time for that package.

Last edited by Daedra; 08-14-2010 at 04:01 PM.
 
Old 08-14-2010, 11:19 PM   #3
Swift&Smart
Member
 
Registered: Jan 2003
Location: Hong Kong,China
Distribution: Slackware,OpenSUSE
Posts: 472

Original Poster
Rep: Reputation: 30
In fact, I did install icu4c,libsoup and webkitgtk compiled packages from alien's web but got the same result.

So I started over,slackbuilds the above one by one.However, when I slackbuild webkitgtk, it gave me this error:

checking for LIBSOUP... configure: error: Package requirements (libsoup-2.4 >= 2.28.2) were not met:

No package 'libsoup-2.4' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

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

make: *** No targets specified and no makefile found. Stop.
make: *** No rule to make target `install'. Stop.
./webkitgtk.SlackBuild FAILED at line 195


libsoup was successfully installed after slackbuild with version 2.31. So I just don't know what the error really is.

Thanks.
 
Old 08-15-2010, 10:59 AM   #4
gnashley
Amigo developer
 
Registered: Dec 2003
Location: Germany
Distribution: Slackware
Posts: 4,928

Rep: Reputation: 612Reputation: 612Reputation: 612Reputation: 612Reputation: 612Reputation: 612
You have to run 'ldconfig' after installing libs so that they are found by ld.
 
Old 08-15-2010, 11:17 AM   #5
Swift&Smart
Member
 
Registered: Jan 2003
Location: Hong Kong,China
Distribution: Slackware,OpenSUSE
Posts: 472

Original Poster
Rep: Reputation: 30
gnashley,thanks for your reply.

However,the error message still comes up even i issued command 'ldconfig' before i re-compiling with slackbuild. It said libsoup not found but I have already installed it as a package.

Still, I think compiling software is a pain.
 
Old 08-15-2010, 12:34 PM   #6
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,097

Rep: Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174
on alien bob site there's also a prebuilt package of handbrake, but I already suggested you, so maybe you want to rebuild it...

can you please verify this? in my install I got
Code:
$ grep pkgconfig /var/log/packages/libsoup-*                    
usr/lib64/pkgconfig/
usr/lib64/pkgconfig/libsoup-2.4.pc
 
Old 08-17-2010, 10:53 AM   #7
Swift&Smart
Member
 
Registered: Jan 2003
Location: Hong Kong,China
Distribution: Slackware,OpenSUSE
Posts: 472

Original Poster
Rep: Reputation: 30
ponce,thanks for your reply.

I got exactly what you've got after issuing grep pkgconfig /var/log/packages/libsoup-* command.

I have some kind of dependencies hell as one package relies on other, and other relies on another.

Frankly,I feel a little bit frustrated on that.
 
Old 08-17-2010, 11:14 AM   #8
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,097

Rep: Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174Reputation: 4174
you can try rebuilding libsoup from slackbuilds.org and after you can try with webkit (webkitgtk is the gtk part of that) and see if those versions build.

which version of slackware are you using?

Last edited by ponce; 08-17-2010 at 11:31 AM.
 
Old 08-17-2010, 03:42 PM   #9
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,682

Rep: Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375Reputation: 1375
Quote:
Originally Posted by Swift&Smart View Post
ponce,thanks for your reply.

I got exactly what you've got after issuing grep pkgconfig /var/log/packages/libsoup-* command.

I have some kind of dependencies hell as one package relies on other, and other relies on another.

Frankly,I feel a little bit frustrated on that.
You'll find that this isn't the case with most packages. Some just are though, like VLC and Handbrake.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
go_openoffice SlackBuild error lipk Slackware 3 02-20-2010 08:33 AM
Dependencies unmet - Handbrake-gtk captkrill Debian 3 01-11-2010 09:24 AM
gtk 2.8.9 make install error shishiom Linux - Newbie 2 03-06-2006 10:18 AM
Trying to install gtk: pango 1.4.0 error kidicarus Linux - Software 3 06-30-2004 10:31 AM
different gaim install gtk error shanenin Linux - Software 4 10-17-2003 07:25 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 06:45 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration