diff options
author | Mark Hatle <mhatle@windriver.com> | 2010-08-04 06:45:10 -0700 |
---|---|---|
committer | Mark Hatle <mhatle@windriver.com> | 2010-08-04 15:40:56 -0700 |
commit | 4e2c84f6b4d200e35afc7fff1b39de85afb480af (patch) | |
tree | 3ee2adc265c09120edee9ffbec9134a2b3353a22 /meta/packages/pseudo/pseudo_git.bb | |
parent | aed7ee04fdd4bb49997a30785fbb100e33a3f2c7 (diff) | |
download | poky-4e2c84f6b4d200e35afc7fff1b39de85afb480af.tar.gz |
pseudo: Change pseudo integration to better support local DBs
Change the pseudo integration:
* Uprev to latest open source version
* Restructure the patches to allow for many local DBs, as well as
pseudo specific lib dirs.
Signed-off-by: Mark Hatle <mhatle@windriver.com>
Diffstat (limited to 'meta/packages/pseudo/pseudo_git.bb')
-rw-r--r-- | meta/packages/pseudo/pseudo_git.bb | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/meta/packages/pseudo/pseudo_git.bb b/meta/packages/pseudo/pseudo_git.bb index 9efed11fbf..78d1720501 100644 --- a/meta/packages/pseudo/pseudo_git.bb +++ b/meta/packages/pseudo/pseudo_git.bb | |||
@@ -6,15 +6,10 @@ LICENSE = "LGPL2.1" | |||
6 | DEPENDS = "sqlite3" | 6 | DEPENDS = "sqlite3" |
7 | 7 | ||
8 | PV = "0.0+git${SRCPV}" | 8 | PV = "0.0+git${SRCPV}" |
9 | PR = "r10" | 9 | PR = "r11" |
10 | 10 | ||
11 | SRC_URI = "git://github.com/wrpseudo/pseudo.git;protocol=git \ | 11 | SRC_URI = "git://github.com/wrpseudo/pseudo.git;protocol=git \ |
12 | file://tweakflags.patch \ | 12 | file://static_sqlite.patch" |
13 | file://path-munge.patch \ | ||
14 | file://ld_sacredness.patch \ | ||
15 | file://make_parallel.patch \ | ||
16 | file://static_sqlite.patch \ | ||
17 | file://data-as-env.patch" | ||
18 | 13 | ||
19 | FILES_${PN} = "${libdir}/libpseudo.so ${bindir}/* ${localstatedir}/pseudo" | 14 | FILES_${PN} = "${libdir}/libpseudo.so ${bindir}/* ${localstatedir}/pseudo" |
20 | PROVIDES += "virtual/fakeroot" | 15 | PROVIDES += "virtual/fakeroot" |
@@ -24,11 +19,15 @@ S = "${WORKDIR}/git" | |||
24 | inherit siteinfo | 19 | inherit siteinfo |
25 | 20 | ||
26 | do_configure () { | 21 | do_configure () { |
27 | ${S}/configure --prefix=${prefix} --with-sqlite=${STAGING_DIR_TARGET}${exec_prefix} --bits=${SITEINFO_BITS} --data=${localstatedir} | 22 | ${S}/configure --prefix=${prefix} --with-sqlite=${STAGING_DIR_TARGET}${exec_prefix} --bits=${SITEINFO_BITS} |
23 | } | ||
24 | |||
25 | do_compile () { | ||
26 | oe_runmake 'LIB=lib/pseudo/lib' | ||
28 | } | 27 | } |
29 | 28 | ||
30 | do_install () { | 29 | do_install () { |
31 | oe_runmake 'DESTDIR=${D}' install | 30 | oe_runmake 'DESTDIR=${D}' 'LIB=lib/pseudo/lib' install |
32 | } | 31 | } |
33 | 32 | ||
34 | BBCLASSEXTEND = "native" | 33 | BBCLASSEXTEND = "native" |