Gentoo Archives: gentoo-commits

From: "Markus Meier (maekke)" <maekke@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/aoi: aoi-2.7.2.ebuild ChangeLog aoi-2.2.1.ebuild
Date: Sun, 01 Nov 2009 14:08:37
Message-Id: E1N4b6h-0003mC-Og@stork.gentoo.org
1 maekke 09/11/01 14:08:35
2
3 Modified: ChangeLog
4 Added: aoi-2.7.2.ebuild
5 Removed: aoi-2.2.1.ebuild
6 Log:
7 version bump by Triffid Hunter in bug #288993, remove old
8 (Portage version: 2.2_rc46/cvs/Linux i686)
9
10 Revision Changes Path
11 1.24 media-gfx/aoi/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/aoi/ChangeLog?rev=1.24&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/aoi/ChangeLog?rev=1.24&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/aoi/ChangeLog?r1=1.23&r2=1.24
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/aoi/ChangeLog,v
20 retrieving revision 1.23
21 retrieving revision 1.24
22 diff -u -r1.23 -r1.24
23 --- ChangeLog 14 Mar 2009 11:56:48 -0000 1.23
24 +++ ChangeLog 1 Nov 2009 14:08:35 -0000 1.24
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-gfx/aoi
27 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/aoi/ChangeLog,v 1.23 2009/03/14 11:56:48 maekke Exp $
29 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/aoi/ChangeLog,v 1.24 2009/11/01 14:08:35 maekke Exp $
31 +
32 +*aoi-2.7.2 (01 Nov 2009)
33 +
34 + 01 Nov 2009; Markus Meier <maekke@g.o> -aoi-2.2.1.ebuild,
35 + +aoi-2.7.2.ebuild:
36 + version bump by Triffid Hunter in bug #288993, remove old
37
38 14 Mar 2009; Markus Meier <maekke@g.o> aoi-2.5.ebuild:
39 x86 stable
40
41
42
43 1.1 media-gfx/aoi/aoi-2.7.2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/aoi/aoi-2.7.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/aoi/aoi-2.7.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: aoi-2.7.2.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-gfx/aoi/aoi-2.7.2.ebuild,v 1.1 2009/11/01 14:08:35 maekke Exp $
53
54 inherit java-pkg-2 eutils versionator
55
56 MY_V=$(delete_all_version_separators)
57 MY_P="aoi${MY_V}"
58 MY_MANUAL_V="2.6"
59 S="${WORKDIR}/ArtOfIllusion${MY_V}"
60 DESCRIPTION="A free, open-source 3D modelling and rendering studio."
61 SRC_URI="mirror://sourceforge/aoi/${MY_P}.zip
62 doc? ( mirror://sourceforge/aoi/manual${MY_MANUAL_V}.zip )"
63 HOMEPAGE="http://aoi.sourceforge.net/index"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 LICENSE="GPL-2"
66 SLOT="0"
67 DEPEND="app-arch/unzip"
68 RDEPEND=">=virtual/jre-1.4"
69 IUSE="doc"
70
71 src_install() {
72 # documentation
73 dodoc HISTORY README
74 if use doc ; then
75 mv "${WORKDIR}"/AoI\ Manual/ "${WORKDIR}"/aoi_manual
76 dohtml -r "${WORKDIR}"/aoi_manual/
77 fi
78
79 # main app
80 java-pkg_dojar ArtOfIllusion.jar
81
82 # run script
83 java-pkg_dolauncher aoi \
84 --jar ArtOfIllusion.jar \
85 --java_args -Xmx128M
86
87 # plugins
88 mv Plugins "${D}"/usr/share/${PN}/lib
89
90 # scripts
91 mv Scripts "${D}"/usr/share/${PN}/lib
92
93 # icon
94 mv Icons/64x64.png Icons/aoi.png
95 doicon Icons/aoi.png
96
97 # desktop entry
98 make_desktop_entry aoi "Art of Illusion" /usr/share/pixmaps/aoi.png "Graphics"
99 }