Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libgusb: libgusb-0.1.2.ebuild metadata.xml ChangeLog
Date: Mon, 14 Nov 2011 01:41:51
Message-Id: 20111114014141.462D72004B@flycatcher.gentoo.org
1 tetromino 11/11/14 01:41:41
2
3 Added: libgusb-0.1.2.ebuild metadata.xml ChangeLog
4 Log:
5 Add new gobject wrapper for libusb; it will be needed for future versions of x11-misc/colord.
6
7 (Portage version: 2.2.0_alpha74/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-libs/libgusb/libgusb-0.1.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgusb/libgusb-0.1.2.ebuild?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgusb/libgusb-0.1.2.ebuild?rev=1.1&content-type=text/plain
14
15 Index: libgusb-0.1.2.ebuild
16 ===================================================================
17 # Copyright 1999-2011 Gentoo Foundation
18 # Distributed under the terms of the GNU General Public License v2
19 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libgusb/libgusb-0.1.2.ebuild,v 1.1 2011/11/14 01:41:41 tetromino Exp $
20
21 EAPI="4"
22
23 DESCRIPTION="GObject wrapper for libusb"
24 HOMEPAGE="https://gitorious.org/gusb/"
25 SRC_URI="http://people.freedesktop.org/~hughsient/releases/${P}.tar.xz"
26
27 LICENSE="LGPL-2.1"
28 SLOT="0"
29 KEYWORDS="~amd64 ~x86"
30 IUSE="static-libs"
31
32 # udev is effectively a required dependency: configuring with --disable-gudev
33 # causes build failures
34 RDEPEND=">=dev-libs/glib-2.28:2
35 dev-libs/libusb:1
36 || ( sys-fs/udev[gudev] sys-fs/udev[extras] )"
37 DEPEND="${RDEPEND}
38 app-arch/xz-utils
39 dev-libs/libxslt
40 dev-util/pkgconfig"
41 # eautoreconf requires dev-util/gtk-doc-am
42
43 # Tests try to access usb devices in /dev
44 RESTRICT="test"
45
46 src_configure() {
47 econf --disable-strict \
48 $(use_enable static-libs static)
49 }
50
51 src_install() {
52 default
53 use static-libs || find "${D}" -name '*.la' -exec rm -f {} +
54 }
55
56
57
58 1.1 dev-libs/libgusb/metadata.xml
59
60 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgusb/metadata.xml?rev=1.1&view=markup
61 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgusb/metadata.xml?rev=1.1&content-type=text/plain
62
63 Index: metadata.xml
64 ===================================================================
65 <?xml version="1.0" encoding="UTF-8"?>
66 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
67 <pkgmetadata>
68 <herd>gnome</herd>
69 </pkgmetadata>
70
71
72
73 1.1 dev-libs/libgusb/ChangeLog
74
75 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgusb/ChangeLog?rev=1.1&view=markup
76 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libgusb/ChangeLog?rev=1.1&content-type=text/plain
77
78 Index: ChangeLog
79 ===================================================================
80 # ChangeLog for dev-libs/libgusb
81 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
82 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libgusb/ChangeLog,v 1.1 2011/11/14 01:41:41 tetromino Exp $
83
84 *libgusb-0.1.2 (14 Nov 2011)
85
86 14 Nov 2011; Alexandre Rostovtsev <tetromino@g.o>
87 +libgusb-0.1.2.ebuild, +metadata.xml:
88 Add new gobject wrapper for libusb; it will be needed for future versions of
89 x11-misc/colord.