# $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:= gd PKG_VERSION:= 2.0.33 PKG_RELEASE:= 2 PKG_MD5SUM:= be0a6d326cd8567e736fbc75df0a5c45 PKG_SOURCE_URL:=http://www.boutell.com/gd/http PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz include $(TOPDIR)/mk/package.mk $(eval $(call PKG_template,LIBGD,libgd,$(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" \ LIBPNG12_CONFIG="$(STAGING_DIR)/usr/bin/libpng12-config" \ ./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 \ --disable-rpath \ --with-gnu-ld \ --without-x \ --without-freetype \ --with-jpeg=$(STAGING_DIR)/usr \ --with-png=$(STAGING_DIR)/usr \ --without-xpm \ ) touch $@ $(WRKBUILD)/.built: rm -rf $(WRKINST) mkdir -p $(WRKINST) $(MAKE) -C $(WRKBUILD) \ DESTDIR="$(WRKINST)" \ all install touch $@ $(IPKG_LIBGD): install -d -m0755 $(IDIR_LIBGD)/usr/lib $(CP) $(WRKINST)/usr/lib/libgd.so.* $(IDIR_LIBGD)/usr/lib/ $(RSTRIP) $(IDIR_LIBGD) $(IPKG_BUILD) $(IDIR_LIBGD) $(PACKAGE_DIR) $(STAGING_DIR)/usr/lib/libgd.so: $(WRKBUILD)/.built mkdir -p $(STAGING_DIR)/usr/bin $(CP) $(WRKINST)/usr/bin/gdlib-config $(STAGING_DIR)/usr/bin/ mkdir -p $(STAGING_DIR)/usr/include $(CP) $(WRKINST)/usr/include/entities.h $(STAGING_DIR)/usr/include/ $(CP) $(WRKINST)/usr/include/gd*.h $(STAGING_DIR)/usr/include/ mkdir -p $(STAGING_DIR)/usr/lib $(CP) $(WRKINST)/usr/lib/libgd.{a,so*} $(STAGING_DIR)/usr/lib/ touch $@ install-dev: $(STAGING_DIR)/usr/lib/libgd.so uninstall-dev: rm -rf \ $(STAGING_DIR)/usr/bin/gdlib-config \ $(STAGING_DIR)/usr/include/entities.h \ $(STAGING_DIR)/usr/include/gd*.h \ $(STAGING_DIR)/usr/lib/libgd.{a,so*} \ compile-targets: install-dev clean-targets: uninstall-dev