diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2016-01-02 01:31:19 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-17 09:40:16 +0700 |
commit | 3193db0fd0fac33a2944b64ed915d202f4c36b19 (patch) | |
tree | 1112a2763ec1e0249d4f20e884912e8eb4419b72 | |
parent | c012efacff38ab980a973edf82ecefa7c8486021 (diff) | |
download | slackbuilds-3193db0fd0fac33a2944b64ed915d202f4c36b19.tar.gz |
system/usbmuxd: Removed (included in Slackware 14.2)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r-- | system/usbmuxd/85-usbmuxd.rules | 7 | ||||
-rw-r--r-- | system/usbmuxd/README | 7 | ||||
-rw-r--r-- | system/usbmuxd/doinst.sh | 1 | ||||
-rw-r--r-- | system/usbmuxd/slack-desc | 19 | ||||
-rw-r--r-- | system/usbmuxd/usbmuxd.SlackBuild | 111 | ||||
-rw-r--r-- | system/usbmuxd/usbmuxd.info | 10 |
6 files changed, 0 insertions, 155 deletions
diff --git a/system/usbmuxd/85-usbmuxd.rules b/system/usbmuxd/85-usbmuxd.rules deleted file mode 100644 index 2fbf92c8a9..0000000000 --- a/system/usbmuxd/85-usbmuxd.rules +++ /dev/null @@ -1,7 +0,0 @@ -# usbmuxd (iPhone "Apple Mobile Device" MUXer listening on /var/run/usbmuxd) - -# Forces iPhone 1.0, 3G, 3GS and iPodTouch 1 and 2 to USB configuration 3 and run usbmuxd -ACTION=="add", SUBSYSTEM=="usb", GROUP="plugdev", MODE="770", OWNER="usbmux", ATTR{idVendor}=="05ac", ATTR{idProduct}=="129[0-9]", ATTR{bConfigurationValue}!="$attr{bNumConfigurations}", ATTR{bConfigurationValue}="$attr{bNumConfigurations}", RUN+="/usr/sbin/usbmuxd -u --user=usbmux" - -# Exit usbmuxd when the last phone is removed -ACTION=="remove", SUBSYSTEM=="usb", ENV{PRODUCT}=="5ac/129[0-9]/*", ENV{INTERFACE}=="255/*", RUN+="/usr/sbin/usbmuxd -x" diff --git a/system/usbmuxd/README b/system/usbmuxd/README deleted file mode 100644 index fee3129706..0000000000 --- a/system/usbmuxd/README +++ /dev/null @@ -1,7 +0,0 @@ -usbmuxd: USB Multiplex Daemon. This bit of software is in charge of -talking to your iPhone or iPod Touch over USB and coordinating access to -its services by other applications. - -Before running this script, create a usbmux user with: - useradd -u 277 -g plugdev -d /dev/null -s /bin/false usbmux - diff --git a/system/usbmuxd/doinst.sh b/system/usbmuxd/doinst.sh deleted file mode 100644 index 687cfbae4d..0000000000 --- a/system/usbmuxd/doinst.sh +++ /dev/null @@ -1 +0,0 @@ -chroot . /etc/rc.d/rc.udev reload diff --git a/system/usbmuxd/slack-desc b/system/usbmuxd/slack-desc deleted file mode 100644 index 0c02337984..0000000000 --- a/system/usbmuxd/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. -# Line up the first '|' above the ':' following the base package name, and -# the '|' on the right side marks the last column you can put a character in. -# You must make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -usbmuxd: usbmuxd (USB Multiplex Daemon) -usbmuxd: -usbmuxd: usbmuxd USB Multiplex Daemon. This bit of software is in charge of -usbmuxd: talking to your iPhone or iPod Touch over USB and coordinating -usbmuxd: access to its services by other applications. -usbmuxd: -usbmuxd: -usbmuxd: -usbmuxd: -usbmuxd: -usbmuxd: diff --git a/system/usbmuxd/usbmuxd.SlackBuild b/system/usbmuxd/usbmuxd.SlackBuild deleted file mode 100644 index b27c9c1daf..0000000000 --- a/system/usbmuxd/usbmuxd.SlackBuild +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/sh - -# Slackware build script for usbmuxd - -# Written by David Somero <dsomero@hotmail.com> -# Derived from Slackware's Slackbuilds. -# -# Copyright 2008, 2009 Patrick J. Volkerding, Sebeka, Minnesota, USA -# Copyright 2010-2011 David Somero (dsomero@hotmail.com) Athens, TN, USA -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -PRGNAM=usbmuxd -VERSION=${VERSION:-1.0.8} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -if ! grep -q ^usbmux: /etc/passwd 2>/dev/null ; then - echo " Error: usbmux user doesn't exist." - echo " Create one with: useradd -u 277 -g plugdev -d /dev/null -s /bin/false usbmux" - exit 1 -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -mkdir build -( cd build - cmake \ - -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DLIB_SUFFIX=${LIBDIRSUFFIX} .. - - make - make install DESTDIR=$PKG -) || exit - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -cat $CWD/85-usbmuxd.rules > $PKG/lib/udev/rules.d/85-usbmuxd.rules - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - README* COPYING* AUTHORS \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/usbmuxd/usbmuxd.info b/system/usbmuxd/usbmuxd.info deleted file mode 100644 index 52a41daeb3..0000000000 --- a/system/usbmuxd/usbmuxd.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="usbmuxd" -VERSION="1.0.8" -HOMEPAGE="http://marcansoft.com/blog/iphonelinux/usbmuxd/" -DOWNLOAD="http://www.libimobiledevice.org/downloads/usbmuxd-1.0.8.tar.bz2" -MD5SUM="4b33cc78e479e0f9a6745f9b9a8b60a8" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="David Somero" -EMAIL="dsomero@hotmail.com" |