Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/wings: ChangeLog wings-1.1.1.ebuild
Date: Sat, 27 Jun 2009 11:55:15
Message-Id: E1MKWUz-0002DJ-KE@stork.gentoo.org
1 patrick 09/06/27 11:55:13
2
3 Modified: ChangeLog
4 Added: wings-1.1.1.ebuild
5 Log:
6 Bump to 1.1.1. Ebuild patches by Vladimir Brik. Fixes #271009
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.25 media-gfx/wings/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/wings/ChangeLog?rev=1.25&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/wings/ChangeLog?rev=1.25&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/wings/ChangeLog?r1=1.24&r2=1.25
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/wings/ChangeLog,v
19 retrieving revision 1.24
20 retrieving revision 1.25
21 diff -u -r1.24 -r1.25
22 --- ChangeLog 27 Apr 2009 19:20:14 -0000 1.24
23 +++ ChangeLog 27 Jun 2009 11:55:13 -0000 1.25
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-gfx/wings
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/wings/ChangeLog,v 1.24 2009/04/27 19:20:14 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/wings/ChangeLog,v 1.25 2009/06/27 11:55:13 patrick Exp $
29 +
30 +*wings-1.1.1 (27 Jun 2009)
31 +
32 + 27 Jun 2009; Patrick Lauer <patrick@g.o> +wings-1.1.1.ebuild:
33 + Bump to 1.1.1. Ebuild patches by Vladimir Brik. Fixes #271009
34
35 *wings-0.99.60 (27 Apr 2009)
36
37
38
39
40 1.1 media-gfx/wings/wings-1.1.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/wings/wings-1.1.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/wings/wings-1.1.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: wings-1.1.1.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-gfx/wings/wings-1.1.1.ebuild,v 1.1 2009/06/27 11:55:13 patrick Exp $
50
51 EAPI="2"
52
53 inherit multilib eutils
54
55 DESCRIPTION="excellent 3D polygon mesh modeler"
56 HOMEPAGE="http://www.wings3d.com/"
57 SRC_URI="mirror://sourceforge/wings/${P}.tar.bz2"
58
59 LICENSE="BSD"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
62 IUSE=""
63
64 RDEPEND=">=dev-lang/erlang-13.0
65 >=media-libs/esdl-1.0.1
66 media-libs/libsdl[opengl]"
67 DEPEND="${RDEPEND}"
68
69 pkg_setup() {
70 ERL_PATH="/usr/$(get_libdir)/erlang/lib/"
71 ESDL_PATH="${ERL_PATH}/$(best_version media-libs/esdl | cut -d/ -f2)"
72 }
73
74 src_compile() {
75 make ESDL_PATH="${ERL_PATH}/$(best_version media-libs/esdl | cut -d/ -f2)" || die
76 }
77
78 src_install() {
79 WINGS_PATH=${ERL_PATH}/${P}
80 dodir ${WINGS_PATH}
81
82 find -name 'Makefile*' -exec rm -f '{}' \;
83 for subdir in e3d ebin icons plugins plugins_src src fonts ; do
84 cp -r ${subdir} "${D}"/${WINGS_PATH}/ || die
85 done
86
87 dosym ${WINGS_PATH} ${ERL_PATH}/${PN}
88 dosym ${ESDL_PATH} ${ERL_PATH}/esdl
89 newbin "${FILESDIR}"/wings.sh wings
90 dodoc AUTHORS README
91 }