New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !
Trying to install gpac, but dependancies conflict
Trying to install gpac, but dependancies conflict
Hi,
I've been trying to install the package 'gpac'. Gpac depends on packages libavcodeccvs51 and libavutilcvs49, however it looks like these conflict with the already installed libavcodec51 and libavutil49 packages. It looks like these packages are required for MediaTomb and Firefly.
If I try to install the conflicting package, such as libavcodeccvs51, apt-get de-installs the original package, such as libavcodec51.
Does anyone know of a way to work around this or have I hit a brick-wall in that I cannot use packages which depend on conflicting packages?
Thanks
I've been trying to install the package 'gpac'. Gpac depends on packages libavcodeccvs51 and libavutilcvs49, however it looks like these conflict with the already installed libavcodec51 and libavutil49 packages. It looks like these packages are required for MediaTomb and Firefly.
If I try to install the conflicting package, such as libavcodeccvs51, apt-get de-installs the original package, such as libavcodec51.
Does anyone know of a way to work around this or have I hit a brick-wall in that I cannot use packages which depend on conflicting packages?
Thanks
Hello,
where have you gathered the package files for gpac? One way to install it is to try to recompile the sources. First you should install the package "devscripts" and all it's dependices. Then you locate the .dsc file for gpac, and via the shell issue
after it has been unpacked, enter the directory and issue the command "debuild", if it complains about missing dependices, try installing the dependices using apt-get.
/Carl
where have you gathered the package files for gpac? One way to install it is to try to recompile the sources. First you should install the package "devscripts" and all it's dependices. Then you locate the .dsc file for gpac, and via the shell issue
Code: Select all
dget -ux http://host/gpac.dsc
/Carl
Hi,
Thanks for replying. I'll have a go at doing it that way.
The process I followed was something like the following (this is from memory so may not be perfect):
- Edit /etc/apt/sources.list (as root) and added the following at the end:
- Tried 'apt-get update' and this complained; regarding a public key not being available.
- Run a couple of gpg commands and 'apt-key add' to add the key
- This allowed 'apt-get update' to work
- Ran 'apt-get install gpac'. This told me about the conflicting dependancies (e.g. libavcodeccvs51), but didn't try to resolve them.
- Ran 'apt-get install' for one of the conflicting packages, e.g. 'apt-get libavcodeccvs51'. This then proposed to de-install packages which depended upon the already installed conflicting package, e.g. tried to de-install things depending on libavcodec51, like mediatomb
Thanks
Thanks for replying. I'll have a go at doing it that way.
The process I followed was something like the following (this is from memory so may not be perfect):
- Edit /etc/apt/sources.list (as root) and added the following at the end:
Code: Select all
deb http://www.debian-multimedia.org etch main
- Run a couple of gpg commands and 'apt-key add' to add the key
- This allowed 'apt-get update' to work
- Ran 'apt-get install gpac'. This told me about the conflicting dependancies (e.g. libavcodeccvs51), but didn't try to resolve them.
- Ran 'apt-get install' for one of the conflicting packages, e.g. 'apt-get libavcodeccvs51'. This then proposed to de-install packages which depended upon the already installed conflicting package, e.g. tried to de-install things depending on libavcodec51, like mediatomb
Thanks
Ok, then you can try following:
1. copy the deb row in sources.list and change deb to deb-src;
2. apt-get update
3. apt-get source gpac
4. cd gpac-0.4.0+rc2
5. edit debian/control, change libavcodeccvs-dev to libavcodec-dev
6. install deps: apt-get install libxvidcore4-dev libsdl1.2-dev libpng-dev libfreetype6-dev libjpeg62-dev libmad0-dev libsmjs-dev libwxgtk2.6-dev libxml2-dev=2.6.27.dfsg-6 libmozjs-dev=1.8.0.15~pre080614i-0etch1 libnspr4-dev=1.8.0.15~pre080614i-0etch1
7. issue debuild -uc -us
8. take some coffee and wait
9. hopefully you will have some fresh deb package in parent dir when it's done.
/Carl
1. copy the deb row in sources.list and change deb to deb-src;
2. apt-get update
3. apt-get source gpac
4. cd gpac-0.4.0+rc2
5. edit debian/control, change libavcodeccvs-dev to libavcodec-dev
6. install deps: apt-get install libxvidcore4-dev libsdl1.2-dev libpng-dev libfreetype6-dev libjpeg62-dev libmad0-dev libsmjs-dev libwxgtk2.6-dev libxml2-dev=2.6.27.dfsg-6 libmozjs-dev=1.8.0.15~pre080614i-0etch1 libnspr4-dev=1.8.0.15~pre080614i-0etch1
7. issue debuild -uc -us
8. take some coffee and wait
9. hopefully you will have some fresh deb package in parent dir when it's done.
/Carl
How did you do on this, Effofex?
I'm trying to get the package installed myself - but I don't know what you mean by
/Joachim
I'm trying to get the package installed myself - but I don't know what you mean by
I would love to hear if you get it working. I'm trying to find a way to repack H.264 .mkv files into .mp4 files to be playable on the PS3. And I think gpac is the last thing I need.- Run a couple of gpg commands and 'apt-key add' to add the key
/Joachim
Thanks, Carl - that sure was quick! =)
Unfrtunately, though - it won't install:
Any idea what I am doing wrong?
regards,
/Joachim
Unfrtunately, though - it won't install:
Code: Select all
The following packages have unmet dependencies:
gpac: Depends: libxvidcore4 (>= 1:1.0.0-0.0) but it is not installable
E: Broken packages
regards,
/Joachim
You need add http://www.debian-multimedia.org to sources.list for that package.Joachim wrote:Thanks, Carl - that sure was quick! =)
Unfrtunately, though - it won't install:
Any idea what I am doing wrong?Code: Select all
The following packages have unmet dependencies: gpac: Depends: libxvidcore4 (>= 1:1.0.0-0.0) but it is not installable E: Broken packages
regards,
/Joachim
/Carl
Carl - again I am impressed with the Excito teams enthusiasm and helpfulness; support on a Saturday night. Wow! =)
I got the package installed now. If any of you out there are as nooby as me and can't figure out what Effofex meant by
Have a nice weekend,
/Joachim
I got the package installed now. If any of you out there are as nooby as me and can't figure out what Effofex meant by
then this will do the trick:- Run a couple of gpg commands and 'apt-key add' to add the key
Code: Select all
apt-get install debian-multimedia-keyring
Have a nice weekend,
/Joachim
Hi,
Thanks for everyone's posts on this.
I now have the package installed, although I think apt-get is not entirely happy. I did the following:
-Uncomment the following in /etc/apt/sources.list
- Added the following in /etc/apt/sources.list
I can then run:
The package installs fine but I have to manually verify for libxvidcore4:
I've then been trying to install the key so that the authentication from www.debian-multimedia.org works. I've tried this two different ways, the gpg/apt-key way or using Joachim's suggestion. So, either:
or:
Doing this either way gives the following when I do an apt-get update:
So I can install the package, but apt-get is not quite right.
Thanks
Thanks for everyone's posts on this.
I now have the package installed, although I think apt-get is not entirely happy. I did the following:
-Uncomment the following in /etc/apt/sources.list
Code: Select all
deb http://update.excito.org/ claire main
Code: Select all
deb http://www.debian-multimedia.org etch main
Code: Select all
apt-get update
apt-get install gpac
Code: Select all
WARNING: The following packages cannot be authenticated!
libxvidcore4
Install these packages without verification [y/N]? y
Code: Select all
gpg --keyserver wwwkeys.eu.pgp.net --recv-keys 07DC563D1F41B907
gpg --armor --export 1F41B907 | apt-key add -
Code: Select all
apt-get install debian-multimedia-keyring
Code: Select all
W: Conflicting distribution: http://www.debian-multimedia.org etch Release (expected etch but got sarge)
W: You may want to run apt-get update to correct these problems
Thanks
Hmm, wierd. I am having the same problem now, Effofex. It worked like a charm yesterday - but now I am also getting the
Even more unfortunate, though, I have finally managed to break something; I uncommented the line in the sources.list file with the unstable packages
and did a
So now my Bubba admin interface won't start up. I didn't really use it, so it is not that big a problem, but I just hate the fact that i broke something. Is there a nifty roll-back/downgrade option to apt-get? (With all the playing about and tampering with everything I can't belive I haven't managed to break something untill now.) =)
Oh, and Carl: Thanks again for the gpac package. I have hit a bit of a problem with it, though; the version you have compiled has a problem when working with files over 2GB. Apperantly the authors fixed it in version 0.4.4. Sooooo - if you ever get around to looking at that package again, it would be wonderful if you compiled it from the fixed source code.
You can read about it here: http://sourceforge.net/tracker/?func=de ... p_id=84101
Thanks,
/Joachim
EDIT: Ok, never mind the downgrade/unstable packages comment. The interface is working fine - there was just a fallout on the network, or something. Might have something to do with the fact that I am copying shitloads of files to and from the bubba. =)
Code: Select all
W: Conflicting distribution: http://www.debian-multimedia.org etch Release (expected etch but got sarge)
W: You may want to run apt-get update to correct these problems
Code: Select all
# The unstable BUBBA|TWO repository, is in the suite "unstable". source packages
#deb-src http://update.excito.org/ claire main
Code: Select all
apt-get update
apt-get upgrade
Oh, and Carl: Thanks again for the gpac package. I have hit a bit of a problem with it, though; the version you have compiled has a problem when working with files over 2GB. Apperantly the authors fixed it in version 0.4.4. Sooooo - if you ever get around to looking at that package again, it would be wonderful if you compiled it from the fixed source code.
You can read about it here: http://sourceforge.net/tracker/?func=de ... p_id=84101
Thanks,
/Joachim
EDIT: Ok, never mind the downgrade/unstable packages comment. The interface is working fine - there was just a fallout on the network, or something. Might have something to do with the fact that I am copying shitloads of files to and from the bubba. =)