--- ifuse-0.9.1.orig/debian/ifuse.install +++ ifuse-0.9.1/debian/ifuse.install @@ -0,0 +1,2 @@ +debian/tmp/sbin/* +usr/share/hal/fdi/information/20thirdparty/30-ifuse.fdi --- ifuse-0.9.1.orig/debian/rules +++ ifuse-0.9.1/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.1.orig/debian/compat +++ ifuse-0.9.1/debian/compat @@ -0,0 +1 @@ +7 --- ifuse-0.9.1.orig/debian/ifuse.docs +++ ifuse-0.9.1/debian/ifuse.docs @@ -0,0 +1 @@ +README --- ifuse-0.9.1.orig/debian/copyright +++ ifuse-0.9.1/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.1.orig/debian/changelog +++ ifuse-0.9.1/debian/changelog @@ -0,0 +1,20 @@ +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.1.orig/debian/watch +++ ifuse-0.9.1/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 --- ifuse-0.9.1.orig/debian/control +++ ifuse-0.9.1/debian/control @@ -0,0 +1,38 @@ +Source: ifuse +Section: utils +Priority: optional +Maintainer: Bradley Smith +Standards-Version: 3.8.1 +Build-Depends: debhelper (>= 7), libfuse-dev (>= 2.7.0), libglib2.0-dev (>= 2.14.1), libiphone-dev (>= 0.9.1-2) +Homepage: http://matt.colyer.name/projects/iphone-linux/ +Vcs-Git: http://git.brad-smith.co.uk/git/debian/pkg-ifuse.git +Vcs-Browser: http://git.brad-smith.co.uk/?p=debian/pkg-ifuse.git + +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.