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/enblend: ChangeLog enblend-3.2.ebuild
Date: Wed, 10 Sep 2008 19:12:35
Message-Id: E1KdV7A-00008j-L1@stork.gentoo.org
1 maekke 08/09/10 19:12:32
2
3 Modified: ChangeLog
4 Added: enblend-3.2.ebuild
5 Log:
6 bump to version 3.2, reported in bug #237261
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc5 i686)
8
9 Revision Changes Path
10 1.24 media-gfx/enblend/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/enblend/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/enblend/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/enblend/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/enblend/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 16 Aug 2008 11:12:22 -0000 1.23
23 +++ ChangeLog 10 Sep 2008 19:12:32 -0000 1.24
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-gfx/enblend
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/enblend/ChangeLog,v 1.23 2008/08/16 11:12:22 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/enblend/ChangeLog,v 1.24 2008/09/10 19:12:32 maekke Exp $
29 +
30 +*enblend-3.2 (10 Sep 2008)
31 +
32 + 10 Sep 2008; Markus Meier <maekke@g.o> +enblend-3.2.ebuild:
33 + bump to version 3.2, reported in bug #237261
34
35 *enblend-3.0_p20080807 (16 Aug 2008)
36
37
38
39
40 1.1 media-gfx/enblend/enblend-3.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/enblend/enblend-3.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/enblend/enblend-3.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: enblend-3.2.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-gfx/enblend/enblend-3.2.ebuild,v 1.1 2008/09/10 19:12:32 maekke Exp $
50
51 inherit eutils autotools
52
53 DESCRIPTION="Image Blending with Multiresolution Splines"
54 HOMEPAGE="http://enblend.sourceforge.net/"
55 SRC_URI="mirror://sourceforge/enblend/${PN}-enfuse-${PV}.tar.gz"
56
57 LICENSE="GPL-2 VIGRA"
58 SLOT="0"
59 KEYWORDS="~amd64 ~ppc ~x86"
60 IUSE=""
61
62 DEPEND="
63 >=dev-libs/boost-1.31.0
64 media-libs/lcms
65 media-libs/glew
66 media-libs/plotutils
67 media-libs/tiff
68 virtual/glut"
69
70 S="${WORKDIR}/${PN}-enfuse-${PV}"
71
72 pkg_setup() {
73 # bug 202476
74 if ! built_with_use media-libs/plotutils X ; then
75 eerror
76 eerror "media-gfx/plotutils has to be built with USE=\"X\""
77 eerror
78 die "emerge plotutils with USE=\"X\""
79 fi
80
81 ewarn
82 ewarn "The compilation of enblend needs a lot of RAM. If you have less"
83 ewarn "than 1GB RAM (and swap) you probably won't be able to compile it."
84 ewarn
85 }
86
87 _src_unpack() {
88 unpack ${A}
89 cd "${S}"
90 AT_M4DIR="${S}/m4" eautoreconf
91 }
92
93 src_install() {
94 emake DESTDIR="${D}" install || die
95 dodoc AUTHORS ChangeLog NEWS README TODO
96 }