diff options
author | Chris Aniszczyk <zx@gentoo.org> | 2004-03-18 08:36:35 +0000 |
---|---|---|
committer | Chris Aniszczyk <zx@gentoo.org> | 2004-03-18 08:36:35 +0000 |
commit | c991f41daa12f6f21c8b9cca1934c021452dc9b0 (patch) | |
tree | 3d91fe25fcd9918498d1d68acff3881dd79c7613 /dev-util/argouml | |
parent | added wxwindows USE flag support (diff) | |
download | historical-c991f41daa12f6f21c8b9cca1934c021452dc9b0.tar.gz historical-c991f41daa12f6f21c8b9cca1934c021452dc9b0.tar.bz2 historical-c991f41daa12f6f21c8b9cca1934c021452dc9b0.zip |
Initial Import. Closes #28370
Diffstat (limited to 'dev-util/argouml')
-rw-r--r-- | dev-util/argouml/ChangeLog | 11 | ||||
-rw-r--r-- | dev-util/argouml/Manifest | 4 | ||||
-rw-r--r-- | dev-util/argouml/argouml-0.14.ebuild | 45 | ||||
-rw-r--r-- | dev-util/argouml/metadata.xml | 5 |
4 files changed, 65 insertions, 0 deletions
diff --git a/dev-util/argouml/ChangeLog b/dev-util/argouml/ChangeLog new file mode 100644 index 000000000000..4a4e26805e56 --- /dev/null +++ b/dev-util/argouml/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for dev-util/argouml +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/ChangeLog,v 1.1 2004/03/18 08:36:35 zx Exp $ + +*argouml-0.14 (18 Mar 2004) + + 18 Mar 2004; Chris Aniszczyk <zx@gentoo.org> argouml-0.14.ebuild, + metadata.xml: + Initial Import. Thanks to Olivier Crete <tester@gentoo.org> for the initial + ebuild. Closes #28730 + diff --git a/dev-util/argouml/Manifest b/dev-util/argouml/Manifest new file mode 100644 index 000000000000..ff9a7d226b59 --- /dev/null +++ b/dev-util/argouml/Manifest @@ -0,0 +1,4 @@ +MD5 d02c3d46132bbf282826fbe0c5479f6e argouml-0.14.ebuild 1403 +MD5 ab7107dbe48f2cbe11853ea1535ac091 ChangeLog 425 +MD5 a6ec7d7724fbd068ffb39b5be56134ed metadata.xml 157 +MD5 89fd2bcdc417b47b2c5a08cd1d9ec0a3 files/digest-argouml-0.14 321 diff --git a/dev-util/argouml/argouml-0.14.ebuild b/dev-util/argouml/argouml-0.14.ebuild new file mode 100644 index 000000000000..987228f11493 --- /dev/null +++ b/dev-util/argouml/argouml-0.14.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/argouml-0.14.ebuild,v 1.1 2004/03/18 08:36:35 zx Exp $ + +inherit java-pkg + +DESCRIPTION="ArgoUML is a modelling tool that helps you do your design using UML." +HOMEPAGE="http://argouml.tigris.org" +SRC_URI="http://argouml.tigris.org/files/documents/4/0/$PN-$PV/ArgoUML-${PV}.tar.gz + http://argouml.tigris.org/files/documents/4/0/${P}/ArgoUML-${PV}-modules.tar.gz + doc? ( http://argouml.tigris.org/files/documents/4/8727/argomanual.pdf + http://argouml.tigris.org/files/documents/4/0/argouml-${PV}/quickguide-${PV}.pdf + http://argouml.tigris.org/files/documents/4/0/argouml-${PV}/cookbook-${PV}.pdf )" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" +RESTRICT="nomirror" +IUSE="doc" +RDEPEND=">=virtual/jre-1.2*" +S=${WORKDIR} + +src_compile() { :; } + +src_install() { + dodir /opt/${PN} + cp -a . ${D}/opt/${PN}/lib/ + chmod -R 755 ${D}/opt/${PN} + touch ${D}/opt/${PN}/argouml.log + chmod a+w ${D}/opt/${PN}/argouml.log + + echo "#!/bin/sh" > ${PN} + echo "cd /opt/${PN}/lib" >> ${PN} + echo '"${JAVA_HOME}"/bin/java -jar argouml.jar' >> ${PN} + into /opt + dobin ${PN} + + dodoc README.txt + + if [ `use doc` ] ; then + insinto /usr/share/doc/${P} + doins ${DISTDIR}/argomanual.pdf + doins ${DISTDIR}/quickguide-${PV}.pdf + doins ${DISTDIR}/cookbook-${PV}.pdf + fi +} diff --git a/dev-util/argouml/metadata.xml b/dev-util/argouml/metadata.xml new file mode 100644 index 000000000000..838c00a4a448 --- /dev/null +++ b/dev-util/argouml/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>java</herd> +</pkgmetadata> |