Mercurial > hg > portage
diff dev-java/ant-bin/ant-bin-1.8.1.ebuild @ 219:0f64e7bb73d9
add an ebuild for apache ant
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Tue, 29 Jun 2010 23:52:08 +0200 |
parents | |
children | ea975b812fa2 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev-java/ant-bin/ant-bin-1.8.1.ebuild Tue Jun 29 23:52:08 2010 +0200 @@ -0,0 +1,36 @@ + +inherit java-pkg-2 + +DESCRIPTION="Java-based build tool similar to 'make' that uses XML configuration files." +HOMEPAGE="http://ant.apache.org/" + +MY_P="apache-ant-1.8.1" +SRC_URI="mirror://apache/maven/binaries/${MY_P}-bin.tar.gz" +LICENSE="Apache-2.0" +KEYWORDS="~amd64 ~ppc ~x86" + +SLOT="0" +RDEPEND=">=virtual/jdk-1.5" +IUSE="" + +S="${WORKDIR}/${MY_P}" +ANT_SHARE="/usr/share/${PN}" + +src_unpack() { + unpack ${A} + + rm -v "${S}"/bin/*.bat || die + rm -v "${S}"/bin/*.cmd || die +} + +src_install() { + dodir "${ANT_SHARE}" + cp -Rp bin etc lib fetch.xml get-m2.xml "${D}/${ANT_SHARE}" || die "failed to copy" + + java-pkg_regjar "${D}/${ANT_SHARE}"/lib/*.jar + + dodoc INSTALL KEYS LICENSE NOTICE README WHATSNEW || die + + dodir /usr/bin + dosym "${ANT_SHARE}/bin/ant" /usr/bin/ant +}