wok annotate vlc/receipt @ rev 5041

Update DEPENDS: abiword
author Rohit Joshi <jozee@slitaz.org>
date Wed Mar 03 18:08:06 2010 +0000 (2010-03-03)
parents 248448d3560d
children d5cc0560589c
rev   line source
jozee@2944 1 # SliTaz package receipt.
jozee@2944 2
jozee@2944 3 PACKAGE="vlc"
jozee@2944 4 VERSION="0.9.9a"
jozee@2944 5 CATEGORY="multimedia"
jozee@2944 6 SHORT_DESC="MPEG, VCD/DVD, and DivX player"
jozee@2944 7 MAINTAINER="jozee@slitaz.org"
pascal@4604 8 DEPENDS="libvlc libmad libxml2 ffmpeg libdvdread libcddb libproxy taglib \
pascal@2964 9 libQtCore libQtGui alsa-lib hal dbus \
erjo@3518 10 fribidi speex libraw1394 libmodplug flac \
pascal@2964 11 libmpeg2 libnotify libsdl-image libvorbis libgl libglu sysfsutils xorg-libXv"
jozee@2944 12 BUILD_DEPENDS="libmad-dev libxml2-dev ffmpeg-dev libdvdread-dev libcddb-dev taglib-dev libproxy-dev Qt4-dev \
erjo@3519 13 hal-dev dbus-dev alsa-lib-dev libgcrypt-dev libproxy expat-dev xorg-dev-proto zlib-dev \
jozee@2944 14 taglib fribidi fribidi-dev speex speex-dev libraw1394 libraw1394-dev libmodplug libmodplug-dev flac flac-dev \
jozee@2944 15 libmpeg2 libmpeg2-dev libogg-dev"
jozee@2944 16 TARBALL="$PACKAGE-$VERSION.tar.bz2"
jozee@2944 17 WEB_SITE="http://www.videolan.org/vlc/"
jozee@2944 18 WGET_URL="http://download.videolan.org/pub/videolan/$PACKAGE/$VERSION/$TARBALL"
jozee@4975 19 TAGS="audio video multimedia movie player"
jozee@2944 20
jozee@2944 21 # Rules to configure and make the package.
jozee@2946 22 # Use --enable-ffmpeg to build against shared ffmpeg
jozee@2944 23 compile_rules()
jozee@2944 24 {
jozee@2944 25 cd $src
pascal@4617 26 sed -i 's/ImgReSampleContext/void/' modules/video_filter/imgresample.c
pascal@4617 27 sed -i -e 's:/usr/share/fonts/truetype/freefont/FreeSerifBold.ttf:/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf:' modules/misc/freetype.c
pascal@4617 28 ./configure --prefix=/usr --enable-hal --enable-dbus \
pascal@4617 29 --enable-dbus-control --disable-rpath --enable-release \
pascal@4617 30 --enable-shared \
pascal@4617 31 --enable-dvdread \
pascal@4617 32 --enable-qt4 \
pascal@4617 33 --enable-alsa --enable-taglib --enable-ogg \
pascal@4617 34 --disable-lua --disable-live555 --disable-shout \
pascal@4617 35 --disable-dvdnav --disable-fluidsynth --disable-a52 \
pascal@4617 36 --disable-smb --disable-gnomevfs --disable-glx \
pascal@4617 37 $CONFIGURE_ARGS &&
jozee@2944 38 make &&
jozee@2944 39 make DESTDIR=$PWD/_pkg install
jozee@2944 40 }
jozee@2944 41
jozee@2944 42 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2944 43 genpkg_rules()
jozee@2944 44 {
pascal@4617 45 mkdir -p $fs/usr/share/pixmaps
jozee@2944 46 cp -a $_pkg/usr/bin $fs/usr
jozee@2944 47 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
jozee@2944 48 #Remove extra icons
jozee@2944 49 rm $fs/usr/share/$PACKAGE/*.png
jozee@2944 50 rm $fs/usr/share/$PACKAGE/*.xpm
jozee@2944 51 rm $fs/usr/share/$PACKAGE/*.ico
jozee@2944 52 #copy vlc icon
jozee@2944 53 cp -a $_pkg/usr/share/$PACKAGE/vlc16x16.png $fs/usr/share/pixmaps
jozee@2944 54 mv $fs/usr/share/pixmaps/vlc16x16.png $fs/usr/share/pixmaps/vlc.png
jozee@2944 55 #Remove unnecessary fonts
jozee@2944 56 rm $fs/usr/share/$PACKAGE/skins2/fonts/*
jozee@2944 57
jozee@2944 58 }