From 49680952052582ff3dd11bc413b6287b65063b2a Mon Sep 17 00:00:00 2001 From: Henrik Rydberg Date: Thu, 13 Nov 2008 03:05:38 +0100 Subject: Initial GIT version: hal-applesmc-0.14 Signed-off-by: Henrik Rydberg --- debian/README.Debian | 12 ++++++++++++ debian/changelog | 11 +++++++++++ debian/compat | 1 + debian/control | 17 +++++++++++++++++ debian/copyright | 27 +++++++++++++++++++++++++++ debian/dirs | 3 +++ debian/rules | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 117 insertions(+) create mode 100644 debian/README.Debian create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/dirs create mode 100755 debian/rules (limited to 'debian') 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 @@ +hal-applesmc package for Debian + +This package adds keyboard backlight and light sensor support via the +applesmc sysfs interface. + +* Install the debian package + +* Restart gnome-power-manager + +Enjoy! + +Henrik Rydberg diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..f281e1f --- /dev/null +++ b/debian/changelog @@ -0,0 +1,11 @@ +hal-applesmc (0.14) unstable; urgency=low + + * Turn on the light sensor (works in conjunction with latest g-p-m) + + -- Henrik Rydberg Tue, 11 Nov 2008 01:20:00 +0100 + +hal-applesmc (0.13) unstable; urgency=low + + * Add keyboard backlight support for applesmc + + -- Henrik Rydberg 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 @@ +Source: hal-applesmc +Section: misc +Priority: optional +Maintainer: Henrik Rydberg +Build-Depends: debhelper (>= 5), + libhal-dev (>= 0.5.8), + libdbus-glib-1-dev (>= 0.71) +Standards-Version: 3.7.2 +Homepage: http://web.comhem.se/rydberg/Bits/ + +Package: hal-applesmc +Architecture: any +Depends: bash (>> 1.99) +Description: Keyboard backlight and light sensor support + This package adds keyboard backlight and light sensor support via the + applesmc sysfs interface. + 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 + +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 + 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 + -- cgit v1.2.3