diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-08-04 21:45:34 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-08-04 21:45:34 +0000 |
commit | 5375b7b30e6abd01b305f1d5f89e424f3ae2b258 (patch) | |
tree | af2d64a2893c1a9e66748aba5b928e34e215e180 /sys-apps/pciutils/pciutils-2.1.11.ebuild | |
parent | Version bumped. (diff) | |
download | gentoo-2-5375b7b30e6abd01b305f1d5f89e424f3ae2b258.tar.gz gentoo-2-5375b7b30e6abd01b305f1d5f89e424f3ae2b258.tar.bz2 gentoo-2-5375b7b30e6abd01b305f1d5f89e424f3ae2b258.zip |
Version bumped.
Diffstat (limited to 'sys-apps/pciutils/pciutils-2.1.11.ebuild')
-rw-r--r-- | sys-apps/pciutils/pciutils-2.1.11.ebuild | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/sys-apps/pciutils/pciutils-2.1.11.ebuild b/sys-apps/pciutils/pciutils-2.1.11.ebuild new file mode 100644 index 000000000000..8a9780e0a105 --- /dev/null +++ b/sys-apps/pciutils/pciutils-2.1.11.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pciutils/pciutils-2.1.11.ebuild,v 1.1 2003/08/04 21:45:24 mholzer Exp $ + +inherit eutils + +S=${WORKDIR}/${P} +DESCRIPTION="Various utilities dealing with the PCI bus" +HOMEPAGE="http://atrey.karlin.mff.cuni.cz/~mj/pciutils.html" +SRC_URI="ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64 ~ppc ~sparc ~alpha ~hppa ~arm" + +DEPEND="virtual/glibc + net-misc/wget" + +src_unpack() { + unpack ${A} + cd ${S} + + epatch ${FILESDIR}/pcimodules-${P}.diff + + sed -i "s:-O2:${CFLAGS}:" Makefile + + ./update-pciids.sh +} + +src_compile() { + make PREFIX=/usr lib/config.h || die + + cd ${S}/lib + sed -i "s:/usr/share/pci.ids:/usr/share/misc/pci.ids:" config.h || die + + cd ${S} + make PREFIX=/usr || die + + for i in update-pciids lspci.8 update-pciids.8; do + sed -i "s:/usr/share/pci.ids:/usr/share/misc/pci.ids:" ${i} || die + done +} + +src_install () { + into / + dosbin setpci lspci pcimodules update-pciids + doman *.8 + + insinto /usr/share/misc + doins pci.ids + + dolib lib/libpci.a + + insinto /usr/include/pci + doins lib/*.h +} |