--- ifuse-0.9.5.orig/debian/ifuse.1 +++ ifuse-0.9.5/debian/ifuse.1 @@ -0,0 +1,40 @@ +.TH "ifuse" 1 +.SH NAME +ifuse \- Mount filesystem of an iPhone/iPod Touch. +.SH SYNOPSIS +.B ifuse [OPTIONS] + +.SH DESCRIPTION + +Mount filesystem of an iPhone/iPod Touch. + +Example: +ifuse /media/iPhone --root +This mounts the root filesystem of the first attached device on +this computer in the directory /media/iPhone. + + +.SH OPTIONS +.TP +.B \-o opt,[opt...] +mount options +.TP +.B \-u|\-\-uuid UUID +mount specific device by its 40-digit device UUID. +.TP +.B \-h|\-\-help +prints usage information +.TP +.B \-V|\-\-version +print version +.TP +.B \-\-root +mount root file system (jailbroken device required). +.TP +.B \-\-debug +enable libiphone communication debugging + +.SH AUTHOR +Matt Colyer + +Man page written to conform with Debian by Julien Lavergne. --- ifuse-0.9.5.orig/debian/compat +++ ifuse-0.9.5/debian/compat @@ -0,0 +1 @@ +7 --- ifuse-0.9.5.orig/debian/rules +++ ifuse-0.9.5/debian/rules @@ -0,0 +1,62 @@ +#!/usr/bin/make -f + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CFLAGS = -O2 -Wall +LDFLAGS = -Wl,--as-needed + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + LDFLAGS="$(LDFLAGS)" CFLAGS="$(CFLAGS)" ./configure --prefix=/usr \ + --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) + touch $@ + +build: build-stamp +build-stamp: configure + dh_testdir + $(MAKE) + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installman + dh_install --fail-missing +# dh_link /sbin/mount.fuse.ifuse /usr/bin/ifuse + dh_strip --dbg-package=ifuse-dbg + dh_compress + dh_fixperms + dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- ifuse-0.9.5.orig/debian/control +++ ifuse-0.9.5/debian/control @@ -0,0 +1,36 @@ +Source: ifuse +Section: utils +Priority: optional +Maintainer: Julien Lavergne +Standards-Version: 3.8.3 +Build-Depends: debhelper (>= 7), libfuse-dev (>= 2.7.0), libglib2.0-dev (>= 2.14.1), libiphone-dev (>= 0.9.5) +Homepage: http://matt.colyer.name/projects/iphone-linux/ + +Package: ifuse +Architecture: any +Section: utils +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: FUSE module for iPhone and iPod Touch devices + iFuse is a FUSE filesystem driver which uses libiphone to connect to iPhone + and iPod Touch devices without needing to "jailbreak" them. iFuse uses the + native Apple AFC protocol over a normal USB cable in order to access the + device's media files. + . + Although iFuse is now in a working state it is still under heavy + development and should be considered experimental. + +Package: ifuse-dbg +Architecture: any +Section: debug +Priority: extra +Depends: ifuse (= ${binary:Version}), ${misc:Depends} +Description: FUSE module for iPhone and iPod Touch devices + iFuse is a FUSE filesystem driver which uses libiphone to connect to iPhone + and iPod Touch devices without needing to "jailbreak" them. iFuse uses the + native Apple AFC protocol over a normal USB cable in order to access the + device's media files. + . + Although iFuse is now in a working state it is still under heavy + development and should be considered experimental. + . + This package contains the debugging symbols. --- ifuse-0.9.5.orig/debian/ifuse.install +++ ifuse-0.9.5/debian/ifuse.install @@ -0,0 +1 @@ +debian/tmp/usr/bin/* --- ifuse-0.9.5.orig/debian/ifuse.docs +++ ifuse-0.9.5/debian/ifuse.docs @@ -0,0 +1 @@ +README --- ifuse-0.9.5.orig/debian/copyright +++ ifuse-0.9.5/debian/copyright @@ -0,0 +1,45 @@ +Authors: + Zach C. + Jonathan Beck + Matt Colyer + Martin Aumueller + Christophe Fergeau + Paul Sladen +Download: http://matt.colyer.name/projects/iphone-linux/ + +Files: * +Copyright: + Copyright (C) 2008 Matt Colyer All Rights Reserved +License: LGPL-2.1+ + This package is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + . + This package 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 + Lesser General Public License for more details. + +Files: debian/* +Copyright: (C) 2008 Bradley Smith +License: GPL-3+. + 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 3 of the License, 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 this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian GNU/Linux systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + +On Debian systems, the complete text of the GNU General Public License +can be found in `/usr/share/common-licenses/GPL-3'. --- ifuse-0.9.5.orig/debian/changelog +++ ifuse-0.9.5/debian/changelog @@ -0,0 +1,33 @@ +ifuse (0.9.5-1) unstable; urgency=low + + * New maintainer. Thanks Bradley Smith for his work. Closes: #548593 + * New upstream release. + * debian/ifuse.install: Only install usr/bin + * debian/control: + - Update build-depends on libiphone-dev to (>= 0.9.5) + - Remove VCS fields. + - Standards-Version to 3.8.3 (no change needed). + * debian/ifuse.{1,manpages}: Add man page. + + -- Julien Lavergne Thu, 17 Dec 2009 00:26:54 +0100 + +ifuse (0.9.1-1) unstable; urgency=low + + * New upstream release. + * Fix ifuse-dbg section. + * Add watch file. + + -- Bradley Smith Tue, 12 May 2009 18:44:54 +0100 + +ifuse (0.1.0~git+20090323-1) experimental; urgency=low + + * New upstream snapshot. + * Update Standards-Version to 3.8.1. (No changes). + + -- Bradley Smith Mon, 23 Mar 2009 20:42:00 +0000 + +ifuse (0.1.0~git+20090210-1) experimental; urgency=low + + * Initial release. Closes: #500326 + + -- Bradley Smith Tue, 10 Feb 2009 12:37:31 +0000 --- ifuse-0.9.5.orig/debian/ifuse.manpages +++ ifuse-0.9.5/debian/ifuse.manpages @@ -0,0 +1 @@ +debian/ifuse.1 --- ifuse-0.9.5.orig/debian/watch +++ ifuse-0.9.5/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://github.com/MattColyer/ifuse/downloads \ + http://cloud.github.com/downloads/MattColyer/ifuse/ifuse-([\d\.]+)\.tar\.bz2