summaryrefslogtreecommitdiffstats
path: root/meta/packages/maemo
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2008-12-27 01:13:47 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2008-12-30 17:07:17 +0000
commitfcb1791f553081e5267c2d0b7795eab224b4a342 (patch)
tree16772e322df1059b1f13585396c683e50eafc3c3 /meta/packages/maemo
parente380b48602db316c7d12d328192eadc52e5be861 (diff)
downloadpoky-fcb1791f553081e5267c2d0b7795eab224b4a342.tar.gz
classes/autotools_stage.bbclass: Add autotools_stage class to further recipes to simplify recipes using standard autotools
Diffstat (limited to 'meta/packages/maemo')
-rw-r--r--meta/packages/maemo/xpext_1.0-5.bb6
-rw-r--r--meta/packages/maemo/xsp_1.0.0-8.bb11
2 files changed, 5 insertions, 12 deletions
diff --git a/meta/packages/maemo/xpext_1.0-5.bb b/meta/packages/maemo/xpext_1.0-5.bb
index 3636551b2c..85e669c174 100644
--- a/meta/packages/maemo/xpext_1.0-5.bb
+++ b/meta/packages/maemo/xpext_1.0-5.bb
@@ -13,14 +13,10 @@ S = "${WORKDIR}/xpext-1.0"
13RDEPENDS_${PN}-dev = "" 13RDEPENDS_${PN}-dev = ""
14RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${DEBPV})" 14RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${DEBPV})"
15 15
16inherit autotools pkgconfig 16inherit autotools_stage pkgconfig
17 17
18do_configure_prepend () { 18do_configure_prepend () {
19 cd ${S} 19 cd ${S}
20 chmod +x ./autogen.sh 20 chmod +x ./autogen.sh
21 ./autogen.sh 21 ./autogen.sh
22} 22}
23
24do_stage() {
25 autotools_stage_all
26}
diff --git a/meta/packages/maemo/xsp_1.0.0-8.bb b/meta/packages/maemo/xsp_1.0.0-8.bb
index f4f872e57f..1e10edda14 100644
--- a/meta/packages/maemo/xsp_1.0.0-8.bb
+++ b/meta/packages/maemo/xsp_1.0.0-8.bb
@@ -1,15 +1,12 @@
1PR = "r1"
2LICENSE= "MIT"
3DESCRIPTION = "X Server Nokia 770 extensions library" 1DESCRIPTION = "X Server Nokia 770 extensions library"
4SECTION = "x11/libs" 2SECTION = "x11/libs"
5PRIORITY = "optional" 3PRIORITY = "optional"
4LICENSE= "MIT"
6DEPENDS = "virtual/libx11 libxext xpext" 5DEPENDS = "virtual/libx11 libxext xpext"
7 6
7PR = "r1"
8
8SRC_URI = "http://repository.maemo.org/pool/maemo/ossw/source/x/xsp/${PN}_${PV}.tar.gz" 9SRC_URI = "http://repository.maemo.org/pool/maemo/ossw/source/x/xsp/${PN}_${PV}.tar.gz"
9S = "${WORKDIR}/Xsp" 10S = "${WORKDIR}/Xsp"
10 11
11inherit autotools pkgconfig 12inherit autotools_stage pkgconfig
12
13do_stage() {
14 autotools_stage_all
15}