diff options
| author | Henrik Rydberg <rydberg@euromail.se> | 2008-11-24 10:51:54 +0100 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@euromail.se> | 2008-11-24 10:51:54 +0100 |
| commit | 8a6c3c55a7b5ff2042ad6973ddd7ab73236de047 (patch) | |
| tree | a4ad1692c6b30f6080afbec1b31664afcf407385 /debian | |
Initial version
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/README.Debian | 14 | ||||
| -rw-r--r-- | debian/changelog | 5 | ||||
| -rw-r--r-- | debian/compat | 1 | ||||
| -rw-r--r-- | debian/control | 17 | ||||
| -rw-r--r-- | debian/copyright | 27 | ||||
| -rw-r--r-- | debian/dirs | 3 | ||||
| -rwxr-xr-x | debian/rules | 46 |
7 files changed, 113 insertions, 0 deletions
diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 0000000..67859ad --- /dev/null +++ b/debian/README.Debian | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | hal-nvidia-bl package for Debian | ||
| 2 | |||
| 3 | This package adds LCD backlight support via the nvidia-bl sysfs | ||
| 4 | interface. | ||
| 5 | |||
| 6 | * Install the debian package | ||
| 7 | |||
| 8 | * Restart hal | ||
| 9 | |||
| 10 | * Restart gnome-power-manager | ||
| 11 | |||
| 12 | Enjoy! | ||
| 13 | |||
| 14 | Henrik Rydberg <rydberg@euromail.se> | ||
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..458b1a6 --- /dev/null +++ b/debian/changelog | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | hal-nvidia-bl (0.1.0) unstable; urgency=low | ||
| 2 | |||
| 3 | * Add LCD backlight support for nvidia-bl | ||
| 4 | |||
| 5 | -- 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..04dbc2d --- /dev/null +++ b/debian/control | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | Source: hal-nvidia-bl | ||
| 2 | Section: misc | ||
| 3 | Priority: optional | ||
| 4 | Maintainer: Henrik Rydberg <rydberg@euromail.se> | ||
| 5 | Build-Depends: debhelper (>= 5), | ||
| 6 | libhal-dev (>= 0.5.8), | ||
| 7 | libdbus-glib-1-dev (>= 0.71) | ||
| 8 | Standards-Version: 3.7.2 | ||
| 9 | Homepage: http://bitmath.org/code/hal-nvidia-bl/ | ||
| 10 | |||
| 11 | Package: hal-nvidia-bl | ||
| 12 | Architecture: any | ||
| 13 | Depends: bash (>> 1.99) | ||
| 14 | Description: LCD backlight support | ||
| 15 | This package adds LCD backlight support via the nvidia-bl sysfs | ||
| 16 | interface. | ||
| 17 | |||
diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..b0aa765 --- /dev/null +++ b/debian/copyright | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | Source URL: http://bitmath.org/code/hal-nvidia-bl/ | ||
| 2 | |||
| 3 | Upstream Author: Henrik Rydberg <rydberg@euromail.se> | ||
| 4 | |||
| 5 | Copyright: | ||
| 6 | Copyright (C) 2008 Henrik Rydberg (rydberg@euromail.se) | ||
| 7 | |||
| 8 | License: | ||
| 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 | |||
| 24 | Packaging: | ||
| 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..ced47fc --- /dev/null +++ b/debian/dirs | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | usr/share/hal/fdi/policy/10osvendor | ||
| 2 | usr/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 | |||
| 7 | build-arch: | ||
| 8 | dh_testdir | ||
| 9 | $(MAKE) | ||
| 10 | |||
| 11 | build-indep: | ||
| 12 | |||
| 13 | build: build-arch build-indep | ||
| 14 | |||
| 15 | install: | ||
| 16 | dh_testdir | ||
| 17 | dh_testroot | ||
| 18 | dh_clean -k | ||
| 19 | dh_installdirs | ||
| 20 | $(MAKE) DESTDIR=$(CURDIR)/debian/hal-applesmc install | ||
| 21 | |||
| 22 | binary-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 | |||
| 35 | binary-indep: build-indep | ||
| 36 | |||
| 37 | binary: binary-arch binary-indep | ||
| 38 | |||
| 39 | clean: | ||
| 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 | |||
