wok annotate xine-lib/receipt @ rev 6065

tazbb: breaks a cook loop
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 22 11:18:37 2010 +0200 (2010-08-22)
parents 666fd56c3a0e
children 1400c81c35e4
rev   line source
pankso@33 1 # SliTaz package receipt.
pankso@33 2
pankso@33 3 PACKAGE="xine-lib"
jozee@2976 4 VERSION="1.1.16.3"
pankso@206 5 CATEGORY="multimedia"
pankso@33 6 SHORT_DESC="Xine video library."
pankso@33 7 MAINTAINER="pankso@slitaz.org"
jozee@5020 8 DEPENDS="xorg zlib xorg-libXv xorg-libXvMC alsa-lib libogg libvorbis \
jozee@5020 9 libtheora xorg-libXvMC xorg-libXv freetype vcdimager-xmltools \
pascal@5032 10 libmodplug gtk+ ffmpeg libmng"
jozee@5020 11 BUILD_DEPENDS="$DEPENDS xorg-dev zlib-dev xorg-libXvMC-dev \
jozee@5020 12 xorg-libXv-dev xorg-xextproto xorg-videoproto alsa-lib-dev libogg-dev \
jozee@5020 13 libvorbis-dev libtheora-dev freetype-dev"
pankso@33 14 TARBALL="$PACKAGE-$VERSION.tar.bz2"
jozee@2976 15 WEB_SITE="http://www.xine-project.org/"
pankso@33 16 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
pankso@33 17
pankso@33 18 # Rules to configure and make the package.
jozee@5020 19 #
jozee@5020 20 # Using --with-external-ffmpeg will make package smaller, but it dont seems
jozee@5020 21 # to work properly. Last try with external ffmpeg make xine unable to read avi
jozee@5020 22 # and other video files.
jozee@5020 23 #
pankso@33 24 compile_rules()
pankso@33 25 {
pankso@33 26 cd $src
pascal@5162 27 sed -i 's/grep -x/grep/' configure
pascal@5910 28 grep -qs 'define u8' src/input/vcd/libcdio/_cdio_linux.c ||
pascal@5910 29 sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' \
pascal@5910 30 src/input/vcd/libcdio/_cdio_linux.c
pankso@499 31 ./configure \
pankso@499 32 --prefix=/usr \
pankso@499 33 --infodir=/usr/share/info \
pankso@499 34 --mandir=/usr/share/man \
pankso@4461 35 --with-freetype \
jozee@5020 36 --without-jack \
jozee@5020 37 --without-imagemagick \
jozee@5020 38 --without-sdl \
jozee@5020 39 --disable-gnomevfs \
jozee@5020 40 --disable-samba \
jozee@5020 41 --disable-glu \
jozee@5020 42 --disable-opengl \
jozee@5020 43 --disable-faad \
jozee@5020 44 --disable-fb \
jozee@5020 45 --disable-syncfb \
jozee@5020 46 --without-esound \
pascal@1511 47 $CONFIGURE_ARGS &&
pascal@5777 48 make -j 4 &&
pankso@33 49 make DESTDIR=$PWD/_pkg install
pankso@33 50 }
pankso@33 51
pankso@33 52 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@33 53 genpkg_rules()
pankso@33 54 {
pankso@3163 55 mkdir -p $fs/usr/lib $fs/usr/share
pankso@33 56 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@33 57 cp -a $_pkg/usr/lib/xine $fs/usr/lib
jozee@5020 58
jozee@2976 59 # Do we need extra Fonts for subtitle support? \
jozee@5020 60 # compiled with freetype for using ttf fonts, xine fonts are only an alternative solution \
jozee@5020 61 # should we just ln DejavuSans as in mplayer?
jozee@2976 62 # lets keep sans font for extra support
jozee@2976 63 mkdir -p $fs/usr/share/xine/libxine1/fonts/
jozee@2976 64 cp -a $_pkg/usr/share/xine/libxine1/fonts/sa* $fs/usr/share/xine/libxine1/fonts/
pankso@33 65 }