LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 11-17-2010, 09:40 AM   #31
andrewthomas
Senior Member
 
Registered: May 2010
Location: Chicago Metro
Distribution: Arch, Gentoo, Slackware
Posts: 1,690

Rep: Reputation: 312Reputation: 312Reputation: 312Reputation: 312

Concerning k9copy:

Code:
k9copy                 6c59c38 multimedia/k9copy: added a patch for the new gcc in -current.
2.3.6 contains this patch, so you could just bump the version. Furthermore, in order to be able to copy without menus, when using the dvdauthor-0.7.0 slackbuild, one must configure dvdauthor with --enable-default-video-format=ntsc, as this is what k9copy expects.
Code:
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
  --prefix=/usr \
  --libdir=/usr/lib$LIBDIRSUFFIX \
  --sysconfdir=/etc \
  --localstatedir=/var \
  --mandir=/usr/man \
  --enable-default-video-format=ntsc \
  --build=$ARCH-slackware-linux
 
Old 11-17-2010, 12:01 PM   #32
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,109

Original Poster
Rep: Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178
thanks for the hint about updating to 2.3.6, soon it will be in the repo.

about the default video format for dvdauthor I followed the changelog

https://github.com/ldo/dvdauthor/blob/master/ChangeLog
http://create.freedesktop.org/wiki/Video_Format_Pref

