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.5.3.ebuild ChangeLog
Date: Sun, 09 Feb 2014 10:26:36
Message-Id: 20140209102633.B192D2004C@flycatcher.gentoo.org
1 pacho 14/02/09 10:26:33
2
3 Modified: ChangeLog
4 Added: gphoto2-2.5.3.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.138 media-gfx/gphoto2/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gphoto2/ChangeLog?rev=1.138&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gphoto2/ChangeLog?rev=1.138&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gphoto2/ChangeLog?r1=1.137&r2=1.138
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/ChangeLog,v
20 retrieving revision 1.137
21 retrieving revision 1.138
22 diff -u -r1.137 -r1.138
23 --- ChangeLog 22 Dec 2013 16:09:46 -0000 1.137
24 +++ ChangeLog 9 Feb 2014 10:26:33 -0000 1.138
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/gphoto2
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/ChangeLog,v 1.137 2013/12/22 16:09:46 jer Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/ChangeLog,v 1.138 2014/02/09 10:26:33 pacho Exp $
31 +
32 +*gphoto2-2.5.3 (09 Feb 2014)
33 +
34 + 09 Feb 2014; Pacho Ramos <pacho@g.o> +gphoto2-2.5.3.ebuild:
35 + Version bump
36
37 22 Dec 2013; Jeroen Roovers <jer@g.o> gphoto2-2.5.2.ebuild:
38 Stable for HPPA (bug #478252).
39
40
41
42 1.1 media-gfx/gphoto2/gphoto2-2.5.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gphoto2/gphoto2-2.5.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/gphoto2/gphoto2-2.5.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gphoto2-2.5.3.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/gphoto2-2.5.3.ebuild,v 1.1 2014/02/09 10:26:33 pacho Exp $
52
53 EAPI="5"
54 inherit autotools
55
56 DESCRIPTION="Free, redistributable digital camera software application"
57 HOMEPAGE="http://www.gphoto.org/"
58 SRC_URI="mirror://sourceforge/gphoto/${P}.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="aalib exif ncurses nls readline"
64
65 # aalib -> needs libjpeg
66 # raise libgphoto to get a proper .pc
67 RDEPEND="
68 dev-libs/popt
69 >=media-libs/libgphoto2-2.5.2[exif?]
70 virtual/libusb:0
71 aalib? (
72 media-libs/aalib
73 virtual/jpeg:0 )
74 exif? ( media-libs/libexif )
75 ncurses? ( dev-libs/cdk )
76 readline? ( sys-libs/readline )
77 "
78 DEPEND="${RDEPEND}
79 virtual/pkgconfig
80 nls? ( >=sys-devel/gettext-0.14.1 )
81 "
82
83 src_prepare() {
84 # Leave GCC debug builds under user control
85 sed -r '/(C|LD)FLAGS/ s/ -g( |")/\1/' \
86 -i configure{.ac,} || die
87 eautoreconf
88 }
89
90 src_configure() {
91 CPPFLAGS="-I/usr/include/cdk" econf \
92 --docdir=/usr/share/doc/${PF} \
93 $(use_with aalib) \
94 $(use_with aalib jpeg) \
95 $(use_with exif libexif auto) \
96 $(use_with ncurses cdk) \
97 $(use_enable nls) \
98 $(use_with readline)
99 }
100
101 src_install() {
102 emake DESTDIR="${D}" \
103 HTML_DIR="${D}"/usr/share/doc/${PF}/sgml \
104 install
105
106 dodoc ChangeLog NEWS* README AUTHORS
107 rm -rf "${D}"/usr/share/doc/${PF}/sgml/gphoto2
108 }