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.
gentoo-overlay/dev-libs/libgusb/libgusb-0.1.4.ebuild

54 lines
1.3 KiB

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgusb/libgusb-0.1.4.ebuild,v 1.8 2013/01/04 20:01:07 ago Exp $
EAPI=4
VALA_MIN_API_VERSION="0.16"
VALA_USE_DEPEND="vapigen"
inherit eutils vala
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="~alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 x86"
IUSE="+introspection static-libs vala"
REQUIRED_USE="vala? ( introspection )"
# udev is effectively a required dependency: configuring with --disable-gudev
# causes build failures
RDEPEND=">=dev-libs/glib-2.28:2
virtual/libusb:1
virtual/udev[gudev]
introspection? ( >=dev-libs/gobject-introspection-1.29 )"
DEPEND="${RDEPEND}
app-arch/xz-utils
dev-libs/libxslt
dev-util/gtk-doc-am
virtual/pkgconfig
vala? ( $(vala_depend) )"
# gtk-doc-am needed for proper api docs installation
# Tests try to access usb devices in /dev
RESTRICT="test"
src_prepare() {
use vala && vala_src_prepare
}
src_configure() {
econf \
$(use_enable introspection) \
$(use_enable static-libs static) \
$(use_enable vala)
}
src_install() {
default
prune_libtool_files
}