aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/classpathx/gnumail_1.1.2.bb
blob: 4e6755806737b91ec6bd2a412f8b7dc37517b0a4 (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
DESCRIPTION = "GNU's free implementation of the JavaMail API specification"
LICENSE = "GPL + library exception"
AUTHOR = "GNU ClasspathX"

SRC_URI = "\
  http://ftp.gnu.org/gnu/classpathx/mail-${PV}.tar.gz \
  file://datadir_java.patch;patch=1 \
  "

inherit java-library autotools

S = "${WORKDIR}/mail-${PV}"

DEPENDS = "fastjar-native gnujaf inetlib"

export JAVAC = "${STAGING_BINDIR_NATIVE}/javac"
export JAVA = "${STAGING_BINDIR_NATIVE}/java"

# Fake javadoc
export JAVADOC = "true"

EXTRA_OECONF = "\
  --with-inetlib-jar=${STAGING_DATADIR_JAVA} \
  --with-activation-jar=${STAGING_DATADIR_JAVA} \
  "

do_compile() {
  oe_runmake \
    JARDIR=${datadir_java} \
    gnumail_jar=${JARFILENAME} \
    providers_jar=${P}-providers.jar
}

do_install() {
  java_install
  oe_jarinstall ${P}-providers.jar ${PN}-providers.jar
}

do_stage() {
  java_stage
  oe_jarinstall -s ${P}-providers.jar ${PN}-providers.jar
}