aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrille Henry <nusmuk@users.sourceforge.net>2010-11-11 13:26:14 +0000
committerCyrille Henry <nusmuk@users.sourceforge.net>2010-11-11 13:26:14 +0000
commitc56094323ba253fe948adb13ba3cb2ab0e29a952 (patch)
treecbd0a30215c837a86c414b8cea36c4d8bdfc7002
parent147ef41760be472d303673be498e9af8ff3feb95 (diff)
adding a debian folder to be complient with debien template
svn path=/trunk/externals/nusmuk/; revision=14410
-rw-r--r--puremapping/debian/changelog5
-rw-r--r--puremapping/debian/compat1
-rw-r--r--puremapping/debian/control21
-rw-r--r--puremapping/debian/copyright23
-rw-r--r--puremapping/debian/files1
-rw-r--r--puremapping/debian/gbp.conf7
-rw-r--r--puremapping/debian/links3
-rwxr-xr-xpuremapping/debian/rules17
-rw-r--r--puremapping/debian/source/format1
-rw-r--r--puremapping/debian/watch2
10 files changed, 81 insertions, 0 deletions
diff --git a/puremapping/debian/changelog b/puremapping/debian/changelog
new file mode 100644
index 0000000..d962759
--- /dev/null
+++ b/puremapping/debian/changelog
@@ -0,0 +1,5 @@
+pd-puremapping (1.1-1) unstable; urgency=low
+
+ * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
+
+ -- Hans-Christoph Steiner <hans@eds.org> Thu, 21 Jan 2010 23:27:04 -0500
diff --git a/puremapping/debian/compat b/puremapping/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/puremapping/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/puremapping/debian/control b/puremapping/debian/control
new file mode 100644
index 0000000..249719e
--- /dev/null
+++ b/puremapping/debian/control
@@ -0,0 +1,21 @@
+Source: pd-puremapping
+Section: sound
+Priority: optional
+Maintainer: Debian Multimedia Maintainers <pkg-multimedia-maintainers@lists.alioth.debian.org>
+Uploaders: Hans-Christoph Steiner <hans@eds.org>
+Build-Depends: debhelper (>= 7.0.50~),
+ puredata
+Standards-Version: 3.9.1
+Homepage: http://puredata.info
+
+Package: pd-puremapping
+Architecture: any
+Depends: ${shlibs:Depends},
+ pd,
+ ${misc:Depends},
+Description: mapping objects for pure data
+ This collection of abstraction are made to facilitate the use of sensors
+ and to create complex relations between input and output of a dynamic system
+ Puremapping was create based on la-kitchen library, and the mapping library.
+ Most object of puremapping should be compatible with the mapping lib object.
+ They do however have no dependency.
diff --git a/puremapping/debian/copyright b/puremapping/debian/copyright
new file mode 100644
index 0000000..793489f
--- /dev/null
+++ b/puremapping/debian/copyright
@@ -0,0 +1,23 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=135
+Name: puremapping
+Maintainer:
+Source: http://sourceforge.net/projects/pure-data/files/libraries/puremapping/
+
+Files: *
+Copyright: 2001-2003, Free Software Foundation
+License: GPL-2+
+ This package 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 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 General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+X-Comment: On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-2'.
diff --git a/puremapping/debian/files b/puremapping/debian/files
new file mode 100644
index 0000000..2ef1cb2
--- /dev/null
+++ b/puremapping/debian/files
@@ -0,0 +1 @@
+pd-puremapping_1.1-1_i386.deb sound optional
diff --git a/puremapping/debian/gbp.conf b/puremapping/debian/gbp.conf
new file mode 100644
index 0000000..ae1dc36
--- /dev/null
+++ b/puremapping/debian/gbp.conf
@@ -0,0 +1,7 @@
+[DEFAULT]
+upstream-branch = upstream
+debian-branch = master
+upstream-tag = upstream/%(version)s
+debian-tag = debian/%(version)s
+pristine-tar = True
+sign-tags = True
diff --git a/puremapping/debian/links b/puremapping/debian/links
new file mode 100644
index 0000000..aceb5c3
--- /dev/null
+++ b/puremapping/debian/links
@@ -0,0 +1,3 @@
+usr/lib/pd/extra/puremapping/README.txt usr/share/doc/pd-puremapping/README
+usr/lib/pd/extra/puremapping/examples usr/share/doc/pd-puremapping/examples
+usr/share/common-licenses/GPL-2 usr/lib/pd/extra/puremapping/LICENSE.txt
diff --git a/puremapping/debian/rules b/puremapping/debian/rules
new file mode 100755
index 0000000..ff54597
--- /dev/null
+++ b/puremapping/debian/rules
@@ -0,0 +1,17 @@
+#!/usr/bin/make -f
+
+LIBRARY_NAME = puremapping
+PACKAGE = pd-$(LIBRARY_NAME)
+pkglibdir = /usr/lib/pd/extra
+
+%:
+ dh $@ --buildsystem=makefile
+
+override_dh_auto_install:
+ dh_auto_install -- prefix=/usr pkglibdir=$(pkglibdir)
+# replace license file with link to the Debian license file
+ rm -f -- $(CURDIR)/debian/$(PACKAGE)/$(pkglibdir)/$(LIBRARY_NAME)/LICENSE.txt
+
+override_dh_shlibdeps:
+ dpkg-shlibdeps $(CURDIR)/debian/$(PACKAGE)$(pkglibdir)/$(LIBRARY_NAME)/*.pd_linux \
+ -T$(CURDIR)/debian/$(PACKAGE).substvars
diff --git a/puremapping/debian/source/format b/puremapping/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/puremapping/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/puremapping/debian/watch b/puremapping/debian/watch
new file mode 100644
index 0000000..5e49a8a
--- /dev/null
+++ b/puremapping/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/pure-data/puremapping-(.*)\.tar\.gz