summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Räty <betelgeuse@gentoo.org>2008-03-22 22:45:02 +0000
committerPetteri Räty <betelgeuse@gentoo.org>2008-03-22 22:45:02 +0000
commit29f9e307bfc2a94bd19f9ac3974a6da3a46d18b4 (patch)
tree45e39e2fcde60141472f824b0bf72a1f67499bb7 /dev-java/axion
parentadd USE flag description for app-arch/file-roller (diff)
downloadgentoo-2-29f9e307bfc2a94bd19f9ac3974a6da3a46d18b4.tar.gz
gentoo-2-29f9e307bfc2a94bd19f9ac3974a6da3a46d18b4.tar.bz2
gentoo-2-29f9e307bfc2a94bd19f9ac3974a6da3a46d18b4.zip
Add empty src_test as the test dir is empty.
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-java/axion')
-rw-r--r--dev-java/axion/ChangeLog8
-rw-r--r--dev-java/axion/axion-1.0_rc2-r3.ebuild15
2 files changed, 14 insertions, 9 deletions
diff --git a/dev-java/axion/ChangeLog b/dev-java/axion/ChangeLog
index b20f7cc9299d..5399824e4439 100644
--- a/dev-java/axion/ChangeLog
+++ b/dev-java/axion/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-java/axion
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/axion/ChangeLog,v 1.22 2007/08/10 19:11:17 betelgeuse Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-java/axion/ChangeLog,v 1.23 2008/03/22 22:45:02 betelgeuse Exp $
+
+ 22 Mar 2008; Petteri Räty <betelgeuse@gentoo.org>
+ axion-1.0_rc2-r3.ebuild:
+ Add empty src_test as the test dir is empty.
10 Aug 2007; Petteri Räty <betelgeuse@gentoo.org>
-axion-1.0_rc2-r2.ebuild:
diff --git a/dev-java/axion/axion-1.0_rc2-r3.ebuild b/dev-java/axion/axion-1.0_rc2-r3.ebuild
index 5a0c752cc236..cc2c2479867c 100644
--- a/dev-java/axion/axion-1.0_rc2-r3.ebuild
+++ b/dev-java/axion/axion-1.0_rc2-r3.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-java/axion/axion-1.0_rc2-r3.ebuild,v 1.5 2007/08/10 18:25:03 wltjr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-java/axion/axion-1.0_rc2-r3.ebuild,v 1.6 2008/03/22 22:45:02 betelgeuse Exp $
+EAPI=1
JAVA_PKG_IUSE="doc source"
WANT_ANT_TASKS="ant-nodeps"
@@ -35,7 +36,6 @@ DEPEND="|| (
S="${WORKDIR}/${PN}-1.0-M2"
src_unpack() {
-
unpack ${A}
cd "${S}"
@@ -55,7 +55,7 @@ src_unpack() {
cd "${S}/"
# These files are re-created by javacc, if they are not removed the compile
# will fail:
- rm -f \
+ rm -v \
src/org/axiondb/parser/TokenMgrError.java \
src/org/axiondb/parser/ParseException.java \
src/org/axiondb/parser/Token.java \
@@ -66,11 +66,12 @@ src_unpack() {
EANT_BUILD_TARGET="compile jar"
-src_install() {
+# The test dir is empty
+src_test() { :; }
- java-pkg_newjar bin/axion-1.0-M2.jar ${PN}.jar
+src_install() {
+ java-pkg_newjar bin/axion-1.0-M2.jar
use doc && java-pkg_dojavadoc bin/docs/api
use source && java-pkg_dosrc src/*
-
}