diff options
author | 2010-01-23 12:50:56 +0000 | |
---|---|---|
committer | 2010-01-23 12:50:56 +0000 | |
commit | 4a797d78cc45603ac0432692b48b1ac4ed06f9d2 (patch) | |
tree | 75cb1b01dd6a29cda2cc61187e309e142f732e61 /dev-java/hamcrest-core/hamcrest-core-1.1.ebuild | |
parent | keyword ~x86-fbsd and fix cp call to be bsd-compatible in src_test (diff) | |
download | historical-4a797d78cc45603ac0432692b48b1ac4ed06f9d2.tar.gz historical-4a797d78cc45603ac0432692b48b1ac4ed06f9d2.tar.bz2 historical-4a797d78cc45603ac0432692b48b1ac4ed06f9d2.zip |
keyword ~x86-fbsd and fix find call to be bsd-compatible
Package-Manager: portage-2.2_rc61/cvs/Linux x86_64
Diffstat (limited to 'dev-java/hamcrest-core/hamcrest-core-1.1.ebuild')
-rw-r--r-- | dev-java/hamcrest-core/hamcrest-core-1.1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-java/hamcrest-core/hamcrest-core-1.1.ebuild b/dev-java/hamcrest-core/hamcrest-core-1.1.ebuild index dce8709fce34..6a8792f95e8e 100644 --- a/dev-java/hamcrest-core/hamcrest-core-1.1.ebuild +++ b/dev-java/hamcrest-core/hamcrest-core-1.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/hamcrest-core/hamcrest-core-1.1.ebuild,v 1.9 2010/01/03 20:39:41 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/hamcrest-core/hamcrest-core-1.1.ebuild,v 1.10 2010/01/23 12:50:56 aballier Exp $ JAVA_PKG_IUSE="source" @@ -14,7 +14,7 @@ HOMEPAGE="http://code.google.com/p/${MY_PN}/" SRC_URI="http://${MY_PN}.googlecode.com/files/${MY_P}.tgz" LICENSE="BSD-2" SLOT="0" -KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~amd64-linux ~x86-macos ~x64-solaris" +KEYWORDS="amd64 ~ia64 ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-macos ~x64-solaris" IUSE="" DEPEND=">=virtual/jdk-1.5 @@ -28,7 +28,7 @@ src_unpack() { unpack ${A} cd "${S}" - find -name "*.jar" -delete || die + find . -name "*.jar" -delete || die # These jars must be symlinked as specifying them using gentoo.classpath # does not work and both compilation and test fail |