Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/sdl2-gfx: sdl2-gfx-1.0.1.ebuild ChangeLog
Date: Sun, 24 Aug 2014 23:34:00
Message-Id: 20140824233357.B10813D4E@oystercatcher.gentoo.org
1 hasufell 14/08/24 23:33:57
2
3 Modified: ChangeLog
4 Added: sdl2-gfx-1.0.1.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key BDEED020)
9
10 Revision Changes Path
11 1.4 media-libs/sdl2-gfx/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl2-gfx/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl2-gfx/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl2-gfx/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl2-gfx/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 18 Jun 2014 19:53:13 -0000 1.3
24 +++ ChangeLog 24 Aug 2014 23:33:57 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/sdl2-gfx
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl2-gfx/ChangeLog,v 1.3 2014/06/18 19:53:13 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl2-gfx/ChangeLog,v 1.4 2014/08/24 23:33:57 hasufell Exp $
30 +
31 +*sdl2-gfx-1.0.1 (24 Aug 2014)
32 +
33 + 24 Aug 2014; Julian Ospald <hasufell@g.o> +sdl2-gfx-1.0.1.ebuild:
34 + version bump
35
36 18 Jun 2014; Michał Górny <mgorny@g.o> sdl2-gfx-1.0.0-r1.ebuild:
37 Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
38
39
40
41 1.1 media-libs/sdl2-gfx/sdl2-gfx-1.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl2-gfx/sdl2-gfx-1.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl2-gfx/sdl2-gfx-1.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: sdl2-gfx-1.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/sdl2-gfx/sdl2-gfx-1.0.1.ebuild,v 1.1 2014/08/24 23:33:57 hasufell Exp $
51
52 EAPI=5
53 inherit autotools eutils multilib-minimal
54
55 MY_P="${P/sdl2-/SDL2_}"
56 DESCRIPTION="Graphics drawing primitives library for SDL2"
57 HOMEPAGE="http://www.ferzkopp.net/joomla/content/view/19/14/"
58 SRC_URI="http://www.ferzkopp.net/Software/SDL2_gfx/${MY_P}.tar.gz"
59
60 LICENSE="ZLIB"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="doc mmx static-libs"
64
65 DEPEND=">=media-libs/libsdl2-2.0.1-r1[video,${MULTILIB_USEDEP}]"
66 RDEPEND="${DEPEND}"
67
68 S=${WORKDIR}/${MY_P}
69
70 src_prepare() {
71 sed -i \
72 -e 's/ -O / /' \
73 configure.in || die
74 mv configure.in configure.ac || die
75 eautoreconf
76 }
77
78 multilib_src_configure() {
79 ECONF_SOURCE="${S}" econf \
80 $(use_enable mmx) \
81 $(use_enable static-libs static)
82 }
83
84 multilib_src_install_all() {
85 use doc && dohtml -r Docs/html/*
86 prune_libtool_files
87 }