You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
903 B
38 lines
903 B
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-20120815.ebuild,v 1.1 2012/08/15 14:29:06 flameeyes Exp $
|
|
|
|
EAPI="4"
|
|
|
|
DESCRIPTION="Hardware (PCI, USB) IDs databases"
|
|
HOMEPAGE="https://github.com/gentoo/hwids"
|
|
SRC_URI="https://github.com/gentoo/hwids/tarball/${P} -> ${P}.tar.gz"
|
|
|
|
LICENSE="|| ( GPL-2 BSD )"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="!<sys-apps/pciutils-3.1.9-r2
|
|
!<sys-apps/usbutils-005-r1"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
src_compile() {
|
|
cd "${S}"/gentoo-hwids-*
|
|
|
|
for file in {usb,pci}.ids; do
|
|
gzip -c ${file} > ${file}.gz || die
|
|
done
|
|
}
|
|
|
|
src_install() {
|
|
cd "${S}"/gentoo-hwids-*
|
|
|
|
insinto /usr/share/misc
|
|
doins {usb,pci}.ids{,.gz}
|
|
|
|
dodoc README.md
|
|
}
|