Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/libecwj2: ChangeLog libecwj2-3.3-r1.ebuild libecwj2-3.3.ebuild
Date: Sat, 02 Jan 2010 02:58:51
Message-Id: E1NQuCT-0007RY-Tm@stork.gentoo.org
1 bicatali 10/01/02 02:58:45
2
3 Modified: ChangeLog
4 Added: libecwj2-3.3-r1.ebuild
5 Removed: libecwj2-3.3.ebuild
6 Log:
7 Removed internal lmcs, added unzip as dependency. Closing bug #202594, bug #, and bug #, thanks Jean-Claude Repetto and Brian Caldwell
8 (Portage version: 2.2_rc61/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.5 sci-libs/libecwj2/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libecwj2/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libecwj2/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libecwj2/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-libs/libecwj2/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 23 Sep 2009 20:07:53 -0000 1.4
24 +++ ChangeLog 2 Jan 2010 02:58:42 -0000 1.5
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sci-libs/libecwj2
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libecwj2/ChangeLog,v 1.4 2009/09/23 20:07:53 patrick Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libecwj2/ChangeLog,v 1.5 2010/01/02 02:58:42 bicatali Exp $
31 +
32 +*libecwj2-3.3-r1 (02 Jan 2010)
33 +
34 + 02 Jan 2010; Sébastien Fabbro <bicatali@g.o> -libecwj2-3.3.ebuild,
35 + +libecwj2-3.3-r1.ebuild, +files/libecwj2-3.3-nolcms.patch:
36 + Removed internal lmcs, added unzip as dependency. Closing bug #202594, bug
37 + #, and bug #, thanks Jean-Claude Repetto and Brian Caldwell
38
39 23 Sep 2009; Patrick Lauer <patrick@g.o> libecwj2-3.3.ebuild:
40 Remove virtual/libc
41
42
43
44 1.1 sci-libs/libecwj2/libecwj2-3.3-r1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libecwj2/libecwj2-3.3-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/libecwj2/libecwj2-3.3-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libecwj2-3.3-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/sci-libs/libecwj2/libecwj2-3.3-r1.ebuild,v 1.1 2010/01/02 02:58:42 bicatali Exp $
54
55 EAPI=2
56 inherit eutils autotools
57
58 DESCRIPTION="Library for both the ECW and the ISO JPEG 2000 image file formats"
59 SRC_URI="mirror://gentoo/${P}-2006-09-06.zip"
60 HOMEPAGE="http://www.ermapper.com/ProductView.aspx?t=28"
61
62 LICENSE="ECWPL"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="doc examples"
66
67 RDEPEND="media-libs/lcms"
68 DEPEND="${RDEPEND}
69 app-arch/unzip"
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${P}-nolcms.patch
73 rm -rf Source/C/libjpeg Source/C/NCSEcw/lcms
74 eautoreconf
75 }
76
77 src_install() {
78 dodir /usr/include
79 emake DESTDIR="${D}" install || die "emake install failed"
80
81 insinto /usr/share/doc/${PF}/
82 if use doc; then
83 dodoc SDK.pdf || die
84 fi
85 if use examples; then
86 doins -r examples || die
87 fi
88 }