# HG changeset patch # User Pascal Bellard # Date 1508141815 -7200 # Node ID f351ed3c060e8d276fc2cfc16beb263e2ed774c7 # Parent 491cc55c667f08583ad8940b09d32d233b51b89d Up xine-lib (1.2.8) diff -r 491cc55c667f -r f351ed3c060e xine-fonts/receipt --- a/xine-fonts/receipt Sun Oct 15 22:30:12 2017 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="xine-fonts" -VERSION="1.2.4" -CATEGORY="x-window" -SHORT_DESC="Extra fonts for Xine video player." -MAINTAINER="pankso@slitaz.org" -LICENSE="GPL2" -WANTED="xine-lib" -WEB_SITE="http://www.xinehq.de/" - -DEPENDS="xine-ui" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - mkdir -p $fs/usr/share/xine-lib - cp -a $install/usr/share/xine-lib/fonts \ - $fs/usr/share/xine-lib -} diff -r 491cc55c667f -r f351ed3c060e xine-lib-dev/receipt --- a/xine-lib-dev/receipt Sun Oct 15 22:30:12 2017 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="xine-lib-dev" -VERSION="1.2.4" -CATEGORY="development" -SHORT_DESC="Xine video library." -MAINTAINER="pankso@slitaz.org" -LICENSE="GPL2" -WANTED="xine-lib" -WEB_SITE="http://www.xinehq.de/" -HOST_ARCH="i486 arm" - -DEPENDS="pkg-config" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - mkdir -p $fs/usr/lib $fs/usr/share - cp -a $install/usr/bin $fs/usr - chmod 755 $fs/usr/bin/* - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/share/aclocal $fs/usr/share -} diff -r 491cc55c667f -r f351ed3c060e xine-lib/receipt --- a/xine-lib/receipt Sun Oct 15 22:30:12 2017 +0200 +++ b/xine-lib/receipt Mon Oct 16 10:16:55 2017 +0200 @@ -1,7 +1,7 @@ -# SliTaz package receipt. +# SliTaz package receipt v2. PACKAGE="xine-lib" -VERSION="1.2.4" +VERSION="1.2.8" CATEGORY="multimedia" SHORT_DESC="Xine video library." MAINTAINER="pankso@slitaz.org" @@ -12,9 +12,6 @@ SUGGESTED="xine-fonts" HOST_ARCH="i486 arm" -SUGGESTED="faad2" -DEPENDS="zlib xorg-libX11 xorg-libXv xorg-libXvMC alsa-lib libogg libvorbis \ -libtheora xorg-libXvMC xorg-libXv libxcb ffmpeg libmodplug" BUILD_DEPENDS="xorg-libXvMC-dev xorg-libXv-dev xorg-xextproto xorg-videoproto \ alsa-lib-dev libogg-dev libvorbis-dev libtheora-dev freetype-dev perl \ pkg-config util-linux-uuid-dev libxcb-dev libxcb-dev ffmpeg-dev file \ @@ -57,7 +54,33 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib $fs/usr/share - cp -a $install/usr/lib/*.so* $fs/usr/lib - cp -a $install/usr/lib/xine $fs/usr/lib + case "$PACKAGE" in + xine-lib) + SUGGESTED="faad2" + DEPENDS="zlib xorg-libX11 xorg-libXv xorg-libXvMC alsa-lib \ + libogg libvorbis libtheora xorg-libXvMC xorg-libXv \ + libxcb ffmpeg libmodplug" + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/xine $fs/usr/lib + ;; + xine-fonts) + CAT="x-window|Extra fonts for Xine video player." + DEPENDS="xine-ui" + mkdir -p $fs/usr/share/xine-lib + cp -a $install/usr/share/xine-lib/fonts \ + $fs/usr/share/xine-lib + ;; + xine-lib-dev) + CAT="development|Xine video library." + DEPENDS="pkg-config" + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $install/usr/bin $fs/usr + chmod 755 $fs/usr/bin/* + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/share/aclocal $fs/usr/share + ;; + esac }