X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=libs%2Fclearsilver%2FMakefile;h=24f52305792c1f8536f5d5e5023105fad0dabca5;hb=132c86ee64f2022160932c75b6c18043c31afd1f;hp=b2ecb32c0015511bd21ae400c12e506c3f4b7285;hpb=1120328d156b1dac991b04bb0a4dbda56257d2c9;p=packages.git diff --git a/libs/clearsilver/Makefile b/libs/clearsilver/Makefile index b2ecb32c0..24f523057 100644 --- a/libs/clearsilver/Makefile +++ b/libs/clearsilver/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2007 OpenWrt.org +# Copyright (C) 2006-2010 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,106 +9,92 @@ include $(TOPDIR)/rules.mk PKG_NAME:=clearsilver PKG_VERSION:=0.10.5 -PKG_RELEASE:=1 +PKG_RELEASE:=5 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.clearsilver.net/downloads/ PKG_MD5SUM:=b8c0c7fbe0ef5e06e0c935f134304d44 +PKG_CONFIG_DEPENDS:= \ + CONFIG_CLEARSILVER_ENABLE_COMPRESSION \ + CONFIG_CLEARSILVER_ENABLE_REMOTE_DEBUGGER \ + CONFIG_CLEARSILVER_ENABLE_GETTEXT + +PKG_FIXUP:=libtool +PKG_INSTALL:=1 + include $(INCLUDE_DIR)/package.mk define Package/clearsilver SECTION:=libs CATEGORY:=Libraries - DEPENDS:=+neon +zlib TITLE:=ClearSilver template system - DESCRIPTION:=Clearsilver is a fast, powerful, and language-neutral HTML template system. In both static content sites and dynamic HTML applications, it provides a separation between presentation code and application logic which makes working with your project easier. - URL:=http://www.clearsilver.net/ + URL:=http://www.clearsilver.net/ + MAINTAINER:=Raphaƫl HUCK + DEPENDS:=+CLEARSILVER_ENABLE_COMPRESSION:zlib +CLEARSILVER_ENABLE_GETTEXT:libintl +endef + +define Package/clearsilver/config + menu "Configuration" + depends on PACKAGE_clearsilver + source "$(SOURCE)/Config.in" + endmenu endef -CONFIGURE_ARGS += \ - --disable-wdb \ - --disable-apache \ - --disable-python \ - --disable-perl \ - --disable-ruby \ - --disable-java \ - --disable-csharp \ - --prefix=/usr - -MAKE_FLAGS += \ +define Package/clearsilver/description +Clearsilver is a fast, powerful, and language-neutral HTML template system. In +both static content sites and dynamic HTML applications, it provides a separation +between presentation code and application logic which makes working with your +project easier. +endef + +CONFIGURE_ARGS+= \ + --disable-wdb \ + --disable-apache \ + --disable-python \ + --disable-perl \ + --disable-ruby \ + --disable-java \ + --disable-csharp \ + --prefix=/usr + +ifeq ($(SDK)$(CONFIG_CLEARSILVER_ENABLE_COMPRESSION),y) + CONFIGURE_ARGS+= \ + --enable-compression +else + CONFIGURE_ARGS+= \ + --disable-compression +endif + +ifeq ($(SDK)$(CONFIG_CLEARSILVER_ENABLE_REMOTE_DEBUGGER),y) + CONFIGURE_ARGS+= \ + --enable-remote-debugger +else + CONFIGURE_ARGS+= \ + --disable-remote-debugger +endif + +ifeq ($(SDK)$(CONFIG_CLEARSILVER_ENABLE_GETTEXT),y) + CONFIGURE_ARGS+= \ + --enable-gettext +else + CONFIGURE_ARGS+= \ + --disable-gettext +endif + +TARGET_CFLAGS+=$(FPIC) + +MAKE_FLAGS+= \ $(TARGET_CONFIGURE_OPTS) \ AR="$(AR) cr" \ - LD="$(TARGET_CROSS)ld -o" \ - DESTDIR="$(PKG_INSTALL_DIR)" \ - all install + LD="$(TARGET_CC) -o" define Build/InstallDev - $(INSTALL_DIR) $(1)/usr/include/ClearSilver - $(INSTALL_DIR) $(1)/usr/include/ClearSilver/cs - $(INSTALL_DIR) $(1)/usr/include/ClearSilver/cgi - $(INSTALL_DIR) $(1)/usr/include/ClearSilver/util - - $(CP) $(PKG_BUILD_DIR)/ClearSilver.h $(1)/usr/include/ClearSilver/ - $(CP) $(PKG_BUILD_DIR)/cs_config.h $(1)/usr/include/ClearSilver/ - - $(CP) $(PKG_BUILD_DIR)/cs/cs.h $(1)/usr/include/ClearSilver/cs/ - - $(CP) $(PKG_BUILD_DIR)/cgi/cgi.h $(1)/usr/include/ClearSilver/cgi/ - $(CP) $(PKG_BUILD_DIR)/cgi/cgiwrap.h $(1)/usr/include/ClearSilver/cgi/ - $(CP) $(PKG_BUILD_DIR)/cgi/date.h $(1)/usr/include/ClearSilver/cgi/ - $(CP) $(PKG_BUILD_DIR)/cgi/html.h $(1)/usr/include/ClearSilver/cgi/ - - $(CP) $(PKG_BUILD_DIR)/util/neo_err.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/neo_files.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/neo_misc.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/neo_rand.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/ulist.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/neo_hdf.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/neo_str.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/neo_date.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/wildmat.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/neo_hash.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/ulocks.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/rcfs.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/skiplist.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/dict.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/filter.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/neo_net.h $(1)/usr/include/ClearSilver/util/ - $(CP) $(PKG_BUILD_DIR)/util/neo_server.h $(1)/usr/include/ClearSilver/util/ - - $(INSTALL_DIR) $(1)/usr/lib - - $(CP) $(PKG_BUILD_DIR)/libs/libneo_cs.a $(1)/usr/lib/ - $(CP) $(PKG_BUILD_DIR)/libs/libneo_cgi.a $(1)/usr/lib/ - $(CP) $(PKG_BUILD_DIR)/libs/libneo_utl.a $(1)/usr/lib/ - - $(INSTALL_DIR) $(1)/usr/bin - - $(CP) $(PKG_BUILD_DIR)/cs/cs $(1)/usr/bin/ - $(CP) $(PKG_BUILD_DIR)/cs/cstest $(1)/usr/bin/ - $(CP) $(PKG_BUILD_DIR)/cgi/cs_static.cgi $(1)/usr/bin/ -endef - -define Build/UninstallDev - rm -rf \ - $(STAGING_DIR)/usr/include/ClearSilver \ - $(STAGING_DIR)/usr/lib/libneo_* \ - $(STAGING_DIR)/usr/bin/cs \ - $(STAGING_DIR)/usr/bin/cstest \ - $(STAGING_DIR)/usr/bin/cs_static.cgi + $(CP) $(PKG_INSTALL_DIR)/* $(1)/ endef define Package/clearsilver/install $(INSTALL_DIR) $(1)/usr/lib - $(INSTALL_BIN) $(PKG_BUILD_DIR)/libs/libneo_cs.a $(1)/usr/lib/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/libs/libneo_cgi.a $(1)/usr/lib/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/libs/libneo_utl.a $(1)/usr/lib/ - - $(INSTALL_DIR) $(1)/usr/bin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/cs/cs $(1)/usr/bin/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/cs/cstest $(1)/usr/bin/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/cgi/cs_static.cgi $(1)/usr/bin/ endef $(eval $(call BuildPackage,clearsilver))