diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-02-26 23:50:05 +0000 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-02-26 23:50:05 +0000 |
commit | ed40676841e317a2aafa04c4c804bb6043864740 (patch) | |
tree | 91c5e4b12acc09eabb2b1234eb633aa78af224d2 /app-office/archi/archi-2.4.0.ebuild | |
parent | dc106bfbeb980942a8490753d6883eb34b13ea12 (diff) |
repo cleanup...drop old ebuilds, drop ebuilds already in portage tree
Diffstat (limited to 'app-office/archi/archi-2.4.0.ebuild')
-rw-r--r-- | app-office/archi/archi-2.4.0.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/app-office/archi/archi-2.4.0.ebuild b/app-office/archi/archi-2.4.0.ebuild deleted file mode 100644 index d71649c7..00000000 --- a/app-office/archi/archi-2.4.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# 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 -} |