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.13.ebuild
Date: Tue, 01 Jul 2008 15:35:27
Message-Id: E1KDht3-0005ml-Bw@stork.gentoo.org
1 vapier 08/07/01 15:35:21
2
3 Modified: ChangeLog
4 Added: libftdi-0.13.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc1/cvs/Linux 2.6.25 x86_64)
8
9 Revision Changes Path
10 1.31 dev-embedded/libftdi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/ChangeLog?rev=1.31&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/ChangeLog?rev=1.31&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/ChangeLog?r1=1.30&r2=1.31
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v
19 retrieving revision 1.30
20 retrieving revision 1.31
21 diff -u -r1.30 -r1.31
22 --- ChangeLog 4 Jun 2008 14:55:51 -0000 1.30
23 +++ ChangeLog 1 Jul 2008 15:35:20 -0000 1.31
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-embedded/libftdi
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v 1.30 2008/06/04 14:55:51 beandog Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/ChangeLog,v 1.31 2008/07/01 15:35:20 vapier Exp $
29 +
30 +*libftdi-0.13 (01 Jul 2008)
31 +
32 + 01 Jul 2008; Mike Frysinger <vapier@g.o> +libftdi-0.13.ebuild:
33 + Version bump.
34
35 04 Jun 2008; Steve Dibb <beandog@g.o> libftdi-0.12.ebuild:
36 amd64 stable, bug 224025
37
38
39
40 1.1 dev-embedded/libftdi/libftdi-0.13.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/libftdi-0.13.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftdi/libftdi-0.13.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libftdi-0.13.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftdi/libftdi-0.13.ebuild,v 1.1 2008/07/01 15:35:20 vapier Exp $
50
51 DESCRIPTION="Userspace access to FTDI USB interface chips"
52 HOMEPAGE="http://www.intra2net.com/opensource/ftdi/"
53 SRC_URI="http://www.intra2net.com/opensource/ftdi/TGZ/${P}.tar.gz"
54
55 LICENSE="LGPL-2"
56 SLOT="0"
57 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
58 IUSE="doc examples"
59
60 RDEPEND=">=dev-libs/libusb-0.1.7"
61 DEPEND="${RDEPEND}
62 doc? ( app-doc/doxygen )"
63
64 src_unpack() {
65 unpack ${A}
66 cd "${S}"
67 # don't bother building examples as we dont want the binaries
68 # installed and the Makefile has broken install targets
69 sed -i '/^SUBDIRS =/s:examples::' Makefile.in
70
71 use doc || export ac_cv_path_DOXYGEN=true
72 }
73
74 src_install() {
75 emake DESTDIR="${D}" install || die "Installation failed"
76 dodoc ChangeLog README
77
78 if use doc ; then
79 doman doc/man/man3/*
80 dohtml doc/html/*
81 fi
82 if use examples ; then
83 docinto examples
84 dodoc examples/*.c
85 fi
86 }
87
88
89
90 --
91 gentoo-commits@l.g.o mailing list