diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-04-10 19:28:32 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-04-10 19:28:32 +0000 |
commit | 700988e7ca96bf79088d003ebfe437b75d36d4d7 (patch) | |
tree | 130beef46d8cbe40dea3aac2e916da881a997077 /sys-apps/pciutils/pciutils-3.1.0-r1.ebuild | |
parent | +gentoolkit-0.2.4.6.1-r1.ebuild: (diff) | |
download | gentoo-2-700988e7ca96bf79088d003ebfe437b75d36d4d7.tar.gz gentoo-2-700988e7ca96bf79088d003ebfe437b75d36d4d7.tar.bz2 gentoo-2-700988e7ca96bf79088d003ebfe437b75d36d4d7.zip |
old
Diffstat (limited to 'sys-apps/pciutils/pciutils-3.1.0-r1.ebuild')
-rw-r--r-- | sys-apps/pciutils/pciutils-3.1.0-r1.ebuild | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/sys-apps/pciutils/pciutils-3.1.0-r1.ebuild b/sys-apps/pciutils/pciutils-3.1.0-r1.ebuild deleted file mode 100644 index 2c3daeb8cda4..000000000000 --- a/sys-apps/pciutils/pciutils-3.1.0-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pciutils/pciutils-3.1.0-r1.ebuild,v 1.1 2009/01/29 18:57:16 vapier Exp $ - -inherit eutils multilib - -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="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" -IUSE="network-cron zlib" - -DEPEND="zlib? ( sys-libs/zlib )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PN}-3.0.0-build.patch #233314 - epatch "${FILESDIR}"/pcimodules-${PN}-3.1.0.patch - epatch "${FILESDIR}"/${P}-null-ptr.patch #256464 - epatch "${FILESDIR}"/${PN}-2.2.7-update-pciids-both-forms.patch - cp "${FILESDIR}"/pcimodules.c . || die - sed -i -e 's:| tr:| LC_ALL=C tr:' lib/configure - sed -i -e "/^LIBDIR=/s:/lib:/$(get_libdir):" Makefile -} - -uyesno() { use $1 && echo yes || echo no ; } -pemake() { - emake \ - HOST="${CHOST}" \ - CROSS_COMPILE="${CHOST}-" \ - DNS="yes" \ - IDSDIR="/usr/share/misc" \ - MANDIR="/usr/share/man" \ - PREFIX="/usr" \ - SHARED="yes" \ - STRIP="" \ - ZLIB=$(uyesno zlib) \ - "$@" -} - -src_compile() { - pemake OPT="${CFLAGS}" all pcimodules || die "emake failed" -} - -src_install() { - pemake DESTDIR="${D}" install install-lib || die - dosbin pcimodules || die - doman "${FILESDIR}"/pcimodules.8 - dodoc ChangeLog README TODO - - if use network-cron ; then - exeinto /etc/cron.monthly - newexe "${FILESDIR}"/pciutils.cron update-pciids \ - || die "Failed to install update cronjob" - fi - - # Install both forms until HAL has migrated - if use zlib ; then - local sharedir="${D}/usr/share/misc" - elog "Providing a backwards compatibility non-compressed pci.ids" - gzip -d <"${sharedir}"/pci.ids.gz >"${sharedir}"/pci.ids - fi - - newinitd "${FILESDIR}"/init.d-pciparm pciparm - newconfd "${FILESDIR}"/conf.d-pciparm pciparm -} |