blob: 11df3f165a5c6974ae481f42c5f27421d3ede0f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# 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.6.ebuild,v 1.1 2013/04/07 14:34:54 pacho Exp $
EAPI=5
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 ~sparc ~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_configure() {
econf \
$(use_enable introspection) \
$(use_enable static-libs static) \
$(use_enable vala)
}
src_install() {
default
prune_libtool_files
}
|