Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/sdl-ttf: sdl-ttf-2.0.9.ebuild ChangeLog
Date: Tue, 27 Jul 2010 02:16:24
Message-Id: 20100727021618.D07E22CF2B@corvid.gentoo.org
1 mr_bones_ 10/07/27 02:16:18
2
3 Modified: sdl-ttf-2.0.9.ebuild ChangeLog
4 Log:
5 EAPI=2; add support for USE=static-libs
6 (Portage version: 2.1.8.3/cvs/Linux i686)
7
8 Revision Changes Path
9 1.12 media-libs/sdl-ttf/sdl-ttf-2.0.9.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-ttf/sdl-ttf-2.0.9.ebuild?rev=1.12&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-ttf/sdl-ttf-2.0.9.ebuild?rev=1.12&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-ttf/sdl-ttf-2.0.9.ebuild?r1=1.11&r2=1.12
14
15 Index: sdl-ttf-2.0.9.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-ttf/sdl-ttf-2.0.9.ebuild,v
18 retrieving revision 1.11
19 retrieving revision 1.12
20 diff -u -r1.11 -r1.12
21 --- sdl-ttf-2.0.9.ebuild 15 Jan 2010 09:49:54 -0000 1.11
22 +++ sdl-ttf-2.0.9.ebuild 27 Jul 2010 02:16:18 -0000 1.12
23 @@ -1,7 +1,8 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-ttf/sdl-ttf-2.0.9.ebuild,v 1.11 2010/01/15 09:49:54 fauli Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-ttf/sdl-ttf-2.0.9.ebuild,v 1.12 2010/07/27 02:16:18 mr_bones_ Exp $
28
29 +EAPI=2
30 MY_P="${P/sdl-/SDL_}"
31 DESCRIPTION="library that allows you to use TrueType fonts in SDL applications"
32 HOMEPAGE="http://www.libsdl.org/projects/SDL_ttf/"
33 @@ -10,7 +11,7 @@
34 LICENSE="LGPL-2.1"
35 SLOT="0"
36 KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
37 -IUSE="X"
38 +IUSE="static-libs X"
39
40 DEPEND="X? ( x11-libs/libXt )
41 media-libs/libsdl
42 @@ -18,12 +19,18 @@
43
44 S=${WORKDIR}/${MY_P}
45
46 -src_compile() {
47 - econf $(use_with X x) || die "econf failed"
48 - emake || die "emake failed"
49 +src_configure() {
50 + econf \
51 + --disable-dependency-tracking \
52 + $(use_with static-libs static) \
53 + $(use_with X x)
54 }
55
56 src_install() {
57 emake DESTDIR="${D}" install || die "emake install failed"
58 dodoc CHANGES README
59 + if ! use static-libs ; then
60 + find "${D}" -type f -name '*.la' -exec rm {} + \
61 + || die "la removal failed"
62 + fi
63 }
64
65
66
67 1.48 media-libs/sdl-ttf/ChangeLog
68
69 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-ttf/ChangeLog?rev=1.48&view=markup
70 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-ttf/ChangeLog?rev=1.48&content-type=text/plain
71 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-ttf/ChangeLog?r1=1.47&r2=1.48
72
73 Index: ChangeLog
74 ===================================================================
75 RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-ttf/ChangeLog,v
76 retrieving revision 1.47
77 retrieving revision 1.48
78 diff -u -r1.47 -r1.48
79 --- ChangeLog 15 Jan 2010 09:49:54 -0000 1.47
80 +++ ChangeLog 27 Jul 2010 02:16:18 -0000 1.48
81 @@ -1,6 +1,9 @@
82 # ChangeLog for media-libs/sdl-ttf
83 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
84 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-ttf/ChangeLog,v 1.47 2010/01/15 09:49:54 fauli Exp $
85 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-ttf/ChangeLog,v 1.48 2010/07/27 02:16:18 mr_bones_ Exp $
86 +
87 + 27 Jul 2010; Michael Sterrett <mr_bones_@g.o> sdl-ttf-2.0.9.ebuild:
88 + EAPI=2; add support for USE=static-libs
89
90 15 Jan 2010; Christian Faulhammer <fauli@g.o> sdl-ttf-2.0.9.ebuild:
91 Transfer Prefix keywords