Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/eog: ChangeLog eog-2.28.1.ebuild
Date: Thu, 29 Oct 2009 22:27:22
Message-Id: E1N3dSb-0004VO-Ol@stork.gentoo.org
1 eva 09/10/29 22:27:13
2
3 Modified: ChangeLog
4 Added: eog-2.28.1.ebuild
5 Log:
6 New version for GNOME 2.28.
7 (Portage version: 2.2_rc46/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.250 media-gfx/eog/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/eog/ChangeLog?rev=1.250&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/eog/ChangeLog?rev=1.250&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/eog/ChangeLog?r1=1.249&r2=1.250
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/eog/ChangeLog,v
19 retrieving revision 1.249
20 retrieving revision 1.250
21 diff -u -r1.249 -r1.250
22 --- ChangeLog 24 Oct 2009 16:38:42 -0000 1.249
23 +++ ChangeLog 29 Oct 2009 22:27:12 -0000 1.250
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-gfx/eog
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/eog/ChangeLog,v 1.249 2009/10/24 16:38:42 nixnut Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/eog/ChangeLog,v 1.250 2009/10/29 22:27:12 eva Exp $
29 +
30 +*eog-2.28.1 (29 Oct 2009)
31 +
32 + 29 Oct 2009; Gilles Dartiguelongue <eva@g.o> +eog-2.28.1.ebuild:
33 + New version for GNOME 2.28.
34
35 24 Oct 2009; nixnut <nixnut@g.o> eog-2.26.3.ebuild:
36 ppc stable #281427
37
38
39
40 1.1 media-gfx/eog/eog-2.28.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/eog/eog-2.28.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/eog/eog-2.28.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: eog-2.28.1.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-gfx/eog/eog-2.28.1.ebuild,v 1.1 2009/10/29 22:27:13 eva Exp $
50
51 EAPI="2"
52
53 inherit eutils gnome2
54
55 DESCRIPTION="The Eye of GNOME image viewer"
56 HOMEPAGE="http://www.gnome.org/projects/eog/"
57
58 LICENSE="GPL-2"
59 SLOT="1"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
61 IUSE="dbus doc exif lcms python xmp"
62
63 RDEPEND=">=x11-libs/gtk+-2.15.2
64 >=dev-libs/glib-2.15.3
65 >=dev-libs/libxml2-2
66 >=gnome-base/gconf-2.5.90
67 >=gnome-base/gnome-desktop-2.25.1
68 >=x11-themes/gnome-icon-theme-2.19.1
69 >=x11-misc/shared-mime-info-0.20
70
71 dbus? ( >=dev-libs/dbus-glib-0.71 )
72 exif? (
73 >=media-libs/libexif-0.6.14
74 media-libs/jpeg )
75 lcms? ( media-libs/lcms )
76 python? (
77 >=dev-lang/python-2.3
78 >=dev-python/pygobject-2.15.1
79 >=dev-python/pygtk-2.13 )
80 xmp? ( >=media-libs/exempi-2 )"
81
82 DEPEND="${RDEPEND}
83 app-text/gnome-doc-utils
84 sys-devel/gettext
85 >=dev-util/intltool-0.40
86 >=dev-util/pkgconfig-0.17
87 doc? ( >=dev-util/gtk-doc-1.10 )"
88
89 DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README THANKS TODO"
90
91 pkg_setup() {
92 G2CONF="${G2CONF}
93 $(use_with exif libjpeg)
94 $(use_with exif libexif)
95 $(use_with dbus)
96 $(use_with lcms cms)
97 $(use_enable python)
98 $(use_with xmp)
99 --enable-libtool-lock
100 --disable-dependency-tracking
101 --disable-scrollkeeper
102 --disable-schemas-install"
103 }
104
105 src_install() {
106 gnome2_src_install
107 # Installed for plugins, but they're dlopen()-ed
108 find "${D}" -name "*.la" -delete || die "remove of la files failed"
109 }
110
111 pkg_postinst() {
112 gnome2_pkg_postinst
113
114 if ! has_version x11-libs/gtk+:2[jpeg]; then
115 ewarn "For JPEG file support to work, x11-libs/gtk+ must be rebuilt"
116 ewarn "with the 'jpeg' USE flag enabled."
117 fi
118
119 if ! has_version x11-libs/gtk+:2[tiff]; then
120 ewarn "For TIFF file support to work, x11-libs/gtk+ must be rebuilt"
121 ewarn "with the 'tiff' USE flag enabled."
122 fi
123 }