diff options
author | Robert Schuster <robertschuster@fsfe.org> | 2009-09-18 14:05:43 +0200 |
---|---|---|
committer | Robert Schuster <robertschuster@fsfe.org> | 2009-09-18 14:05:43 +0200 |
commit | e90cec1338a3a60cbabaff3590c503edd0e10033 (patch) | |
tree | bc49ae4378967c8196067f6fbfbcecece668fcb6 /recipes/classpath/inetlib_1.1.1.bb | |
parent | 6c6d824e983eeab87607c36a4da3ec18d698d116 (diff) |
inetlib 1.1.1: New recipe (from Jalimo SVN).
inetlib-native 1.1.1: Dito.
Diffstat (limited to 'recipes/classpath/inetlib_1.1.1.bb')
-rw-r--r-- | recipes/classpath/inetlib_1.1.1.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/recipes/classpath/inetlib_1.1.1.bb b/recipes/classpath/inetlib_1.1.1.bb new file mode 100644 index 0000000000..1fba4b4e7c --- /dev/null +++ b/recipes/classpath/inetlib_1.1.1.bb @@ -0,0 +1,30 @@ +DESCRIPTION = "A Java library of clients for common internet protocols" +LICENSE = "GPL + library exception" +AUTHOR = "GNU Classpath" +HOMEPAGE = "http://gnu.org/software/classpath/inetlib.html" + +SRC_URI = "\ + http://ftp.gnu.org/gnu/classpath/${BP}.tar.gz \ + file://datadir_java.patch;patch=1 \ + " + +inherit java-library autotools + +DEPENDS = "fastjar-native" + +JPN = "libgnuinet-java" + +export JAVAC = "javac" + +export JAVA = "java" + +# We fake this, it is not neccessary anyway. +export JAVADOC = "true" + +do_compile() { + oe_runmake JARDIR=${datadir_java} inetlib_jar=${JARFILENAME} +} + +do_install_append() { + java_install +} |