blob: 37a06c593003b2392f5e2cb2f58001ebb5d1a7a8 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/gnu-classpath-inetlib/gnu-classpath-inetlib-20040331.ebuild,v 1.3 2004/06/24 22:27:20 agriffis Exp $
inherit java-pkg
DESCRIPTION="Network extensions library for GNU classpath and classpathx"
HOMEPAGE="http://www.gnu.org/software/classpath/"
SRC_URI="http://dev.gentoo.org/~karltk/java/distfiles/inetlib-${PV}-gentoo.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc jikes"
DEPEND=">=virtual/jdk-1.3
jikes? ( >=dev-java/jikes-1.19 )"
RDEPEND=">=virtual/jre-1.3
>=dev-java/jessie-0.9.7
>=dev-java/gnu-crypto-2.0.1
"
S=${WORKDIR}/inetlib-${PV}
src_unpack() {
unpack ${A}
cd ${S} ; mkdir ext
(
cd ext
java-pkg_jar-from jessie
java-pkg_jar-from gnu-crypto
cp javax-security.jar javax-security-auth-callback.jar
cp javax-security.jar javax-security-sasl.jar
)
}
src_compile() {
# TODO: Add back jikes support
econf \
--enable-smtp \
--enable-imap \
--enable-pop3 \
--enable-nntp \
--enable-ftp \
--enable-gopher \
--with-jsse-jar=$(pwd)/ext \
--with-javax-security-auth-callback-jar=$(pwd)/ext \
--with-javax-security-sasl-jar=$(pwd)/ext \
|| die
make || die
if use doc ; then
make javadoc
fi
}
src_install() {
einstall || die
rm -rf ${D}/usr/share/java
java-pkg_dojar inetlib.jar
use doc && dohtml -r docs/*
dodoc AUTHORS COPYING NEWS README
}
#pkg_postinst() {}
|