summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openembedded/packages/leafpad/leafpad_0.8.4.bb2
-rw-r--r--openembedded/packages/leafpad/leafpad_0.8.9.bb21
-rw-r--r--openembedded/packages/libxml/files/no-testapi.patch51
-rw-r--r--openembedded/packages/perl/files/Configure-multilib.patch11
4 files changed, 84 insertions, 1 deletions
diff --git a/openembedded/packages/leafpad/leafpad_0.8.4.bb b/openembedded/packages/leafpad/leafpad_0.8.4.bb
index c26f149777..1b1d23fa2a 100644
--- a/openembedded/packages/leafpad/leafpad_0.8.4.bb
+++ b/openembedded/packages/leafpad/leafpad_0.8.4.bb
@@ -1,5 +1,5 @@
1LICENSE = "GPLv2" 1LICENSE = "GPLv2"
2DEPENDS = "gtk+" 2DEPENDS = "gtk+ intltool-native"
3SRC_URI = "http://savannah.nongnu.org/download/${PN}/${PN}-${PV}.tar.gz \ 3SRC_URI = "http://savannah.nongnu.org/download/${PN}/${PN}-${PV}.tar.gz \
4 file://leafpad.desktop \ 4 file://leafpad.desktop \
5 file://leafpad.png" 5 file://leafpad.png"
diff --git a/openembedded/packages/leafpad/leafpad_0.8.9.bb b/openembedded/packages/leafpad/leafpad_0.8.9.bb
new file mode 100644
index 0000000000..1b1d23fa2a
--- /dev/null
+++ b/openembedded/packages/leafpad/leafpad_0.8.9.bb
@@ -0,0 +1,21 @@
1LICENSE = "GPLv2"
2DEPENDS = "gtk+ intltool-native"
3SRC_URI = "http://savannah.nongnu.org/download/${PN}/${PN}-${PV}.tar.gz \
4 file://leafpad.desktop \
5 file://leafpad.png"
6PR = "r1"
7
8inherit autotools pkgconfig
9
10EXTRA_OECONF = " --enable-chooser --disable-gtktest --disable-print"
11
12do_install_append () {
13 install -d ${D}/${datadir}
14 install -d ${D}/${datadir}/applications
15 install -d ${D}/${datadir}/pixmaps/
16
17 install -m 0644 ${WORKDIR}/leafpad.png ${D}/${datadir}/pixmaps
18 install -m 0644 ${WORKDIR}/leafpad.desktop ${D}/${datadir}/applications
19}
20
21FILES_${PN} += "${datadir}/applications/leafpad.desktop ${datadir}/pixmaps/leafpad.png"
diff --git a/openembedded/packages/libxml/files/no-testapi.patch b/openembedded/packages/libxml/files/no-testapi.patch
new file mode 100644
index 0000000000..15a4dea0ee
--- /dev/null
+++ b/openembedded/packages/libxml/files/no-testapi.patch
@@ -0,0 +1,51 @@
1--- /tmp/Makefile.am 2005-11-13 14:33:15.844432536 +0100
2+++ libxml2-2.6.22/Makefile.am 2005-11-13 14:33:25.796919528 +0100
3@@ -8,7 +8,7 @@
4
5 noinst_PROGRAMS=testSchemas testRelax testSAX testHTML testXPath testURI \
6 testThreads testC14N testAutomata testRegexp \
7- testReader testapi testModule runtest runsuite
8+ testReader testModule runtest runsuite
9
10 bin_PROGRAMS = xmllint xmlcatalog
11
12@@ -135,20 +135,9 @@
13 testdso_la_LDFLAGS = -module -rpath $(libdir)
14
15 # that one forces the rebuild when "make rebuild" is run on doc/
16-rebuild_testapi:
17- -@(if [ "$(PYTHON)" != "" ] ; then \
18- $(PYTHON) $(srcdir)/gentest.py $(srcdir) ; fi )
19
20 # that one is just to make sure it is rebuilt if missing
21 # but adding the dependances generate mess
22-testapi.c:
23- -@(if [ "$(PYTHON)" != "" ] ; then \
24- $(PYTHON) $(srcdir)/gentest.py $(srcdir) ; fi )
25-
26-testapi_SOURCES=testapi.c
27-testapi_LDFLAGS =
28-testapi_DEPENDENCIES = $(DEPS)
29-testapi_LDADD= $(LDADDS)
30
31 #testOOM_SOURCES=testOOM.c testOOMlib.h testOOMlib.c
32 #testOOM_LDFLAGS =
33@@ -169,9 +158,6 @@
34 @echo '## Go get a cup of coffee it is gonna take a while ...'
35 $(MAKE) CHECKER='valgrind' tests
36
37-APItests: testapi$(EXEEXT)
38- @echo "## Running the API regression tests this may take a little while"
39- -@($(CHECKER) $(top_builddir)/testapi -q)
40
41 HTMLtests : testHTML$(EXEEXT)
42 @(echo > .memdump)
43@@ -1116,7 +1102,7 @@
44 dist-test: distdir
45 (mkdir -p $(distdir))
46 (cd $(srcdir) ; tar -cf - --exclude CVS xstc/Tests) | (cd $(distdir); tar xf -)
47- tar -cf - $(distdir)/test $(distdir)/result $(distdir)/xstc/Tests $(distdir)/Makefile.tests $(distdir)/README $(distdir)/README.tests $(distdir)/AUTHORS $(distdir)/testapi.c $(distdir)/runtest.c $(distdir)/runsuite.c | GZIP=$(GZIP_ENV) gzip -c >`echo "$(distdir)" | sed "s+libxml2+libxml2-tests+"`.tar.gz
48+ tar -cf - $(distdir)/test $(distdir)/result $(distdir)/xstc/Tests $(distdir)/Makefile.tests $(distdir)/README $(distdir)/README.tests $(distdir)/AUTHORS $(distdir)/runtest.c $(distdir)/runsuite.c | GZIP=$(GZIP_ENV) gzip -c >`echo "$(distdir)" | sed "s+libxml2+libxml2-tests+"`.tar.gz
49 @(rm -rf $(distdir)/xstc/Test)
50
51 cleantar:
diff --git a/openembedded/packages/perl/files/Configure-multilib.patch b/openembedded/packages/perl/files/Configure-multilib.patch
new file mode 100644
index 0000000000..d3948a92c0
--- /dev/null
+++ b/openembedded/packages/perl/files/Configure-multilib.patch
@@ -0,0 +1,11 @@
1--- perl-5.8.7/Configure.orig 2006-01-30 10:50:04.000000000 +0000
2+++ perl-5.8.7/Configure 2006-01-30 10:51:18.000000000 +0000
3@@ -1240,7 +1240,7 @@
4 loclibpth="$loclibpth /opt/gnu/lib /usr/GNU/lib /opt/GNU/lib"
5
6 : general looking path for locating libraries
7-glibpth="/lib /usr/lib $xlibpth"
8+glibpth="/lib /usr/lib /lib64 /usr/lib64 $xlibpth"
9 glibpth="$glibpth /usr/ccs/lib /usr/ucblib /usr/local/lib"
10 test -f /usr/shlib/libc.so && glibpth="/usr/shlib $glibpth"
11 test -f /shlib/libc.so && glibpth="/shlib $glibpth"