# HG changeset patch # User Samuel Trassare # Date 1330032153 28800 # Node ID 2d8aa250683f9458787c0c42fb5917e6ce925141 # Parent b0e8dc7dec7168fb02fbf84e8def50244c7a35a7 added plist/swig/plist.i to libplist. Ommission was breaking libimobiledevice(-dev). diff -r b0e8dc7dec71 -r 2d8aa250683f boinc/receipt --- a/boinc/receipt Thu Feb 23 22:04:30 2012 +0100 +++ b/boinc/receipt Thu Feb 23 13:22:33 2012 -0800 @@ -2,7 +2,7 @@ PACKAGE="boinc" VERSION="6.10.58" -SVN_TAG="6_10_58" +SVN_TAG="6.10.58" CATEGORY="network" SHORT_DESC="Open-source software for volunteer computing and grid computing." MAINTAINER="pankso@slitaz.org" diff -r b0e8dc7dec71 -r 2d8aa250683f libimobiledevice/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libimobiledevice/description.txt Thu Feb 23 13:22:33 2012 -0800 @@ -0,0 +1,9 @@ +libimobiledevice is a software library that talks the protocols to support +iPhone, iPod Touch, iPad and Apple TV devices. Unlike other projects, it does +not depend on using any existing proprietary libraries and does not require +jailbreaking. It allows other software to easily access the device's filesystem, +retrieve information about the device and its internals, backup/restore the +device, manage SpringBoard icons, manage installed applications, retrieve +addressbook/calendars/notes and bookmarks and (using libgpod) synchronize music +and video to the device. The library is in development since August 2007 with +the goal to bring support for these devices to the Linux Desktop. diff -r b0e8dc7dec71 -r 2d8aa250683f libimobiledevice/receipt --- a/libimobiledevice/receipt Thu Feb 23 22:04:30 2012 +0100 +++ b/libimobiledevice/receipt Thu Feb 23 13:22:33 2012 -0800 @@ -10,13 +10,16 @@ WGET_URL="$WEB_SITE/downloads/$TARBALL" DEPENDS="gnutls glib libplist usbmuxd" -BUILD_DEPENDS="gnutls-dev glib-dev libplist-dev usbmuxd-dev swig python-dev" +BUILD_DEPENDS="gnutls-dev glib-dev libplist-dev usbmuxd-dev python-dev swig" # Rules to configure and make the package. compile_rules() { patch -Np1 -i $stuff/swig-version-check.patch - ./configure $CONFIGURE_ARGS && make && make install + ./configure \ + $CONFIGURE_ARGS && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. diff -r b0e8dc7dec71 -r 2d8aa250683f libplist-dev/receipt --- a/libplist-dev/receipt Thu Feb 23 22:04:30 2012 +0100 +++ b/libplist-dev/receipt Thu Feb 23 13:22:33 2012 -0800 @@ -13,6 +13,6 @@ genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $_pkg/usr/include $fs/usr + cp -ar $_pkg/usr/include $fs/usr cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib } diff -r b0e8dc7dec71 -r 2d8aa250683f libplist/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libplist/description.txt Thu Feb 23 13:22:33 2012 -0800 @@ -0,0 +1,2 @@ +A library to handle Apple Property List format whether it's in binary or XML +format.