blob: 008456095a995ac3ff356fbf0b971940e5f97add [file] [log] [blame]
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/usbutils/usbutils-007.ebuild,v 1.7 2014/03/05 15:53:36 ago Exp $
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit base python-single-r1
DESCRIPTION="USB enumeration utilities"
HOMEPAGE="http://linux-usb.sourceforge.net/"
SRC_URI="mirror://kernel/linux/utils/usb/${PN}/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="*"
IUSE="python zlib"
RDEPEND="virtual/libusb:1=
zlib? ( sys-libs/zlib:= )"
DEPEND="${RDEPEND}
app-arch/xz-utils
virtual/pkgconfig"
RDEPEND="${RDEPEND}
sys-apps/hwids
python? ( ${PYTHON_DEPS} )"
PATCHES=( "${FILESDIR}"/${PN}-006-stdint.patch )
pkg_setup() {
use python && python-single-r1_pkg_setup
}
src_prepare() {
base_src_prepare
sed -i -e '/^usbids/s:/usr/share:/usr/share/misc:' lsusb.py || die
use python && python_fix_shebang lsusb.py
}
src_configure() {
econf \
--datarootdir="${EPREFIX}/usr/share" \
--datadir="${EPREFIX}/usr/share/misc" \
--disable-usbids \
$(use_enable zlib)
}
src_install() {
default
newdoc usbhid-dump/NEWS NEWS.usbhid-dump
use python || rm -f "${ED}"/usr/bin/lsusb.py
}