Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/gphoto2: gphoto2-2.4.9.ebuild ChangeLog
Date: Sat, 08 May 2010 11:26:10
Message-Id: 20100508112607.391B92803A@corvid.gentoo.org
1 pacho 10/05/08 11:26:07
2
3 Modified: ChangeLog
4 Added: gphoto2-2.4.9.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.95 media-gfx/gphoto2/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gphoto2/ChangeLog?rev=1.95&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gphoto2/ChangeLog?rev=1.95&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gphoto2/ChangeLog?r1=1.94&r2=1.95
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/ChangeLog,v
19 retrieving revision 1.94
20 retrieving revision 1.95
21 diff -u -r1.94 -r1.95
22 --- ChangeLog 24 Jan 2010 21:16:29 -0000 1.94
23 +++ ChangeLog 8 May 2010 11:26:06 -0000 1.95
24 @@ -1,6 +1,14 @@
25 # ChangeLog for media-gfx/gphoto2
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/ChangeLog,v 1.94 2010/01/24 21:16:29 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/ChangeLog,v 1.95 2010/05/08 11:26:06 pacho Exp $
29 +
30 +*gphoto2-2.4.9 (08 May 2010)
31 +
32 + 08 May 2010; Pacho Ramos <pacho@g.o> +gphoto2-2.4.9.ebuild:
33 + Version bump with the following changes: Capture main event loop rewritten
34 + to always use wait event to also support multiple image captures, fixed
35 + various bugs and memory leaks, translation updates. Thanks to Lebedev
36 + Roman for reporting bug #318031
37
38 *gphoto2-2.4.8 (24 Jan 2010)
39
40
41
42
43 1.1 media-gfx/gphoto2/gphoto2-2.4.9.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gphoto2/gphoto2-2.4.9.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gphoto2/gphoto2-2.4.9.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gphoto2-2.4.9.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/gphoto2-2.4.9.ebuild,v 1.1 2010/05/08 11:26:06 pacho Exp $
53
54 EAPI="2"
55
56 inherit eutils
57
58 DESCRIPTION="free, redistributable digital camera software application"
59 HOMEPAGE="http://www.gphoto.org/"
60 SRC_URI="mirror://sourceforge/gphoto/${P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
65 IUSE="aalib exif ncurses nls readline"
66
67 # aalib -> needs libjpeg
68 # raise libgphoto to get a proper .pc
69 RDEPEND="=virtual/libusb-0*
70 dev-libs/popt
71 >=media-libs/libgphoto2-2.4.8[exif?]
72 ncurses? ( dev-libs/cdk )
73 aalib? (
74 media-libs/aalib
75 media-libs/jpeg )
76 exif? ( media-libs/libexif )
77 readline? ( sys-libs/readline )"
78 DEPEND="${RDEPEND}
79 dev-util/pkgconfig
80 nls? ( >=sys-devel/gettext-0.14 )"
81
82 src_configure() {
83 econf \
84 --docdir=/usr/share/doc/${PF} \
85 $(use_with aalib) \
86 $(use_with aalib jpeg) \
87 $(use_with exif libexif auto) \
88 $(use_with ncurses cdk) \
89 $(use_enable nls) \
90 $(use_with readline)
91 }
92
93 src_install() {
94 emake DESTDIR="${D}" \
95 HTML_DIR="${D}"/usr/share/doc/${PF}/sgml \
96 install || die "installation failed"
97
98 dodoc ChangeLog NEWS* README AUTHORS || die "dodoc failed"
99 rm -rf "${D}"/usr/share/doc/${PF}/sgml/gphoto2
100 }