diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-10-19 12:22:53 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-10-19 12:22:53 +0000 |
commit | 0781fa1a3abfeca537bc15936b1a5ef3aa628d9a (patch) | |
tree | ba991c73475419762a4693a0ea4e94ec11b061ff /app-editors/jedit/jedit-4.0.3.ebuild | |
parent | added jikes flag (used by several ebuilds) (diff) | |
download | gentoo-2-0781fa1a3abfeca537bc15936b1a5ef3aa628d9a.tar.gz gentoo-2-0781fa1a3abfeca537bc15936b1a5ef3aa628d9a.tar.bz2 gentoo-2-0781fa1a3abfeca537bc15936b1a5ef3aa628d9a.zip |
re-enabled compilation with >=jikes-1.17
Diffstat (limited to 'app-editors/jedit/jedit-4.0.3.ebuild')
-rw-r--r-- | app-editors/jedit/jedit-4.0.3.ebuild | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/app-editors/jedit/jedit-4.0.3.ebuild b/app-editors/jedit/jedit-4.0.3.ebuild index 0cfdf0c8b1fb..a7ac02fd5e20 100644 --- a/app-editors/jedit/jedit-4.0.3.ebuild +++ b/app-editors/jedit/jedit-4.0.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/jedit/jedit-4.0.3.ebuild,v 1.5 2002/10/18 21:15:09 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/jedit/jedit-4.0.3.ebuild,v 1.6 2002/10/19 12:22:53 blizzy Exp $ MY_PV=${PV//.} S="${WORKDIR}/jEdit" @@ -9,22 +9,23 @@ HOMEPAGE="http://www.jedit.org" SRC_URI="mirror://sourceforge/jedit/${PN}${MY_PV}source.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="*" +KEYWORDS="x86" +IUSE="jikes" RDEPEND=">=virtual/jdk-1.3" DEPEND="${RDEPEND} - >=dev-java/ant-1.4.1" -# jikes? ( >=dev-java/jikes-1.15 )" + >=dev-java/ant-1.4.1 + jikes? ( >=dev-java/jikes-1.17 )" src_compile() { local antflags antflags="" -# if [ `use jikes` ] ; then -# einfo "Please ignore the following compiler warnings." -# einfo "Jikes is just too pedantic..." -# antflags="${antflags} -Dbuild.compiler=jikes" -# fi + if [ `use jikes` ] ; then + einfo "Please ignore the following compiler warnings." + einfo "Jikes is just too pedantic..." + antflags="${antflags} -Dbuild.compiler=jikes" + fi ant ${antflags} || die "compile problem" } |