I created a file ~/.config/video_format with this content (I'm in Italy)
Code:
PAL
and I'm now happily backupping with k9copy my Car Wash dvd.
 
Old 11-17-2010, 04:54 PM   #33
chytraeus
Member
 
Registered: Dec 2008
Distribution: slackware64 openbsd
Posts: 105

Rep: Reputation: 11
Ponce,
Thanks for sharing your sbo-git repository. For the first time I've been able to compile chromium and getting it working.

I am having one problem. I've installed several things and when I open sbopkg and click packages, I get this message:

It appears you have no SBo-git packages installed.

Do you have any ideas? Thanks.
 
Old 11-17-2010, 09:29 PM   #34
slakmagik
Senior Member
 
Registered: Feb 2003
Distribution: Slackware
Posts: 4,113

Rep: Reputation: Disabled
Quote:
Originally Posted by chytraeus View Post
I am having one problem. I've installed several things and when I open sbopkg and click packages, I get this message:

It appears you have no SBo-git packages installed.
You've found a bug in sbopkg. What happens is that we replace TAG internally with REPO_TAG and that's not getting passed to the SlackBuild so you'll probably find /var/log/packages is full of *_SBo packages when it should be full of *_custom packages. As a temporary workaround, if you run sbopkg like
Code:
TAG=_custom sbopkg ...
then sbopkg will pick *that* up and pass it on and everything will be as it should be: your packages will be built as $package_custom and sbopkg will list them properly.

And, of course, we'll try to get that bug fixed soon.

(If you have *_custom items in /var/log/packages and sbopkg isn't showing *those*, let me know, because that'd mean I misdiagnosed the bug.)
 
Old 11-17-2010, 11:08 PM   #35
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,109

Original Poster
Rep: Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178
Quote:
Originally Posted by chytraeus View Post
For the first time I've been able to compile chromium and getting it working.
I haven't touched chromium's slackbuild

P.S. for me the "packages" list works with a custom "ponce" TAG: is specified correctly in the repo file in /etc/sbopkg/repos.d and I have it exported in /etc/sbopkg/sbopkg.conf (but it works also if I omit it here).

Last edited by ponce; 11-18-2010 at 02:07 AM.
 
Old 11-18-2010, 04:57 PM   #36
chytraeus
Member
 
Registered: Dec 2008
Distribution: slackware64 openbsd
Posts: 105

Rep: Reputation: 11
Quote:
Originally Posted by slakmagik View Post
You've found a bug in sbopkg. What happens is that we replace TAG internally with REPO_TAG and that's not getting passed to the SlackBuild so you'll probably find /var/log/packages is full of *_SBo packages when it should be full of *_custom packages. As a temporary workaround, if you run sbopkg like
Code:
TAG=_custom sbopkg ...
then sbopkg will pick *that* up and pass it on and everything will be as it should be: your packages will be built as $package_custom and sbopkg will list them properly.

And, of course, we'll try to get that bug fixed soon.

(If you have *_custom items in /var/log/packages and sbopkg isn't showing *those*, let me know, because that'd mean I misdiagnosed the bug.)
Hi slakmagik,
Thanks, TAG=custom sbopkg worked for me. Yes my packages were all sbopkg instead of custom. Do I need open sbopkg with TAG=custom sbopkg each time?
 
Old 11-18-2010, 04:59 PM   #37
chytraeus
Member
 
Registered: Dec 2008
Distribution: slackware64 openbsd
Posts: 105

Rep: Reputation: 11
Quote:
Originally Posted by ponce View Post
I haven't touched chromium's slackbuild
hmm, maybe it works for me now because I rebuilt all the packages that chromium depends on.
 
Old 11-18-2010, 09:27 PM   #38
slakmagik
Senior Member
 
Registered: Feb 2003
Distribution: Slackware
Posts: 4,113

Rep: Reputation: Disabled
Quote:
Originally Posted by chytraeus View Post
Hi slakmagik,
Thanks, TAG=custom sbopkg worked for me. Yes my packages were all sbopkg instead of custom. Do I need open sbopkg with TAG=custom sbopkg each time?
Glad it works for you. As far as each time, you should only need to when you're building packages, but that's likely most of the time. Or you could try adding the line
Code:
export TAG=$REPO_TAG
after line 3311 of 0.34.0. I haven't tested it but it may be all that's needed.
 
Old 11-19-2010, 05:48 AM   #39
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,109

Original Poster
Rep: Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178
Quote:
Originally Posted by chytraeus View Post
hmm, maybe it works for me now because I rebuilt all the packages that chromium depends on.
yes, you're right, it could be it was some matter related to GConf (updated to 2.32.0), glad it works for you

for the problem above I usually add
Code:
export TAG=${TAG:-ponce}
to /etc/sbopkg/sbopkg.conf, but I think you can add there also
Code:
export TAG=$REPO_TAG
filed an enhancement request some time ago for that (thanks again!)

Last edited by ponce; 11-19-2010 at 05:53 AM.
 
Old 12-01-2010, 07:03 PM   #40
slakmagik
Senior Member
 
Registered: Feb 2003
Distribution: Slackware
Posts: 4,113

Rep: Reputation: Disabled
Quote:
Originally Posted by slakmagik View Post
Or you could try adding the line
Code:
export TAG=$REPO_TAG
after line 3311 of 0.34.0.
That actually wasn't quite where it belonged. Hopefully r849 for issue 49 will do it.
 
Old 12-01-2010, 09:16 PM   #41
chytraeus
Member
 
Registered: Dec 2008
Distribution: slackware64 openbsd
Posts: 105

Rep: Reputation: 11
Quote:
Originally Posted by slakmagik View Post
That actually wasn't quite where it belonged. Hopefully r849 for issue 49 will do it.
Thank you!
 
Old 03-11-2011, 03:14 AM   #42
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,109

Original Poster
Rep: Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178
a quick note for the new cgit interface (much faster )

http://cgit.ponce.cc/slackbuilds/

also, if useful, I rebuilt on 13.37 RC1 the x86_64 packages I'm using on my hosts

http://ponce.cc/slackware/slackware64-current/packages/

Last edited by ponce; 03-11-2011 at 05:35 AM.
 
2 members found this post helpful.
Old 03-11-2011, 05:54 AM   #43
slakmagik
Senior Member
 
Registered: Feb 2003
Distribution: Slackware
Posts: 4,113

Rep: Reputation: Disabled
I added your repo as an unsupported repo. This way people will just have to select it from the menu or with the -V flag and not have to create the file if they want to use it. Is there anything you'd want to change? It occurs to me that '_custom' is an oddly vague tag and maybe '_SBoC' or 'ponce' or something might be good but that's entirely up to you.
 
1 members found this post helpful.
Old 03-11-2011, 05:57 AM   #44
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,109

Original Poster
Rep: Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178Reputation: 4178
thanks a lot for that slakmagik! \o/
I appreciate it and I have one more reason to keep it stable
I think "ponce" should do (to help avoid people go reporting bugs to busy slackbuilds.org's fellas while it's all my fault)

Last edited by ponce; 03-11-2011 at 06:06 AM.
 
Old 03-11-2011, 06:26 AM   #45
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,901

Rep: Reputation: 5025Reputation: 5025Reputation: 5025Reputation: 5025Reputation: 5025Reputation: 5025Reputation: 5025Reputation: 5025Reputation: 5025Reputation: 5025Reputation: 5025
Quote:
Originally Posted by ponce View Post
a quick note for the new cgit interface (much faster )
Very much faster. I like!
 
  


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
[SOLVED] SBo SlackBuilds fail at make install under latest -current64 rmjohnso Slackware 2 03-04-2010 11:13 AM
radeon git slackware-current (32 and 64) X lockup forum1793 Slackware 2 07-18-2009 07:08 AM
why is git scm named 'git'? hottdogg Linux - General 5 02-03-2009 07:25 AM
Using GIT vkmgeek Linux - General 1 12-25-2008 04:48 PM
inconsistency issue of git-clone ***/git/mesa/drm with the existing kernel source centguy Linux - Desktop 2 10-08-2008 10:36 PM

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

All times are GMT -5. The time now is 04:13 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