diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-07-17 09:57:09 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-07-17 09:57:09 +0000 |
commit | a906cd2a4b8ce4910b2e577e7ea56c7ec65e810c (patch) | |
tree | c83d43e68295f4af3a2c538b5287e909e1595ce0 /meta/packages/apt | |
parent | ab4f8bb493c7ecdad5bc9593a8057e5e981728d9 (diff) | |
download | poky-a906cd2a4b8ce4910b2e577e7ea56c7ec65e810c.tar.gz |
apt: stage headers/libs
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4856 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/apt')
-rw-r--r-- | meta/packages/apt/apt_0.7.14.bb | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/meta/packages/apt/apt_0.7.14.bb b/meta/packages/apt/apt_0.7.14.bb index 0da36571ee..efd7ab3bc5 100644 --- a/meta/packages/apt/apt_0.7.14.bb +++ b/meta/packages/apt/apt_0.7.14.bb | |||
@@ -3,7 +3,7 @@ RDEPENDS = "dpkg" | |||
3 | 3 | ||
4 | require apt.inc | 4 | require apt.inc |
5 | 5 | ||
6 | PR = "r1" | 6 | PR = "r2" |
7 | 7 | ||
8 | SRC_URI += "file://nodoc.patch;patch=1" | 8 | SRC_URI += "file://nodoc.patch;patch=1" |
9 | 9 | ||
@@ -11,3 +11,14 @@ require apt-package.inc | |||
11 | 11 | ||
12 | FILES_${PN} += "${bindir}/apt-key" | 12 | FILES_${PN} += "${bindir}/apt-key" |
13 | apt-manpages += "doc/apt-key.8" | 13 | apt-manpages += "doc/apt-key.8" |
14 | |||
15 | do_stage() { | ||
16 | install -d ${STAGING_LIBDIR} ${STAGING_INCDIR}/apt-pkg | ||
17 | eval `cat environment.mak | grep ^GLIBC_VER | sed -e's, = ,=,'` | ||
18 | oe_libinstall -so -C bin libapt-pkg$GLIBC_VER-6 ${STAGING_LIBDIR}/ | ||
19 | ln -sf libapt-pkg$GLIBC_VER-6.so ${STAGING_LIBDIR}/libapt-pkg.so | ||
20 | oe_libinstall -so -C bin libapt-inst$GLIBC_VER-6 ${STAGING_LIBDIR}/ | ||
21 | ln -sf libapt-inst$GLIBC_VER-6.so ${STAGING_LIBDIR}/libapt-inst.so | ||
22 | |||
23 | install -m 0644 include/apt-pkg/*.h ${STAGING_INCDIR}/apt-pkg/ | ||
24 | } | ||