summaryrefslogtreecommitdiff
path: root/meta/packages/pciutils/pciutils_3.0.3.bb
diff options
context:
space:
mode:
authorQing He <qing.he@intel.com>2010-07-30 16:22:49 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-10 15:31:19 +0100
commitc33529794a541a617dc9c291b57acae55dd50af6 (patch)
tree5fb3a43f42b5112c66292b62a3aefee559328103 /meta/packages/pciutils/pciutils_3.0.3.bb
parent650319cd749f0d00c9e371cd7ea429b8e250357b (diff)
downloadopenembedded-core-c33529794a541a617dc9c291b57acae55dd50af6.tar.gz
openembedded-core-c33529794a541a617dc9c291b57acae55dd50af6.tar.bz2
openembedded-core-c33529794a541a617dc9c291b57acae55dd50af6.tar.xz
openembedded-core-c33529794a541a617dc9c291b57acae55dd50af6.zip
pciutils: upgrade to version 3.1.5
from 3.0.3 changes: - rebased patch configure.patch and pcimodules-pciutils.diff - fix a bug in parameter order in config that causes invalid search path and library version - remove unnecessary kernel version reference in configure - use DESTDIR mechanism for build and installation - pciutils should RDEPENDS on pciutils-ids - enable shared library build and package a new package series, libpci - conceive a new patch to fix shared library build, default build would embedd invalid library dependencies - add another patch to fix build on arm - fix a bug in previous do_install_depends that used invalid installation mode - symbolic link /usr/sbin/pciutils to /usr/bin, so non-root user can use it as well Signed-off-by: Qing He <qing.he@intel.com>
Diffstat (limited to 'meta/packages/pciutils/pciutils_3.0.3.bb')
-rw-r--r--meta/packages/pciutils/pciutils_3.0.3.bb38
1 files changed, 0 insertions, 38 deletions
diff --git a/meta/packages/pciutils/pciutils_3.0.3.bb b/meta/packages/pciutils/pciutils_3.0.3.bb
deleted file mode 100644
index a05a69b61..000000000
--- a/meta/packages/pciutils/pciutils_3.0.3.bb
+++ /dev/null
@@ -1,38 +0,0 @@
-DESCRIPTION = 'The PCI Utilities package contains a library for portable access \
-to PCI bus configuration space and several utilities based on this library.'
-DESCRIPTION_pciutils-ids = 'The list of PCI IDs for pciutils'
-SECTION = "console/utils"
-HOMEPAGE = "http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml"
-LICENSE = "GPLv2"
-DEPENDS = "zlib"
-
-SRC_URI = "ftp://ftp.kernel.org/pub/software/utils/pciutils/pciutils-${PV}.tar.bz2 \
- file://configure.patch;patch=1 \
- file://pcimodules-pciutils.diff;patch=1"
-
-PARALLEL_MAKE = ""
-
-do_configure () {
- (cd lib && ./configure ${datadir} ${PV} ${TARGET_OS} 2.4.21 ${TARGET_ARCH})
-}
-
-export PREFIX = "${D}${prefix}"
-export SBINDIR = "${D}${sbindir}"
-export SHAREDIR = "${D}${datadir}"
-export MANDIR = "${D}${mandir}"
-
-LDFLAGS += "-lz"
-
-# The configure script breaks if the HOST variable is set
-HOST[unexport] = "1"
-
-do_install () {
- oe_runmake install
-}
-do_install_append () {
- install -d ${D}/${prefix}/share
- install -m 6440 ${WORKDIR}/${PN}-${PV}/pci.ids ${D}/${prefix}/share
-}
-
-PACKAGES =+ "pciutils-ids"
-FILES_pciutils-ids="${prefix}/share/pci.ids"