summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Tian <kevin.tian@intel.com>2010-09-01 09:17:37 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-09-02 09:38:35 +0100
commita4141e1c11cf86321609e8dfb7c689df35cc2e86 (patch)
tree923ad383ef2e6585f5f2ad3233bf277ae3ef9935
parent68385456af93a6a80c558676fd176e3ec81c9183 (diff)
downloadpoky-a4141e1c11cf86321609e8dfb7c689df35cc2e86.tar.gz
xset: move DISTRO_PN_ALIAS to distro .inc file
also use space as the delimiter instead of semicolon. fix handbook accordingly Signed-off-by: Kevin Tian <kevin.tian@intel.com>
-rw-r--r--handbook/extendpoky.xml8
-rw-r--r--handbook/ref-variables.xml1
-rw-r--r--meta/conf/distro/include/private/distro_x11_apps_2.inc1
-rw-r--r--meta/recipes-graphics/xorg-app/xset_1.1.0.bb1
4 files changed, 5 insertions, 6 deletions
diff --git a/handbook/extendpoky.xml b/handbook/extendpoky.xml
index 18edb1ac95..61d354f39e 100644
--- a/handbook/extendpoky.xml
+++ b/handbook/extendpoky.xml
@@ -914,12 +914,12 @@ DISTRO_PN_ALIAS
914 <title>Specifying the DISTRO_PN_ALIAS variable </title> 914 <title>Specifying the DISTRO_PN_ALIAS variable </title>
915 915
916 <programlisting> 916 <programlisting>
917DISTRO_PN_ALIAS = "distro1=package_name_alias1; distro2=package_name_alias2 \ 917DISTRO_PN_ALIAS_pn = "distro1=package_name_alias1 distro2=package_name_alias2 \
918 distro3=package_name_alias3; \ 918 distro3=package_name_alias3 \
919 ..." 919 ..."
920 </programlisting> 920 </programlisting>
921 <para> 921 <para>
922Look at the meta/packages/xorg-app/xset_1.0.4.bb recipe file for an example. 922Use space as the delimiter if there're multiple distro aliases
923 </para> 923 </para>
924 <tip> 924 <tip>
925 <para> 925 <para>
diff --git a/handbook/ref-variables.xml b/handbook/ref-variables.xml
index c14a0a770e..8ac8f01e63 100644
--- a/handbook/ref-variables.xml
+++ b/handbook/ref-variables.xml
@@ -226,7 +226,6 @@
226 <glossentry id='var-DISTRO_PN_ALIAS'><glossterm>DISTRO_PN_ALIAS</glossterm> 226 <glossentry id='var-DISTRO_PN_ALIAS'><glossterm>DISTRO_PN_ALIAS</glossterm>
227 <glossdef> 227 <glossdef>
228 <para>Alias names of the recipe in various Linux distributions. </para> 228 <para>Alias names of the recipe in various Linux distributions. </para>
229 <para>See the "meta/package/xorg-app/xset_1.0.4.bb" file for an example</para>
230 <para>More information in 229 <para>More information in
231 <link 230 <link
232 linkend='usingpoky-configuring-DISTRO_PN_ALIAS'> 231 linkend='usingpoky-configuring-DISTRO_PN_ALIAS'>
diff --git a/meta/conf/distro/include/private/distro_x11_apps_2.inc b/meta/conf/distro/include/private/distro_x11_apps_2.inc
index 829d5c5343..ab5595811a 100644
--- a/meta/conf/distro/include/private/distro_x11_apps_2.inc
+++ b/meta/conf/distro/include/private/distro_x11_apps_2.inc
@@ -75,6 +75,7 @@ RECIPE_INTEL_SECTION_pn-xprop="graphic app"
75RECIPE_MAINTAINER_pn-xprop="Yu Ke <ke.yu@intel.com>" 75RECIPE_MAINTAINER_pn-xprop="Yu Ke <ke.yu@intel.com>"
76 76
77RECIPE_STATUS_pn-xset="green" # no update needed 77RECIPE_STATUS_pn-xset="green" # no update needed
78DISTRO_PN_ALIAS_pn-xset = "Fedora=xorg-x11-server-utils Ubuntu=x11-xserver-utils Debian=x11-xserver-utils Opensuse=xorg-x11"
78RECIPE_LATEST_VERSION_pn-xset="1.1.0" 79RECIPE_LATEST_VERSION_pn-xset="1.1.0"
79RECIPE_NO_OF_PATCHES_pn-xset="1" 80RECIPE_NO_OF_PATCHES_pn-xset="1"
80RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-xset="1 year" 81RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-xset="1 year"
diff --git a/meta/recipes-graphics/xorg-app/xset_1.1.0.bb b/meta/recipes-graphics/xorg-app/xset_1.1.0.bb
index 817b097213..2d80d3b38f 100644
--- a/meta/recipes-graphics/xorg-app/xset_1.1.0.bb
+++ b/meta/recipes-graphics/xorg-app/xset_1.1.0.bb
@@ -3,7 +3,6 @@ require xorg-app-common.inc
3DESCRIPTION = "Utility of setting various user preference options of the display" 3DESCRIPTION = "Utility of setting various user preference options of the display"
4LICENSE = "MIT" 4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://COPYING;md5=bea81cc9827cdf1af0e12c2b8228cf8d" 5LIC_FILES_CHKSUM = "file://COPYING;md5=bea81cc9827cdf1af0e12c2b8228cf8d"
6DISTRO_PN_ALIAS = "Fedora=xorg-x11-server-utils;Ubuntu=x11-xserver-utils;Debian=x11-xserver-utils;Opensuse=xorg-x11"
7DEPENDS += "libxext libxxf86misc libxfontcache libxmu libxp libxau" 6DEPENDS += "libxext libxxf86misc libxfontcache libxmu libxp libxau"
8PR = "r0" 7PR = "r0"
9PE = "1" 8PE = "1"