[Bug 315356] Re: No ffmpeg2theora binary in jaunty package

2009-01-28 Thread Lionel Le Folgoc
This one looks fine, thanks for your work. I'll upload as soon as
upload.ubuntu.com is back online.

** Changed in: ffmpeg2theora (Ubuntu)
 Assignee: (unassigned) = Lionel Le Folgoc (mrpouit)
   Status: Triaged = In Progress

-- 
No ffmpeg2theora binary in jaunty package
https://bugs.launchpad.net/bugs/315356
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 315356] Re: No ffmpeg2theora binary in jaunty package

2009-01-28 Thread Launchpad Bug Tracker
This bug was fixed in the package ffmpeg2theora - 0.23-0ubuntu2

---
ffmpeg2theora (0.23-0ubuntu2) jaunty; urgency=low

  * debian/rules
- use scons instead of make to install the files (LP: #315356)
- improve the clean rule to wipe scons' leftovers

 -- Kjell Braden aff...@ubuntu.com   Sat, 24 Jan 2009 21:07:07 +0100

** Changed in: ffmpeg2theora (Ubuntu)
   Status: In Progress = Fix Released

-- 
No ffmpeg2theora binary in jaunty package
https://bugs.launchpad.net/bugs/315356
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 315356] Re: No ffmpeg2theora binary in jaunty package

2009-01-27 Thread Lionel Le Folgoc
Thanks for your work. There is still an issue with your debdiff though:
drwxr-xr-x root/root 0 2009-01-27 15:07 ./usr/
drwxr-xr-x root/root 0 2009-01-27 15:07 ./usr/man/
drwxr-xr-x root/root 0 2009-01-27 15:07 ./usr/man/man1/
-rw-r--r-- root/root  2950 2009-01-27 15:07 
./usr/man/man1/ffmpeg2theora.1.gz

This should be /usr/share/man (you probably need to explicitly pass a
--mandir option to scons).

-- 
No ffmpeg2theora binary in jaunty package
https://bugs.launchpad.net/bugs/315356
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 315356] Re: No ffmpeg2theora binary in jaunty package

2009-01-27 Thread Kjell Braden

** Attachment added: debdiff against 0.23-0ubuntu1 - second try with 
mandir=PREFIX/share/man
   http://launchpadlibrarian.net/21685111/fix_315356.debdiff

-- 
No ffmpeg2theora binary in jaunty package
https://bugs.launchpad.net/bugs/315356
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 315356] Re: No ffmpeg2theora binary in jaunty package

2009-01-25 Thread A. Bram Neijt
Anybody having trouble with this:
If you need the command-line, try the linux binary from the ffmpeg homepage: 
http://v2v.cc/~j/ffmpeg2theora/download.html
Otherwise, try OggConvert which is in the repositories (universe/sound)

-- 
No ffmpeg2theora binary in jaunty package
https://bugs.launchpad.net/bugs/315356
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 315356] Re: No ffmpeg2theora binary in jaunty package

2009-01-24 Thread Carl Karsten
How I build a working .deb:


#!/bin/bash
# updeb.sh
# updates a deb.  well, makes a deb from current source.
# based on https://help.ubuntu.com/community/UpdatingADeb

set -xe
# -
PACKAGE=ffmpeg2theora
# OLDVER=ffmpeg2theora-0.21
OLDVER=ffmpeg2theora-0.23
NEWVER=$PACKAGE-trunk
sudo apt-get --assume-yes install autoconf automake libtool
# -
if [ ! -d $PACKAGE ]; then 
  mkdir $PACKAGE
fi
cd $PACKAGE

# needed to get source, compile and build debs
sudo apt-get --assume-yes --force-yes install build-essential fakeroot 
subversion cvs dpkg-dev devscripts scons

# get the $PACKAGE deps and source from apt repository 
# (and debian/ dir needed to build the .deb)
sudo apt-get --assume-yes --force-yes build-dep $PACKAGE
# sudo aptitude -s -f build-dep $PACKAGE
apt-get source $PACKAGE
find ./ -type d -name $PACKAGE*
# exit

