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-gfx: ChangeLog sdl-gfx-2.0.21.ebuild
Date: Tue, 01 Jun 2010 19:28:00
Message-Id: 20100601192753.CBF3C2CE14@corvid.gentoo.org
1 mr_bones_ 10/06/01 19:27:53
2
3 Modified: ChangeLog
4 Added: sdl-gfx-2.0.21.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.66 media-libs/sdl-gfx/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/ChangeLog?rev=1.66&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/ChangeLog?rev=1.66&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/ChangeLog?r1=1.65&r2=1.66
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/ChangeLog,v
19 retrieving revision 1.65
20 retrieving revision 1.66
21 diff -u -r1.65 -r1.66
22 --- ChangeLog 15 Jan 2010 09:40:49 -0000 1.65
23 +++ ChangeLog 1 Jun 2010 19:27:53 -0000 1.66
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/sdl-gfx
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/ChangeLog,v 1.65 2010/01/15 09:40:49 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/ChangeLog,v 1.66 2010/06/01 19:27:53 mr_bones_ Exp $
29 +
30 +*sdl-gfx-2.0.21 (01 Jun 2010)
31 +
32 + 01 Jun 2010; Michael Sterrett <mr_bones_@g.o>
33 + +sdl-gfx-2.0.21.ebuild:
34 + version bump
35
36 15 Jan 2010; Christian Faulhammer <fauli@g.o>
37 sdl-gfx-2.0.20.ebuild:
38
39
40
41 1.1 media-libs/sdl-gfx/sdl-gfx-2.0.21.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/sdl-gfx-2.0.21.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/sdl-gfx-2.0.21.ebuild?rev=1.1&content-type=text/plain
45
46 Index: sdl-gfx-2.0.21.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/sdl-gfx-2.0.21.ebuild,v 1.1 2010/06/01 19:27:53 mr_bones_ Exp $
51
52 EAPI=2
53 inherit autotools
54
55 MY_P="${P/sdl-/SDL_}"
56 DESCRIPTION="Graphics drawing primitives library for SDL"
57 HOMEPAGE="http://www.ferzkopp.net/joomla/content/view/19/14/"
58 SRC_URI="http://www.ferzkopp.net/Software/SDL_gfx-2.0/${MY_P}.tar.gz"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
63 IUSE="mmx static-libs"
64
65 DEPEND="media-libs/libsdl"
66
67 S=${WORKDIR}/${MY_P}
68
69 src_prepare() {
70 mkdir m4
71 sed -i -e 's/-O //' configure.in || die "sed failed"
72 eautoreconf
73 }
74
75 src_configure() {
76 econf \
77 --disable-dependency-tracking \
78 $(use_enable mmx) \
79 $(use_enable static-libs static)
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" install || die "emake install failed"
84 dodoc AUTHORS ChangeLog README
85 dohtml -r Docs/*
86 use static-libs || rm -f "${D}"/usr/$(get_libdir)/lib*.la
87 }