From b86224d11e6d5b09c2e2956a79e1f1bf7df38b91 Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Wed, 4 Apr 2007 17:32:51 +0100 Subject: Always build .debs using internal ffmpeg (Debian ffmpeg versioning madness). --- debian/rules | 3 --- 1 file changed, 3 deletions(-) (limited to 'debian') diff --git a/debian/rules b/debian/rules index ef1347e49..9878e97fc 100755 --- a/debian/rules +++ b/debian/rules @@ -62,13 +62,10 @@ endif CONFIGURE_FLAGS := --prefix=/usr \ --mandir=\$${prefix}/share/man \ --with-external-libmad \ - --with-external-ffmpeg \ --with-external-a52dec \ --with-external-libdts \ --disable-cacatest \ $(DEB_BUILD_CONFIG_OPTIONS) \ - FFMPEG_CFLAGS="`pkg-config --cflags libavcodec`" \ - FFMPEG_LIBS="`pkg-config --libs libavcodec`" \ CFLAGS="$(CFLAGS)" configure: configure-stamp -- cgit v1.2.3 From 754ce7647fa13063fa722c5cd547ee0762c079d5 Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Wed, 4 Apr 2007 18:12:46 +0100 Subject: Add reportbug file from 1.1.2. Package build wants it, and I'm not arguing... --- debian/reportbug.presubj | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 debian/reportbug.presubj (limited to 'debian') diff --git a/debian/reportbug.presubj b/debian/reportbug.presubj new file mode 100644 index 000000000..229cd9d74 --- /dev/null +++ b/debian/reportbug.presubj @@ -0,0 +1,46 @@ +Reporting Bugs on libxine - general remarks +=========================================== + +As you can see on http://bugs.debian.org/src:xine-lib, the list of +bugs against xine is rather long. Please help the maintainer by +ensuring that your bugreport contains all pieces of infromation to +reproduce and check if the bug has been fixed. + +Reporting bugs for unsupported file formats +=========================================== + +If you report a bug that a specific file cannot be played, please make +sure that you include a link to the file so the maintainers can try +them. If you cannot (easily) point to that file, please check +http://samples.mplayerhq.hu/ if you find a similar file with the same +problem. In any case, please start xine with the parameter +--bug-report. (If you are using gxine, please install the package +xine-ui instead. If you can only reproduce the bug with gxine but not +with xine-ui, then file the bug against gxine) + +Report bugs for xine crashes +============================ + +If you report a bug that applications linked against libxine1 +(xine-ui, gxine, amarok, totem, etc) segfault, please install the +packages 'xine-ui' and 'libxine1-dbg', and try to reproduce it with +this command: + +> ulimit -c unlimited ; /usr/bin/xine --bug-report + +If you can reproduce the bug, then run gdb to get a backtrace: + +> gdb /usr/bin/xine core.* + +At the gdb prompt, please issue these commands: + +# backtrace +# thread apply all backtrace full +# quit + +Make sure to attach both files BUG-REPORT.TXT and the resulting +backtrace from gdb. Both are necessary to understand where and how the +segfault occured. + +Thanks for your collaboration. + -- cgit v1.2.3 From 3a79edacfeff0b3f77107058315cac9d84df1fa3 Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Wed, 4 Apr 2007 18:20:47 +0100 Subject: Fix a package build failure (documentation location renaming). --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/rules b/debian/rules index 9878e97fc..8e4ca67fe 100755 --- a/debian/rules +++ b/debian/rules @@ -123,7 +123,7 @@ binary-arch: build install mkdir -p debian/tmp/usr/share/bug/libxine${major}/ cp debian/reportbug.presubj debian/tmp/usr/share/bug/libxine${major}/presubj # ugly hack, documentation should never have been in /u/s/d/xine/... - mv debian/tmp/usr/share/doc/xine debian/tmp/usr/share/doc/libxine${major} + mv debian/tmp/usr/share/doc/xine-lib debian/tmp/usr/share/doc/libxine${major} # build libxine${major} package by moving files from libxine-dev dh_install --autodest --sourcedir=debian/tmp --list-missing dh_installdocs -- cgit v1.2.3