LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 01-04-2009, 04:36 PM   #31
Slacker Steve
Member
 
Registered: Nov 2008
Posts: 85

Rep: Reputation: 16

Quote:
Originally Posted by Woodsman View Post
Originally I used the build script from slacky.eu.
Didn't realize slacky.eu had build scripts for their packages. Thanks, that'll come in handy for when I can't find something on Slackbuilds.org
 
Old 01-04-2009, 04:43 PM   #32
Woodsman
Senior Member
 
Registered: Oct 2005
Distribution: Slackware 14.1
Posts: 3,482

Original Poster
Rep: Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546
Quote:
. . . but I do feel it is missing some things.
I updated the page with some of the ideas mentioned. Hopefully this helps.
 
Old 01-04-2009, 10:05 PM   #33
bgeddy
Senior Member
 
Registered: Sep 2006
Location: Liverpool - England
Distribution: slackware64 13.37 and -current, Dragonfly BSD
Posts: 1,810

Rep: Reputation: 232Reputation: 232Reputation: 232
Quote:
Didn't realize slacky.eu had build scripts for their packages. Thanks, that'll come in handy for when I can't find something on Slackbuilds.org
Just check the "src/" directory - they host the SlackBuild and the source. A very useful resource to add to your armoury

I would still recommend looking at README's, INSTALL's, slack-required's etc as well as the *.SlackBuild before running to make sure all requisites are followed and no oddness is scripted in.

Probably just being paranoid here..
 
Old 01-08-2009, 10:51 AM   #34
shadowsnipes
Senior Member
 
Registered: Sep 2005
Distribution: Slackware
Posts: 1,443

Rep: Reputation: 73
Woodsman, the updated article looks better. Thank you
 
Old 01-08-2009, 04:18 PM   #35
Woodsman
Senior Member
 
Registered: Oct 2005
Distribution: Slackware 14.1
Posts: 3,482

Original Poster
Rep: Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546
Quote:
the updated article looks better.
Thanks. I learned long ago that the worst proofreader, editor, and reviewer of any written piece is the original author. Feedback and additional writing effort is almost always needed. So thanks to everybody who responded.
 
Old 01-08-2009, 10:34 PM   #36
farmerdave
Member
 
Registered: Mar 2008
Location: Adelaide, Australia
Distribution: Arch, Slackware 14.2, Fedora 27
Posts: 111
Blog Entries: 1

Rep: Reputation: 16
I really like Amarok, but it doesnt have the MusicBrainz function straight away, which is really useful for tagging new music in your library.

Last edited by farmerdave; 01-08-2009 at 10:34 PM. Reason: spelling error
 
Old 01-13-2009, 11:32 AM   #37
pddm
Member
 
Registered: Sep 2005
Distribution: Mint 19.2
Posts: 112

Rep: Reputation: 15
Woodsman, Nice post!

In regard of DavidHindman's compilation or package creation problems, I noticed that many applications and components, which depend on ffmpeg components (like libavcodec or libavformat), look for the header files and libraries in the wrong places.

They mostly expect a ffmpeg subdirectory wherever they search for them, or you indicate where they are supposed to be and they still look for an ffmpeg subdirectory.

This even happens with the slackbuilds.org built package of ffmpeg.

One way for me to overcome this, was to create ffmpeg directories in /usr/lib and /usr/include and create symbolic links to the files in question. ie:
Code:
ln -s /usr/include/libavformat/avformat.h  /usr/include/ffmpeg/avformat.h
ln -s /usr/include/libavcodec/avcodec.h  /usr/include/ffmpeg/avcodec.h
Check the configure.log file to see which headers or libraries are not found.
I experienced this when satisfying the dependencies for mediatomb and ushare.

Last edited by pddm; 01-13-2009 at 11:36 AM.
 
Old 01-13-2009, 09:49 PM   #38
stormtracknole
Senior Member
 
Registered: Aug 2005
Distribution: Slackware, RHEL
Posts: 1,263

Rep: Reputation: 231Reputation: 231Reputation: 231
Woodsman!

Thank you very much for taking time to write this guide. Your page is fantastic and I have it bookmarked on my computer. Great source of info!
 
Old 01-14-2009, 02:57 AM   #39
tramni1980
Member
 
Registered: Jul 2006
Location: Köln, Germany
Distribution: Slackware64-14.2 & -current, DragonFly BSD, OpenBSD
Posts: 819

