diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-04-21 12:17:57 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-04-21 12:18:58 +0200 |
commit | 199d08c1396c27afac526e39f0987c7f74082cb2 (patch) | |
tree | d8277936eb1b0cc9b1e3935e6994c1d1e1e931b1 /meta-oe | |
parent | 09c8584833c91d64975c042696d1c204a883e6d8 (diff) | |
download | meta-openembedded-199d08c1396c27afac526e39f0987c7f74082cb2.tar.gz |
xinput-calibrator: make pointercal-xinput a soft dependency
pointercal-xinput is machine specific and empty for most machines, so it it's only a soft dependency.
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator.inc b/meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator.inc index 357b0e5c0..691a45cd9 100644 --- a/meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator.inc +++ b/meta-oe/recipes-graphics/xinput-calibrator/xinput-calibrator.inc | |||
@@ -2,7 +2,11 @@ DESCRIPTION = "A generic touchscreen calibration program for X.Org" | |||
2 | HOMEPAGE = "http://www.freedesktop.org/wiki/Software/xinput_calibrator" | 2 | HOMEPAGE = "http://www.freedesktop.org/wiki/Software/xinput_calibrator" |
3 | LICENSE = "MIT/X11" | 3 | LICENSE = "MIT/X11" |
4 | DEPENDS = "virtual/libx11 libxi" | 4 | DEPENDS = "virtual/libx11 libxi" |
5 | RDEPENDS_${PN} = "xinput pointercal-xinput" | 5 | |
6 | INC_PR = "r7" | 6 | INC_PR = "r8" |
7 | 7 | ||
8 | inherit autotools | 8 | inherit autotools |
9 | |||
10 | RDEPENDS_${PN} = "xinput" | ||
11 | RRECOMMENDS_${PN} = "pointercal-xinput" | ||
12 | |||