Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-embedded/libftdi: ChangeLog libftdi-0.19.ebuild
Date: Mon, 26 Sep 2011 18:14:19
Message-Id: 20110926181410.30E7920036@flycatcher.gentoo.org
1 vapier 11/09/26 18:14:10
2
3 Modified: ChangeLog
4 Added: libftdi-0.19.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.56 dev-embedded/libftdi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/libftdi/ChangeLog?rev=1.56&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/libftdi/ChangeLog?rev=1.56&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/libftdi/ChangeLog?r1=1.55&r2=1.56
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v
20 retrieving revision 1.55
21 retrieving revision 1.56
22 diff -u -r1.55 -r1.56
23 --- ChangeLog 26 Sep 2011 18:13:28 -0000 1.55
24 +++ ChangeLog 26 Sep 2011 18:14:10 -0000 1.56
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-embedded/libftdi
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v 1.55 2011/09/26 18:13:28 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v 1.56 2011/09/26 18:14:10 vapier Exp $
30 +
31 +*libftdi-0.19 (26 Sep 2011)
32 +
33 + 26 Sep 2011; Mike Frysinger <vapier@g.o> +libftdi-0.19.ebuild:
34 + Version bump.
35
36 26 Sep 2011; Mike Frysinger <vapier@g.o> libftdi-9999.ebuild,
37 libftdi-9999.1.0.ebuild:
38
39
40
41 1.1 dev-embedded/libftdi/libftdi-0.19.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/libftdi/libftdi-0.19.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-embedded/libftdi/libftdi-0.19.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libftdi-0.19.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/libftdi-0.19.ebuild,v 1.1 2011/09/26 18:14:10 vapier Exp $
51
52 EAPI="2"
53
54 if [[ ${PV} == 9999* ]] ; then
55 EGIT_REPO_URI="git://developer.intra2net.com/${PN}"
56 inherit git-2 autotools
57 else
58 SRC_URI="http://www.intra2net.com/en/developer/${PN}/download/${P}.tar.gz"
59 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
60 fi
61
62 DESCRIPTION="Userspace access to FTDI USB interface chips"
63 HOMEPAGE="http://www.intra2net.com/en/developer/libftdi/"
64
65 LICENSE="LGPL-2"
66 SLOT="0"
67 IUSE="cxx doc examples python static-libs"
68
69 RDEPEND="virtual/libusb:0
70 cxx? ( dev-libs/boost )
71 python? ( dev-lang/python )"
72 DEPEND="${RDEPEND}
73 doc? ( app-doc/doxygen )"
74
75 src_prepare() {
76 if [[ ${PV} == 9999* ]] ; then
77 mkdir -p m4
78 eautoreconf
79 fi
80 }
81
82 src_configure() {
83 econf \
84 $(use_enable cxx libftdipp) \
85 $(use_with doc docs) \
86 $(use_with examples) \
87 $(use_enable python python-binding) \
88 $(use_enable static-libs static)
89 }
90
91 src_install() {
92 emake DESTDIR="${D}" install || die
93 use static-libs || find "${D}" -name '*.la' -delete
94 dodoc ChangeLog README
95
96 if use doc ; then
97 doman doc/man/man3/*
98 dohtml doc/html/*
99 fi
100 if use examples ; then
101 docinto examples
102 dodoc examples/*.c
103 fi
104 }