wok annotate vlc/receipt @ rev 8833

Fix: tazdev receipt
author Christophe Lincoln <pankso@slitaz.org>
date Thu Feb 24 16:18:46 2011 +0100 (2011-02-24)
parents c47607e06926
children a3ce54180620
rev   line source
jozee@2944 1 # SliTaz package receipt.
jozee@2944 2
jozee@2944 3 PACKAGE="vlc"
slaxemulator@8294 4 VERSION="1.1.7"
jozee@2944 5 CATEGORY="multimedia"
jozee@2944 6 SHORT_DESC="MPEG, VCD/DVD, and DivX player"
jozee@2944 7 MAINTAINER="jozee@slitaz.org"
slaxemulator@6343 8 DEPENDS="libvlc libmad libxml2 ffmpeg libdvdread libcddb libproxy taglib \
pascal@2964 9 libQtCore libQtGui alsa-lib hal dbus \
slaxemulator@7194 10 fribidi speex libraw1394 libmodplug flac libavc1394 \
slaxemulator@7459 11 libmpeg2 libnotify libsdl-image libvorbis mesa libglu-mesa sysfsutils zvbi libass xorg-libXv faad2 glibc-locale"
slaxemulator@6343 12 BUILD_DEPENDS="libmad libmad-dev libxml2 libxml2-dev ffmpeg-dev libavc1394 libavc1394-dev libdvdread libdvdread-dev libcddb libcddb-dev taglib taglib-dev libproxy-dev Qt4-dev \
slaxemulator@7194 13 hal-dev dbus-dev alsa-lib-dev libgcrypt-dev libproxy expat expat-dev xorg-dev-proto zlib zlib-dev \
slaxemulator@6343 14 fribidi fribidi-dev speex speex-dev libraw1394 libraw1394-dev libmodplug libmodplug-dev flac flac-dev \
slaxemulator@7459 15 libmpeg2 libmpeg2-dev libogg libogg-dev faad2 faad2-dev glibc-locale util-linux-ng-uuid-dev libsdl-image libsdl-image-dev xorg-libXv-dev pkg-config libxcb-dev libass-dev zvbi-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@5151 26 # Be busybox comptible...
pascal@5151 27 sed -i 's/wc -m/wc -c/' configure*
pascal@4617 28 sed -i 's/ImgReSampleContext/void/' modules/video_filter/imgresample.c
pascal@4617 29 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@6141 30 grep -qs 'define u8' src/interface/intf_eject.c ||
pascal@6141 31 sed -i 's|# *include <scsi/scsi.h>|#define u8 __u8\n&|' \
pascal@6141 32 src/interface/intf_eject.c
pascal@4617 33 ./configure --prefix=/usr --enable-hal --enable-dbus \
pascal@4617 34 --enable-dbus-control --disable-rpath --enable-release \
pascal@4617 35 --enable-shared \
pascal@4617 36 --enable-dvdread \
pascal@4617 37 --enable-qt4 \
jozee@5306 38 --enable-alsa --enable-taglib --enable-ogg --enable-faad \
pascal@4617 39 --disable-lua --disable-live555 --disable-shout \
pascal@4617 40 --disable-dvdnav --disable-fluidsynth --disable-a52 \
slaxemulator@7194 41 --disable-smb --disable-gnomevfs --disable-glx --disable-upnp \
pascal@4617 42 $CONFIGURE_ARGS &&
jozee@2944 43 make &&
jozee@2944 44 make DESTDIR=$PWD/_pkg install
jozee@2944 45 }
jozee@2944 46
jozee@2944 47 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2944 48 genpkg_rules()
jozee@2944 49 {
pascal@4617 50 mkdir -p $fs/usr/share/pixmaps
jozee@2944 51 cp -a $_pkg/usr/bin $fs/usr
jozee@2944 52 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
jozee@2944 53 #Remove extra icons
slaxemulator@6343 54 #rm $fs/usr/share/$PACKAGE/*.png
slaxemulator@6343 55 #rm $fs/usr/share/$PACKAGE/*.xpm
jozee@2944 56 rm $fs/usr/share/$PACKAGE/*.ico
jozee@2944 57 #copy vlc icon
slaxemulator@6343 58 cp -a $_pkg/usr/share/icons/hicolor/16x16/apps/vlc.png $fs/usr/share/pixmaps
jozee@2944 59 #Remove unnecessary fonts
jozee@2944 60 rm $fs/usr/share/$PACKAGE/skins2/fonts/*
jozee@2944 61
jozee@2944 62 }