diff options
-rw-r--r-- | app-editors/jedit/jedit-4.0.3.ebuild | 24 | ||||
-rw-r--r-- | app-editors/jedit/jedit-4.0.ebuild | 18 | ||||
-rw-r--r-- | gnome-extra/mc/ChangeLog | 5 |
3 files changed, 35 insertions, 12 deletions
diff --git a/app-editors/jedit/jedit-4.0.3.ebuild b/app-editors/jedit/jedit-4.0.3.ebuild index edcfc947232b..7e30b71fa37a 100644 --- a/app-editors/jedit/jedit-4.0.3.ebuild +++ b/app-editors/jedit/jedit-4.0.3.ebuild @@ -1,20 +1,32 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # Author: Maik Schreiber <bZ@iq-computing.de> -# $Header: /var/cvsroot/gentoo-x86/app-editors/jedit/jedit-4.0.3.ebuild,v 1.1 2002/07/02 17:53:57 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/jedit/jedit-4.0.3.ebuild,v 1.2 2002/07/08 21:02:50 blizzy Exp $ S="${WORKDIR}/jEdit" DESCRIPTION="Programmer's editor written in Java" HOMEPAGE="http://www.jedit.org" +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/jedit/jedit403source.tar.gz" LICENSE="GPL-2" -DEPEND=">=dev-java/ant-1.4.1 >=dev-java/jikes-1.15" +SLOT="0" +KEYWORDS="*" + RDEPEND=">=virtual/jdk-1.3" -SRC_URI="http://unc.dl.sourceforge.net/sourceforge/jedit/jedit403source.tar.gz" +DEPEND="${RDEPEND} + >=dev-java/ant-1.4.1 + jikes? ( >=dev-java/jikes-1.15 )" src_compile() { - einfo "Please ignore the following compiler warnings." - einfo "Jikes is just too pedantic..." - ant -Dbuild.compiler=jikes || die "compile problem" + 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 + + ant ${antflags} || die "compile problem" } src_install () { diff --git a/app-editors/jedit/jedit-4.0.ebuild b/app-editors/jedit/jedit-4.0.ebuild index 5de60abc6d7f..c5213ee4ea7c 100644 --- a/app-editors/jedit/jedit-4.0.ebuild +++ b/app-editors/jedit/jedit-4.0.ebuild @@ -1,17 +1,27 @@ # Copyright 2002 Maik Schreiber # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/jedit/jedit-4.0.ebuild,v 1.1 2002/06/10 01:30:58 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/jedit/jedit-4.0.ebuild,v 1.2 2002/07/08 21:02:50 blizzy Exp $ S="${WORKDIR}/jEdit" DESCRIPTION="A programmer's editor written in Java" HOMEPAGE="http://www.jedit.org" +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/jedit/jedit40source.tar.gz" LICENSE="GPL-2" -DEPEND=">=dev-java/ant-1.4.1 >=dev-java/jikes-1.15" +SLOT="0" +KEYWORDS="*" + RDEPEND=">=virtual/jdk-1.3" -SRC_URI="http://unc.dl.sourceforge.net/sourceforge/jedit/jedit40source.tar.gz" +DEPEND="${RDEPEND} + >=dev-java/ant-1.4.1 + jikes? ( >=dev-java/jikes-1.15 )" src_compile() { - ant -Dbuild.compiler=jikes || die + local antflags + + antflags="" + use jikes && antflags="${antflags} -Dbuild.compiler=jikes" + + ant ${antflags} || die "compile problem" } src_install () { diff --git a/gnome-extra/mc/ChangeLog b/gnome-extra/mc/ChangeLog index 269dea56407c..e5c705b31c96 100644 --- a/gnome-extra/mc/ChangeLog +++ b/gnome-extra/mc/ChangeLog @@ -1,13 +1,14 @@ # ChangeLog for gnome-extra/mc # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/mc/ChangeLog,v 1.6 2002/06/20 20:26:24 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/mc/ChangeLog,v 1.7 2002/07/08 21:03:44 blizzy Exp $ *mc-4.5.55-r5 (20 Jun 2002) 20 Jun 2002; Seemant Kulleen <seemant@gentoo.org> mc-4.5.55-r5.ebuild files/digest-mc-4.5.55-r5 : - Samba fixes from Maik Schreiber bZ@iq-computing.de in bug #3113 + Samba fixes from Maik Schreiber <bZ@iq-computing.de>, + closes bug #3113. *mc-4.5.55-r4 (11 Apr 2002) 11 Apr 2002; Spider <spider@gentoo.org> |