From 0bdb7654c8a9b9850db27e5f6b4a746fb1083ed1 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Thu, 23 Apr 2009 15:07:52 -0400 Subject: fbv: Add a framebuffer-based png viewer. bmp/gif is supported but disabled. --- conf/checksums.ini | 4 ++++ recipes/fbv/fbv-1.0b/cross_compile.patch | 41 ++++++++++++++++++++++++++++++++ recipes/fbv/fbv_1.0b.bb | 25 +++++++++++++++++++ 3 files changed, 70 insertions(+) create mode 100644 recipes/fbv/fbv-1.0b/cross_compile.patch create mode 100644 recipes/fbv/fbv_1.0b.bb diff --git a/conf/checksums.ini b/conf/checksums.ini index f4ee6537d9..3e621fce0a 100644 --- a/conf/checksums.ini +++ b/conf/checksums.ini @@ -5854,6 +5854,10 @@ sha256=517fa062d7b2d367f931a1c6ebb2bef84907077f0ce3f0c899e34490bbea9338 md5=e97c609af171cceb85d08f366406374a sha256=112ba595859ad6e42f5ad522ada27a08da7702e3ea8c84df48ae1c5d6177ae8e +[http://s-tech.elsat.net.pl/fbv/fbv-1.0b.tar.gz] +md5=3e466375b930ec22be44f1041e77b55d +sha256=9b55b9dafd5eb01562060d860e267e309a1876e8ba5ce4d3303484b94129ab3c + [http://sdgsystems.com/download/fbvncserver-0.9.4.tar.gz] md5=01a37f17857641253541307f59dd8cc5 sha256=e22ed10ecba059904649f344be260512fdb3cbecbd95ca965f8b5cc3ea1785b5 diff --git a/recipes/fbv/fbv-1.0b/cross_compile.patch b/recipes/fbv/fbv-1.0b/cross_compile.patch new file mode 100644 index 0000000000..df8be13b60 --- /dev/null +++ b/recipes/fbv/fbv-1.0b/cross_compile.patch @@ -0,0 +1,41 @@ +--- + configure | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +Index: fbv-1.0b/configure +=================================================================== +--- fbv-1.0b.orig/configure ++++ fbv-1.0b/configure +@@ -106,12 +106,12 @@ xdir="/usr/X11R6" + ungif="no" + echo "libungif check" >>./config.log + echo " 1st:" >>./config.log +-cc 2>>./config.log >>./config.log -o \$\$~test \$\$~test.c -lungif $libs ++${CC} 2>>./config.log >>./config.log -o \$\$~test \$\$~test.c -lungif $libs + if [ -e \$\$~test ]; then + libs="-lungif $libs" ; ungif="yes" + else + echo " 2nd: -lX11 -L$xdir/lib" >>./config.log +- cc 2>>./config.log >>./config.log -o \$\$~test \$\$~test.c -lungif -lX11 -L$xdir/lib $libs ++ ${CC} 2>>./config.log >>./config.log -o \$\$~test \$\$~test.c -lungif -lX11 -L$xdir/lib $libs + if [ -e \$\$~test ]; then + libs="-lungif -lX11 -L$xdir/lib $libs" ; ungif="yes" + fi +@@ -124,7 +124,7 @@ echo "libungif: $ungif" >> ./config.log + echo -n "checking for libjpeg presence... " + if [ "$jpeg" != "disabled" ]; then + jpeg="no" +-cc 2>>./config.log >>./config.log -o \$\$~test \$\$~test.c -ljpeg $libs ++${CC} 2>>./config.log >>./config.log -o \$\$~test \$\$~test.c -ljpeg $libs + if [ -e \$\$~test ]; then + libs="-ljpeg $libs" ; jpeg="yes" + fi +@@ -135,7 +135,7 @@ echo "libjpeg: $jpeg" >> ./config.log + echo -n "checking for libpng presence... " + if [ "$png" != "disabled" ]; then + png="no" +-cc 2>>./config.log >>./config.log -o \$\$~test \$\$~test.c -lpng $libs ++${CC} 2>>./config.log >>./config.log -o \$\$~test \$\$~test.c -lpng $libs + if [ -e \$\$~test ]; then + libs="-lpng $libs" ; png="yes" + fi diff --git a/recipes/fbv/fbv_1.0b.bb b/recipes/fbv/fbv_1.0b.bb new file mode 100644 index 0000000000..04c70661d6 --- /dev/null +++ b/recipes/fbv/fbv_1.0b.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Frame Buffer Viewer" +LICENSE = "GPL" +DEPENDS = "libpng" +PR = "r1" + +SRC_URI = "http://s-tech.elsat.net.pl/fbv/fbv-1.0b.tar.gz \ + file://cross_compile.patch;patch=1" + +do_configure() { + CC="${CC}" ./configure --without-libungif --without-bmp \ + --without-libjpeg +} + +do_compile() { + oe_runmake CFLAGS="-O2 -Wall -D_GNU_SOURCE -D__KERNEL_STRICT_NAMES" \ + CC="${CC}" +} +do_install() { + install -d ${D}${bindir} + install -m 0755 fbv ${D}${bindir} + + # man + install -d ${D}${mandir}/man1/ + install -m 0644 fbv.1 ${D}${mandir}/man1/fbv.1 +} -- cgit 1.2.3-korg