mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-23 14:42:33 +01:00
48 lines
1.3 KiB
Bash
48 lines
1.3 KiB
Bash
# Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-util/argouml/argouml-0.19.6.ebuild,v 1.3 2006/02/24 05:11:47 vapier Exp $
|
|
|
|
inherit java-pkg
|
|
|
|
DESCRIPTION="modelling tool that helps you do your design using UML"
|
|
HOMEPAGE="http://argouml.tigris.org"
|
|
SRC_URI="http://argouml-downloads.tigris.org/nonav/${P}/ArgoUML-${PV}.tar.gz
|
|
doc? ( http://argouml-downloads.tigris.org/nonav/${P}/argomanual-${PV}.pdf
|
|
http://argouml-downloads.tigris.org/nonav/${P}/quickguide-${PV}.pdf
|
|
http://argouml-downloads.tigris.org/nonav/${P}/cookbook-${PV}.pdf )"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~ppc-macos ~x86"
|
|
IUSE="doc"
|
|
RESTRICT="nomirror"
|
|
|
|
#RDEPEND=">=virtual/jre-1.3"
|
|
|
|
S=${WORKDIR}
|
|
|
|
src_compile() { :; }
|
|
|
|
src_install() {
|
|
dodir /opt/${PN}/lib/
|
|
cp -pPR . ${D}/opt/${PN}/lib/ || die
|
|
chmod -R 755 ${D}/opt/${PN}
|
|
touch ${D}/opt/${PN}/lib/argouml.log
|
|
chmod a+w ${D}/opt/${PN}/lib/argouml.log
|
|
|
|
echo "#!/bin/sh" > ${PN}
|
|
echo "cd /opt/${PN}/lib" >> ${PN}
|
|
echo 'java -jar argouml.jar' >> ${PN}
|
|
into /opt
|
|
dobin ${PN}
|
|
|
|
dodoc README.txt
|
|
|
|
if use doc ; then
|
|
insinto /usr/share/doc/${P}
|
|
doins ${DISTDIR}/argomanual-${PV}.pdf
|
|
doins ${DISTDIR}/quickguide-${PV}.pdf
|
|
doins ${DISTDIR}/cookbook-${PV}.pdf
|
|
fi
|
|
}
|