Gentoo Archives: gentoo-commits

From: "Markus Meier (maekke)" <maekke@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/ufraw: ufraw-0.19.2.ebuild ChangeLog
Date: Thu, 28 Mar 2013 20:48:41
Message-Id: 20130328204836.F20CB2171D@flycatcher.gentoo.org
1 maekke 13/03/28 20:48:36
2
3 Modified: ChangeLog
4 Added: ufraw-0.19.2.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.1.11.57/cvs/Linux x86_64, signed Manifest commit with key 072AD062)
9
10 Revision Changes Path
11 1.104 media-gfx/ufraw/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/ufraw/ChangeLog?rev=1.104&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/ufraw/ChangeLog?rev=1.104&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/ufraw/ChangeLog?r1=1.103&r2=1.104
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/ufraw/ChangeLog,v
20 retrieving revision 1.103
21 retrieving revision 1.104
22 diff -u -r1.103 -r1.104
23 --- ChangeLog 13 Mar 2013 20:39:49 -0000 1.103
24 +++ ChangeLog 28 Mar 2013 20:48:36 -0000 1.104
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-gfx/ufraw
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/ufraw/ChangeLog,v 1.103 2013/03/13 20:39:49 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/ufraw/ChangeLog,v 1.104 2013/03/28 20:48:36 maekke Exp $
30 +
31 +*ufraw-0.19.2 (28 Mar 2013)
32 +
33 + 28 Mar 2013; Markus Meier <maekke@g.o> +ufraw-0.19.2.ebuild:
34 + version bump
35
36 *ufraw-0.19.1 (13 Mar 2013)
37
38
39
40
41 1.1 media-gfx/ufraw/ufraw-0.19.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/ufraw/ufraw-0.19.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/ufraw/ufraw-0.19.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ufraw-0.19.2.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-gfx/ufraw/ufraw-0.19.2.ebuild,v 1.1 2013/03/28 20:48:36 maekke Exp $
51
52 EAPI=5
53 inherit autotools eutils fdo-mime gnome2-utils
54
55 DESCRIPTION="RAW Image format viewer and GIMP plugin"
56 HOMEPAGE="http://ufraw.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
62 IUSE="contrast fits gimp gnome gtk openmp timezone"
63
64 RDEPEND="dev-libs/glib:2
65 >=media-gfx/exiv2-0.11
66 virtual/jpeg
67 media-libs/lcms:0
68 >=media-libs/lensfun-0.2.5
69 media-libs/tiff
70 fits? ( sci-libs/cfitsio )
71 gnome? ( >=gnome-base/gconf-2 )
72 gtk? ( >=x11-libs/gtk+-2.6:2
73 >=media-gfx/gtkimageview-1.5 )
74 gimp? ( >=x11-libs/gtk+-2.6:2
75 >=media-gfx/gtkimageview-1.5
76 >=media-gfx/gimp-2 )"
77 DEPEND="${RDEPEND}
78 virtual/pkgconfig"
79
80 src_prepare() {
81 epatch "${FILESDIR}"/${PN}-0.17-cfitsio-automagic.patch
82 eautoreconf
83 }
84
85 src_configure() {
86 econf \
87 --without-cinepaint \
88 $(use_enable contrast) \
89 $(use_with fits cfitsio) \
90 $(use_with gimp) \
91 $(use_enable gnome mime) \
92 $(use_with gtk) \
93 $(use_enable openmp) \
94 $(use_enable timezone dst-correction) \
95 $(usex gimp --with-gtk "")
96 }
97
98 src_install() {
99 emake DESTDIR="${D}" schemasdir=/etc/gconf/schemas install
100 dodoc README TODO
101 }
102
103 pkg_preinst() {
104 if use gnome; then
105 gnome2_gconf_savelist
106 fi
107 }
108
109 pkg_postinst() {
110 if use gnome; then
111 fdo-mime_mime_database_update
112 fdo-mime_desktop_database_update
113 gnome2_gconf_install
114 fi
115 }
116
117 pkg_postrm() {
118 if use gnome; then
119 fdo-mime_desktop_database_update
120 fdo-mime_mime_database_update
121 fi
122 }