Gentoo Archives: gentoo-commits

From: "Maciej Mrozowski (reavertm)" <reavertm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/simage: metadata.xml ChangeLog simage-1.7.0.ebuild
Date: Fri, 25 Jun 2010 23:17:31
Message-Id: 20100625231725.47B302CF6B@corvid.gentoo.org
1 reavertm 10/06/25 23:17:24
2
3 Added: metadata.xml ChangeLog simage-1.7.0.ebuild
4 Log:
5 Add new package, fixes bug 197209, ebuild submitted by me
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 media-libs/simage/metadata.xml
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/simage/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/simage/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>no-herd</herd>
20 <maintainer>
21 <email>reavertm@g.o</email>
22 </maintainer>
23 </pkgmetadata>
24
25
26
27 1.1 media-libs/simage/ChangeLog
28
29 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/simage/ChangeLog?rev=1.1&view=markup
30 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/simage/ChangeLog?rev=1.1&content-type=text/plain
31
32 Index: ChangeLog
33 ===================================================================
34 # ChangeLog for media-libs/simage
35 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
36 # $Header: /var/cvsroot/gentoo-x86/media-libs/simage/ChangeLog,v 1.1 2010/06/25 23:17:24 reavertm Exp $
37
38 *simage-1.7.0 (25 Jun 2010)
39
40 25 Jun 2010; Maciej Mrozowski <reavertm@g.o> +simage-1.7.0.ebuild,
41 +metadata.xml:
42 Add new package, fixes bug 197209, ebuild submitted by me.
43
44
45
46
47 1.1 media-libs/simage/simage-1.7.0.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/simage/simage-1.7.0.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/simage/simage-1.7.0.ebuild?rev=1.1&content-type=text/plain
51
52 Index: simage-1.7.0.ebuild
53 ===================================================================
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/media-libs/simage/simage-1.7.0.ebuild,v 1.1 2010/06/25 23:17:24 reavertm Exp $
57
58 EAPI=2
59
60 inherit base
61
62 DESCRIPTION="Image and video texturing library"
63 HOMEPAGE="http://www.coin3d.org/lib/simage/"
64 SRC_URI="ftp://ftp.coin3d.org/pub/coin/src/all/${P}.tar.gz"
65
66 LICENSE="public-domain as-is"
67 KEYWORDS="~amd64 ~x86"
68 SLOT="0"
69 IUSE="debug gif jpeg jpeg2k png sndfile static-libs tiff vorbis zlib"
70
71 RDEPEND="
72 gif? ( media-libs/giflib )
73 jpeg? ( media-libs/jpeg:0 )
74 jpeg2k? ( media-libs/jasper )
75 png? ( media-libs/libpng:0 )
76 sndfile? ( media-libs/libsndfile )
77 tiff? ( media-libs/tiff:0 )
78 vorbis? (
79 media-libs/libogg
80 media-libs/libvorbis
81 )
82 zlib? ( sys-libs/zlib )
83 "
84 DEPEND="${RDEPEND}
85 dev-util/pkgconfig
86 "
87
88 DOCS=(AUTHORS ChangeLog NEWS README)
89
90 # --with-pic, two defined (PIC and one for image format, sillyt), no not pass
91 # --enable-qimage, broken Qt checks, unable to locate FHS-compliant Qt install
92 # --with-x, not used anywhere
93 src_configure() {
94 econf \
95 --disable-qimage \
96 --disable-quicktime \
97 --with-eps \
98 --with-mpeg2enc \
99 --with-rgb \
100 --with-targa \
101 --with-xwd \
102 --without-x \
103 $(use_with gif) \
104 $(use_enable debug) \
105 $(use_enable debug symbols) \
106 $(use_with jpeg) \
107 $(use_with jpeg2k jasper) \
108 $(use_with png) \
109 $(use_with sndfile libsndfile) \
110 $(use_enable static-libs static) \
111 $(use_with tiff) \
112 $(use_with vorbis oggvorbis) \
113 $(use_with zlib)
114 }
115
116 src_install() {
117 base_src_install
118 # Remove libtool files when not needed.
119 use static-libs || rm -f "${D}"/usr/lib*/*.la
120 }