wok rev 17025

libmtp: drop Zune support; mtpfs, usbids: tiny edits
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Aug 15 00:06:08 2014 +0000 (2014-08-15)
parents 1efb4b8ecf3d
children 8a3c0ff3e79a
files libmtp/receipt mtpfs/receipt usbids/receipt
line diff
     1.1 --- a/libmtp/receipt	Thu Aug 14 09:20:02 2014 +0000
     1.2 +++ b/libmtp/receipt	Fri Aug 15 00:06:08 2014 +0000
     1.3 @@ -10,15 +10,14 @@
     1.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.5  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
     1.6  
     1.7 -DEPENDS="libgcrypt libgpg-error libusb udev"
     1.8 -BUILD_DEPENDS="libusb-dev libgcrypt-dev"
     1.9 +DEPENDS="libusb udev"
    1.10 +BUILD_DEPENDS="libusb-dev"
    1.11  
    1.12  # Rules to configure and make the package.
    1.13  compile_rules()
    1.14  {
    1.15 -	./configure $CONFIGURE_ARGS &&
    1.16 +	./configure --disable-mtpz $CONFIGURE_ARGS &&
    1.17  	make && make install
    1.18 -	cd $install; patch -p0 < $stuff/libmtp_1.1.6.patch
    1.19  }
    1.20  
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
     2.1 --- a/mtpfs/receipt	Thu Aug 14 09:20:02 2014 +0000
     2.2 +++ b/mtpfs/receipt	Fri Aug 15 00:06:08 2014 +0000
     2.3 @@ -6,25 +6,17 @@
     2.4  SHORT_DESC="FUSE filesystem that supports reading and writing from any MTP device"
     2.5  MAINTAINER="keupont@no-log.org"
     2.6  LICENSE="GPL3"
     2.7 +WEB_SITE="http://www.adebenham.com/mtpfs/"
     2.8  TARBALL="$PACKAGE-$VERSION.tar.gz"
     2.9 -WEB_SITE="http://www.adebenham.com/mtpfs/"
    2.10  WGET_URL="http://www.adebenham.com/files/mtp/$TARBALL"
    2.11  
    2.12 -DEPENDS="libmtp libnjb libid3tag libmad fuse glib"
    2.13 -BUILD_DEPENDS="libnjb-dev libid3tag-dev libmtp-dev fuse fuse-dev \
    2.14 -glib-dev libmad-dev libusb-compat-dev"
    2.15 +DEPENDS="fuse libmtp libmad libid3tag libgio"
    2.16 +BUILD_DEPENDS="fuse-dev libmtp-dev libmad-dev libid3tag-dev"
    2.17  
    2.18  # Rules to configure and make the package.
    2.19  compile_rules()
    2.20  {
    2.21 -	cd $src
    2.22 -	./configure \
    2.23 -		--prefix=/usr \
    2.24 -		--infodir=/usr/share/info \
    2.25 -		--mandir=/usr/share/man \
    2.26 -		$CONFIGURE_ARGS &&
    2.27 -	make &&
    2.28 -	make DESTDIR=$DESTDIR install
    2.29 +	./configure $CONFIGURE_ARGS && make && make install
    2.30  }
    2.31  
    2.32  # Rules to gen a SliTaz package suitable for Tazpkg.
     3.1 --- a/usbids/receipt	Thu Aug 14 09:20:02 2014 +0000
     3.2 +++ b/usbids/receipt	Fri Aug 15 00:06:08 2014 +0000
     3.3 @@ -15,6 +15,5 @@
     3.4  genpkg_rules()
     3.5  {
     3.6  	mkdir -p $fs/usr/share/misc
     3.7 -	cp -a $src/usb-$VERSION.ids $fs/usr/share/misc/usb.ids
     3.8 -	gzip $fs/usr/share/misc/usb.ids
     3.9 +	gzip -c $src/usb-$VERSION.ids > $fs/usr/share/misc/usb.ids.gz
    3.10  }