diff options
| author | Qing He <qing.he@intel.com> | 2010-07-29 18:34:42 +0800 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-06 18:28:26 +0100 |
| commit | 680f8bf8ae8a850327d68fb24c7ee0c8631d2e45 (patch) | |
| tree | 495c3a2cab566b04a4eadd53a4eb9f5af99afb64 /meta/packages/attr/attr.inc | |
| parent | 28d52a2f7a2755dc12076d33eef9a917761979ef (diff) | |
| download | poky-680f8bf8ae8a850327d68fb24c7ee0c8631d2e45.tar.gz | |
attr: various improvements
changes:
- separate the build system to ea-acl.inc, it is also used by
upcoming acl (ea stands for extended attributes)
- the .so.* is moved to /lib, so it can be used by packages like
udev
- change absolute symbolic links to relative path, code inspired
by udev
- manual fix to .la
Signed-off-by: Qing He <qing.he@intel.com>
Diffstat (limited to 'meta/packages/attr/attr.inc')
| -rw-r--r-- | meta/packages/attr/attr.inc | 43 |
1 files changed, 6 insertions, 37 deletions
diff --git a/meta/packages/attr/attr.inc b/meta/packages/attr/attr.inc index 69b7442f7e..da7924631e 100644 --- a/meta/packages/attr/attr.inc +++ b/meta/packages/attr/attr.inc | |||
| @@ -9,43 +9,12 @@ LIC_FILES_CHKSUM = "file://doc/COPYING;md5=2d0aa14b3fce4694e4f615e30186335f \ | |||
| 9 | file://attr/attr.c;endline=17;md5=be0403261f0847e5f43ed5b08d19593c \ | 9 | file://attr/attr.c;endline=17;md5=be0403261f0847e5f43ed5b08d19593c \ |
| 10 | file://libattr/libattr.c;endline=17;md5=7970f77049f8fa1199fff62a7ab724fb" | 10 | file://libattr/libattr.c;endline=17;md5=7970f77049f8fa1199fff62a7ab724fb" |
| 11 | 11 | ||
| 12 | DEPENDS = "gettext" | 12 | SRC_URI = "http://nongnu.askapache.com/attr/${BP}.src.tar.gz" |
| 13 | 13 | ||
| 14 | SRC_URI = "http://nongnu.askapache.com/attr/${BPN}-${PV}.src.tar.gz" | 14 | require ea-acl.inc |
| 15 | 15 | ||
| 16 | inherit autotools | 16 | # libdir should point to .la |
| 17 | 17 | do_install_append() { | |
| 18 | # the package comes with a custom config.h.in, it cannot be | 18 | sed -i ${D}${libdir}/libattr.la -e \ |
| 19 | # overwritten by autoheader | 19 | s,^libdir=\'${base_libdir}\'$,libdir=\'${libdir}\', |
| 20 | export AUTOHEADER = "true" | ||
| 21 | EXTRA_OECONF = "INSTALL_USER=root INSTALL_GROUP=root" | ||
| 22 | |||
| 23 | # absolute path will be used in ln -s if PKG_LIB_DIR and | ||
| 24 | # PKG_DEVLIB_DIR are different | ||
| 25 | EXTRA_OEMAKE = "PKG_LIB_DIR=${libdir} PKG_DEVLIB_DIR=${libdir}" | ||
| 26 | |||
| 27 | do_install () { | ||
| 28 | oe_runmake install install-lib install-dev DIST_ROOT="${D}" | ||
| 29 | } | 20 | } |
| 30 | |||
| 31 | PACKAGES = "${PN} ${PN}-doc ${PN}-dbg ${PN}-locale lib${PN} lib${PN}-dev lib${PN}-doc" | ||
| 32 | |||
| 33 | FILES_${PN} = "${bindir}" | ||
| 34 | |||
| 35 | FILES_${PN}-dbg = "${bindir}/.debug" | ||
| 36 | |||
| 37 | FILES_${PN}-doc = "${docdir} \ | ||
| 38 | ${mandir}/man1 \ | ||
| 39 | ${mandir}/man5" | ||
| 40 | |||
| 41 | FILES_lib${PN} = "${libdir}/lib*.so.*" | ||
| 42 | |||
| 43 | FILES_lib${PN}-dev = "${includedir} \ | ||
| 44 | ${libdir}/lib*.so \ | ||
| 45 | ${libdir}/lib*.a \ | ||
| 46 | ${libdir}/lib*.la" | ||
| 47 | |||
| 48 | FILES_lib${PN}-doc = "${mandir}/man2 \ | ||
| 49 | ${mandir}/man3" | ||
| 50 | |||
| 51 | BBCLASSEXTEND = "native" | ||