# -
if [ ! -d $NEWVER ]; then
  svn co http://svn.xiph.org/trunk/ffmpeg2theora $NEWVER 
fi
cd $NEWVER/
svn up
# autoreconf -i 
cd ..
# -
cp -a $OLDVER/debian $NEWVER/

cd $NEWVER/

# -
rm debian/patches/*
sed -i /^\tscons install/s/^.*$/\tscons install \$\(PREFIX\)/ Makefile
sed -i /autotools/s/autotools/makefile/ debian/rules
echo DEB_MAKE_INSTALL_TARGET := install PREFIX=prefix=\$\(DEB_DESTDIR\)usr \
# echo DEB_MAKE_INSTALL_TARGET := install PREFIX=\$(DEB_DESTDIR)usr \
 debian/rules

# -

# bump the version number
# if this is not done, the new deb will be the same version as the current, so 
won't install. ($0 is the name of this script)
debchange --nmu $0

# build the .deb
dpkg-buildpackage -rfakeroot -uc -b

# install the deb. 
# using this command, on your own :)
echo sudo gdebi $PACKAGE*.deb


c...@dv67:~/vga2usb/src$ dpkg -c 
ffmpeg2theora/ffmpeg2theora_0.23-0ubuntu1.1_amd64.deb
drwxr-xr-x root/root 0 2009-01-24 13:46 ./
drwxr-xr-x root/root 0 2009-01-24 13:46 ./usr/
drwxr-xr-x root/root 0 2009-01-24 13:46 ./usr/share/
drwxr-xr-x root/root 0 2009-01-24 13:46 ./usr/share/doc/
drwxr-xr-x root/root 0 2009-01-24 13:46 ./usr/share/doc/ffmpeg2theora/
-rw-r--r-- root/root  1279 2009-01-24 13:46 
./usr/share/doc/ffmpeg2theora/copyright
-rw-r--r-- root/root22 2009-01-24 13:46 
./usr/share/doc/ffmpeg2theora/AUTHORS
-rw-r--r-- root/root  1229 2009-01-24 13:46 
./usr/share/doc/ffmpeg2theora/changelog.Debian.gz
-rw-r--r-- root/root   620 2009-01-24 13:46 
./usr/share/doc/ffmpeg2theora/README
-rw-r--r-- root/root93 2009-01-24 13:46 
./usr/share/doc/ffmpeg2theora/TODO

-- 
No ffmpeg2theora binary in jaunty package
https://bugs.launchpad.net/bugs/315356
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 315356] Re: No ffmpeg2theora binary in jaunty package

2009-01-24 Thread Kjell Braden
** Changed in: ffmpeg2theora (Ubuntu)
 Assignee: (unassigned) = Kjell Braden (afflux)
   Status: Confirmed = In Progress

-- 
No ffmpeg2theora binary in jaunty package
https://bugs.launchpad.net/bugs/315356
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 315356] Re: No ffmpeg2theora binary in jaunty package

2009-01-24 Thread Kjell Braden
This debdiff adds a clean rule to clean up some leftovers scons creates
(for some reason they are even created in the clean rule, thus
preventing to debuild -S) and adds a rule to use scons for installing,
because the Makefile is broken (it doesn't support passing DESTDIR
and/or PREFIX).

** Attachment added: debdiff against 0.23-0ubuntu1
   http://launchpadlibrarian.net/21602571/fix_315356.debdiff

** Changed in: ffmpeg2theora (Ubuntu)
   Importance: Undecided = Medium
 Assignee: Kjell Braden (afflux) = (unassigned)
   Status: In Progress = Triaged

-- 
No ffmpeg2theora binary in jaunty package
https://bugs.launchpad.net/bugs/315356
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 315356] Re: No ffmpeg2theora binary in jaunty package

2009-01-11 Thread Jouni Mettala
Thank you for reporting this bug. I can reproduce it.

** Changed in: ffmpeg2theora (Ubuntu)
   Status: New = Confirmed

-- 
No ffmpeg2theora binary in jaunty package
https://bugs.launchpad.net/bugs/315356
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs