summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/README.Debian12
-rw-r--r--debian/changelog11
-rw-r--r--debian/compat1
-rw-r--r--debian/control17
-rw-r--r--debian/copyright27
-rw-r--r--debian/dirs3
-rwxr-xr-xdebian/rules46
7 files changed, 117 insertions, 0 deletions
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..a480fa5
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,12 @@
1hal-applesmc package for Debian
2
3This package adds keyboard backlight and light sensor support via the
4applesmc sysfs interface.
5
6* Install the debian package
7
8* Restart gnome-power-manager
9
10Enjoy!
11
12Henrik Rydberg <rydberg@euromail.se>
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f281e1f
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,11 @@
1hal-applesmc (0.14) unstable; urgency=low
2
3 * Turn on the light sensor (works in conjunction with latest g-p-m)
4
5 -- Henrik Rydberg <rydberg@euromail.se> Tue, 11 Nov 2008 01:20:00 +0100
6
7hal-applesmc (0.13) unstable; urgency=low
8
9 * Add keyboard backlight support for applesmc
10
11 -- Henrik Rydberg <rydberg@euromail.se> Sat, 25 Oct 2008 20:12:00 +0200
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..2580763
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,17 @@
1Source: hal-applesmc
2Section: misc
3Priority: optional
4Maintainer: Henrik Rydberg <rydberg@euromail.se>
5Build-Depends: debhelper (>= 5),
6 libhal-dev (>= 0.5.8),
7 libdbus-glib-1-dev (>= 0.71)
8Standards-Version: 3.7.2
9Homepage: http://web.comhem.se/rydberg/Bits/
10
11Package: hal-applesmc
12Architecture: any
13Depends: bash (>> 1.99)
14Description: Keyboard backlight and light sensor support
15 This package adds keyboard backlight and light sensor support via the
16 applesmc sysfs interface.
17
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..bf1dcd2
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,27 @@
1Source URL: http://web.comhem.se/rydberg/Bits/
2
3Upstream Author: Henrik Rydberg <rydberg@euromail.se>
4
5Copyright:
6 Copyright (C) 2008 Henrik Rydberg (rydberg@euromail.se)
7
8License:
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23
24Packaging:
25 Copyright (C) 2008 by Henrik Rydberg <rydberg@euromail.se>
26 released under GPL 2
27
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..6611862
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,3 @@
1usr/share/hal/fdi/information/10freedesktop
2usr/lib/hal
3
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..90568c9
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,46 @@
1#!/usr/bin/make -f
2# -*- makefile -*-
3
4# Uncomment this to turn on verbose mode.
5#export DH_VERBOSE=1
6
7build-arch:
8 dh_testdir
9 $(MAKE)
10
11build-indep:
12
13build: build-arch build-indep
14
15install:
16 dh_testdir
17 dh_testroot
18 dh_clean -k
19 dh_installdirs
20 $(MAKE) DESTDIR=$(CURDIR)/debian/hal-applesmc install
21
22binary-arch: build-arch install
23 dh_testdir
24 dh_testroot
25 dh_link
26 dh_strip
27 dh_compress
28 dh_fixperms
29 dh_installdeb
30 dh_shlibdeps
31 dh_gencontrol
32 dh_md5sums
33 dh_builddeb
34
35binary-indep: build-indep
36
37binary: binary-arch binary-indep
38
39clean:
40 dh_testdir
41 dh_testroot
42 $(MAKE) clean
43 dh_clean
44
45.PHONY: build-arch build-indep build install binary-arch binary-indep binary clean
46