Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/devil: ChangeLog devil-1.7.8.ebuild
Date: Mon, 10 May 2010 20:50:30
Message-Id: 20100510205006.DAC692C5CB@corvid.gentoo.org
1 ssuominen 10/05/10 20:50:06
2
3 Modified: ChangeLog
4 Added: devil-1.7.8.ebuild
5 Log:
6 Version bump wrt #297760 (Karl-Robert Ernst) with CVE-2009-3994 patch (Christopher Harvey) and libpng14 compability (Marcin Baczyński)
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.40 media-libs/devil/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/devil/ChangeLog?rev=1.40&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/devil/ChangeLog?rev=1.40&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/devil/ChangeLog?r1=1.39&r2=1.40
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/devil/ChangeLog,v
19 retrieving revision 1.39
20 retrieving revision 1.40
21 diff -u -r1.39 -r1.40
22 --- ChangeLog 21 Dec 2009 20:04:32 -0000 1.39
23 +++ ChangeLog 10 May 2010 20:50:06 -0000 1.40
24 @@ -1,6 +1,13 @@
25 # ChangeLog for media-libs/devil
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/devil/ChangeLog,v 1.39 2009/12/21 20:04:32 mr_bones_ Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/devil/ChangeLog,v 1.40 2010/05/10 20:50:06 ssuominen Exp $
30 +
31 +*devil-1.7.8 (10 May 2010)
32 +
33 + 10 May 2010; Samuli Suominen <ssuominen@g.o> +devil-1.7.8.ebuild,
34 + +files/devil-1.7.8-CVE-2009-3994.patch, +files/devil-1.7.8-libpng14.patch:
35 + Version bump wrt #297760 (Karl-Robert Ernst) with CVE-2009-3994 patch
36 + (Christopher Harvey) and libpng14 compability (Marcin Baczyński)
37
38 21 Dec 2009; Michael Sterrett <mr_bones_@g.o> devil-1.7.7.ebuild:
39 update USE=X deps (bug #297608)
40
41
42
43 1.1 media-libs/devil/devil-1.7.8.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/devil/devil-1.7.8.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/devil/devil-1.7.8.ebuild?rev=1.1&content-type=text/plain
47
48 Index: devil-1.7.8.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-libs/devil/devil-1.7.8.ebuild,v 1.1 2010/05/10 20:50:06 ssuominen Exp $
53
54 EAPI=2
55 inherit eutils
56
57 MY_P=DevIL-${PV}
58
59 DESCRIPTION="DevIL image library"
60 HOMEPAGE="http://openil.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/openil/${MY_P}.tar.gz"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
66 IUSE="openexr gif jpeg lcms mng png tiff xpm allegro opengl sdl X"
67
68 RDEPEND="gif? ( media-libs/giflib )
69 openexr? ( media-libs/openexr )
70 jpeg? ( media-libs/jpeg )
71 lcms? ( media-libs/lcms )
72 mng? ( media-libs/libmng )
73 png? ( media-libs/libpng )
74 tiff? ( media-libs/tiff )
75 xpm? ( x11-libs/libXpm )
76 allegro? ( media-libs/allegro )
77 opengl? ( virtual/glu )
78 sdl? ( media-libs/libsdl )
79 X? ( x11-libs/libXext
80 x11-libs/libX11
81 x11-libs/libXrender )"
82 DEPEND="${RDEPEND}
83 X? ( x11-proto/xextproto )"
84
85 src_prepare() {
86 epatch "${FILESDIR}"/${P}-{CVE-2009-3994,libpng14}.patch
87 }
88
89 src_configure() {
90 econf \
91 --disable-dependency-tracking \
92 --enable-ILU \
93 --enable-ILUT \
94 $(use_enable gif) \
95 $(use_enable jpeg) \
96 $(use_enable lcms) \
97 $(use_enable mng) \
98 $(use_enable openexr exr) \
99 $(use_enable png) \
100 $(use_enable tiff) \
101 $(use_enable xpm) \
102 $(use_enable allegro) \
103 $(use_enable opengl) \
104 $(use_enable sdl) \
105 $(use_with X x) \
106 $(use_enable X x11) \
107 $(use_enable X shm) \
108 $(use_enable X render) \
109 --disable-directx8 \
110 --disable-directx9
111 }
112
113 src_install() {
114 emake DESTDIR="${D}" install || die
115 dodoc AUTHORS CREDITS ChangeLog NEWS README* TODO || die
116 }