]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
New package: zxing
authorFrank Hunleth <fhunleth@troodon-software.com>
Sun, 25 Mar 2012 14:15:40 +0000 (14:15 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 24 Jun 2012 16:36:37 +0000 (18:36 +0200)
[Peter: build using make instead of scons, fixup whitespace, target install]
Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/Config.in
package/zxing/Config.in [new file with mode: 0644]
package/zxing/zxing-makefile.patch [new file with mode: 0644]
package/zxing/zxing.mk [new file with mode: 0644]

index 374a5aa8ec2e86cddda76c9a0d882be7fdc4049b..99257b426f352826239ff3052c9a1874eb79edd7 100644 (file)
@@ -361,6 +361,7 @@ source "package/pango/Config.in"
 source "package/pixman/Config.in"
 source "package/tiff/Config.in"
 source "package/webkit/Config.in"
+source "package/zxing/Config.in"
 endmenu
 
 menu "Hardware handling"
diff --git a/package/zxing/Config.in b/package/zxing/Config.in
new file mode 100644 (file)
index 0000000..c1d342c
--- /dev/null
@@ -0,0 +1,14 @@
+comment "zxing requires a toolchain with C++ support"
+       depends on !BR2_INSTALL_LIBSTDCPP
+
+config BR2_PACKAGE_ZXING
+       bool "zxing"
+       depends on BR2_INSTALL_LIBSTDCPP
+       select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
+       help
+         ZXing (pronounced "zebra crossing") is an open-source,
+         multi-format 1D/2D barcode image processing library
+         implemented in Java, with ports to other languages. This
+         compiles the C++ port.
+
+         http://code.google.com/p/zxing/
diff --git a/package/zxing/zxing-makefile.patch b/package/zxing/zxing-makefile.patch
new file mode 100644 (file)
index 0000000..66896bf
--- /dev/null
@@ -0,0 +1,30 @@
+[PATCH] add Makefile
+
+The scons based build system doesn't handle cross compilation, special
+compiler flags or (un)installation, so add a simple makefile instead
+which does.
+
+Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
+---
+ cpp/core/src/Makefile |   14 ++++++++++++++
+ 1 file changed, 14 insertions(+)
+
+Index: zxing-2.0/cpp/core/src/Makefile
+===================================================================
+--- /dev/null
++++ zxing-2.0/cpp/core/src/Makefile
+@@ -0,0 +1,14 @@
++override CXXFLAGS += -I.
++SRCS := $(shell find -name '*.cpp')
++
++libzxing.a: $(SRCS:.cpp=.o)
++      $(AR) $(ARFLAGS) $@ $^
++
++install: libzxing.a
++      install -D -m 0644 $^ $(DESTDIR)/usr/lib/$^
++      find -name '*.h' -exec install -m 0644 -D "{}" \
++              "$(DESTDIR)/usr/include/{}" ";"
++
++uninstall:
++      rm -f $(DESTDIR)/usr/lib/libzxing.a
++      rm -rf $(DESTDIR)/usr/include/zxing
diff --git a/package/zxing/zxing.mk b/package/zxing/zxing.mk
new file mode 100644 (file)
index 0000000..9bde4b7
--- /dev/null
@@ -0,0 +1,39 @@
+#############################################################
+#
+# zxing
+#
+#############################################################
+ZXING_VERSION = 2.0
+ZXING_SITE = http://zxing.googlecode.com/files
+ZXING_SOURCE = ZXing-$(ZXING_VERSION).zip
+ZXING_INSTALL_STAGING = YES
+
+ifneq ($(BR2_ENABLE_LOCALE),y)
+ZXING_DEPENDENCIES += libiconv
+endif
+
+define ZXING_EXTRACT_CMDS
+       unzip -d $(BUILD_DIR) $(DL_DIR)/$(ZXING_SOURCE)
+endef
+
+define ZXING_BUILD_CMDS
+       $(MAKE) -C $(@D)/cpp/core/src $(TARGET_CONFIGURE_OPTS)
+endef
+
+define ZXING_INSTALL_STAGING_CMDS
+       $(MAKE) -C $(@D)/cpp/core/src DESTDIR=$(STAGING_DIR) install
+endef
+
+define ZXING_UNINSTALL_STAGING_CMDS
+       $(MAKE) -C $(@D)/cpp/core/src DESTDIR=$(STAGING_DIR) uninstall
+endef
+
+define ZXING_INSTALL_TARGET_CMDS
+       $(MAKE) -C $(@D)/cpp/core/src DESTDIR=$(TARGET_DIR) install
+endef
+
+define ZXING_UNINSTALL_TARGET_CMDS
+       $(MAKE) -C $(@D)/cpp/core/src DESTDIR=$(TARGET_DIR) uninstall
+endef
+
+$(eval $(call GENTARGETS))