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: sdl-gfx-2.0.24.ebuild ChangeLog
Date: Mon, 29 Oct 2012 23:01:55
Message-Id: 20121029230141.6238721600@flycatcher.gentoo.org
1 mr_bones_ 12/10/29 23:01:41
2
3 Modified: ChangeLog
4 Added: sdl-gfx-2.0.24.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.1.11.9/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.88 media-libs/sdl-gfx/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/ChangeLog?rev=1.88&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/ChangeLog?rev=1.88&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/ChangeLog?r1=1.87&r2=1.88
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/ChangeLog,v
20 retrieving revision 1.87
21 retrieving revision 1.88
22 diff -u -r1.87 -r1.88
23 --- ChangeLog 17 May 2012 15:22:52 -0000 1.87
24 +++ ChangeLog 29 Oct 2012 23:01:41 -0000 1.88
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/sdl-gfx
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/ChangeLog,v 1.87 2012/05/17 15:22:52 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/ChangeLog,v 1.88 2012/10/29 23:01:41 mr_bones_ Exp $
30 +
31 +*sdl-gfx-2.0.24 (29 Oct 2012)
32 +
33 + 29 Oct 2012; Michael Sterrett <mr_bones_@g.o> +sdl-gfx-2.0.24.ebuild:
34 + version bump
35
36 17 May 2012; Alexis Ballier <aballier@g.o> sdl-gfx-2.0.23.ebuild:
37 keyword ~amd64-fbsd
38
39
40
41 1.1 media-libs/sdl-gfx/sdl-gfx-2.0.24.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/sdl-gfx-2.0.24.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/sdl-gfx-2.0.24.ebuild?rev=1.1&content-type=text/plain
45
46 Index: sdl-gfx-2.0.24.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.24.ebuild,v 1.1 2012/10/29 23:01:41 mr_bones_ Exp $
51
52 EAPI=2
53 inherit autotools eutils
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="ZLIB"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
63 IUSE="doc mmx static-libs"
64
65 DEPEND="media-libs/libsdl[video]"
66
67 S=${WORKDIR}/${MY_P}
68
69 src_prepare() {
70 sed -i -e 's/-O //' configure.in || die
71 eautoreconf
72 }
73
74 src_configure() {
75 econf \
76 --disable-dependency-tracking \
77 $(use_enable mmx) \
78 $(use_enable static-libs static)
79 }
80
81 src_install() {
82 emake DESTDIR="${D}" install || die
83 dodoc AUTHORS ChangeLog README
84 use doc && dohtml -r Docs/*
85 prune_libtool_files
86 }