diff --git a/packages/sysutils/ifuse/build b/packages/sysutils/ifuse/build deleted file mode 100755 index 5559e24e5b..0000000000 --- a/packages/sysutils/ifuse/build +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -cd $PKG_BUILD -./configure --host=$TARGET_NAME \ - --build=$HOST_NAME \ - --prefix=/usr \ - -make diff --git a/packages/sysutils/ifuse/install b/packages/sysutils/ifuse/install deleted file mode 100755 index 7ed72d809a..0000000000 --- a/packages/sysutils/ifuse/install +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -mkdir -p $INSTALL/usr/bin - cp $PKG_BUILD/src/ifuse $INSTALL/usr/bin - diff --git a/packages/sysutils/ifuse/meta b/packages/sysutils/ifuse/meta deleted file mode 100644 index f51bde9e09..0000000000 --- a/packages/sysutils/ifuse/meta +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -PKG_NAME="ifuse" -PKG_VERSION="1.0.0" -PKG_REV="1" -PKG_ARCH="any" -PKG_LICENSE="GPL" -PKG_SITE="http://www.libimobiledevice.org" -PKG_URL="http://www.libimobiledevice.org/downloads/$PKG_NAME-$PKG_VERSION.tar.bz2" -PKG_DEPENDS="fuse glib libimobiledevice" -PKG_BUILD_DEPENDS="toolchain fuse glib libimobiledevice" -PKG_PRIORITY="optional" -PKG_SECTION="system" -PKG_SHORTDESC="ifuse: a fuse filesystem for mounting iPhone and iPod touch devices" -PKG_LONGDESC="ifise is a fuse filesystem for mounting iPhone and iPod touch devices" -PKG_IS_ADDON="no" - -PKG_AUTORECONF="yes" diff --git a/packages/sysutils/ifuse/udev.d/91-iphone-automount.rules b/packages/sysutils/ifuse/udev.d/91-iphone-automount.rules deleted file mode 100644 index 5362439727..0000000000 --- a/packages/sysutils/ifuse/udev.d/91-iphone-automount.rules +++ /dev/null @@ -1,43 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -ACTION!="add|remove", GOTO="end" -SUBSYSTEM!="usb", GOTO="end" - -# Detect type of iPhoneOS it is - ENV{PRODUCT}=="5ac/129[1369e]/*", ENV{INTERFACE}=="255/*", ENV{dir_name}="iPod" - ENV{PRODUCT}=="5ac/129[0247]/*", ENV{INTERFACE}=="255/*", ENV{dir_name}="iPhone" - ENV{PRODUCT}=="5ac/129[a]/*", ENV{INTERFACE}=="255/*", ENV{dir_name}="iPad" - - ATTR{idVendor}=="05ac", ATTR{idProduct}=="129[1369e]", ENV{dir_name}="iPod" - ATTR{idVendor}=="05ac", ATTR{idProduct}=="129[0247]", ENV{dir_name}="iPhone" - ATTR{idVendor}=="05ac", ATTR{idProduct}=="129[a]", ENV{dir_name}="iPad" - -# mount the device on add - ACTION=="add", ATTR{idVendor}=="05ac", ATTR{idProduct}=="129[0-9a-f]", \ - RUN+="/bin/mkdir -p '/media/%E{dir_name}'", \ - RUN+="/usr/bin/ifuse '/media/%E{dir_name}' -u '%s{serial}' -o sync,allow_other" - -# unmount the device on remove - ACTION=="remove", ENV{PRODUCT}=="5ac/129[0-9a-f]/*", ENV{INTERFACE}=="255/*", \ - RUN+="/bin/umount -l '/media/%E{dir_name}'", \ - RUN+="/bin/rmdir '/media/%E{dir_name}'" - -LABEL="end" diff --git a/projects/ATV/options b/projects/ATV/options index 85fcf5c142..dd42353090 100644 --- a/projects/ATV/options +++ b/projects/ATV/options @@ -184,9 +184,6 @@ # build and install hfs filesystem utilities (yes / no) HFSTOOLS="yes" -# build and install Apple device mount support (via ifuse) (yes / no) - APPLEMOUNT="yes" - # Displayserver to use (xorg-server / no) DISPLAYSERVER="xorg-server" diff --git a/projects/Fusion/options b/projects/Fusion/options index c3a6ed6bcc..c1bcb2095f 100644 --- a/projects/Fusion/options +++ b/projects/Fusion/options @@ -184,9 +184,6 @@ # build and install hfs filesystem utilities (yes / no) HFSTOOLS="yes" -# build and install Apple device mount support (via ifuse) (yes / no) - APPLEMOUNT="yes" - # Displayserver to use (xorg-server / no) DISPLAYSERVER="xorg-server" diff --git a/projects/Generic/options b/projects/Generic/options index 204891b94e..c132b628b7 100644 --- a/projects/Generic/options +++ b/projects/Generic/options @@ -184,9 +184,6 @@ # build and install hfs filesystem utilities (yes / no) HFSTOOLS="yes" -# build and install Apple device mount support (via ifuse) (yes / no) - APPLEMOUNT="yes" - # Displayserver to use (xorg-server / no) DISPLAYSERVER="xorg-server" diff --git a/projects/Generic_OSS/options b/projects/Generic_OSS/options index 84c5bbbcba..4a714f4071 100644 --- a/projects/Generic_OSS/options +++ b/projects/Generic_OSS/options @@ -184,9 +184,6 @@ # build and install hfs filesystem utilities (yes / no) HFSTOOLS="yes" -# build and install Apple device mount support (via ifuse) (yes / no) - APPLEMOUNT="yes" - # Displayserver to use (xorg-server / no) DISPLAYSERVER="xorg-server" diff --git a/projects/ION/options b/projects/ION/options index a3d8e3861d..984d0e6e5a 100644 --- a/projects/ION/options +++ b/projects/ION/options @@ -184,9 +184,6 @@ # build and install hfs filesystem utilities (yes / no) HFSTOOLS="yes" -# build and install Apple device mount support (via ifuse) (yes / no) - APPLEMOUNT="yes" - # Displayserver to use (xorg-server / no) DISPLAYSERVER="xorg-server" diff --git a/projects/Intel/options b/projects/Intel/options index 65d8fa4e43..4fc87ebb04 100644 --- a/projects/Intel/options +++ b/projects/Intel/options @@ -184,9 +184,6 @@ # build and install hfs filesystem utilities (yes / no) HFSTOOLS="yes" -# build and install Apple device mount support (via ifuse) (yes / no) - APPLEMOUNT="yes" - # Displayserver to use (xorg-server / no) DISPLAYSERVER="xorg-server" diff --git a/projects/Ultra/options b/projects/Ultra/options index e9af4b81bd..82c801ace2 100644 --- a/projects/Ultra/options +++ b/projects/Ultra/options @@ -184,9 +184,6 @@ # build and install hfs filesystem utilities (yes / no) HFSTOOLS="yes" -# build and install Apple device mount support (via ifuse) (yes / no) - APPLEMOUNT="yes" - # Displayserver to use (xorg-server / no) DISPLAYSERVER="xorg-server" diff --git a/scripts/image b/scripts/image index 6485ffaa63..f2ae1a0bd7 100755 --- a/scripts/image +++ b/scripts/image @@ -124,9 +124,6 @@ IMAGE_NAME="$DISTRONAME-$TARGET_VERSION" # NTFS 3G support [ "$NTFS3G" = "yes" ] && $SCRIPTS/install ntfs-3g_ntfsprogs -# Apple mount (ifuse) support - [ "$APPLEMOUNT" = "yes" ] && $SCRIPTS/install ifuse - # Remote support [ "$REMOTE_SUPPORT" = "yes" ] && $SCRIPTS/install remote