diff options
-rw-r--r-- | meta/recipes-bsp/eee-acpi-scripts/eee-acpi-scripts_git.bb | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/meta/recipes-bsp/eee-acpi-scripts/eee-acpi-scripts_git.bb b/meta/recipes-bsp/eee-acpi-scripts/eee-acpi-scripts_git.bb index 5f613f6575..c2a02aadbb 100644 --- a/meta/recipes-bsp/eee-acpi-scripts/eee-acpi-scripts_git.bb +++ b/meta/recipes-bsp/eee-acpi-scripts/eee-acpi-scripts_git.bb | |||
@@ -1,15 +1,13 @@ | |||
1 | DESCRIPTION = "eeePC specific ACPI scripts" | 1 | SUMMARY = "eeePC specific ACPI scripts" |
2 | HOMEPAGE = "http://alioth.debian.org/projects/debian-eeepc/" | 2 | HOMEPAGE = "http://alioth.debian.org/projects/debian-eeepc/" |
3 | SECTION = "base" | 3 | SECTION = "base" |
4 | 4 | ||
5 | LICENSE="GPLv2" | 5 | LICENSE = "GPLv2" |
6 | LIC_FILES_CHKSUM = "file://debian/copyright;md5=77ef83ab5f4af938a93edb61f7b74f2c" | 6 | LIC_FILES_CHKSUM = "file://debian/copyright;md5=77ef83ab5f4af938a93edb61f7b74f2c" |
7 | 7 | ||
8 | SRCREV = "9d4cdedca25b396405f8587f9c4fbf8229e041c2" | 8 | SRCREV = "9d4cdedca25b396405f8587f9c4fbf8229e041c2" |
9 | PV = "1.1.12+git${SRCPV}" | 9 | PV = "1.1.12+git${SRCPV}" |
10 | 10 | ||
11 | RDEPENDS_${PN} = "pm-utils" | ||
12 | |||
13 | SRC_URI = "git://git.debian.org/git/debian-eeepc/eeepc-acpi-scripts.git \ | 11 | SRC_URI = "git://git.debian.org/git/debian-eeepc/eeepc-acpi-scripts.git \ |
14 | file://remove-doc-check.patch \ | 12 | file://remove-doc-check.patch \ |
15 | file://powerbtn.patch \ | 13 | file://powerbtn.patch \ |
@@ -18,9 +16,9 @@ SRC_URI = "git://git.debian.org/git/debian-eeepc/eeepc-acpi-scripts.git \ | |||
18 | S = "${WORKDIR}/git" | 16 | S = "${WORKDIR}/git" |
19 | 17 | ||
20 | FILES_${PN} = "${datadir}/acpi-support/ \ | 18 | FILES_${PN} = "${datadir}/acpi-support/ \ |
21 | ${datadir}/eeepc-acpi-scripts \ | 19 | ${datadir}/eeepc-acpi-scripts \ |
22 | ${sysconfdir}/default/ \ | 20 | ${sysconfdir}/default/ \ |
23 | ${sysconfdir}/acpi/" | 21 | ${sysconfdir}/acpi/" |
24 | 22 | ||
25 | do_install () { | 23 | do_install () { |
26 | install -d ${D}${sysconfdir}/default/ | 24 | install -d ${D}${sysconfdir}/default/ |
@@ -36,3 +34,6 @@ do_install () { | |||
36 | install -m 0644 ${WORKDIR}/policy-funcs ${D}${datadir}/acpi-support/ | 34 | install -m 0644 ${WORKDIR}/policy-funcs ${D}${datadir}/acpi-support/ |
37 | install -m 0644 ${S}/debian/eeepc-acpi-scripts.default* ${D}${sysconfdir}/default/ | 35 | install -m 0644 ${S}/debian/eeepc-acpi-scripts.default* ${D}${sysconfdir}/default/ |
38 | } | 36 | } |
37 | |||
38 | RDEPENDS_${PN} = "pm-utils" | ||
39 | |||