From f3c54f90394c2b4c1cf1773f5c765cca458a548a Mon Sep 17 00:00:00 2001 From: Mirko Vogt Date: Mon, 5 Oct 2009 00:46:00 +0200 Subject: [PATCH] add zimlib --- zimlib/Makefile | 61 ++++++++++++++++++++ zimlib/patches/001-fix-cxxtools-option.patch | 15 +++++ zimlib/patches/002-disable-tests.patch | 13 +++++ 3 files changed, 89 insertions(+) create mode 100644 zimlib/Makefile create mode 100644 zimlib/patches/001-fix-cxxtools-option.patch create mode 100644 zimlib/patches/002-disable-tests.patch diff --git a/zimlib/Makefile b/zimlib/Makefile new file mode 100644 index 0000000..99317fd --- /dev/null +++ b/zimlib/Makefile @@ -0,0 +1,61 @@ +# +# Copyright (C) 2008 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=zimlib +PKG_REV:=239 +PKG_VERSION:=r$(PKG_REV) +PKG_RELEASE:=1 +PKG_SOURCE_PROTO:=svn +PKG_SOURCE_VERSION:=$(PKG_REV) +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://svn.openzim.org/svnroot/trunk/zimlib +PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/ + +PKG_INSTALL:=1 + +PKG_FIXUP:=libtool-uclibxx + +include $(INCLUDE_DIR)/package.mk + +#CONFIGURE_VARS += \ +# CXX="g++-uc" +# +#MAKE_FLAGS += \ +# CXX="g++-uc" + +define Package/zimlib + TITLE:=zimlib + SECTION:=network + CATEGORY:=Network + #DEPENDS:=+zlib +bzip2 +cxxtools +uclibcxx + DEPENDS:=+zlib +bzip2 +cxxtools +libstdcpp + URL:=http://openzim.org +endef + +define Package/zimlib/description + foobar +endef + +define Build/Configure + ( cd $(PKG_BUILD_DIR); ./autogen.sh ); + $(call Build/Configure/Default) +endef + +define Build/InstallDev + $(INSTALL_DIR) $(1) + $(CP) $(PKG_INSTALL_DIR)/* $(1)/ +endef + +define Package/zimlib/install + $(INSTALL_DIR) $(1) + $(CP) $(PKG_INSTALL_DIR)/* $(1)/ +endef + +$(eval $(call BuildPackage,zimlib)) diff --git a/zimlib/patches/001-fix-cxxtools-option.patch b/zimlib/patches/001-fix-cxxtools-option.patch new file mode 100644 index 0000000..8760f2c --- /dev/null +++ b/zimlib/patches/001-fix-cxxtools-option.patch @@ -0,0 +1,15 @@ +Index: configure.in +=================================================================== +--- a/configure.in (revision 239) ++++ b/configure.in (working copy) +@@ -26,9 +26,9 @@ + if test "$with_cxxtools" = "yes" + then + AC_DEFINE(WITH_CXXTOOLS, [1], [defined if cxxtools is used]) ++ AC_CHECK_HEADER([cxxtools/condition.h], , AC_MSG_ERROR([cxxtools headers not found])) + fi + +-AC_CHECK_HEADER([cxxtools/condition.h], , AC_MSG_ERROR([cxxtools headers not found])) + AM_CONDITIONAL(WITH_CXXTOOLS, test "$with_cxxtools" = yes) + + # output diff --git a/zimlib/patches/002-disable-tests.patch b/zimlib/patches/002-disable-tests.patch new file mode 100644 index 0000000..f89f99c --- /dev/null +++ b/zimlib/patches/002-disable-tests.patch @@ -0,0 +1,13 @@ +Index: Makefile.am +=================================================================== +--- a/Makefile.am (revision 239) ++++ b/Makefile.am (working copy) +@@ -1,8 +1,4 @@ + SUBDIRS = \ + src \ + include \ +- test \ + zimDump +- +-test: all +- test/zimlib-test