wok annotate xine-lib/receipt @ rev 7305
dropbear, openssh: typo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Nov 17 17:35:10 2010 +0100 (2010-11-17) |
parents | 1400c81c35e4 |
children | de3b10b53363 |
rev | line source |
---|---|
pankso@33 | 1 # SliTaz package receipt. |
pankso@33 | 2 |
pankso@33 | 3 PACKAGE="xine-lib" |
slaxemulator@6283 | 4 VERSION="1.1.19" |
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 \ |
slaxemulator@6283 | 13 libvorbis-dev libtheora-dev freetype-dev faad2 faad2-dev perl pkg-config util-linux-ng-uuid-dev libxcb-dev" |
gokhlayeh@6075 | 14 SUGGESTED="faad2" |
pankso@33 | 15 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
jozee@2976 | 16 WEB_SITE="http://www.xine-project.org/" |
pankso@33 | 17 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL" |
pankso@33 | 18 |
pankso@33 | 19 # Rules to configure and make the package. |
jozee@5020 | 20 # |
jozee@5020 | 21 # Using --with-external-ffmpeg will make package smaller, but it dont seems |
jozee@5020 | 22 # to work properly. Last try with external ffmpeg make xine unable to read avi |
jozee@5020 | 23 # and other video files. |
jozee@5020 | 24 # |
pankso@33 | 25 compile_rules() |
pankso@33 | 26 { |
pankso@33 | 27 cd $src |
pascal@5162 | 28 sed -i 's/grep -x/grep/' configure |
pascal@5910 | 29 grep -qs 'define u8' src/input/vcd/libcdio/_cdio_linux.c || |
pascal@5910 | 30 sed -i 's|#include <scsi/scsi.h>|#define u8 __u8\n&|' \ |
pascal@5910 | 31 src/input/vcd/libcdio/_cdio_linux.c |
pankso@499 | 32 ./configure \ |
pankso@499 | 33 --prefix=/usr \ |
pankso@499 | 34 --infodir=/usr/share/info \ |
pankso@499 | 35 --mandir=/usr/share/man \ |
pankso@4461 | 36 --with-freetype \ |
jozee@5020 | 37 --without-jack \ |
jozee@5020 | 38 --without-imagemagick \ |
jozee@5020 | 39 --without-sdl \ |
jozee@5020 | 40 --disable-gnomevfs \ |
jozee@5020 | 41 --disable-samba \ |
jozee@5020 | 42 --disable-glu \ |
jozee@5020 | 43 --disable-opengl \ |
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 } |