diff -Nru pd-iemnet-0.1/debian/changelog pd-iemnet-0.1/debian/changelog --- pd-iemnet-0.1/debian/changelog 2010-10-28 07:15:35.000000000 +0000 +++ pd-iemnet-0.1/debian/changelog 2011-04-16 16:31:26.000000000 +0000 @@ -1,3 +1,12 @@ +pd-iemnet (0.1-2) unstable; urgency=low + + [ IOhannes m zmoelnig (gpg-key at iem) ] + * FTBFS-fixes for non-linux (Closes: #605827) + * Removed the '--with-quilt' option, we use v3 (quilt) format + * Shortened Vcs stanzas + + -- IOhannes m zmoelnig (gpg-key at iem) Fri, 15 Apr 2011 18:02:08 +0200 + pd-iemnet (0.1-1) unstable; urgency=low * Initial release. (Closes: #599229) diff -Nru pd-iemnet-0.1/debian/control pd-iemnet-0.1/debian/control --- pd-iemnet-0.1/debian/control 2010-10-19 13:50:51.000000000 +0000 +++ pd-iemnet-0.1/debian/control 2011-04-16 16:31:26.000000000 +0000 @@ -4,13 +4,12 @@ Uploaders: Roman Haefeli , IOhannes m zmoelnig (gpg-key at iem) Build-Depends: debhelper (>= 7.0.50~), - puredata (>= 0.42.5-3), - quilt (>= 0.46-7~) + puredata (>= 0.42.5-3) Standards-Version: 3.9.1 Section: sound Homepage: http://puredata.info/community/projects/software/iemnet -Vcs-Git: git://git.debian.org/pkg-multimedia/pd-iemnet.git -Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/pd-iemnet.git;a=summary +Vcs-Git: git://git.debian.org/pkg-multimedia/pd-iemnet +Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/pd-iemnet.git Package: pd-iemnet Architecture: any diff -Nru pd-iemnet-0.1/debian/patches/debian-changes-0.1-1 pd-iemnet-0.1/debian/patches/debian-changes-0.1-1 --- pd-iemnet-0.1/debian/patches/debian-changes-0.1-1 2010-10-28 07:19:22.000000000 +0000 +++ pd-iemnet-0.1/debian/patches/debian-changes-0.1-1 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -Description: Upstream changes introduced in version 0.1-1 - This patch has been created by dpkg-source during the package build. - Here's the last changelog entry, hopefully it gives details on why - those changes were made: - . - pd-iemnet (0.1-1) unstable; urgency=low - . - * Initial release. (Closes: #599229) - . - The person named in the Author field signed this changelog entry. -Author: IOhannes m zmoelnig (gpg-key at iem) -Bug-Debian: http://bugs.debian.org/599229 - ---- -The information above should follow the Patch Tagging Guidelines, please -checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here -are templates for supplementary fields that you might want to add: - -Origin: , -Bug: -Bug-Debian: http://bugs.debian.org/ -Bug-Ubuntu: https://launchpad.net/bugs/ -Forwarded: -Reviewed-By: -Last-Update: - ---- /dev/null -+++ pd-iemnet-0.1/.gitignore -@@ -0,0 +1 @@ -+/.pc diff -Nru pd-iemnet-0.1/debian/patches/hurd_fixes.patch pd-iemnet-0.1/debian/patches/hurd_fixes.patch --- pd-iemnet-0.1/debian/patches/hurd_fixes.patch 1970-01-01 00:00:00.000000000 +0000 +++ pd-iemnet-0.1/debian/patches/hurd_fixes.patch 2011-04-16 16:31:26.000000000 +0000 @@ -0,0 +1,27 @@ +Description: allow for Debian GNU/HURD compilation +Author: IOhannes m zmölnig +Applied-Upstream: http://pure-data.svn.sourceforge.net/viewvc/pure-data?revision=14573&view=revision + +--- pd-iemnet.orig/Makefile ++++ pd-iemnet/Makefile +@@ -110,6 +110,20 @@ + DISTDIR=$(LIBRARY_NAME)-$(LIBRARY_VERSION) + DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m) + endif ++ifeq ($(UNAME),GNU) ++ # GNU/Hurd, should work like GNU/Linux for basically all externals ++ CPU := $(shell uname -m) ++ SOURCES += $(SOURCES_linux) ++ EXTENSION = pd_linux ++ OS = linux ++ PD_PATH = /usr ++ OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer ++ CFLAGS += -fPIC ++ LDFLAGS += -Wl,--export-dynamic -shared -fPIC ++ LIBS += -lc ++ STRIP = strip --strip-unneeded -R .note -R .comment ++ DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m) ++endif + ifeq (CYGWIN,$(findstring CYGWIN,$(UNAME))) + SOURCES += $(SOURCES_cygwin) + EXTENSION = dll diff -Nru pd-iemnet-0.1/debian/patches/kfreebsd_fixes.patch pd-iemnet-0.1/debian/patches/kfreebsd_fixes.patch --- pd-iemnet-0.1/debian/patches/kfreebsd_fixes.patch 1970-01-01 00:00:00.000000000 +0000 +++ pd-iemnet-0.1/debian/patches/kfreebsd_fixes.patch 2011-04-16 16:31:26.000000000 +0000 @@ -0,0 +1,27 @@ +Description: allow for Debian GNU/kFreeBSD compilation +Author: IOhannes m zmölnig +Applied-Upstream: http://pure-data.svn.sourceforge.net/viewvc/pure-data?revision=14573&view=revision + +--- pd-iemnet.orig/Makefile ++++ pd-iemnet/Makefile +@@ -124,6 +124,20 @@ + STRIP = strip --strip-unneeded -R .note -R .comment + DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m) + endif ++ifeq ($(UNAME),GNU/kFreeBSD) ++ # Debian GNU/kFreeBSD, should work like GNU/Linux for basically all externals ++ CPU := $(shell uname -m) ++ SOURCES += $(SOURCES_linux) ++ EXTENSION = pd_linux ++ OS = linux ++ PD_PATH = /usr ++ OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer ++ CFLAGS += -fPIC ++ LDFLAGS += -Wl,--export-dynamic -shared -fPIC ++ LIBS += -lc ++ STRIP = strip --strip-unneeded -R .note -R .comment ++ DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m) ++endif + ifeq (CYGWIN,$(findstring CYGWIN,$(UNAME))) + SOURCES += $(SOURCES_cygwin) + EXTENSION = dll diff -Nru pd-iemnet-0.1/debian/patches/series pd-iemnet-0.1/debian/patches/series --- pd-iemnet-0.1/debian/patches/series 2010-10-28 07:17:40.000000000 +0000 +++ pd-iemnet-0.1/debian/patches/series 2011-04-16 16:31:26.000000000 +0000 @@ -1,2 +1,3 @@ fix_makefile.patch -debian-changes-0.1-1 +hurd_fixes.patch +kfreebsd_fixes.patch diff -Nru pd-iemnet-0.1/debian/rules pd-iemnet-0.1/debian/rules --- pd-iemnet-0.1/debian/rules 2010-10-19 13:50:51.000000000 +0000 +++ pd-iemnet-0.1/debian/rules 2011-04-16 16:31:26.000000000 +0000 @@ -1,7 +1,7 @@ #!/usr/bin/make -f %: - dh --with quilt $@ + dh $@ override_dh_auto_install: dh_auto_install -- pkglibdir=/usr/lib/pd/extra