Rep: Reputation: 55
I could not make k3b recognize the presence of libmusicbrains installation.
Here is some output of k3b's configure script:
Code:
checking musicbrainz/mb_c.h usability... no
checking musicbrainz/mb_c.h presence... no
checking for musicbrainz/mb_c.h... no

K3b - Tag guessing using MusicBrainz          no
K3b -     You are missing the musicbrainz headers and libraries.
K3b -     K3b will be compiled without support for tag guessing.
I have installed libmusicbrainz-3.0.2. The library header that k3b-1.0.5 does not find is present in:
Code:
slocate mb_c.h:
/usr/include/musicbrainz3/mb_c.h
Any suggestions?
 
Old 01-14-2009, 06:07 AM   #40
Mark Pettit
Member
 
Registered: Dec 2008
Location: Cape Town, South Africa
Distribution: Slackware 15.0
Posts: 619

Rep: Reputation: 299Reputation: 299Reputation: 299
Your musicbrainz is installing the headers to 'musicbrainz3',
not the 'musicbrainz' directory that k3b is expecting.

A quick fix would be to soft-link the directory ...
cd /usr/include
ln -s musicbrainz3 musicbrainz
 
Old 01-14-2009, 07:57 AM   #41
tramni1980
Member
 
Registered: Jul 2006
Location: Köln, Germany
Distribution: Slackware64-14.2 & -current, DragonFly BSD, OpenBSD
Posts: 819

Rep: Reputation: 55
Quote:
Originally Posted by Mark Pettit View Post
Your musicbrainz is installing the headers to 'musicbrainz3',
not the 'musicbrainz' directory that k3b is expecting.

A quick fix would be to soft-link the directory ...
cd /usr/include
ln -s musicbrainz3 musicbrainz
Thank you for your reply.
Well, I did that and now the problem is:
Code:
checking for mb_New in -lmusicbrainz... no
Regards,
Martin
 
Old 01-14-2009, 11:17 AM   #42
Mark Pettit
Member
 
Registered: Dec 2008
Location: Cape Town, South Africa
Distribution: Slackware 15.0
Posts: 619

Rep: Reputation: 299Reputation: 299Reputation: 299
So - not just a simple include directory name difference, but
a complete library change too.

Looks to me as if k3b is set to use an older version of musicbrainz.

So - you either persuade k3b to use the new library (unlikely i'd guess),
or you install an older version of musicbrainz (maybe ver 2 or 1 ?) and
try again. Maybe there's a newer version of k3b (in subversion/development)
that is using the new musicbrainz.

But this is the fun part. And when you solve it, you will be the stronger
for it.
 
Old 01-30-2009, 05:57 PM   #43
andrew.46
Senior Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 1,365

Rep: Reputation: 493Reputation: 493Reputation: 493Reputation: 493Reputation: 493
Quote:
Originally Posted by Woodsman View Post
Note: there is a small bug with building ffmpeg. The bug is being remedied in the slackbuild script but is not yet uploaded. The ffmpeg configure file is hard-coded to look for a TEMPDIR variable. If you use /tmp as your temporary working directory then run the build script like this: TEMPDIR=/tmp sh ffmpeg.SlackBuild.

Of course, then try again to build transcode.
Thanks for solving 24 hours of frustration for me when attempting to build the new version of transcode! I note the FFmpeg script on slackbuilds.org has not received this small but vital change, was it rejected for some reason?

Andrew
 
Old 02-02-2009, 03:24 PM   #44
Woodsman
Senior Member
 
Registered: Oct 2005
Distribution: Slackware 14.1
Posts: 3,482

Original Poster
Rep: Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546
Quote:
I note the FFmpeg script on slackbuilds.org has not received this small but vital change, was it rejected for some reason?
I don't know. You'll have to ask at the slackbuilds.org mailing list.
 
  


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
is there any full featured yahoo messenger on linux linux_power Linux - Software 4 09-25-2007 10:12 AM
Full featured feed reader? bruno buys Linux - Software 3 04-12-2006 08:05 PM
Is Suse 10 trial version full-featured? jcliburn SUSE / openSUSE 7 02-01-2006 11:14 AM
DISCUSSION: Installing Mandrake 10.1 as a Full Featured Server SeBsZ LinuxAnswers Discussion 8 01-15-2006 05:07 PM
What is the most newbie friendly (but full featured) Linux Distro? GameGuru Linux - Software 17 06-30-2005 08:30 AM

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

All times are GMT -5. The time now is 04:19 PM.

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