diff options
author | Ross Burton <ross@openedhand.com> | 2008-06-24 11:01:06 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2008-06-24 11:01:06 +0000 |
commit | 5da8c4a3d8a08d400fdbad7a0adbd530230bb213 (patch) | |
tree | ad98a6ff9ac92120488757d93545af83cc408441 | |
parent | 31006b91f8f1b39b2e7f7a8a7a7955253bf1647a (diff) | |
download | poky-5da8c4a3d8a08d400fdbad7a0adbd530230bb213.tar.gz |
xserver-kdrive-common, xtscal: move the X session script from former to latter
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4725 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/packages/xserver-kdrive-common/xserver-kdrive-common_0.1.bb | 2 | ||||
-rw-r--r-- | meta/packages/xtscal/xtscal/30xTs_Calibrate (renamed from meta/packages/xserver-kdrive-common/xserver-kdrive-common/etc/X11/Xsession.d/30xTs_Calibrate) | 0 | ||||
-rw-r--r-- | meta/packages/xtscal/xtscal_0.6.3.bb | 10 |
3 files changed, 9 insertions, 3 deletions
diff --git a/meta/packages/xserver-kdrive-common/xserver-kdrive-common_0.1.bb b/meta/packages/xserver-kdrive-common/xserver-kdrive-common_0.1.bb index fa579a4a7b..813123fc2f 100644 --- a/meta/packages/xserver-kdrive-common/xserver-kdrive-common_0.1.bb +++ b/meta/packages/xserver-kdrive-common/xserver-kdrive-common_0.1.bb | |||
@@ -2,7 +2,7 @@ DESCRIPTION = "Common X11 scripts" | |||
2 | LICENSE = "GPL" | 2 | LICENSE = "GPL" |
3 | SECTION = "x11" | 3 | SECTION = "x11" |
4 | RDEPENDS_${PN} = "xmodmap libxrandr xdpyinfo xtscal xinit formfactor" | 4 | RDEPENDS_${PN} = "xmodmap libxrandr xdpyinfo xtscal xinit formfactor" |
5 | PR = "r28" | 5 | PR = "r29" |
6 | 6 | ||
7 | SRC_URI = "file://etc" | 7 | SRC_URI = "file://etc" |
8 | S = ${WORKDIR} | 8 | S = ${WORKDIR} |
diff --git a/meta/packages/xserver-kdrive-common/xserver-kdrive-common/etc/X11/Xsession.d/30xTs_Calibrate b/meta/packages/xtscal/xtscal/30xTs_Calibrate index ee55784548..ee55784548 100644 --- a/meta/packages/xserver-kdrive-common/xserver-kdrive-common/etc/X11/Xsession.d/30xTs_Calibrate +++ b/meta/packages/xtscal/xtscal/30xTs_Calibrate | |||
diff --git a/meta/packages/xtscal/xtscal_0.6.3.bb b/meta/packages/xtscal/xtscal_0.6.3.bb index c2ecb5952a..f518d68f34 100644 --- a/meta/packages/xtscal/xtscal_0.6.3.bb +++ b/meta/packages/xtscal/xtscal_0.6.3.bb | |||
@@ -4,10 +4,16 @@ SECTION = "x11/base" | |||
4 | 4 | ||
5 | DEPENDS = "virtual/libx11 libxft libxcalibrate" | 5 | DEPENDS = "virtual/libx11 libxft libxcalibrate" |
6 | 6 | ||
7 | PR = "r8" | 7 | PR = "r9" |
8 | 8 | ||
9 | SRC_URI = "${GPE_MIRROR}/xtscal-${PV}.tar.bz2 \ | 9 | SRC_URI = "${GPE_MIRROR}/xtscal-${PV}.tar.bz2 \ |
10 | file://change-cross.patch;patch=1 \ | 10 | file://change-cross.patch;patch=1 \ |
11 | file://cleanup.patch;patch=1" | 11 | file://cleanup.patch;patch=1 \ |
12 | file://30xTs_Calibrate" | ||
12 | 13 | ||
13 | inherit autotools | 14 | inherit autotools |
15 | |||
16 | do_install_append() { | ||
17 | install -d ${D}${sysconfdir}/X11/Xsession.d/ | ||
18 | install -m 0755 ${WORKDIR}/30xTs_Calibrate ${D}${sysconfdir}/X11/Xsession.d/ | ||
19 | } | ||