diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-10-28 00:09:22 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-10-28 00:09:22 +0000 |
commit | e30a4720ebaa49e25f2e7b68b79b24164c76b41c (patch) | |
tree | bc742e93cf488262b7882fbb681e065b375fedf9 /sys-apps/pciutils | |
parent | update gtk depend #110649 (diff) | |
download | historical-e30a4720ebaa49e25f2e7b68b79b24164c76b41c.tar.gz historical-e30a4720ebaa49e25f2e7b68b79b24164c76b41c.tar.bz2 historical-e30a4720ebaa49e25f2e7b68b79b24164c76b41c.zip |
old
Diffstat (limited to 'sys-apps/pciutils')
-rw-r--r-- | sys-apps/pciutils/files/digest-pciutils-2.2.0 | 2 | ||||
-rw-r--r-- | sys-apps/pciutils/pciutils-2.2.0.ebuild | 61 |
2 files changed, 0 insertions, 63 deletions
diff --git a/sys-apps/pciutils/files/digest-pciutils-2.2.0 b/sys-apps/pciutils/files/digest-pciutils-2.2.0 deleted file mode 100644 index f8f1bd12d8e2..000000000000 --- a/sys-apps/pciutils/files/digest-pciutils-2.2.0 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 4b8d2ee3ad78e4d0343a74a9b0fb84a8 pci.ids-20051015.bz2 98776 -MD5 303fc4bb9669549acf65e4a714527c7e pciutils-2.2.0.tar.gz 194290 diff --git a/sys-apps/pciutils/pciutils-2.2.0.ebuild b/sys-apps/pciutils/pciutils-2.2.0.ebuild deleted file mode 100644 index 8d69b5a5ddf2..000000000000 --- a/sys-apps/pciutils/pciutils-2.2.0.ebuild +++ /dev/null @@ -1,61 +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.2.0.ebuild,v 1.1 2005/10/16 03:17:19 vapier Exp $ - -inherit eutils flag-o-matic toolchain-funcs - -STAMP=20051015 -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 - mirror://gentoo/pci.ids-${STAMP}.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="" - -DEPEND="" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/pcimodules-${P}.patch - - # Set Gentoo paths - sed -i \ - -e '/^PREFIX=/s:=.*:=/usr:' \ - -e '/^IDSDIR=/s:=.*:=$(PREFIX)/share/misc:' \ - Makefile || die - - # Make sure we respect $AR / $RANLIB - sed -i \ - -e '/ar rcs/s:ar:$(AR):' \ - -e 's:ranlib:$(RANLIB):' \ - lib/Makefile \ - || die "sed lib/Makefile failed" - - ebegin "Updating pci.ids from the web" - if ! ./update-pciids.sh &> /dev/null ; then - # if we cant update, use a cached version - mv ${WORKDIR}/pci.ids-${STAMP} ${S}/pci.ids - fi - eend 0 -} - -src_compile() { - tc-export AR CC RANLIB - emake OPT="${CFLAGS}" || die "emake failed" -} - -src_install() { - dodir /usr/share/man - make install PREFIX="${D}"/usr || die - -#Wonder if this stuff is even used ... one way to find out though ;) -# into /usr -# dolib lib/libpci.a || die "libpci failed" -# insinto /usr/include/pci -# doins lib/*.h || die "headers failed" -} |