gentoo-overlay/dev-libs/libgusb/libgusb-0.1.2.ebuild

38 lines
1,009 B
Bash

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgusb/libgusb-0.1.2.ebuild,v 1.2 2011/11/30 03:28:39 jer Exp $
EAPI="4"
DESCRIPTION="GObject wrapper for libusb"
HOMEPAGE="https://gitorious.org/gusb/"
SRC_URI="http://people.freedesktop.org/~hughsient/releases/${P}.tar.xz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~x86"
IUSE="static-libs"
# udev is effectively a required dependency: configuring with --disable-gudev
# causes build failures
RDEPEND=">=dev-libs/glib-2.28:2
dev-libs/libusb:1
|| ( sys-fs/udev[gudev] sys-fs/udev[extras] )"
DEPEND="${RDEPEND}
app-arch/xz-utils
dev-libs/libxslt
dev-util/pkgconfig"
# eautoreconf requires dev-util/gtk-doc-am
# Tests try to access usb devices in /dev
RESTRICT="test"
src_configure() {
econf --disable-strict \
$(use_enable static-libs static)
}
src_install() {
default
use static-libs || find "${D}" -name '*.la' -exec rm -f {} +
}