Gentoo Archives: gentoo-commits

From: "Steve Arnold (nerdboy)" <nerdboy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/argouml: ChangeLog argouml-0.26.ebuild
Date: Fri, 31 Oct 2008 00:39:31
Message-Id: E1Kvi2z-000776-T6@stork.gentoo.org
1 nerdboy 08/10/31 00:39:29
2
3 Modified: ChangeLog
4 Added: argouml-0.26.ebuild
5 Log:
6 Updated to current upstream release, with minor src path changes.
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.26.5 x86_64)
8
9 Revision Changes Path
10 1.24 dev-util/argouml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/argouml/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/argouml/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/argouml/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/argouml/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 30 Aug 2008 14:33:07 -0000 1.23
23 +++ ChangeLog 31 Oct 2008 00:39:29 -0000 1.24
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.23 2008/08/30 14:33:07 ranger Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/ChangeLog,v 1.24 2008/10/31 00:39:29 nerdboy Exp $
29 +
30 +*argouml-0.26 (31 Oct 2008)
31 +
32 + 31 Oct 2008; Steve Arnold <nerdboy@g.o> +argouml-0.26.ebuild:
33 + Updated to current upstream release, with minor src path changes...
34
35 30 Aug 2008; Brent Baude <ranger@g.o> argouml-0.24.ebuild:
36 stable ppc, bug 235280
37
38
39
40 1.1 dev-util/argouml/argouml-0.26.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/argouml/argouml-0.26.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/argouml/argouml-0.26.ebuild?rev=1.1&content-type=text/plain
44
45 Index: argouml-0.26.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/argouml-0.26.ebuild,v 1.1 2008/10/31 00:39:29 nerdboy Exp $
50
51 inherit java-pkg-2
52
53 DESCRIPTION="modelling tool that helps you do your design using UML"
54 HOMEPAGE="http://argouml.tigris.org"
55 BASE_URI="http://argouml-downloads.tigris.org/nonav/${P}"
56 SRC_URI="${BASE_URI}/ArgoUML-${PV}.tar.gz
57 http://argouml-downloads.tigris.org/nonav/argouml-db-1.0/dbuml-module-1.0.4.zip
58 doc? (
59 ${BASE_URI}/argomanual-${PV}.pdf
60 ${BASE_URI}/quickguide-${PV}.pdf
61 ${BASE_URI}/cookbook-${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}/argomanual-${PV}.pdf"
91 doins "${DISTDIR}/quickguide-${PV}.pdf"
92 doins "${DISTDIR}/cookbook-${PV}.pdf"
93 fi
94 }