# $FreeWRT$ #- # This file is part of the FreeWRT project. FreeWRT is copyrighted # material, please see the LICENCE file in the top-level directory # or at http://www.freewrt.org/licence for details. include $(TOPDIR)/rules.mk PKG_NAME:= pcre PKG_VERSION:= 5.0 PKG_RELEASE:= 3 PKG_MD5SUM:= 813850808894d99fb5b1c41ec6335d4f PKG_SOURCE_URL:= @SF/pcre PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.bz2 include $(TOPDIR)/mk/package.mk $(eval $(call PKG_template,LIBPCRE,libpcre,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(WRKBUILD)/.configured: (cd $(WRKBUILD); rm -rf config.{cache,status}; \ $(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" \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --build=$(GNU_HOST_NAME) \ --program-prefix="" \ --program-suffix="" \ --prefix=/usr \ --exec-prefix=/usr \ --bindir=/usr/bin \ --datadir=/usr/share \ --includedir=/usr/include \ --infodir=/usr/share/info \ --libdir=/usr/lib \ --libexecdir=/usr/lib \ --localstatedir=/var \ --mandir=/usr/share/man \ --sbindir=/usr/sbin \ --sysconfdir=/etc \ --enable-largefile \ --disable-nls \ --enable-shared \ --enable-static \ --enable-utf8 \ ); touch $@ $(WRKBUILD)/.built: rm -rf $(WRKINST) mkdir -p $(WRKINST) $(MAKE) -C "$(WRKBUILD)" \ CC_FOR_BUILD="$(HOSTCC)" \ LINK_FOR_BUILD="$(HOSTCC)" \ CFLAGS_FOR_BUILD="" \ dftables $(MAKE) -C "$(WRKBUILD)" \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ DESTDIR="$(WRKINST)" \ all install touch $@ $(IPKG_LIBPCRE): install -d -m0755 $(IDIR_LIBPCRE)/usr/lib $(CP) $(WRKINST)/usr/lib/libpcre{,posix}.so.* $(IDIR_LIBPCRE)/usr/lib/ $(RSTRIP) $(IDIR_LIBPCRE) $(IPKG_BUILD) $(IDIR_LIBPCRE) $(PACKAGE_DIR) $(STAGING_DIR)/usr/lib/libpcre.so: $(WRKBUILD)/.built mkdir -p $(STAGING_DIR)/usr/bin $(CP) $(WRKINST)/usr/bin/pcre-config $(STAGING_DIR)/usr/bin/ mkdir -p $(STAGING_DIR)/usr/include $(CP) $(WRKINST)/usr/include/pcre{,posix}.h $(STAGING_DIR)/usr/include/ mkdir -p $(STAGING_DIR)/usr/lib $(CP) $(WRKINST)/usr/lib/libpcre{,posix}.{a,so*} $(STAGING_DIR)/usr/lib/ touch $@ install-dev: $(STAGING_DIR)/usr/lib/libpcre.so uninstall-dev: rm -rf \ $(STAGING_DIR)/usr/bin/pcre-config \ $(STAGING_DIR)/usr/include/pcre{,posix}.h \ $(STAGING_DIR)/usr/lib/libpcre{,posix}.{a,so*} \ compile-targets: install-dev clean-targets: uninstall-dev