diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-11-01 18:30:37 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-11-01 18:30:37 +0000 |
commit | 99a87a98be1bc940dac646cea9a4152487e778fc (patch) | |
tree | 340e38db15a8fb150593e88f0c97f145860ae252 /app-editors/jedit | |
parent | Fixes #10043. (diff) | |
download | historical-99a87a98be1bc940dac646cea9a4152487e778fc.tar.gz historical-99a87a98be1bc940dac646cea9a4152487e778fc.tar.bz2 historical-99a87a98be1bc940dac646cea9a4152487e778fc.zip |
Fixes #8119.
Diffstat (limited to 'app-editors/jedit')
-rw-r--r-- | app-editors/jedit/ChangeLog | 11 | ||||
-rw-r--r-- | app-editors/jedit/files/digest-jedit-4.1_pre4 | 1 | ||||
-rw-r--r-- | app-editors/jedit/jedit-4.1_pre4.ebuild | 65 |
3 files changed, 74 insertions, 3 deletions
diff --git a/app-editors/jedit/ChangeLog b/app-editors/jedit/ChangeLog index bb9c9229880e..cfac9c57833b 100644 --- a/app-editors/jedit/ChangeLog +++ b/app-editors/jedit/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-editors/jedit # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-editors/jedit/ChangeLog,v 1.8 2002/10/19 12:22:53 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/jedit/ChangeLog,v 1.9 2002/11/01 18:30:37 karltk Exp $ + +*jedit-4.1_pre4 (01 Nov 2002) + + 19 Oct 2002; Karl Trygve Kalleberg <karltk@gentoo.org> jedit-4.1_pre4.ebuild files/digest-jedit-4.1_pre4 : + New upstream version. Ebuild submitted by Mike Rosseel <Mike.Rosseel@gmx.net>. + +*jedit-4.0.3-r2 (24 Jul 2002) 19 Oct 2002; Maik Schreiber <blizzy@gentoo.org> jedit-4.0.ebuild, jedit-4.0.3.ebuild, jedit-4.0.3-r1.ebuild, jedit-4.0.3-r2.ebuild: @@ -11,8 +18,6 @@ Disabled compilation with jikes: jikes-1.16 appears to produce garbage that makes jEdit fail on startup. -*jedit-4.0.3-r2 (24 Jul 2002) - 18 Oct 2002; Daniel Ahlberg <aliz@gentoo.org> jedit-4.0.3-r2.ebuild : Updated to mirror://sourceforge in SRC_URI. diff --git a/app-editors/jedit/files/digest-jedit-4.1_pre4 b/app-editors/jedit/files/digest-jedit-4.1_pre4 new file mode 100644 index 000000000000..8c19f2d2f1cf --- /dev/null +++ b/app-editors/jedit/files/digest-jedit-4.1_pre4 @@ -0,0 +1 @@ +MD5 0f1ecb731411ee738a29d46d09036cc2 jedit41pre4source.tar.gz 1054906 diff --git a/app-editors/jedit/jedit-4.1_pre4.ebuild b/app-editors/jedit/jedit-4.1_pre4.ebuild new file mode 100644 index 000000000000..2cfd1f3dc98a --- /dev/null +++ b/app-editors/jedit/jedit-4.1_pre4.ebuild @@ -0,0 +1,65 @@ +# Copyright 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.1_pre4.ebuild,v 1.1 2002/11/01 18:30:37 karltk Exp $ + +S="${WORKDIR}/jEdit" +DESCRIPTION="Programmer's editor written in Java" +HOMEPAGE="http://www.jedit.org" +SRC_URI="mirror://sourceforge/jedit/jedit41pre4source.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64 ~alpha" +RDEPEND=">=virtual/jdk-1.3" +DEPEND="${RDEPEND} + >=dev-java/ant-1.4.1" +# jikes? ( >=dev-java/jikes-1.15 )" +IUSE="" + +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 + + ant ${antflags} || die "compile problem" +} + +src_install () { + mkdir -m 755 -p ${D}/usr/share/jedit + mkdir -m 755 ${D}/usr/bin + + cp -R jedit.jar jars doc macros modes properties startup ${D}/usr/share/jedit + cd ${D}/usr/share/jedit + chmod -R u+rw,ug-s,go+u,go-w \ + jedit.jar jars doc macros modes properties startup + + cat >${D}/usr/share/jedit/jedit.sh <<-EOF + #!/bin/bash + + cd /usr/share/jedit + java -jar /usr/share/jedit/jedit.jar $@ + EOF + chmod 755 ${D}/usr/share/jedit/jedit.sh + + ln -s ../share/jedit/jedit.sh ${D}/usr/bin/jedit +} + +pkg_postinst() { + touch /usr/share/jedit/jars/.keep + + einfo "The system directory for jEdit plugins is" + einfo "/usr/share/jedit/jars" +} + +pkg_postrm() { + einfo "jEdit plugins installed into /usr/share/jedit/jars" + einfo "(after installation of jEdit itself) haven't been" + einfo "removed. To get rid of jEdit completely, you may" + einfo "want to run" + einfo "" + einfo "\trm -r /usr/share/jedit" +} |