diff options
author | Samuel Ortiz <sameo@openedhand.com> | 2008-09-25 14:58:13 +0000 |
---|---|---|
committer | Samuel Ortiz <sameo@openedhand.com> | 2008-09-25 14:58:13 +0000 |
commit | 4a91a284b528c06d6132a8bba2d1e5efc6936926 (patch) | |
tree | a425e558d3e34093b8bfab2055e572c7284a8748 /meta/packages/eee-acpi-scripts/eee-acpi-scripts_git.bb | |
parent | d3636b1f0cdc3489066c9c9dc5cdbf832429bb83 (diff) | |
download | poky-4a91a284b528c06d6132a8bba2d1e5efc6936926.tar.gz |
eee-acpi-scripts: Initial commit
eeePC specific ACPI hooks.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5272 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/eee-acpi-scripts/eee-acpi-scripts_git.bb')
-rw-r--r-- | meta/packages/eee-acpi-scripts/eee-acpi-scripts_git.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/packages/eee-acpi-scripts/eee-acpi-scripts_git.bb b/meta/packages/eee-acpi-scripts/eee-acpi-scripts_git.bb new file mode 100644 index 0000000000..84cf8a0859 --- /dev/null +++ b/meta/packages/eee-acpi-scripts/eee-acpi-scripts_git.bb | |||
@@ -0,0 +1,35 @@ | |||
1 | SECTION = "base" | ||
2 | DESCRIPTION = "eeePC specific ACPI scripts" | ||
3 | LICENSE="GPL" | ||
4 | |||
5 | SRCREV = "df785afdacedf869b20fb88a793c13b539819270" | ||
6 | |||
7 | PR = "r2" | ||
8 | |||
9 | RDEPENDS = "pm-utils" | ||
10 | |||
11 | SRC_URI = "git://git.debian.org/git/debian-eeepc/eeepc-acpi-scripts.git;protocol=git \ | ||
12 | file://remove-doc-check.patch;patch=1 \ | ||
13 | file://policy-funcs " | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | FILES_${PN} = "${datadir}/acpi-support/ \ | ||
18 | ${datadir}/eeepc-acpi-scripts \ | ||
19 | ${sysconfdir}/default/ \ | ||
20 | ${sysconfdir}/acpi/" | ||
21 | |||
22 | do_install () { | ||
23 | install -d ${D}${sysconfdir}/default/ | ||
24 | install -d ${D}${sysconfdir}/acpi/actions/ | ||
25 | install -d ${D}${sysconfdir}/acpi/events/ | ||
26 | install -d ${D}${sysconfdir}/acpi/lib/ | ||
27 | install -d ${D}${datadir}/eeepc-acpi-scripts/ | ||
28 | install -d ${D}${datadir}/acpi-support/ | ||
29 | install -m 644 ${S}/events/* ${D}${sysconfdir}/acpi/events/ | ||
30 | install -m 644 ${S}/lib/* ${D}${sysconfdir}/acpi/lib/ | ||
31 | install ${S}/actions/* ${D}${sysconfdir}/acpi/actions/ | ||
32 | install -m 0644 ${S}/functions.sh ${D}${datadir}/eeepc-acpi-scripts/ | ||
33 | install -m 0644 ${WORKDIR}/policy-funcs ${D}${datadir}/acpi-support/ | ||
34 | install -m 0644 ${S}/debian/eeepc-acpi-scripts.default ${D}${sysconfdir}/default/ | ||
35 | } | ||