diff options
author | Shane Wang <shane.wang@intel.com> | 2012-01-22 17:12:37 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-24 11:54:25 +0000 |
commit | 27aec8bef61afdcd53b497709dd53bba8224eae3 (patch) | |
tree | 83e99bf04b1167cdc097a7c84b7531d01ae788dc /meta/recipes-bsp/pciutils/pciutils_3.1.7.bb | |
parent | be76d89496fdefe16852b97cadded4ed956cf401 (diff) | |
download | poky-27aec8bef61afdcd53b497709dd53bba8224eae3.tar.gz |
pciutils: upgrade to 3.1.9
(From OE-Core rev: 745bdcd3421747b050493079101f6f5ba7830daf)
Signed-off-by: Shane Wang <shane.wang@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/pciutils/pciutils_3.1.7.bb')
-rw-r--r-- | meta/recipes-bsp/pciutils/pciutils_3.1.7.bb | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/meta/recipes-bsp/pciutils/pciutils_3.1.7.bb b/meta/recipes-bsp/pciutils/pciutils_3.1.7.bb deleted file mode 100644 index b48aaf02c4..0000000000 --- a/meta/recipes-bsp/pciutils/pciutils_3.1.7.bb +++ /dev/null | |||
@@ -1,58 +0,0 @@ | |||
1 | SUMMARY = "PCI Utilities" | ||
2 | DESCRIPTION = 'The PCI Utilities package contains a library for portable access \ | ||
3 | to PCI bus configuration space and several utilities based on this library.' | ||
4 | DESCRIPTION_pciutils-ids = 'The list of PCI IDs for pciutils' | ||
5 | HOMEPAGE = "http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml" | ||
6 | SECTION = "console/utils" | ||
7 | |||
8 | LICENSE = "GPLv2+" | ||
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
10 | DEPENDS = "zlib" | ||
11 | RDEPENDS_${PN} = "${PN}-ids" | ||
12 | PR = "r2" | ||
13 | |||
14 | SRC_URI = "${KERNELORG_MIRROR}/software/utils/pciutils/pciutils-${PV}.tar.bz2 \ | ||
15 | file://configure.patch \ | ||
16 | file://pcimodules-pciutils.diff \ | ||
17 | file://lib-build-fix.patch \ | ||
18 | file://guess-fix.patch \ | ||
19 | file://makefile.patch" | ||
20 | |||
21 | SRC_URI[md5sum] = "35222edb86b50a6641352c66fe829b2e" | ||
22 | SRC_URI[sha256sum] = "d8fe23b6966c1abf29b3b38b08b0cf33f731cd6e6a89d9b8d2b8d5e982c3f544" | ||
23 | |||
24 | PARALLEL_MAKE = "" | ||
25 | |||
26 | PCI_CONF_FLAG = "ZLIB=yes DNS=yes SHARED=yes" | ||
27 | |||
28 | # see configure.patch | ||
29 | do_configure () { | ||
30 | ( | ||
31 | cd lib && \ | ||
32 | ${PCI_CONF_FLAG} ./configure ${PV} ${datadir} ${TARGET_OS} ${TARGET_ARCH} | ||
33 | ) | ||
34 | } | ||
35 | |||
36 | export PREFIX = "${prefix}" | ||
37 | export SBINDIR = "${sbindir}" | ||
38 | export SHAREDIR = "${datadir}" | ||
39 | export MANDIR = "${mandir}" | ||
40 | |||
41 | EXTRA_OEMAKE += "${PCI_CONF_FLAG}" | ||
42 | |||
43 | # The configure script breaks if the HOST variable is set | ||
44 | HOST[unexport] = "1" | ||
45 | |||
46 | do_install () { | ||
47 | oe_runmake DESTDIR=${D} install install-lib | ||
48 | |||
49 | install -d ${D}${bindir} | ||
50 | ln -s ../sbin/lspci ${D}${bindir}/lspci | ||
51 | } | ||
52 | |||
53 | PACKAGES =+ "pciutils-ids libpci libpci-dev libpci-dbg" | ||
54 | FILES_pciutils-ids = "${datadir}/pci.ids*" | ||
55 | FILES_libpci = "${libdir}/libpci.so.*" | ||
56 | FILES_libpci-dbg = "${libdir}/.debug" | ||
57 | FILES_libpci-dev = "${libdir}/libpci.a ${libdir}/libpci.la ${libdir}/libpci.so \ | ||
58 | ${includedir}/pci ${libdir}/pkgconfig" | ||