blob: 51cb550b9f2d7d88ebb9687f56e93858763fedb5 (
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
49
50
51
52
53
|
# Copyright 1999-2012 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.1 2012/11/09 18:24:12 tetromino 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 ~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
|| ( >=sys-fs/udev-171[gudev] <sys-fs/udev-171[extras] )
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
}
|