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/libftd2xx: ChangeLog libftd2xx-0.4.16.ebuild
Date: Wed, 17 Jun 2009 09:56:20
Message-Id: E1MGrsQ-0007da-89@stork.gentoo.org
1 vapier 09/06/17 09:56:18
2
3 Modified: ChangeLog
4 Added: libftd2xx-0.4.16.ebuild
5 Log:
6 Version bump, add multilib support #261315 by Micke Prag, and fix path install #261286 by Diego E. Pettenò.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 dev-embedded/libftd2xx/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftd2xx/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftd2xx/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftd2xx/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-embedded/libftd2xx/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 26 Oct 2008 20:03:14 -0000 1.3
23 +++ ChangeLog 17 Jun 2009 09:56:18 -0000 1.4
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-embedded/libftd2xx
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftd2xx/ChangeLog,v 1.3 2008/10/26 20:03:14 vapier Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftd2xx/ChangeLog,v 1.4 2009/06/17 09:56:18 vapier Exp $
30 +
31 +*libftd2xx-0.4.16 (17 Jun 2009)
32 +
33 + 17 Jun 2009; Mike Frysinger <vapier@g.o> +libftd2xx-0.4.16.ebuild:
34 + Version bump, add multilib support #261315 by Micke Prag, and fix path
35 + install #261286 by Diego E. Pettenò.
36
37 26 Oct 2008; Mike Frysinger <vapier@g.o>
38 libftd2xx-0.4.13-r1.ebuild:
39
40
41
42 1.1 dev-embedded/libftd2xx/libftd2xx-0.4.16.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftd2xx/libftd2xx-0.4.16.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/libftd2xx/libftd2xx-0.4.16.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libftd2xx-0.4.16.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-embedded/libftd2xx/libftd2xx-0.4.16.ebuild,v 1.1 2009/06/17 09:56:18 vapier Exp $
52
53 inherit multilib
54
55 MY_P="${PN}${PV}"
56
57 DESCRIPTION="Library that allows a direct access to a USB device"
58 HOMEPAGE="http://www.ftdichip.com/Drivers/D2XX.htm"
59 SRC_URI="amd64? ( http://www.ftdichip.com/Drivers/D2XX/Linux/${MY_P}_x86_64.tar.gz )
60 x86? ( http://www.ftdichip.com/Drivers/D2XX/Linux/${MY_P}.tar.gz )"
61
62 LICENSE="as-is"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="examples"
66
67 S=${WORKDIR}
68
69 src_install() {
70 use x86 && cd ${MY_P}
71 use amd64 && cd ${MY_P}_x86_64
72
73 into /opt
74 dolib.so ${PN}.so.${PV} || die
75 dosym ${PN}.so.${PV} /opt/$(get_libdir)/${PN}.so.${PV:0:1} || die
76 dosym ${PN}.so.${PV:0:1} /opt/$(get_libdir)/${PN}.so || die
77
78 insinto /usr/include
79 doins ftd2xx.h WinTypes.h || die
80
81 if use examples ; then
82 find sample lib_table '(' -name '*.so' -o -name '*.[oa]' ')' -exec rm -f {} +
83 insinto /usr/share/doc/${PF}
84 doins -r sample || die "doins failed"
85 insinto /usr/share/doc/${PF}/sample
86 doins -r lib_table || die "doins failed"
87 fi
88
89 dodoc Config.txt FAQ.txt README.dat
90 }