diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-12 20:42:41 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-12 20:42:41 +0000 |
commit | bcee37c79a43d2b28282c357c65ef12a4aa1c6bb (patch) | |
tree | 1b29a4e2c9a4dd4e01d0112de49a617379f88e1b /sys-apps/pciutils | |
parent | Version bump. (diff) | |
download | gentoo-2-bcee37c79a43d2b28282c357c65ef12a4aa1c6bb.tar.gz gentoo-2-bcee37c79a43d2b28282c357c65ef12a4aa1c6bb.tar.bz2 gentoo-2-bcee37c79a43d2b28282c357c65ef12a4aa1c6bb.zip |
old
Diffstat (limited to 'sys-apps/pciutils')
-rw-r--r-- | sys-apps/pciutils/files/digest-pciutils-2.1.11-r1 | 1 | ||||
-rw-r--r-- | sys-apps/pciutils/pciutils-2.1.11-r1.ebuild | 69 |
2 files changed, 0 insertions, 70 deletions
diff --git a/sys-apps/pciutils/files/digest-pciutils-2.1.11-r1 b/sys-apps/pciutils/files/digest-pciutils-2.1.11-r1 deleted file mode 100644 index 5bab57abb8f5..000000000000 --- a/sys-apps/pciutils/files/digest-pciutils-2.1.11-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 1d40f90aaae69594790bdb8ff90b4a41 pciutils-2.1.11.tar.gz 120948 diff --git a/sys-apps/pciutils/pciutils-2.1.11-r1.ebuild b/sys-apps/pciutils/pciutils-2.1.11-r1.ebuild deleted file mode 100644 index bdcebae368c8..000000000000 --- a/sys-apps/pciutils/pciutils-2.1.11-r1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pciutils/pciutils-2.1.11-r1.ebuild,v 1.19 2005/01/02 23:44:20 ciaranm Exp $ - -inherit eutils flag-o-matic - -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" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc sparc alpha arm mips hppa amd64 ~ia64 ppc64" -IUSE="" - -DEPEND="virtual/libc - net-misc/wget" - -src_unpack() { - unpack ${A} - cd ${S} - - epatch ${FILESDIR}/pcimodules-${P}.diff - epatch ${FILESDIR}/${PV}-sysfs.patch #38645 - - [ "${ARCH}" = "amd64" ] && append-flags -fPIC - sed -i \ - -e "s:-O2:${CFLAGS}:" Makefile \ - || die "sed Makefile failed" - - # fix command line overflow which did not allow for null terminator - # when using lspci -vvv (AGPx1 and AGPx2 and AGPx4) bug #41422 - sed -i -e s/'rate\[8\]'/'rate\[9\]'/g lspci.c \ - || die "sed failed on lspci.c" - - ./update-pciids.sh -} - -src_compile() { - emake PREFIX=/usr lib || die "emake lib failed" - - cd ${S}/lib - sed -i \ - -e "s:/usr/share/pci.ids:/usr/share/misc/pci.ids:" config.h \ - || die "sed config.h failed" - - cd ${S} - emake PREFIX=/usr || die "emake failed" - - sed -i \ - -e "s:/usr/share/pci.ids:/usr/share/misc/pci.ids:" \ - update-pciids lspci.8 update-pciids.8 \ - || die "sed failed" -} - -src_install() { - into / - dosbin setpci lspci pcimodules update-pciids || die "dosbin failed" - doman *.8 - - insinto /usr/share/misc - doins pci.ids || die - - into /usr - dolib lib/libpci.a - - insinto /usr/include/pci - doins lib/*.h -} |