diff options
author | Alain Penders <alain@gentoo.org> | 2003-02-17 16:13:26 +0000 |
---|---|---|
committer | Alain Penders <alain@gentoo.org> | 2003-02-17 16:13:26 +0000 |
commit | c5e0f193cf9faf8b5e1983f560b5d35c4377d598 (patch) | |
tree | 9ff3f474b9f2e925083c8228a30b78243d5662d8 /dev-java/qat | |
parent | Uncommented iptables and hdparm (diff) | |
download | gentoo-2-c5e0f193cf9faf8b5e1983f560b5d35c4377d598.tar.gz gentoo-2-c5e0f193cf9faf8b5e1983f560b5d35c4377d598.tar.bz2 gentoo-2-c5e0f193cf9faf8b5e1983f560b5d35c4377d598.zip |
Initial QAT ebuild
Diffstat (limited to 'dev-java/qat')
-rw-r--r-- | dev-java/qat/ChangeLog | 8 | ||||
-rw-r--r-- | dev-java/qat/files/digest-qat-2.7.0 | 1 | ||||
-rw-r--r-- | dev-java/qat/qat-2.7.0.ebuild | 23 |
3 files changed, 32 insertions, 0 deletions
diff --git a/dev-java/qat/ChangeLog b/dev-java/qat/ChangeLog new file mode 100644 index 000000000000..e5844cfcc3f4 --- /dev/null +++ b/dev-java/qat/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-java/qat +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/qat/ChangeLog,v 1.1 2003/02/17 16:13:26 alain Exp $ + +*qat-2.7.0 (17 Feb 2003) + + 17 Feb 2003; Alain Penders <alain@gentoo.org> ChangeLog, qat-2.7.0.ebuild, + files/digest-qat-2.7.0: Added initial version. diff --git a/dev-java/qat/files/digest-qat-2.7.0 b/dev-java/qat/files/digest-qat-2.7.0 new file mode 100644 index 000000000000..c6d0292a290d --- /dev/null +++ b/dev-java/qat/files/digest-qat-2.7.0 @@ -0,0 +1 @@ +MD5 6b718503a3267283255397a414fe999f qat-2.7.0.zip 615007 diff --git a/dev-java/qat/qat-2.7.0.ebuild b/dev-java/qat/qat-2.7.0.ebuild new file mode 100644 index 000000000000..b6e17e871aba --- /dev/null +++ b/dev-java/qat/qat-2.7.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/qat/qat-2.7.0.ebuild,v 1.1 2003/02/17 16:13:26 alain Exp $ + +#S=${WORKDIR}/jakarta-ant-${PV} +DESCRIPTION="Quality Assurance Tester - A distributed test harnass." +SRC_URI="mirror://sourceforge/qat/qat-${PV}.zip" +HOMEPAGE="http://qat.sourceforge.net" +LICENSE="sun-csl" +SLOT="0" +KEYWORDS="~x86 ~sparc" +DEPEND="virtual/glibc + >=virtual/jdk-1.3" +RDEPEND=">=virtual/jdk-1.3" +IUSE="" + +src_install() { + dojar lib/*.jar + dohtml -r doc/* + dohtml -r specification/* + cp -R examples ${D}/usr/share/doc/${P}/ +} + |