diff options
4 files changed, 60 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/libforms/files/add-absolute-path-for-include-dir.patch b/meta-oe/recipes-graphics/libforms/files/add-absolute-path-for-include-dir.patch new file mode 100644 index 0000000000..db400f7022 --- /dev/null +++ b/meta-oe/recipes-graphics/libforms/files/add-absolute-path-for-include-dir.patch | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | diff -Naur xforms-1.2.3.orig/fdesign/Makefile.am xforms-1.2.3/fdesign/Makefile.am | ||
| 2 | --- xforms-1.2.3.orig/fdesign/Makefile.am 2019-02-24 12:58:51.968645873 +0000 | ||
| 3 | +++ xforms-1.2.3/fdesign/Makefile.am 2019-02-24 13:00:48.500635163 +0000 | ||
| 4 | @@ -11,7 +11,7 @@ | ||
| 5 | fdesign.1: | ||
| 6 | cp -p $(srcdir)/fdesign.man fdesign.1 | ||
| 7 | |||
| 8 | -INCLUDES = -I./xpm $(X_CFLAGS) | ||
| 9 | +INCLUDES = -I./xpm -I$(srcdir)/xpm $(X_CFLAGS) | ||
| 10 | |||
| 11 | bin_PROGRAMS = fdesign | ||
| 12 | |||
diff --git a/meta-oe/recipes-graphics/libforms/files/fix-link-to-xforms-man.patch b/meta-oe/recipes-graphics/libforms/files/fix-link-to-xforms-man.patch new file mode 100644 index 0000000000..c95bd18da8 --- /dev/null +++ b/meta-oe/recipes-graphics/libforms/files/fix-link-to-xforms-man.patch | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | diff -Naur xforms-1.2.3.orig/lib/Makefile.am xforms-1.2.3/lib/Makefile.am | ||
| 2 | --- xforms-1.2.3.orig/lib/Makefile.am 2019-02-24 12:53:58.340678373 +0000 | ||
| 3 | +++ xforms-1.2.3/lib/Makefile.am 2019-02-24 12:54:33.096674102 +0000 | ||
| 4 | @@ -25,7 +25,7 @@ | ||
| 5 | man_MANS = xforms.5 | ||
| 6 | |||
| 7 | xforms.5: | ||
| 8 | - cp -p ./xforms.man xforms.5 | ||
| 9 | + cp -p $(srcdir)/xforms.man xforms.5 | ||
| 10 | |||
| 11 | libforms_la_SOURCES = \ | ||
| 12 | align.c \ | ||
diff --git a/meta-oe/recipes-graphics/libforms/files/fix-path-fdesign_LDADD.patch b/meta-oe/recipes-graphics/libforms/files/fix-path-fdesign_LDADD.patch new file mode 100644 index 0000000000..73956dee9f --- /dev/null +++ b/meta-oe/recipes-graphics/libforms/files/fix-path-fdesign_LDADD.patch | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | diff -Naur xforms-1.2.3.orig/fdesign/Makefile.am xforms-1.2.3/fdesign/Makefile.am | ||
| 2 | --- xforms-1.2.3.orig/fdesign/Makefile.am 2019-02-24 13:08:48.412603250 +0000 | ||
| 3 | +++ xforms-1.2.3/fdesign/Makefile.am 2019-02-24 13:09:18.412601874 +0000 | ||
| 4 | @@ -15,7 +15,7 @@ | ||
| 5 | |||
| 6 | bin_PROGRAMS = fdesign | ||
| 7 | |||
| 8 | -fdesign_LDADD = $(top_srcdir)/lib/libforms.la $(X_LIBS) $(X_PRE_LIBS) $(XPM_LIB) -lX11 $(LIBS) $(X_EXTRA_LIBS) | ||
| 9 | +fdesign_LDADD = $(top_builddir)/lib/libforms.la $(X_LIBS) $(X_PRE_LIBS) $(XPM_LIB) -lX11 $(LIBS) $(X_EXTRA_LIBS) | ||
| 10 | |||
| 11 | fdesign_SOURCES = \ | ||
| 12 | fd_attribs.c \ | ||
diff --git a/meta-oe/recipes-graphics/libforms/libforms_1.2.3.bb b/meta-oe/recipes-graphics/libforms/libforms_1.2.3.bb new file mode 100644 index 0000000000..8a214d1c8b --- /dev/null +++ b/meta-oe/recipes-graphics/libforms/libforms_1.2.3.bb | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | DESCRIPTION = "The XForms graphical interface widget library " | ||
| 2 | HOMEPAGE = "http://savannah.nongnu.org/projects/xforms/" | ||
| 3 | PR = "r0" | ||
| 4 | |||
| 5 | LICENSE = "LGPLv2.1+" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=ade9a053df81f5b9408d2f4f5546df86" | ||
| 7 | |||
| 8 | SRC_URI = "http://download.savannah.nongnu.org/releases/xforms/xforms-${PV}.tar.gz \ | ||
| 9 | file://fix-link-to-xforms-man.patch \ | ||
| 10 | file://add-absolute-path-for-include-dir.patch \ | ||
| 11 | file://fix-path-fdesign_LDADD.patch \ | ||
| 12 | " | ||
| 13 | |||
| 14 | SRC_URI[md5sum] = "235720a758a8b8d9e6e452dc67190e9b" | ||
| 15 | SRC_URI[sha256sum] = "7989b39598c769820ad451ad91e5cb0de29946940c8240aac94ca8238c2def61" | ||
| 16 | |||
| 17 | inherit autotools | ||
| 18 | |||
| 19 | S = "${WORKDIR}/xforms-${PV}" | ||
| 20 | |||
| 21 | DEPENDS = "libxpm jpeg libx11 mesa" | ||
| 22 | RDEPENDS_${PN} = "bash" | ||
| 23 | |||
| 24 | EXTRA_OECONF = "--with-extra-inc=${S}/lib" | ||
