diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2015-06-27 19:34:06 +0300 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2015-06-27 19:34:06 +0300 |
commit | e05a3a7548c67ccf5f6f698f3db4bf85d08203f7 (patch) | |
tree | a347adbd4a67cbd33aef6a0f6a3d12784b31f953 | |
parent | ad0e1dac2abaaec57870d06b86261f0cc7a2bf22 (diff) |
[app-office/archi] added archi
-rw-r--r-- | app-office/archi/Manifest | 1 | ||||
-rw-r--r-- | app-office/archi/archi-2.4.0.ebuild | 50 |
2 files changed, 51 insertions, 0 deletions
diff --git a/app-office/archi/Manifest b/app-office/archi/Manifest new file mode 100644 index 00000000..d40202ad --- /dev/null +++ b/app-office/archi/Manifest @@ -0,0 +1 @@ +DIST Archi-lnx32_64-2.4.0.tar.gz 46073078 SHA256 114cb3e0d5f999cf079ed046689281b62cd5851e5b7e479d1201d71578fde25c SHA512 bb43a37e57024df40ba13105ce3c60a50d44a6b3e3e9af0a3c1c3f49e71cf600c7b36a2d786fb1386da8bdf5dc1085bad6a733390a625561b90bb25de91e4743 WHIRLPOOL 8122327c31bff84c97d806e32b4165b252c1e4a433e9ad918d44380c11df621330e515fa91a8ceef499cfe46d20abacd2780fa892ca88701acea4906717d5472 diff --git a/app-office/archi/archi-2.4.0.ebuild b/app-office/archi/archi-2.4.0.ebuild new file mode 100644 index 00000000..d71649c7 --- /dev/null +++ b/app-office/archi/archi-2.4.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="5" + +inherit eutils + +DESCRIPTION="A free, open source, cross-platform tool and editor to create ArchiMate models." +HOMEPAGE="http://archi.cetis.ac.uk/" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +SRC_URI="http://archi.cetis.ac.uk/download/latest/Archi-lnx32_64-${PV}.tar.gz" +IUSE="doc examples" +RESTRICT="strip mirror" +RDEPEND=">=virtual/jre-1.6" + +INSTALLDIR="/opt/Archi" +S="${WORKDIR}/Archi" + +src_install() { + # application + insinto ${INSTALLDIR} + doins -r configuration plugins + + # executables + if use x86; then + doins Archi32* + chmod 755 "${D}/${INSTALLDIR}/Archi32" + elif use amd64; then + doins Archi64* + chmod 755 "${D}/${INSTALLDIR}/Archi64" + fi + + # icon + newicon -s 128 icon.xpm archi.xpm + + # docs + if use doc; then + dodoc about.html + dodoc about_files/* + dodoc docs/* + fi + + # examples + if use examples; then + dodoc -r examples + fi +} |