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.2.5.ebuild
Date: Mon, 10 Sep 2007 20:17:38
Message-Id: E1IUoY4-0001Lu-Tf@stork.gentoo.org
1 jurek 07/09/10 19:03:52
2
3 Modified: ChangeLog
4 Added: libgdiplus-1.2.5.ebuild
5 Log:
6 dev-dotnet/libgdiplus: version bump
7 (Portage version: 2.1.2.12)
8
9 Revision Changes Path
10 1.77 dev-dotnet/libgdiplus/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog?rev=1.77&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog?rev=1.77&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog?r1=1.76&r2=1.77
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v
19 retrieving revision 1.76
20 retrieving revision 1.77
21 diff -u -r1.76 -r1.77
22 --- ChangeLog 22 Jul 2007 09:56:48 -0000 1.76
23 +++ ChangeLog 10 Sep 2007 19:03:52 -0000 1.77
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-dotnet/libgdiplus
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.76 2007/07/22 09:56:48 graaff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/libgdiplus/ChangeLog,v 1.77 2007/09/10 19:03:52 jurek Exp $
29 +
30 +*libgdiplus-1.2.5 (10 Sep 2007)
31 +
32 + 10 Sep 2007; Jurek Bartuszek <jurek@g.o> +libgdiplus-1.2.5.ebuild:
33 + Version bump
34
35 22 Jul 2007; Hans de Graaff <graaff@g.o> libgdiplus-1.2.2.ebuild,
36 libgdiplus-1.2.3.ebuild, libgdiplus-1.2.4.ebuild:
37
38
39
40 1.1 dev-dotnet/libgdiplus/libgdiplus-1.2.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-1.2.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/libgdiplus/libgdiplus-1.2.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libgdiplus-1.2.5.ebuild
46 ===================================================================
47 # Copyright 1999-2007 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.2.5.ebuild,v 1.1 2007/09/10 19:03:52 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.1.13-libungif-configure-fix.diff
83 eautoreconf
84 }
85
86 src_compile() {
87 if [[ "$(gcc-major-version)" -gt "3" ]] || \
88 ( [[ "$(gcc-major-version)" -eq "3" ]] && [[ "$(gcc-minor-version)" -gt "3" ]] )
89 then
90 append-flags -fno-inline-functions
91 fi
92
93 # Disable glitz support as libgdiplus does not use it, and it causes errors
94 econf --disable-glitz \
95 $(use_with exif libexif) \
96 $(use_with gif libgif) \
97 $(use_with jpeg libjpeg) \
98 $(use_with tiff libtiff) || die "configure failed"
99
100 # attribute ((__stdcall__)) generates warnings on ppc
101 if use ppc ; then
102 sed -i -e 's:-Werror::g' src/Makefile
103 fi
104
105 emake || die "compile failed"
106 }
107
108 src_install() {
109 emake DESTDIR="${D}" install || die "install failed"
110 dodoc AUTHORS ChangeLog NEWS README
111 }
112
113
114
115 --
116 gentoo-commits@g.o mailing list