Gentoo Archives: gentoo-commits

From: "Miroslav Sulc (fordfrog)" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/argouml: ChangeLog argouml-0.29.2.ebuild
Date: Sun, 29 Nov 2009 20:22:25
Message-Id: E1NEqHm-0006Pw-AE@stork.gentoo.org
1 fordfrog 09/11/29 20:22:22
2
3 Modified: ChangeLog
4 Added: argouml-0.29.2.ebuild
5 Log:
6 argouml bumped to 0.29.2
7 (Portage version: 2.1.7.9/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.25 dev-util/argouml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/argouml/ChangeLog?rev=1.25&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/argouml/ChangeLog?rev=1.25&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/argouml/ChangeLog?r1=1.24&r2=1.25
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/argouml/ChangeLog,v
19 retrieving revision 1.24
20 retrieving revision 1.25
21 diff -u -r1.24 -r1.25
22 --- ChangeLog 31 Oct 2008 00:39:29 -0000 1.24
23 +++ ChangeLog 29 Nov 2009 20:22:22 -0000 1.25
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-util/argouml
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/ChangeLog,v 1.24 2008/10/31 00:39:29 nerdboy Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/ChangeLog,v 1.25 2009/11/29 20:22:22 fordfrog Exp $
30 +
31 +*argouml-0.29.2 (29 Nov 2009)
32 +
33 + 29 Nov 2009; Miroslav Ć ulc <fordfrog@g.o> +argouml-0.29.2.ebuild:
34 + Version bump
35
36 *argouml-0.26 (31 Oct 2008)
37
38
39
40
41 1.1 dev-util/argouml/argouml-0.29.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/argouml/argouml-0.29.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/argouml/argouml-0.29.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: argouml-0.29.2.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/argouml-0.29.2.ebuild,v 1.1 2009/11/29 20:22:22 fordfrog Exp $
51
52 inherit java-pkg-2
53
54 DESCRIPTION="modelling tool that helps you do your design using UML"
55 HOMEPAGE="http://argouml.tigris.org"
56 BASE_URI="http://argouml-downloads.tigris.org/nonav/${P}"
57 SRC_URI="${BASE_URI}/ArgoUML-${PV}.tar.gz
58 http://argouml-downloads.tigris.org/nonav/argouml-db-1.0/dbuml-module-1.0.4.zip
59 doc? (
60 ${BASE_URI}/manual-${PV}.pdf
61 ${BASE_URI}/quickguide-${PV}.pdf
62 )"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc ~x86"
67 IUSE="doc"
68
69 DEPEND="app-arch/unzip"
70 RDEPEND=">=virtual/jre-1.5"
71
72 S="${WORKDIR}"
73
74 src_compile() { :; }
75
76 src_install() {
77 java-pkg_jarinto /opt/${PN}/lib
78 java-pkg_dojar ${P}/*.jar
79
80 java-pkg_jarinto /opt/${PN}/lib/ext
81 java-pkg_dojar ${P}/ext/*.jar release/ext/*.jar
82
83 java-pkg_dolauncher ${PN} --main org.argouml.application.Main
84
85 dodoc ${P}/README.txt
86
87 if use doc ; then
88 dohtml -r release/{Readme.htm,www}
89 insinto /usr/share/doc/${P}
90 doins "${DISTDIR}/manual-${PV}.pdf"
91 doins "${DISTDIR}/quickguide-${PV}.pdf"
92 fi
93 }