summaryrefslogtreecommitdiff
blob: 279aabd37610beda6c1796b626a9f208ccdc21de (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/swing-layout/swing-layout-1.0.1-r1.ebuild,v 1.2 2006/12/09 09:25:52 flameeyes Exp $

inherit java-pkg-2 java-ant-2

DESCRIPTION="Professional cross platform layouts with Swing"
HOMEPAGE="https://swing-layout.dev.java.net/"
SRC_URI="https://swing-layout.dev.java.net/files/documents/2752/35842/${P}-src.zip"

LICENSE="LGPL-2.1"
SLOT="1"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
IUSE="doc source"

DEPEND=">=virtual/jdk-1.4
		>=dev-java/ant-core-1.5
		app-arch/unzip"
RDEPEND=">=virtual/jre-1.4"

S=${WORKDIR}

src_compile(){
	eant jar $(use_doc javadoc)
}

src_install(){
	java-pkg_dojar dist/swing-layout.jar
	dodoc releaseNotes.txt
	use doc && java-pkg_dojavadoc dist/javadoc
	use source && java-pkg_dosrc src/java/org
}