aboutsummaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2008-11-03 00:49:34 +0100
committerHenrik Rydberg <rydberg@euromail.se>2008-11-03 00:49:34 +0100
commit70ba2dbf0f49a4f8d1caa2bbed97c8c2358c6fb6 (patch)
treee1697049bc32fd47b1e639969b4ff752689c92a8 /debian
downloadxorg-input-kobomultitouch-70ba2dbf0f49a4f8d1caa2bbed97c8c2358c6fb6.tar.gz
xorg-input-kobomultitouch-70ba2dbf0f49a4f8d1caa2bbed97c8c2358c6fb6.tar.bz2
xorg-input-kobomultitouch-70ba2dbf0f49a4f8d1caa2bbed97c8c2358c6fb6.zip
Initial version: adding some files
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'debian')
-rw-r--r--debian/README.Debian9
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control14
-rw-r--r--debian/copyright27
-rw-r--r--debian/dirs3
-rwxr-xr-xdebian/rules46
7 files changed, 105 insertions, 0 deletions
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..e1e27bf
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,9 @@
+multitouch Xorg driver
+
+* Install the debian package
+
+* Restart X
+
+Enjoy!
+
+Henrik Rydberg <rydberg@euromail.se>
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..b6ef16b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+multitouch (0.1) unstable; urgency=low
+
+ * Add multitouch Xorg input driver
+
+ -- Henrik Rydberg <rydberg@euromail.se> Mon, 03 Nov 2008 00:47:37 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c74798c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,14 @@
+Source: multitouch
+Section: misc
+Priority: optional
+Maintainer: Henrik Rydberg <rydberg@euromail.se>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.7.2
+Homepage: http://web.comhem.se/rydberg/Bits/
+
+Package: multitouch
+Architecture: any
+Depends: bash (>> 1.99)
+Description: Multitouch X input driver
+ This package is a multitouch Xorg input driver.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..bf1dcd2
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,27 @@
+Source URL: http://web.comhem.se/rydberg/Bits/
+
+Upstream Author: Henrik Rydberg <rydberg@euromail.se>
+
+Copyright:
+ Copyright (C) 2008 Henrik Rydberg (rydberg@euromail.se)
+
+License:
+
+ 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 2 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+Packaging:
+ Copyright (C) 2008 by Henrik Rydberg <rydberg@euromail.se>
+ released under GPL 2
+
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..6611862
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,3 @@
+usr/share/hal/fdi/information/10freedesktop
+usr/lib/hal
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..90568c9
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,46 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+build-arch:
+ dh_testdir
+ $(MAKE)
+
+build-indep:
+
+build: build-arch build-indep
+
+install:
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+ $(MAKE) DESTDIR=$(CURDIR)/debian/hal-applesmc install
+
+binary-arch: build-arch install
+ dh_testdir
+ dh_testroot
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary-indep: build-indep
+
+binary: binary-arch binary-indep
+
+clean:
+ dh_testdir
+ dh_testroot
+ $(MAKE) clean
+ dh_clean
+
+.PHONY: build-arch build-indep build install binary-arch binary-indep binary clean
+