diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2011-11-12 20:58:34 +0100 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2011-11-26 23:41:44 +0100 |
commit | 57e069cde6617f00ca8834a82c6f360af43d5067 (patch) | |
tree | 48cbe15e96d217c45acfa64b0c13aad8c6424980 /recipes-core/classpathx/gnumail-1.1.2/datadir_java.patch | |
download | meta-java-57e069cde6617f00ca8834a82c6f360af43d5067.tar.gz |
meta-java: initial commit
* taken over mostly stuff from oe classic
* cleaned up recipes
* added license checksums
* bump icedtea6-native to 1.8.11
* use jamvm from git as native
Diffstat (limited to 'recipes-core/classpathx/gnumail-1.1.2/datadir_java.patch')
-rw-r--r-- | recipes-core/classpathx/gnumail-1.1.2/datadir_java.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-core/classpathx/gnumail-1.1.2/datadir_java.patch b/recipes-core/classpathx/gnumail-1.1.2/datadir_java.patch new file mode 100644 index 0000000..50e908d --- /dev/null +++ b/recipes-core/classpathx/gnumail-1.1.2/datadir_java.patch | |||
@@ -0,0 +1,25 @@ | |||
1 | Index: mail-1.1.2/Makefile.am | ||
2 | =================================================================== | ||
3 | --- mail-1.1.2.orig/Makefile.am 2008-03-01 11:13:36.000000000 +0100 | ||
4 | +++ mail-1.1.2/Makefile.am 2008-03-01 11:17:49.000000000 +0100 | ||
5 | @@ -7,6 +7,8 @@ | ||
6 | JAVADOC = @JAVADOC@ | ||
7 | JAVADOCFLAGS = @JAVADOCFLAGS@ | ||
8 | |||
9 | +JARDIR = $(datadir)/java | ||
10 | + | ||
11 | src = @srcdir@/source | ||
12 | dst = classes | ||
13 | doc = @srcdir@/docs | ||
14 | @@ -433,8 +435,8 @@ | ||
15 | rm -rf $(gnumail_jar) $(providers_jar) META-INF $(dst) $(doc) | ||
16 | |||
17 | install-data-local: | ||
18 | - @srcdir@/mkinstalldirs $(DESTDIR)/$(datadir)/java | ||
19 | - $(INSTALL_DATA) $(gnumail_jar) $(DESTDIR)/$(datadir)/java | ||
20 | - $(INSTALL_DATA) $(providers_jar) $(DESTDIR)/$(datadir)/java | ||
21 | + @srcdir@/mkinstalldirs $(DESTDIR)/$(JARDIR) | ||
22 | + $(INSTALL_DATA) $(gnumail_jar) $(DESTDIR)/$(JARDIR) | ||
23 | + $(INSTALL_DATA) $(providers_jar) $(DESTDIR)/$(JARDIR) | ||
24 | |||
25 | # End of Makefile.am | ||