blob: b64d74ecc83ed7937349c79bbe32c6befc26fc83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/errorlist/errorlist-1.3.2.ebuild,v 1.4 2005/02/06 01:38:51 luckyduck Exp $
inherit java-pkg
DESCRIPTION="jedit plugin: The ErrorList plugin provides one-click access, and on-the-spot highlighting of errors generated by EditBus-aware packages, such as the Console."
HOMEPAGE="http://plugins.jedit.org/plugins/?ErrorList"
SRC_URI="mirror://sourceforge/jedit-plugins/ErrorList-${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE=""
DEPEND=">=virtual/jdk-1.4
>=app-editors/jedit-4.2
dev-java/ant"
RDEPEND=">=virtual/jre-1.4"
S=${WORKDIR}/ErrorList
src_unpack() {
unpack ${A}
rm -f ErrorList.jar
}
src_compile() {
ant dist -Djedit.install.dir=/usr/share/jedit || die "compile failed"
}
src_install() {
java-pkg_dojar ${WORKDIR}/ErrorList.jar
dodir /usr/share/jedit/jars
dosym /usr/share/${PN}/lib/ErrorList.jar /usr/share/jedit/jars/ErrorList.jar
}
|