Gentoo Archives: gentoo-commits

From: "Jurek Bartuszek (jurek)" <jurek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-dotnet/libgdiplus: ChangeLog libgdiplus-1.9.ebuild
Date: Sat, 31 May 2008 12:22:26
Message-Id: E1K2Q6G-00019e-BU@stork.gentoo.org
1 jurek 08/05/31 12:22:20
2
3 Modified: ChangeLog
4 Added: libgdiplus-1.9.ebuild
5 Log:
6 dev-dotnet/libgdiplus-1.9: version bump (bug #213381)
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.85 dev-dotnet/libgdiplus/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog?rev=1.85&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog?rev=1.85&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog?r1=1.84&r2=1.85
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v
19 retrieving revision 1.84
20 retrieving revision 1.85
21 diff -u -r1.84 -r1.85
22 --- ChangeLog 18 Apr 2008 22:19:04 -0000 1.84
23 +++ ChangeLog 31 May 2008 12:22:19 -0000 1.85
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-dotnet/libgdiplus
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.84 2008/04/18 22:19:04 compnerd Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.85 2008/05/31 12:22:19 jurek Exp $
29 +
30 +*libgdiplus-1.9 (31 May 2008)
31 +
32 + 31 May 2008; Jurek Bartuszek <jurek@g.o> +libgdiplus-1.9.ebuild:
33 + Version bump (bug #213381)
34
35 18 Apr 2008; Saleem Abdulrasool <compnerd@g.o>
36 libgdiplus-1.2.2.ebuild, libgdiplus-1.2.3.ebuild, libgdiplus-1.2.4.ebuild,
37
38
39
40 1.1 dev-dotnet/libgdiplus/libgdiplus-1.9.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-1.9.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-1.9.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libgdiplus-1.9.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/dev-dotnet/libgdiplus/libgdiplus-1.9.ebuild,v 1.1 2008/05/31 12:22:19 jurek Exp $
50
51 inherit eutils flag-o-matic toolchain-funcs autotools
52
53 DESCRIPTION="Library for using System.Drawing with mono"
54 HOMEPAGE="http://www.go-mono.com/"
55 SRC_URI="http://www.go-mono.com/sources/${PN}/${P}.tar.bz2"
56
57 LICENSE="MIT"
58 SLOT="0"
59 KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
60 IUSE="exif gif jpeg tiff"
61
62 RDEPEND=">=dev-libs/glib-2.6
63 >=media-libs/freetype-2
64 >=media-libs/fontconfig-2
65 media-libs/libpng
66 x11-libs/libXrender
67 x11-libs/libX11
68 x11-libs/libXt
69 exif? ( media-libs/libexif )
70 gif? ( >=media-libs/giflib-4.1.3 )
71 jpeg? ( media-libs/jpeg )
72 tiff? ( media-libs/tiff )"
73 DEPEND="${RDEPEND}
74 >=dev-util/pkgconfig-0.19"
75
76 RESTRICT="test"
77
78 src_unpack() {
79 unpack ${A}
80 cd "${S}"
81
82 epatch "${FILESDIR}/${PN}-1.2.5-imglibs.patch"
83
84 eautoreconf
85 }
86
87 src_compile() {
88 if [[ "$(gcc-major-version)" -gt "3" ]] || \
89 ( [[ "$(gcc-major-version)" -eq "3" ]] && [[ "$(gcc-minor-version)" -gt "3" ]] )
90 then
91 append-flags -fno-inline-functions
92 fi
93
94 # Disable glitz support as libgdiplus does not use it, and it causes errors
95 econf --disable-glitz \
96 $(use_with exif libexif) \
97 $(use_with gif libgif) \
98 $(use_with jpeg libjpeg) \
99 $(use_with tiff libtiff) || die "configure failed"
100
101 # attribute ((__stdcall__)) generates warnings on ppc
102 if use ppc ; then
103 sed -i -e 's:-Werror::g' src/Makefile
104 fi
105
106 emake || die "compile failed"
107 }
108
109 src_install() {
110 emake DESTDIR="${D}" install || die "install failed"
111 dodoc AUTHORS ChangeLog NEWS README
112 }
113
114
115
116 --
117 gentoo-commits@l.g.o mailing list