diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-17 17:05:50 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-03-17 17:05:50 +0000 |
commit | 086f6363b5fcf4ec66eb9f49065e8da91d870030 (patch) | |
tree | 1851d28ec652eba0755e6be53292f224d9bfbf9a /openwrt/package/openh323/Makefile | |
parent | e3c3f376828352db183e70122329055c831c2db4 (diff) |
add pwlib and open323 from Zoltan HERPAI, thx, fix bitlebee build after iconv changes; rm -rf staging_dir_* needed before compile
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3394 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/openh323/Makefile')
-rw-r--r-- | openwrt/package/openh323/Makefile | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/openwrt/package/openh323/Makefile b/openwrt/package/openh323/Makefile new file mode 100644 index 0000000000..f9b8a514f9 --- /dev/null +++ b/openwrt/package/openh323/Makefile @@ -0,0 +1,56 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=openh323 +PKG_VERSION:=cvs-20051230 +PKG_RELEASE:=1 +PKG_MD5SUM:=ba1ffd45016f533bec2bb1539b78e43a + +PKG_SOURCE_URL:=http://trash.uid0.hu/openwrt/ +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,OPENH323,openh323,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: + rm -rf $(PKG_INSTALL_DIR); + mkdir -p $(PKG_INSTALL_DIR); + ln -s $(PKG_BUILD_DIR)/../pwlib-cvs-20051227 $(PKG_BUILD_DIR)/../pwlib; + cd $(PKG_BUILD_DIR); rm -rf config.{cache,status}; \ + CFLAGS="$(TARGET_CFLAGS)" \ + CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ + PWLIBDIR="$(STAGING_DIR)" \ + ./configure \ + --prefix=$(STAGING_DIR) \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + cd $(PKG_BUILD_DIR)/plugins; rm -rf config.{cache,status}; \ + CFLAGS="$(TARGET_CFLAGS)" \ + CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ + PWLIBDIR="$(STAGING_DIR)" \ + ./configure \ + --prefix=$(STAGING_DIR) + touch $@ + +$(PKG_BUILD_DIR)/.built: + CFLAGS="$(TARGET_CFLAGS)" \ + CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ + PWLIBDIR="$(PKG_BUILD_DIR)/../pwlib-cvs-20051227/" \ + $(MAKE) -C $(PKG_BUILD_DIR)/plugins $(TARGET_CONFIGURE_OPTS) + + CFLAGS="$(TARGET_CFLAGS)" \ + CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ + PWLIBDIR="$(PKG_BUILD_DIR)/../pwlib-cvs-20051227/" \ + $(MAKE) -C $(PKG_BUILD_DIR) $(TARGET_CONFIGURE_OPTS) opt install + touch $@ |