summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2009-11-29 20:22:22 +0000
committerMiroslav Šulc <fordfrog@gentoo.org>2009-11-29 20:22:22 +0000
commitd35e247aa576fc1c6f275ec30e0cb2d7e2c8787e (patch)
tree2a35640c17435d83ceb5fbb1dedcf3e99a7d9f9f /dev-util
parentVersion bump. Fix dependencies (bug #256000). (diff)
downloadgentoo-2-d35e247aa576fc1c6f275ec30e0cb2d7e2c8787e.tar.gz
gentoo-2-d35e247aa576fc1c6f275ec30e0cb2d7e2c8787e.tar.bz2
gentoo-2-d35e247aa576fc1c6f275ec30e0cb2d7e2c8787e.zip
argouml bumped to 0.29.2
(Portage version: 2.1.7.9/cvs/Linux x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/argouml/ChangeLog9
-rw-r--r--dev-util/argouml/argouml-0.29.2.ebuild46
2 files changed, 53 insertions, 2 deletions
diff --git a/dev-util/argouml/ChangeLog b/dev-util/argouml/ChangeLog
index 98ac916b52e0..b76df2fdc90f 100644
--- a/dev-util/argouml/ChangeLog
+++ b/dev-util/argouml/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-util/argouml
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/ChangeLog,v 1.24 2008/10/31 00:39:29 nerdboy Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/ChangeLog,v 1.25 2009/11/29 20:22:22 fordfrog Exp $
+
+*argouml-0.29.2 (29 Nov 2009)
+
+ 29 Nov 2009; Miroslav Šulc <fordfrog@gentoo.org> +argouml-0.29.2.ebuild:
+ Version bump
*argouml-0.26 (31 Oct 2008)
diff --git a/dev-util/argouml/argouml-0.29.2.ebuild b/dev-util/argouml/argouml-0.29.2.ebuild
new file mode 100644
index 000000000000..49189c72b086
--- /dev/null
+++ b/dev-util/argouml/argouml-0.29.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/argouml-0.29.2.ebuild,v 1.1 2009/11/29 20:22:22 fordfrog Exp $
+
+inherit java-pkg-2
+
+DESCRIPTION="modelling tool that helps you do your design using UML"
+HOMEPAGE="http://argouml.tigris.org"
+BASE_URI="http://argouml-downloads.tigris.org/nonav/${P}"
+SRC_URI="${BASE_URI}/ArgoUML-${PV}.tar.gz
+ http://argouml-downloads.tigris.org/nonav/argouml-db-1.0/dbuml-module-1.0.4.zip
+ doc? (
+ ${BASE_URI}/manual-${PV}.pdf
+ ${BASE_URI}/quickguide-${PV}.pdf
+ )"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="doc"
+
+DEPEND="app-arch/unzip"
+RDEPEND=">=virtual/jre-1.5"
+
+S="${WORKDIR}"
+
+src_compile() { :; }
+
+src_install() {
+ java-pkg_jarinto /opt/${PN}/lib
+ java-pkg_dojar ${P}/*.jar
+
+ java-pkg_jarinto /opt/${PN}/lib/ext
+ java-pkg_dojar ${P}/ext/*.jar release/ext/*.jar
+
+ java-pkg_dolauncher ${PN} --main org.argouml.application.Main
+
+ dodoc ${P}/README.txt
+
+ if use doc ; then
+ dohtml -r release/{Readme.htm,www}
+ insinto /usr/share/doc/${P}
+ doins "${DISTDIR}/manual-${PV}.pdf"
+ doins "${DISTDIR}/quickguide-${PV}.pdf"
+ fi
+}