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/sdl-gfx: sdl-gfx-2.0.25.ebuild ChangeLog
Date: Sun, 24 Aug 2014 23:27:57
Message-Id: 20140824232753.B46D83D4D@oystercatcher.gentoo.org
1 hasufell 14/08/24 23:27:53
2
3 Modified: ChangeLog
4 Added: sdl-gfx-2.0.25.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.103 media-libs/sdl-gfx/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/ChangeLog?rev=1.103&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/ChangeLog?rev=1.103&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/ChangeLog?r1=1.102&r2=1.103
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/ChangeLog,v
20 retrieving revision 1.102
21 retrieving revision 1.103
22 diff -u -r1.102 -r1.103
23 --- ChangeLog 24 Aug 2014 23:14:49 -0000 1.102
24 +++ ChangeLog 24 Aug 2014 23:27:53 -0000 1.103
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/sdl-gfx
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/ChangeLog,v 1.102 2014/08/24 23:14:49 hasufell Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/sdl-gfx/ChangeLog,v 1.103 2014/08/24 23:27:53 hasufell Exp $
30 +
31 +*sdl-gfx-2.0.25 (24 Aug 2014)
32 +
33 + 24 Aug 2014; Julian Ospald <hasufell@g.o> +sdl-gfx-2.0.25.ebuild:
34 + version bump
35
36 24 Aug 2014; Julian Ospald <hasufell@g.o> -sdl-gfx-2.0.24.ebuild,
37 sdl-gfx-2.0.24-r2.ebuild:
38
39
40
41 1.1 media-libs/sdl-gfx/sdl-gfx-2.0.25.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/sdl-gfx-2.0.25.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/sdl-gfx/sdl-gfx-2.0.25.ebuild?rev=1.1&content-type=text/plain
45
46 Index: sdl-gfx-2.0.25.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/sdl-gfx/sdl-gfx-2.0.25.ebuild,v 1.1 2014/08/24 23:27:53 hasufell Exp $
51
52 EAPI=5
53 inherit autotools eutils multilib-minimal
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 ~arm ~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 RDEPEND=">=media-libs/libsdl-1.2.15-r4[video,${MULTILIB_USEDEP}]"
66 DEPEND="${RDEPEND}"
67
68 S=${WORKDIR}/${MY_P}
69
70 src_prepare() {
71 sed -i -e 's/-O //' configure.in || die
72 mv configure.in configure.ac || die
73 eautoreconf
74 }
75
76 multilib_src_configure() {
77 ECONF_SOURCE="${S}" econf \
78 --disable-dependency-tracking \
79 $(use_enable mmx) \
80 $(use_enable static-libs static)
81 }
82
83 multilib_src_install() {
84 emake DESTDIR="${D}" install
85 }
86
87 multilib_src_install_all() {
88 dodoc AUTHORS ChangeLog README
89 use doc && dohtml -r Docs/*
90 prune_libtool_files
91 }